body {
  position: relative;
  min-height: 100vh;
}

.container {
  padding-bottom: 150px;
}

footer {
  width: 100%;
  position: absolute;
  height: 150px;
  bottom: 0;
  margin-top: 25px;
}

#footer {
  width: 100%;
  /* background: var(--jet); */
  background:  rgb(52, 51, 48);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 25px 5px;
}

#footer .company {
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .logo {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 5px;
  /* background: var(--white); */
  background:  rgb(241, 241, 241);
}

#footer .logo img{
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  min-width: auto;
  min-height: auto;
  max-width: auto;
  max-height: auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#footer .brand {
  width: 205px;
  /* color: var(--white); */
  color:  rgb(241, 241, 241);
  font-size: .9rem;
  font-weight: bold;
  padding: 15px;
}

#footer .address {
  display: flex;
  justify-content: flex-start;
}

#footer .address a,
#footer .contact a {
  padding: 15px;
  /* color: var(--white); */
  color:  rgb(241, 241, 241);
  font-size: .8rem;
}

#footer .mail a {
  padding: 15px;
  /* color: var(--white); */
  color:  rgb(241, 241, 241);
  font-size: .8rem;
}

@media (max-width: 300px) {
  #footer .brand {
    width: 150px;
  }

  #footer .company .brand {
    font-size: .8rem;
    padding-right: 25px;
  }
}