/*--------------------------------------------------------------------------------------
  FOOTER
--------------------------------------------------------------------------------------*/
.footer {
  background-image: url("../img/bg-footer.png");
  background-color: #2f374b;
  position: relative;
  color: #ffffff;
}
.footer .footer-top {
  display: flex;
  justify-content: center;
  padding: 15px 0;
}
.footer .footer-top .footer-top__container {
  display: flex;
  justify-content: space-between;
}
.footer .footer-top .footer-top__container .footer-top__links {
  display: flex;
  gap: 170px;
}
.footer .footer-top .footer-top__container .footer-top__links div {
  display: flex;
  flex-direction: column;
}
.footer .footer-top .footer-top__container .footer-top__links div p {
  font-weight: bold;
  margin-bottom: 10px;
}
.footer .footer-top .footer-top__container .footer-top__links div a:hover {
  text-decoration: underline;
}
.footer .footer-top .footer-top__container .footer-top__socials {
  transform: translateY(2px);
}
.footer .footer-top .footer-top__container .footer-top__socials a {
  display: flex;
  background: white;
  justify-content: center;
  align-items: center;
  height: 22px;
  width: 23px;
  border-radius: 5px;
}
.footer .footer-top .footer-top__container .footer-top__socials a i {
  font-size: 28px;
  color: #186ae6;
}
.footer .footer-bottom {
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  text-align: center;
  padding-bottom: 15px;
}
.footer .footer-bottom .footer-bottom__container {
  display: flex;
  flex-direction: column;
}
.footer .footer-bottom .footer-bottom__container .footer-bottom__links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-bottom .footer-bottom__container .footer-bottom__links .footer-bottom__link,
.footer .footer-bottom .footer-bottom__container .footer-bottom__links .footer-bottom__account {
  padding: 15px;
}
.footer .footer-bottom .footer-bottom__container .footer-bottom__links .footer-bottom__link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .footer .footer-top {
    padding: 20px 0;
  }
  .footer .footer-bottom {
    padding-bottom: 20px;
  }
  .footer .footer-bottom .footer-bottom__container .footer-bottom__links {
    flex-wrap: wrap;
  }
  .footer .footer-bottom .footer-bottom__container .footer-bottom__links .footer-bottom__link {
    padding: 20px 15px 15px 15px;
  }
  .footer .footer-bottom .footer-bottom__container .footer-bottom__links .footer-bottom__account {
    width: 100%;
    padding-top: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-top {
    padding: 25px 0;
  }
  .footer .footer-top .footer-top__container {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
  }
  .footer .footer-top .footer-top__container .footer-top__links {
    flex-direction: column;
    gap: 25px;
  }
  .footer .footer-bottom {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .footer .footer-bottom .footer-bottom__container .footer-bottom__links {
    gap: 10px;
  }
  .footer .footer-bottom .footer-bottom__container .footer-bottom__links .footer-bottom__link {
    width: 100%;
    padding: 0;
  }
  .footer .footer-bottom .footer-bottom__container .footer-bottom__links .footer-bottom__account {
    margin-top: 15px;
  }
}