.logo {
  width: 100%;
  object-fit: contain;
  height: 100px;
}

.logo img {
  max-height: 100%;
}

.logo.footer {
  height: 10vh;
}



footer {
  position: relative;
  background-color: var(--secondary-color);
  color: white;
  font-family: "comfortaa", sans-serif;
  padding-bottom: 5rem;
  padding-top: 2rem;
  text-align: center;
  height: 20vh;
  width: 100%;

}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
  flex-basis: 30%;
}

.footer-left h3,
.footer-center h3,
.footer-right h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

footer li {
  margin-bottom: 0.5rem;
}

footer a,
header a {
  color: white;
  text-decoration: none;
  transition: ease-out 0.3s;
}

footer a:hover {
  color: #eb2800;
  transition: ease-out 0.3s;
}

footer i {
  margin-right: 0.5rem;
}

.footertop {
  margin-bottom: 0px;
  position: bottom;
}

.subtitle_footer h2 {
  font-style: normal;
  font-size: 0.8em;
  font-weight: 200;
  padding: 0;
  margin: 0;
}

.title_footer h1 {
  font-style: italic;
  font-weight: 300;
  font-size: 3em;
  padding: 0;
  margin: 0;
}

.title_footer h1 b {
  font-weight: 800;
}

.copyright {
  position: absolute;
  bottom: 7px;
  right: 7px;
  font-size: 0.8em;
}

@media (max-width: 768px) {
  footer {
    max-height: 20vh;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex-basis: 100%;
    margin-bottom: 2rem;
  }

  .footer-right ul {
    display: flex;
    justify-content: space-evenly;
    width: 150px;
  }

  .logo.footer {
    height: 50px;
  }

  .footertop {
    margin-bottom: 2rem;
    text-align: center;
  }

  .subtitle_footer h2 {
    font-size: 0.8rem;
    width: 70%;
    margin: auto;
  }

  .title_footer h1 {
    font-size: 2rem;
  }

  .title_footer h1 b {
    font-weight: 400;
  }
}
