.fooundit-overview-static-page {
  background: #f9f9f9;
}

.fooundit-overview-static {
  --default-font: "Inter", sans-serif;
}

.fooundit-overview-static .dark-section {
  background-color: #03352C;
}

.fooundit-overview-static .hero {
  margin-top: 0;
}

.fooundit-overview-static .hero,
.fooundit-overview-static .our-benefits,
.fooundit-overview-static .our-blog,
.fooundit-overview-static .our-program,
.fooundit-overview-static .about-us,
.fooundit-overview-static .why-choose-us,
.fooundit-overview-static .how-we-work,
.fooundit-overview-static .our-volunteer {
  overflow: hidden;
}

.fooundit-overview-static .hero,
.fooundit-overview-static .about-us,
.fooundit-overview-static .why-choose-us,
.fooundit-overview-static .our-benefits,
.fooundit-overview-static .our-program,
.fooundit-overview-static .how-we-work,
.fooundit-overview-static .our-volunteer,
.fooundit-overview-static .our-blog {
  position: relative;
  z-index: 1;
}

.fooundit-overview-static .popup-video {
  cursor: pointer;
}

.fooundit-overview-static .hero-sub-heading,
.fooundit-overview-static .section-title,
.fooundit-overview-static .section-content-btn,
.fooundit-overview-static .section-footer-text,
.fooundit-overview-static .our-volunteer-content,
.fooundit-overview-static .about-us-content,
.fooundit-overview-static .hero-body-content {
  min-width: 0;
}

.fooundit-overview-static .section-title p,
.fooundit-overview-static .hero-content p,
.fooundit-overview-static .hero-body-content p,
.fooundit-overview-static .post-item-content h2,
.fooundit-overview-static .testimonial-item-content p {
  overflow-wrap: anywhere;
}

.fooundit-overview-static .overview-static-fallback {
  padding: 2rem;
  border: 1px solid rgba(3, 53, 44, 0.12);
  border-radius: 0.5rem;
  background: #fff;
}

.fooundit-overview-static .page-header {
  position: relative;
  background-image: url('./assets/vendor/overview-static/images/page-header-bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 150px;
  overflow: hidden;
}

.fooundit-overview-static .page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, transparent 17.97%, rgba(3, 53, 44, 0.9) 68.07%);
  z-index: 1;
}

.fooundit-overview-static .page-header-box {
  position: relative;
  text-align: center;
  z-index: 2;
}

.fooundit-overview-static .page-header-box h1 {
  display: inline-block;
  font-size: 80px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
}

.fooundit-overview-static .page-header-box ol {
  justify-content: center;
  margin: 0;
  padding: 0;
}

.fooundit-overview-static .page-header-box ol li.breadcrumb-item {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--white-color);
}

.fooundit-overview-static .page-header-box ol li.breadcrumb-item a,
.fooundit-overview-static .page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: inherit;
}

.fooundit-overview-static .our-approach {
  background-color: var(--secondary-color);
  padding: 120px 0;
}

.fooundit-overview-static .approach-item {
  position: relative;
  background-color: var(--bg-color);
  border-radius: 10px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.fooundit-overview-static .approach-item::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.fooundit-overview-static .approach-item:hover::before {
  height: 100%;
}

.fooundit-overview-static .approach-item.box-1::after,
.fooundit-overview-static .approach-item.box-2::after,
.fooundit-overview-static .approach-item.box-3::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  mask-size: cover;
  background-color: var(--divider-color);
  animation: infiniterotate 20s infinite linear;
  transition: all 0.6s ease-in-out;
  z-index: 1;
}

.fooundit-overview-static .approach-item.box-1::after {
  mask-image: url('./assets/vendor/overview-static/images/our-approach-item-bg-shape-1.svg');
}

.fooundit-overview-static .approach-item.box-2::after {
  mask-image: url('./assets/vendor/overview-static/images/our-approach-item-bg-shape-2.svg');
}

.fooundit-overview-static .approach-item.box-3::after {
  mask-image: url('./assets/vendor/overview-static/images/our-approach-item-bg-shape-3.svg');
}

.fooundit-overview-static .approach-item.box-1:hover::after,
.fooundit-overview-static .approach-item.box-2:hover::after,
.fooundit-overview-static .approach-item.box-3:hover::after {
  background-color: var(--dark-divider-color);
}

.fooundit-overview-static .approach-item-header .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.fooundit-overview-static .approach-item-header,
.fooundit-overview-static .approach-item-content {
  position: relative;
  z-index: 1;
}

.fooundit-overview-static .approach-item-title h3 {
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}

.fooundit-overview-static .approach-item-content p {
  transition: all 0.4s ease-in-out;
  margin: 0;
}

.fooundit-overview-static .approach-item-content ul {
  list-style: none;
  border-top: 1px solid var(--divider-color);
  padding: 25px 0 0;
  margin: 25px 0 0;
  transition: all 0.4s ease-in-out;
}

.fooundit-overview-static .approach-item-content ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.fooundit-overview-static .approach-item-content ul li:last-child {
  margin-bottom: 0;
}

.fooundit-overview-static .approach-item-content ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.fooundit-overview-static .approach-item:hover .approach-item-title h3,
.fooundit-overview-static .approach-item:hover .approach-item-content p,
.fooundit-overview-static .approach-item:hover .approach-item-content ul li {
  color: var(--white-color);
}

.fooundit-overview-static .approach-item:hover .approach-item-content ul {
  border-color: var(--dark-divider-color);
}

.fooundit-overview-static .page-contact-us {
  padding: 120px 0 60px;
}

.fooundit-overview-static .contact-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 80px;
}

.fooundit-overview-static .contact-info-item {
  width: calc(33.33% - 20px);
  background-color: var(--secondary-color);
  border-radius: 10px;
  text-align: center;
  padding: 0 40px 40px;
  margin-top: 40px;
}

.fooundit-overview-static .contact-info-item .icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border: 6px solid var(--bg-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: -40px auto 40px;
}

.fooundit-overview-static .contact-info-item .icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.fooundit-overview-static .contact-info-item:hover .icon-box::before {
  transform: scale(1);
}

.fooundit-overview-static .contact-info-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 34px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.fooundit-overview-static .contact-info-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.fooundit-overview-static .contact-info-content h2 {
  font-size: 20px;
}

.fooundit-overview-static .contact-info-content p {
  margin: 10px 0 0;
}

.fooundit-overview-static .contact-info-content ul {
  list-style: none;
  text-align: center;
  border-top: 1px solid var(--divider-color);
  padding: 20px 0 0;
  margin: 20px 0 0;
}

.fooundit-overview-static .contact-info-content ul li {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.fooundit-overview-static .contact-info-content ul li:last-child {
  margin-bottom: 0;
}

.fooundit-overview-static .contact-info-content ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.fooundit-overview-static .contact-info-content ul li a:hover {
  color: var(--accent-color);
}

.fooundit-overview-static .contact-image-form-box {
  background-color: var(--secondary-color);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 10px;
}

.fooundit-overview-static .contact-us-image {
  width: 49%;
}

.fooundit-overview-static .contact-us-image figure {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 10px;
}

.fooundit-overview-static .contact-us-image figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.346;
  object-fit: cover;
  border-radius: 10px;
}

.fooundit-overview-static .page-contact-us .contact-form {
  width: 51%;
  align-content: center;
  padding: 3.125vw;
}

.fooundit-overview-static .contact-form label {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.fooundit-overview-static .contact-form form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--primary-color);
  background-color: var(--bg-color);
  border: none;
  border-radius: 10px;
  padding: 18px 24px;
  outline: none;
  box-shadow: none;
}

.fooundit-overview-static .contact-form form .form-control::placeholder {
  color: var(--text-color);
  opacity: 0.5;
}

.fooundit-overview-static .google-map {
  padding: 60px 0 120px;
}

.fooundit-overview-static .google-map-iframe {
  width: 100%;
  height: 600px;
}

.fooundit-overview-static .google-map-iframe iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes contactboxmove {
  50% {
    transform: translateX(-30px);
  }
}

@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  .fooundit-overview-static .page-header {
    padding: 170px 0 80px;
  }

  .fooundit-overview-static .page-header-box h1 {
    font-size: 54px;
  }

  .fooundit-overview-static .our-approach {
    padding: 60px 0;
  }

  .fooundit-overview-static .approach-item {
    min-height: auto;
    gap: 20px;
    padding: 30px 20px;
  }

  .fooundit-overview-static .approach-item.box-1::after,
  .fooundit-overview-static .approach-item.box-2::after,
  .fooundit-overview-static .approach-item.box-3::after {
    width: 120px;
    height: 120px;
  }

  .fooundit-overview-static .approach-item-header .icon-box {
    margin-bottom: 20px;
  }

  .fooundit-overview-static .approach-item-content ul {
    padding-top: 20px;
    margin-top: 20px;
  }

  .fooundit-overview-static .approach-item-content ul li {
    margin-bottom: 10px;
  }

  .fooundit-overview-static .approach-item-content ul li::before {
    font-size: 16px;
  }

  .fooundit-overview-static .page-contact-us {
    padding: 60px 0 30px;
  }

  .fooundit-overview-static .contact-info-item {
    width: calc(50% - 15px);
    margin-top: 30px;
  }

  .fooundit-overview-static .contact-info-item .icon-box {
    width: 60px;
    height: 60px;
    margin: -30px auto 20px;
  }

  .fooundit-overview-static .contact-info-item .icon-box img {
    max-width: 20px;
  }

  .fooundit-overview-static .contact-form form .form-control {
    padding: 13px 15px;
  }

  .fooundit-overview-static .google-map {
    padding: 30px 0 60px;
  }

  .fooundit-overview-static .google-map-iframe {
    height: 450px;
  }
}

@media (max-width: 767.98px) {
  .fooundit-overview-static .hero {
    padding-top: 40px;
  }

  .fooundit-overview-static .page-header-box h1 {
    font-size: 28px;
  }

  .fooundit-overview-static .page-header-box ol li.breadcrumb-item {
    font-size: 16px;
  }

  .fooundit-overview-static .approach-item {
    padding: 20px;
  }

  .fooundit-overview-static .approach-item.box-1::after,
  .fooundit-overview-static .approach-item.box-2::after,
  .fooundit-overview-static .approach-item.box-3::after {
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
  }

  .fooundit-overview-static .approach-item-title h3 {
    font-size: 18px;
  }

  .fooundit-overview-static .contact-info-item {
    width: 100%;
    padding: 0 20px 20px;
  }

  .fooundit-overview-static .contact-info-content h2 {
    font-size: 18px;
  }

  .fooundit-overview-static .contact-info-content p {
    margin: 5px 0 0;
  }

  .fooundit-overview-static .contact-us-image {
    width: 100%;
  }

  .fooundit-overview-static .contact-us-image figure,
  .fooundit-overview-static .contact-us-image figure img {
    height: auto;
  }

  .fooundit-overview-static .contact-us-image figure img {
    aspect-ratio: 1 / 0.85;
  }

  .fooundit-overview-static .page-contact-us .contact-form {
    width: 100%;
    padding: 30px 10px 20px;
  }

  .fooundit-overview-static .contact-form label {
    margin-bottom: 10px;
  }

  .fooundit-overview-static .google-map-iframe {
    height: 350px;
  }
}
