.footer {
  padding: 7.5rem 0 2.5rem;
  background-color: #000;
  color: var(--white-color);
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__logo {
  width: 13rem;
  height: 2.25rem;
}
.footer__menu {
  width: 65%;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.footer__item--title {
  margin-bottom: 0.1875rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}
.footer__item--time {
  font-size: 1.125rem;
  font-weight: 500;
}
.footer__link {
  position: relative;
  color: var(--white-color);
  font-size: 1.125rem;
  font-weight: 400;
}
.footer__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--main-color);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.footer__link:hover {
  color: var(--main-color);
}
.footer__link:hover::after {
  width: 100%;
}
.footer__link--email {
  color: var(--main-color);
}
.footer__bottom {
  margin-top: 2.1875rem;
  padding-top: 1.875rem;
  border-top: 1px solid rgb(217, 217, 217);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__bottom_copyright {
  font-size: 1.125rem;
  font-weight: 400;
}
.footer__bottom_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
.footer__bottom_social_link i {
  width: 1.875rem;
  height: 1.875rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 80px 0 40px;
  }
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__menu {
    margin-top: 3.75rem;
    width: 100%;
  }
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.5rem;
    gap: 2.5rem;
  }
  .footer__column {
    width: 12.5rem;
  }
}
@media (max-width: 480px) {
  .footer__container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__column {
    width: 12.5rem;
    text-align: center;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__bottom_copyright {
    font-size: 0.875rem;
  }
}