.site-footer {
  padding: 126px 0;
}

/* LOGO */
.site-footer .f-logo {
  margin-bottom: 57px;
  display: inline-block;
}

.site-footer .f-logo img {
  max-width: 334px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TOP LINKS */
.site-footer .ft-links-section ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 147px;
  padding: 0;
  margin-bottom: 0;
}

.site-footer .ft-link li {
  color: rgba(var(--text-color-1));
  text-decoration: none;
  font-size: var(--font-8);
  font-weight: 500;
  list-style: none;
}

.site-footer .ft-link li a {
  color: rgba(var(--text-color-1));
  text-decoration: none;
  position: relative;
  display: block;

  &:hover {
    color: rgba(var(--text-color-6));
  }
}

.site-footer .ft-link li a::after {
  content: "\f061";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  right: 0;
}

.site-footer .footer-top p {
  font-weight: 300;
  font-size: var(--font-6);
  letter-spacing: -0.5px;
  color: rgba(var(--text-color-1));
  margin-top: 40px;
}

/* MIDDLE AREA */
.site-footer .footer-middle {
  display: flex;
  justify-content: space-between;
  margin-top: 73px;
  flex-wrap: wrap;
  gap: 50px;
}

.site-footer .footer-middle .social-links,
.site-footer .footer-middle .quick-links {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.site-footer .social-links h3,
.site-footer .quick-links h3 {
  font-size: var(--font-5);
  color: rgba(var(--text-color-1));
  font-weight: 300;
  margin-bottom: 0;
}

/* MENU LINKS */
.site-footer .quick-links .footer-menu li a,
.site-footer .quick-links .quick-link,
.site-footer .social-links a {
  opacity: 0.7;
  color: rgba(var(--text-color-1));
  font-size: var(--font-10);
  font-weight: 400;
  opacity: 70%;
  position: relative;
  text-decoration: none;
  transition: 0.3s all;
  display: inline-flex;
}

.site-footer .quick-links .footer-menu li a::after,
.site-footer .quick-links .quick-link::after,
.site-footer .social-links a::after {
  content: "\f061";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

/* HOVER EFFECT */
.site-footer .quick-links .footer-menu li a:hover,
.site-footer .quick-links .quick-link:hover,
.site-footer .social-links a:hover {
  color: rgba(var(--text-color-6));
  padding-left: 25px;
  opacity: 1;
}

.site-footer .social-links a:hover svg,
.site-footer .social-links a:hover svg path {
  fill: rgba(var(--text-color-6));
  stroke: rgba(var(--text-color-6));
}

.site-footer .quick-links .footer-menu li a:hover::after,
.site-footer .quick-links .quick-link:hover::after,
.site-footer .social-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left bottom;
}

.site-footer .social-links .quick-link svg {
  max-width: 16px !important;
  margin-right: 10px;
}

/* BOTTOM FOOTER */
.site-footer .footer-bottom {
  padding-top: 51px;
  margin-top: 51px;
  border-top: 1px solid rgba(var(--border-color-1), 0.2);
  display: flex;
  align-items: center;
}

.site-footer .footer-bottom .f-b-logo img {
  max-width: 156px;
  width: 100%;
  object-fit: contain;
}

.site-footer .footer-bottom .footer-bottom-info {
  font-size: var(--font-14);
  color: rgba(var(--text-color-1));
  font-weight: 500;
  padding-left: 54px;
  opacity: 40%;
  flex: 1;
}

.site-footer .footer-menu .menu-item {
  list-style-type: none;
  padding: 0px !important;
  margin: 0;
}

.site-footer .footer-menu {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0 !important;
}

.site-footer .footer-menu .menu-item a {
  color: rgba(var(--text-color-1));
  text-decoration: none;
}

@media (max-width: 1200px) {
  .site-footer {
    padding: 110px 0;
  }
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 90px 0;
  }

  .site-footer .footer-middle {
    margin-top: 60px;
  }
}

@media (max-width: 991px) {
  .site-footer {
    padding: 70px 0;
  }

  .site-footer .ft-links-section ul {
    gap: 16px 70px;
  }

  .site-footer .footer-middle {
    margin-top: 50px;
    justify-content: start;
  }

  .site-footer .f-logo img {
    max-width: 275px;
  }
}

@media (max-width: 767px) {
  .site-footer .footer-middle {
    margin-top: 40px;
    gap: 40px;
  }

  .site-footer .ft-links-section ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }

  .site-footer .footer-bottom .footer-bottom-info {
    padding-left: 0;
    text-align: center;
  }

  .site-footer {
    padding: 55px 0;
  }

}

/* section overlap */
.section_overlap {
  margin-top: -141px !important;
  z-index: 5 !important;
  position: relative;
}

.bg__light-green {
  background-color: #266151;
}

.bg__light-purple {
  background-color: #533a59;
}

.bg__light-beige {
  background-color: #e8e5de;
}

.wp-block-image figure{
  float: unset !important;
}