/* FOOTER CSS */
.footer .footer-main .footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-bottom: 1px solid #26BCC3;
  padding: 40px 0;
  gap: 70px;
}

.footer .footer-main .footer-menu li {
  list-style-type: none;
}

.footer .footer-main .footer-menu li a {
  color: var(--color-white);
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  line-height: 26px;
  font-family: var(--font-family);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  font-weight: normal;
}

.footer .footer-main .footer-menu li a:hover {
  color: var(--color-black);
  text-decoration: underline;
}

.footer .footer-main .footer-logo {
  margin: 0 auto;
  text-align: center;
  padding: 55px 0;
}

.footer .footer-main .footer-logo a {
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

.footer .footer-copyright {
  padding: 25px 0;
}

.footer .footer-copyright .copyright-text {
  color: var(--color-grey);
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 19px;
  font-weight: normal;
}

.footer .footer-copyright .footer-social {
  display: flex;
  align-items: center;
  justify-content: end;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer .footer-copyright .footer-social li {
  color: var(--color-grey);
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 19px;
  font-weight: bold;

}

.footer .footer-copyright .footer-social li a {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}

.footer .footer-copyright .footer-social li a img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 100%;
}

@media(max-width:1199px) {
  .footer .footer-main .footer-menu {
    padding: 30px 0;
    gap: 50px;
  }

  .footer .footer-main .footer-logo {
    padding: 40px 0;
  }

  .footer .footer-copyright .copyright-text,
  .footer .footer-copyright .footer-social li {
    font-size: 14px;
    line-height: 18px;
  }
}

@media(max-width:992px) {
  .footer .footer-main .footer-menu {
    gap: 30px;
  }

  .footer .footer-copyright .copyright-text,
  .footer .footer-copyright .footer-social li {
    font-size: 13px;
    line-height: 17px;
  }

}

@media(max-width:767px) {
  .footer .footer-main .footer-menu {
    flex-wrap: wrap;
    gap: 15px 0;
  }

  .footer .footer-main .footer-menu li {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .footer .footer-copyright .copyright-text {
    text-align: center;
  }

  .footer .footer-copyright .footer-social {
    justify-content: center;
  }

  .footer .footer-copyright .row {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

@media(max-width:576px) {
  .footer .footer-main .footer-logo {
    width: 250px;
    object-fit: cover;
  }
}