/* Footer */
/* footer wrap */
.footer {
  background-color: #1B2634;
  padding: 30px 0;
}

.footer .footer-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .footer-nav .container {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.footer-nav .footer-content,
.footer-nav .footer-socail {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-nav .footer-socail {
  justify-content: center;
}

.footer-nav .footer-socail a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  position: relative;
}

.footer-nav .footer-socail a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.footer-nav .footer-socail a:hover:after {
  width: 100%;
}

.footer .footer-bottom a {
  position: relative;
}

.footer .footer-bottom a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.footer .footer-bottom a:hover:after {
  width: 100%;
}

.footer-nav a {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
}

.footer-main {
  margin: 20px 0;
}

.footer-main .container {
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
  flex-direction: column;
  gap: 15px;
}

.footer-main .container .footer-logo img {
  display: block;
}

.footer .footer-contact ul {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: self-start;
}

.footer .tagline {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #85979B;
  display: block;
  margin-top: 20px;
}

.footer-contact h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #85979B;
  margin-bottom: 5px;
}

.footer-nav ul .phone-icon {
  background: url("../images/phone.svg") no-repeat center;
  display: inline-block;
  width: 14px;
  height: 14px;
}

.footer-nav ul .mail-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(214deg) brightness(104%) contrast(101%);
  background-size: 14px;
}

.footer-contact a {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 12px;
  transition: 0.5s all;
}

.footer-contact a:hover {
  opacity: 0.4;
  color: #fff !important;
}

.footer-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.location h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 27.9px;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.location address {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  font-style: normal;
}

.footer-bottom {
  padding: 30px 0 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.footer-bottom ul {
  display: flex;
  gap: 30px;
}

.footer-bottom a {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  color: #85979B;
  text-decoration: none;
}

.footer-bottom .copyright {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  color: #85979B;
}

.social-links {
  display: flex;
  gap: 5px;
}

.social-links a {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  opacity: 0.5;
}

.footer .footer-locations {
  border-top: 1px solid #45474E;
  border-bottom: 1px solid #45474E;
}

.footer .footer-locations-block .location {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #45474E;
}

.footer .footer-locations-block .location:first-child {
  border-left: 1px solid #45474E;
}

.footer-nav .footer-content a,
.footer .footer-contact a {
  position: relative;
}

.footer-nav .footer-content a:after {
  content: "";
  position: absolute;
  background: #FFFFFF;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  transition: all 0.3s ease;
}

.footer-nav .footer-content a:hover:after,
.footer .footer-contact a:hover::after {
  width: 100%;
}

.send-btn[disabled] {
  color: #fff;
  border: 1px solid #149AFF;
}

/* Footer Close */
/* Responsive */
@media screen and (min-width:768px) {}

@media screen and (min-width:992px) {

  /* Footer */
  .footer .footer-nav .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-nav .footer-content,
  .footer-nav .footer-socail {
    flex-wrap: nowrap;
    gap: 25px;
  }

  .footer-main .container {
    flex-direction: row;
  }

  .footer-bottom .container {
    flex-direction: row;
    justify-content: end;
    gap: 70px;
  }

  .footer-bottom ul {
    gap: 70px;
  }

  .footer .footer-locations .footer-locations-block {
    display: flex;
  }

  .footer .footer-locations-block .location {
    flex: 1;
    align-items: self-start;
  }

  .footer .footer-locations-block .location {
    border-right: 1px solid #45474E;
    border-bottom: 0;
  }

  /* Footer Close */
}

@media screen and (min-width:1200px) {

  /* Footer */
  .footer .footer-nav .container {
    margin: 0 auto;
    padding: 33px 20px 53px;
  }

  .footer-nav .footer-content {
    gap: 60px;
  }

  .footer-content h5 {
    margin: auto;
  }

  .footer-main .container {
    margin: 0 auto;
    padding: 71px 20px 57px 20px;
  }

  .content-list p {
    color: #fff;
    font-weight: 300;
  }

  .footer-main .container {
    max-width: 1389px !important;
    width: 100% !important;
  }

  .footer .footer-locations-block .location {
    padding: 50px 23px 45px 39px;
  }

  .footer-bottom {
    padding: 38px 0 20px;
  }

  .footer-bottom ul {
    gap: 136px;
  }

  .footer-bottom .container {
    gap: 266px;
  }

  .footer .footer-locations .footer-locations-block {
    padding: 0 50px;
  }

  .footer {
    padding: 40px 0;
  }

  /* Footer Close */
}

@media screen and (max-width:991px) {

  .footer .footer-nav .container,
  .footer-main .container {
    align-items: self-start;
    gap: 25px;
    margin-bottom: 30px;
  }

  .footer-nav .footer-content,
  .footer-nav .footer-socail {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .footer-main {
    margin: 30px 0;
  }

  .footer-main .container .footer-logo img {
    margin: 0;
  }

  .footer .footer-locations-block .location {
    padding: 30px 20px;
    align-items: self-start;
  }

  .footer-bottom .container {
    align-items: self-start;
  }

  .footer-bottom ul {
    flex-direction: column;
    align-items: self-start;
    gap: 10px;
    margin-bottom: 15px;
  }
}