@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    :root {
        --primary-font: "Nunito", sans-serif;
        --secondary-font: "Caveat", cursive;
        --primary-color:#FD8336;
        --secondary-color:#00A858;
        --third-color:#262122;
        --color-white:#FFF;
        --color-dark:#000;
        --heading-color:#021e12;
        --muted-color:#000;
      }
      ::selection{
        background-color: var(--secondary-color) !important;
        color: var(--color-white) !important;
      }
       ::-webkit-scrollbar {
    width: 7px;
    }
    ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb {
      background-color: var(--secondary-color);
    border-radius: 10px;    
    }
    .site-wrapper{
        overflow: clip;
      }
      html{
        scroll-behavior: smooth;
      }
      body{
        background-color: #FFF !important;
        font-family: var(--primary-font) !important;
        color: var(--color-dark);
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
      }
    a {
        text-decoration: none !important;
        font-family: var(--primary-font);
    }
    p {
        font-family: var(--primary-font);
        position: relative;
        margin: 0 0 10px!important;
        line-height: 29px;
        color: #000;
        font-weight: 400;
        font-size: 17px; 
    }
    p,
    li {
        font-family: var(--primary-font);
        color: var(--color-dark);
        text-decoration: none !important;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6{
        font-family: var(--primary-font) !important;
    }
    img{
        max-width: 100%;
        transition:all 0.3s ease-in-out;
    }
    .primary-text{
      color: var(--primary-color) !important;
    }
    .bg-clay{
        background-color: #edeeef !important;
    }
    nav.navbar {
        padding: 0;
    }
    ul.navbar-nav {
        margin: 0 0 auto;
    }
    .py-70{
      padding: 70px 0;
    }
    .object-top{
      object-position: top !important;
    }
    .btn{
         font-family: var(--primary-font);
    }
    .section-padding{
      padding: 80px 0;
    }
    .site-btn {
    position: relative;
    overflow: hidden;
    font-size: 16px;
    line-height: 24px;
    padding: 16px 40px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    z-index: 1;
    transition:all 0.5s ease-in-out;
  }
  .site-btn.style-one{
    color: var(--color-white);
    background-color: var(--primary-color);
  }
  .site-btn.style-one:hover{
    color: var(--third-color);
  }
  .site-btn.style-one::before,  .site-btn.style-one::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    border-radius: 0;
    inset-inline-start: 0;
    background-color: var(--secondary-color);
    transition: all 0.5s ease;
    z-index: -1;
  }
  .site-btn.style-one::after{
      inset-inline-start: unset !important;
      inset-inline-end: 0;
  }
  .site-btn.style-one:hover::before,  .site-btn.style-one:hover::after{
    width: 0;
  }
  .site-btn.style-one i{
    transform: rotate(-45deg);
    transition: transform .5s ease, color 0s ease;
  }
  .site-btn.style-one:hover i{
    transform: rotate(0deg);
  }
/* Style Two */
  .site-btn.style-two{
    color: var(--third-color);
    background-color: var(--secondary-color);
  }
  .site-btn.style-two:hover{
    color: var(--color-white);
  }
  .site-btn.style-two::before,  .site-btn.style-two::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    border-radius: 0;
    inset-inline-start: 0;
    background-color: var(--primary-color);
    transition: all 0.5s ease;
    z-index: -1;
  }
  .site-btn.style-two::after{
      inset-inline-start: unset !important;
      inset-inline-end: 0;
  }
  .site-btn.style-two:hover::before,  .site-btn.style-two:hover::after{
    width: 0;
  }
  .site-btn.style-two i{
    transform: rotate(-45deg);
    transition: transform .5s ease, color 0s ease;
  }
  .site-btn.style-two:hover i{
    transform: rotate(0deg);
  }
/* Style Three */
  .site-btn.style-three{
    color: var(--color-white);
    background-color: hsla(0, 0%, 100%, .04);
  }
  .site-btn.style-three:hover{
    color: var(--third-color);
    background-color: var(--primary-color);
  }
  .site-btn.style-three::before,  .site-btn.style-three::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    border-radius: 0;
    inset-inline-start: 0;
    background-color: hsla(0, 0%, 100%, .04);
    transition: all 0.5s ease;
    z-index: -1;
  }
  .site-btn.style-three::after{
      inset-inline-start: unset !important;
      inset-inline-end: 0;
  }
  .site-btn.style-three:hover::before,  .site-btn.style-three:hover::after{
    width: 0;
  }
  .site-btn.style-three i{
    transform: rotate(-45deg);
    transition: transform .5s ease, color 0s ease;
  }
  .site-btn.style-three:hover i{
    transform: rotate(0deg);
  }
.text-justify{
  text-align: justify;
}
a.nav-link {
    position: relative;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--third-color); 
    margin: 0 5px;
    padding: 20px 10px !important;
    text-transform: capitalize;
    transition: 0.5s ease-in-out all;
}
a.nav-link:hover, a.nav-link:focus{
  color: #504b4c;
}
.main-header.sticky a.nav-link:hover{
    color:var(--secondary-color) !important;
}
.main-header.sticky{
  filter: drop-shadow(0 4px 19px rgba(0, 0, 0, .07)) !important;
}
.banner-section{
  position: relative;
  overflow: hidden;
}
.banner-section .banner-shape{
    position: absolute;
    inset-inline-start: 0;
    inset-inline-end: 0;
    top: -5px;
    z-index: 3;
}
.banner-section .banner-shape img{
  width: 100%;
  height: 28px;
  object-fit: cover;
}
.banner-shape-left{
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
}
.banner-shape-left img {
    width: 100%;
    height: 100%;
    animation: moveTopBottom 4s ease-in-out infinite;
}
@keyframes moveTopBottom{
   0% {
    transform: translateY(0);
    opacity: .8;
}
25% {
    opacity: 1;
}
50% {
    transform: translateY(50px);
    opacity: .8;
}
75% {
    opacity: 1;
}
100% {
    transform: translateY(0);
    opacity: .8;
}
}
.banner-heart-shape{
    position: absolute;
    top: 60%;
    inset-inline-start: 80%;
    z-index: 2;
}
.banner-heart-shape img {
    max-width: 5vw;
    min-width: 30px;
    animation: heart-pulse 4s ease-in-out infinite;
}
@keyframes heart-pulse{
  0%, 100% {
    transform: scale(1) translate(-50%, -50%);
    opacity: .3;
}
  50% {
      transform: scale(1.2) translate(-50%, -50%);
      opacity: 1;
  }
}
.banner-unity-shape{
    position: absolute;
    inset-block-end: 0;
    inset-inline-end: 0;
    z-index: 1;
}
.banner-unity-shape img{
    animation: moveLeftRight 4s ease-in-out infinite;
    max-width: 15vw;
    min-width: 50px;
}
@keyframes moveLeftRight{
   0% {
    transform: translateX(0);
    opacity: .8;
}
25% {
    opacity: 1;
}
50% {
    transform: translateX(50px);
    opacity: .8;
}
75% {
    opacity: 1;
}
100% {
    transform: translateX(0);
    opacity: .8;
}
}
.bs-box img.hb-img {
    max-height: 750px;
    min-height: 750px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transition: transform 7s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
}
.bs-box {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.bs-box::before {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(
-104deg,
rgba(0, 93, 52, 0) 1.9%,
rgba(0, 93, 52, 0.08) 37.31%,
rgba(0, 93, 52, 0.17) 40.18%,
rgba(0, 93, 52, 0.37) 47.05%,
rgba(0, 93, 52, 0.67) 56.36%,
#005D34 73.4%,
#005D34 95.2%,
rgba(0, 93, 52, 0.91) 103.44%
);
/* background: linear-gradient(
-104deg,
rgba(0, 93, 52, 0) 1.9%,
rgba(0, 93, 52, 0.12) 37.31%,
rgba(0, 93, 52, 0.22) 40.18%,
rgba(0, 93, 52, 0.45) 47.05%,
rgba(0, 93, 52, 0.75) 56.36%,
#005D34 73.4%,
#005D34 95.2%,
rgba(0, 93, 52, 0.95) 103.44%
); */
    z-index: 0;
}
  .bs-con {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 50%;
    width: 100%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.bs-con .sub-title{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-family: var(--secondary-font);
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}
.bs-con .lg-text{
    color: var(--color-white);
    font-size: 55px;
    line-height: 65px;
    font-weight: 800;
    margin: 24px 0 !important;
    text-transform: capitalize;
    text-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}
.bs-con .lg-text span{
  color: var(--secondary-color);
}
    .bsc-btn {
      display: flex;
      justify-content: start;
      column-gap: 30px;
      margin-top: 23px;
    }
    .bs-slider .slick-prev, .bs-slider .slick-next {
    width: 55px !important;
    height: 55px !important;
    opacity: 1;
    border:none !important;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.bs-slider .slick-prev{
  background-color: #005D34;
  color: var(--color-white);
}
.bs-slider .slick-prev:hover, .bs-slider .slick-prev:focus, .bs-slider .slick-prev:active{
  background-color: var(--primary-color) !important;
  color: var(--third-color) !important;
}
.bs-slider .slick-prev i, .bs-slider .slick-next i{
    font-size: 20px;
}
.bs-slider .slick-next{
  background-color: var(--primary-color);
  color: var(--third-color);
}
.bs-slider .slick-next:hover, .bs-slider .slick-next:focus, .bs-slider .slick-next:active{
  background-color: var(--secondary-color) !important;
  color: var(--color-white) !important;
}
.slick-next:before, .slick-prev:before{
  display: none !important;
}
  .slick-dots li button {
    position: relative;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    padding: 0px !important;
    background-color: #ddd3ce !important;
}
    .slick-dots li {
        width: 17px !important;
        height: 17px !important;
        margin: 0 5px !important;
    }
    .slick-dots {
        bottom: -65px !important;
    }
      .slick-dots li.slick-active button {
    background-color: var(--secondary-color) !important;
   }
  .slick-prev {
      right: 40px !important;
      z-index: 1;
      top: 40% !important;
      left: unset !important;
  }
    .slick-next {
        right: 40px !important;
    }
    .slick-next, .slick-prev {
        width: 40px !important;
        height: 40px !important;
        background-size: 40px !important;
        opacity: 0.6;
    }
    .slick-next:hover, .slick-prev:hover {
        background-size: 20px !important;
        transition: 0.5s !important;
        opacity: 1;
    }
    .bs-slider {
        margin: 0 !important;
    }
.slide-animate {
  opacity: 0;
  transform: translateY(-40px);
}
@keyframes fadeInLeftCustom {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
/* Top Header */
.header-top {
  background: var(--color-white);
  position: relative;
  z-index: 2;
}
.header-top-wrapper {
  position: relative;
  padding: 12px 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 20px 17px;
  z-index: 1;
}
.header-top-wrapper::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: -5%;
    top: 0;
    width: 110%;
    height: 100%;
    background-color: #025b30;
    border-radius: 0 0 20px 17px;
    z-index: -1;
}
.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-top-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-top-contact-icon {
  width: 45px;
  height: 45px;
  line-height: 41px;
  background: var(--color-white);
  border-radius: 50%;
  text-align: center;
}
.header-top-contact-icon img {
  width: 24px;
}
.header-top-contact-info h6 {
  color: var(--color-white);
  font-size: 18px;
}
.header-top-contact ul li a {
    display: flex;
    color: var(--color-white);
    font-weight: 500;
    text-shadow: 0 1px 2px rgb(0 0 0 / 20%);
    font-size: 15px;
    align-items: center;
}
.header-top-contact ul li a i {
    font-size: 19px;
    color: var(--primary-color);
    margin-right: 5px;
}
.header-top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-top-social span{
  color: var(--secondary-color);
  font-weight: 500;
}
.header-top-social a {
  display: inline-block;
  color: hsla(0, 0%, 100%, .72);
  font-size: 18px;
  text-align: center;
  margin-left: 10px;
  transition: all 0.5s ease-in-out;
}
.header-top-social a:hover {
    color: var(--primary-color);
}
.header-btn{
  margin-left: 30px;
}
.navlink-container{
  padding: 0 55px 0 40px;
  background-color: var(--primary-color);
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 30px;
}
.mh-contact-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 0 20px;
}
.mh-contact-info::before, .mh-contact-info::after{
   content: "";
    position: absolute;
    width: 28px;
    height: 14px;
    background-color: var(--color-white);
    top: 0;
    inset-inline-end: 100%;
}
.mh-contact-info::before{
  top: -30%;
   border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.mh-contact-info::after{
   top: unset;
    bottom: -30%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.mh-contact-info .icon img{
  max-width: 35px;
  height: auto;
}
.mh-contact-info .content p {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 700;
    color: #045a37;
}
.mh-contact-info .content a{
  display: inline-block;
  font-weight: 800;
  font-size: 18px;
  color: #04482c;
  margin-top: 8px;
  transition: 0.5s all ease-in-out;
  line-height: 1;
}
.mh-contact-info .content a:hover{
  color: #557668;
}
.sticky {
  width: 100%;
  position: fixed !important;
  top: 0;
  z-index: 999;
  background-color: var(--color-white);
  transform: translateY(-100%);
  opacity: 0;
  animation: smoothSticky 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  will-change: transform, opacity;
}
@keyframes smoothSticky {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
  img.header-logo {
      max-width: 155px;
  }
.sticky img.header-logo {
    max-width: 155px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .nav-link:focus {
    /*color: var(--primary-color) !important;*/
}
.header-dropdown .dropdown-menu {
    padding: 8px;
    margin: 0;
    border: none;
    border-radius: 7px !important;
    background: rgb(236, 241, 248);
}
.header-dropdown .dropdown-menu li {
    border-bottom: 1px solid #eee;
}
.header-dropdown .dropdown-menu li:first-child{
    border-radius: 20px 20px 0 0 !important;
}
.header-dropdown .dropdown-menu li a {
    position: relative;
    font-size: 16px;
    padding: 10px 0px 10px 20px;
    color: var(--color-dark);
    font-weight: 500;
    transition: all 0.5s ease-in-out;
}
.header-dropdown .dropdown-menu li .dropdown-item.active{
    background-color: transparent !important;
    color: var(--secondary-color) !important;
}
.header-dropdown .dropdown-menu li:last-child{
    border: none !important;
}
.header-dropdown .dropdown-menu.sub-dropdown
.nav-link:hover{
    color: var(--secondary-color) !important;
    transition:color 0.3s ease;
}
/* #header-dropdown .dropdown-toggle::after {
    display:inline-block;
    content: '\f078' !important;
    font-family: 'Font Awesome 6 Pro' !important;
    vertical-align:baseline !important;
    border: none !important;
    font-size: 14px;
    font-weight: 700;
    padding-left: 2px;
} */
#header-dropdown .dropdown-toggle::after {
    display: inline-block;
    content: '\f078' !important;
    font-family: 'Font Awesome 6 Pro' !important;
    vertical-align: baseline !important;
    border: none !important;
    font-size: 13px;
    font-weight: 900;
    position: relative;
    top: 0px;
    margin-left: 2px;
    transition: transform .3s ease-in-out;
    transform: rotate(0deg);
}
#header-dropdown .dropdown-toggle:hover::after{
  transform: rotate(180deg);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300A858' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-toggler {
    border: 2px solid var(--primary-color) !important;
    background-color: var(--color-white) !important;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem #f88b382e !important;
}
.main-header {
    position: relative;
    z-index: 99999;
    padding: 15px 0;
    background: var(--color-white);
}
/* Partner */
.partner-item{
  text-align: center;
}
/* Section title */
.section-title{
  position: relative;
  margin-bottom: 10px;
}
.section-title .sec-sm-title{
   display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
}
.section-title .sec-lg-title{
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: var(--heading-color);
  text-transform: capitalize;
  margin-top: 15px !important;
  margin-bottom: 0 !important;
}
.section-title .sec-lg-title span{
  color: var(--primary-color) !important;
}
.section-title .sec-para{
  color: var(--muted-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 17px !important;
  margin-bottom: 0 !important;
}
/* Services */
.service-section{
  position: relative;
  background-image: url('../img/bg/service-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.service-section::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #e3f1eb;
    opacity: 0.6;
    content: "";
    z-index: -1;
}
.service-section .shape-hand{
    position: absolute;
    inset-inline-start: 0;
    inset-block-start: 0;
    z-index: -1;
}
.service-section .shape-hand img{
    max-width: 10vw;
    min-width: 30px;
    animation: moveUpDown 10s ease-in-out infinite alternate-reverse;
}
@keyframes moveUpDown{
   0% {
    transform: translateY(-100px);
    opacity: .5;
}
50% {
    transform: translateY(0);
    opacity: 1;
}
100% {
    transform: translateY(100px);
    opacity: .5;
}
}
.service-item{
  position: relative;
  background-color: var(--color-white);
  padding: 30px 30px 25px;
  text-align: center;
  z-index: 1;
  border-radius: 30px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
}
.service-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00725E;
    transform: scaleX(0.8) rotateX(20deg);
    opacity: 0;
    border-radius: 30px;
    transition: all 0.4s linear;
    z-index: -1;
}
.service-item:hover::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}
.service-item .ser-shape{
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transform: translateX(-50px);
    transition: background-color 0.8s ease;
    transition: all 0.8s ease;
    z-index: -1;
}
.service-item:hover .ser-shape {
    opacity: 1;
    transform: translateX(0px);
}
.service-item .service-inner{
  position: relative;
  z-index: 2;
}
.service-item .service-icon-wrap{
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}
.service-item .service-icon-wrap .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;
    transition: all 0.5s ease-in-out;
}
.service-item .service-icon-wrap .service-icon img{
  max-width: 75px;
}
.service-item:hover .service-icon-wrap .service-icon{
  transform: rotateY(180deg);
}
.service-item.odd .service-icon-wrap .service-icon{
  background-color: var(--primary-color);
}
.service-item.even .service-icon-wrap .service-icon{
  background-color: var(--secondary-color);
}
.service-content .ser-title{
  position: relative;
  width: fit-content;
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 800;
  line-height: 36px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  transition:color  0.4s ease-in-out;
}
.service-item:hover .service-content .ser-title{
  color: var(--color-white);
}
.service-content .ser-title::after{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    content: "";
    transition: all 500ms ease;
}
.service-content .ser-title a{
  color: inherit;
}
.service-item .service-content .ser-desc{
  font-size: 16px;
  line-height: 1.6;
  transition:color  0.4s ease-in-out;
}
.service-item:hover .service-content .ser-desc{
  color: var(--color-white);
}
.service-slider .slick-next, .service-slider .slick-prev, .testimonial-slider .slick-next, .testimonial-slider .slick-prev{
   height: 55px !important;
   width: 55px !important;
   border-radius: 50%;
   opacity: 0;
   transform: scale(0);
   z-index: 1;
   transition: all .4s ease-in-out !important;
}
.service-slider:hover .slick-next, .service-slider:hover .slick-prev, .testimonial-slider:hover .slick-next, .testimonial-slider:hover .slick-prev{
  transform: scale(1);
   opacity: 1;
}
.service-slider .slick-prev, .testimonial-slider .slick-prev{
  background-color: var(--secondary-color) !important;
}
.service-slider .slick-prev:hover, .testimonial-slider .slick-prev:hover{
  background-color: var(--primary-color) !important;
}
.service-slider .slick-next, .testimonial-slider .slick-next{
  background-color: var(--primary-color) !important;
}
.service-slider .slick-next:hover, .testimonial-slider .slick-next:hover{
  background-color: var(--secondary-color) !important;
}
.service-slider .slick-next i, .service-slider .slick-prev i, .testimonial-slider .slick-next i, .testimonial-slider .slick-prev i{
  font-size: 22px;
  color: var(--color-white);
}
.service-slider .slick-prev, .testimonial-slider .slick-prev {
    left: -6% !important;
}
.service-slider .slick-next, .testimonial-slider .slick-next {
    right: -6% !important;
}
.service-slider .slick-next, .service-slider .slick-prev, .testimonial-slider .slick-next, .testimonial-slider .slick-prev {
    top: 50% !important;
    transform: translateY(-50%) !important;
}
.service-slider .service-slick{
  padding: 0 12.5px;
}
/* About Us */
.abtus-section{
  position: relative;
  overflow: hidden;
}
.abtus-wid-wrap{
  position: relative;
  padding-right: 60px;
}
.abtus-wid-wrap .abtus-thumb-inner{
    text-align: end;
    position: relative;
    direction: ltr;
}
.abtus-wid-wrap .abtus-thumb-inner .thumb {
    display: inline-block;
    border: 8px solid var(--color-white);
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,.15);
}
.abtus-wid-wrap .abtus-thumb-inner .top-thumb{
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: 2;
}
.abtus-wid-wrap .abtus-thumb-inner .top-thumb img{
  max-width: 240px;
  width: 100%;
  height: 228px;
  object-fit: cover;
  border-radius: 10px;
}
.abtus-wid-wrap .abtus-thumb-inner .thumb img{
  border-radius: 10px;
}
.abtus-wid-wrap .abtus-thumb-inner .thumb-lg{
    text-align: end;
    direction: ltr;
    margin-bottom: 100px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}
.abtus-wid-wrap .abtus-thumb-inner .thumb-lg::after{
    content: "";
    position: absolute;
    bottom: -100px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}
.abtus-wid-wrap .abtus-thumb-inner .thumb-lg::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
  104deg,
  rgba(0,93,52,0) 1.9%,
  rgba(0,93,52,0.08) 18.93%,
  rgba(0,93,52,0.17) 29.72%,
  rgba(0,93,52,0.37) 83.58%,
  rgba(0,93,52,0.67) 109.85%,
  #005D34 133.89%,
  #005D34 133.91%,
  rgba(0,93,52,0.91) 149.32%
);
    border-radius: inherit;
}
.abtus-wid-wrap .abtus-thumb-inner .thumb-lg img{
  width: 100%;
  height: 555px;
  object-fit: cover;
}
.video-btn-wrapper {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%,-50%);
    z-index: 4;
    cursor: pointer;
}
.video-btn-wrapper:after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px dashed var(--color-dark);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
.video-btn-wrapper .open-video-popup {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 100%;
    position: relative;
    animation: pulse-shadow 3s linear 2s infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
@keyframes pulse-shadow{
   0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .6);
}
100% {
    box-shadow: 0 0 0 85px rgba(0, 0, 0, 0);
}
}
.video-btn-wrapper .open-video-popup i {
    font-size: 22px;
    color: #005D34;
    margin-inline-start: 5px;
}
.abtus-wid-wrap .abtus-thumb-inner .bottom-thumb{
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    z-index: 2;
}
.abtus-wid-wrap .abtus-thumb-inner .bottom-thumb img{
  max-width: 240px;
  width: 100%;
  height: 228px;
  object-fit: cover;
  border-radius: 10px;
}
.abtus-wid-wrap .line{
    position: absolute;
    display: inline-block;
    top: 10px;
    inset-inline-end: 50px;
}
.abtus-wid-wrap .line img{
    animation: wave-line 3s linear infinite;
    transform-origin: center;
}
@keyframes wave-line{
  0% {
    transform: translateX(0) translateY(0);
}
25% {
    transform: translateX(5px) translateY(-5px);
}
50% {
    transform: translateX(0) translateY(0);
}
75% {
    transform: translateX(-5px) translateY(5px);
}
100% {
    transform: translateX(0) translateY(0);
}
}
.abtus-wid-wrap .grid-line{
    position: absolute;
    inset-inline-start: -35px;
    top: 60%;
}
.abtus-wid-wrap  .grid-line img{
  animation: moveTopBottom 4s ease-in-out infinite;
}
@keyframes moveTopBottom{
  0% {
    transform: translateY(0);
    opacity: .8;
}
25% {
    opacity: 1;
}
50% {
    transform: translateY(50px);
    opacity: .8;
}
75% {
    opacity: 1;
}
100% {
    transform: translateY(0);
    opacity: .8;
}
}
.abtus-wid-wrap .vertical-text{
    padding: 50px 30px;
    background-color: #005D34;
    display: inline-block;
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    border-top: 5px solid var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
    border-radius: 20px;
    z-index: 3;
}
.abtus-wid-wrap .vertical-text h5{
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-white);
    text-transform: lowercase;
}
.abtus-wid-wrap .vertical-text h5 span{
  color: var(--primary-color) !important;
}
.abtfeat-wrapper{
  margin: 35px 0;
}
.abtfeat-item{
    display: flex;
    align-items: center;
    gap: 16px;
}
.abtfeat-item .icon{
  position: relative;
}
.abtfeat-item .icon::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.5;
}
.abtfeat-item .icon img{
  max-width: 60px;
  height: auto;
}
.abtfeat-item .content h5{
  font-size: 20px;
  line-height: 30px;
  font-weight: 800;
  color: #005D34;
  text-transform: capitalize;
  margin-bottom: 6px;
}
.abtfeat-item .content p{
  color: var(--muted-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0 !important;
}
.abtcheck-list li {
    position: relative;
    color: #032a17;
    padding-left: 32px;
    margin-bottom: 12px;
}
.abtcheck-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Pro"; 
    font-weight: 900; 
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #005D34; 
    font-size: 20px;
}
.abtaction-wrap{
    display: flex;
    align-items: center;
    gap: 40px;
    row-gap: 24px;
    margin-top: 55px
}
.abtaction-wrap .contact-info{
  display: flex;
  align-items: center;
  gap: 15px;
}
.abtaction-wrap .contact-info .icon i{
  font-size: 30px;
    color: #005D34;
    margin-bottom: -5px;
}
.abtaction-wrap .contact-info .content p{
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #828a8d;
    margin-bottom: 8px !important;
}
.abtaction-wrap .contact-info .content a{
    color: #005D34;
    line-height: 1;
    font-size: 18px;
    font-weight: 700;
    transition: all .5s ease-in-out;
}
.abtaction-wrap .contact-info .content a:hover{
  color: #6b5103;
}
.abtus-section .parasuit{
    position: absolute;
    top: -150px;
    inset-inline-start: 8%;
    z-index: -1;
    transform: translate(0);
    animation: fall 15s ease-in-out infinite;
}
@keyframes fall{
   0% {
    top: -150px;
    transform: translateX(-50%) rotate(0deg);
}
25% {
    transform: translateX(-45%) rotate(-40deg);
}
50% {
    top: 400px;
    transform: translateX(-50%) rotate(-10deg);
}
75% {
    transform: translateX(-55%) rotate(-30deg);
}
100% {
    top: 1600px;
    transform: translateX(-50%) rotate(-10deg);
}
}
.abtus-section .parasuit img {
    max-width: 8vw;
    min-width: 40px;
}
.abtus-section .hand{
    position: absolute;
    z-index: -1;
    top: 5%;
    inset-inline-start: 0;
    background-color: #fff;
    transform-origin: bottom;
    border-radius: 99px;
}
.abtus-section .hand img{
    max-width: 10vw;
    min-width: 30px;
    animation: moveUpDown 10s ease-in-out infinite alternate-reverse;
}
@keyframes moveUpDown{
   0% {
    transform: translateY(-100px);
    opacity: .5;
}
50% {
    transform: translateY(0);
    opacity: 1;
}
100% {
    transform: translateY(100px);
    opacity: .5;
}
}
.abtus-section .spade {
    position: absolute;
    top: 65%;
    inset-inline-end: 3%;
    z-index: -1;
}
.abtus-section .spade img{
    max-width: 5vw;
    min-width: 30px;
    animation: heart-pulse 4s ease-in-out infinite;
}
/* What we do */
.wwd-section{
  position: relative;
}
.wwd-section .spade{
  position: absolute;
  top: 75%;
  inset-inline-start: 5%;
  z-index: -1;
}
.wwd-section .spade img{
    max-width: 5vw;
    min-width: 30px;
    animation: heart-pulse 4s ease-in-out infinite;
}
.wwd-card {
    padding: 12px;
    background-color: var(--color-white);
    border-radius: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 10px 25px 0px rgb(253 131 54 / 15%);
}
.wwd-card .wwd-thumb{
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 15px;
}
.wwd-card .wwd-thumb img{
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.5s ease;
    transform: scale(1);
}
.wwd-card:hover .wwd-thumb img{
   transform: scale(1.2) rotate(10deg);
}
.wwd-card .wwd-thumb .tag {
    position: absolute;
    top: 20px;
    left: 10px;
}
.wwd-card .wwd-thumb .tag a{
    padding: 8px 24px;
    background-color: var(--primary-color);
    border-radius: 30px;
    color: var(--third-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    transition:all .5s ease;
}
.wwd-card:hover .wwd-thumb .tag a{
  background-color: var(--secondary-color);
  color: var(--color-white);
}
.wwd-card .wwd-content {
    padding: 0 20px 20px 20px;
}
.wwd-card .wwd-content h6{
  color: #005D34;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 8px;
  font-weight: 800;
  text-transform: capitalize;
}
.wwd-card .wwd-content h6 a{
  color: inherit;
}
.wwd-card .wwd-content h6:hover{
  color: #6b5103;
}
.wwd-card .wwd-content .desc{
  color: var(--muted-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.wwd-action{
  margin-top: 20px;
}
.site-btn.style-four{
  font-size: 14px;
  padding: 10px 30px;
  border: 1px solid #005D34;
  background-color: #005D34;
  color: #005D34;
}
.wwd-card:hover .site-btn.style-four{
  color: var(--color-white);
}
.site-btn.style-four::before, .site-btn.style-four:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    width: 50%;
    height: 100%;
    border-radius: 0;
    background-color: var(--color-white);
    transition: all .5s ease;
    z-index: -1;
}
.site-btn.style-four:after {
    inset-inline-start: unset;
    inset-inline-end: 0;
}
.wwd-card:hover .site-btn.style-four::before, .wwd-card:hover .site-btn.style-four:after{
  width: 0 !important;
}
.wwd-item{
  padding: 0 12.5px;
}
.slick-dots button:before{
  display: none !important;
}
.slick-dots li button:after {
    content: '' !important;
    font-family: slick;
    font-size: 5px;
    line-height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 23px;
    display: flex;
    height: 23px;
    text-align: center;
    color: black;
    border-radius: 50% !important;
    justify-content: center;
    align-items: center;
}
.wwd-slider .slick-dots button:after {
    border: 1px solid rgba(0,0,0,0);
}
.wwd-slider .slick-dots li.slick-active button:after {
    border-color: #005D34;
}
.wwd-slider .slick-dots {
    bottom: -50px !important;
}
.wwdact-wrap{
  display: flex;
  align-items: center;
  gap: 20px;
}
.wwdact-wrap #wwd-prev, .wwdact-wrap #wwd-next{
   height: 55px;
   width: 55px;
   display: flex;
   justify-content: center;
   align-items: center;
   border: none !important;
   border-radius: 50%;
   font-size: 22px;
   transition: all 0.4s ease-in-out;
}
.wwdact-wrap #wwd-prev{
  background-color: var(--primary-color);
  color: var(--third-color);
}
.wwdact-wrap #wwd-prev:hover{
  background-color: var(--secondary-color);
  color: var(--color-white);
}
.wwdact-wrap #wwd-next{
  background-color: var(--secondary-color);
  color: var(--color-white);
}
.wwdact-wrap #wwd-next:hover{
   background-color: var(--primary-color);
  color: var(--third-color);
}
/* CTA */
.cta-section{
  position: relative;
  overflow: hidden;
}
.cta-section .cta-lhs-wrap{
  position: relative;
  z-index: 1;
}
.cta-section .cta-block{
   height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0;
    z-index: 1;
}
.cta-section .cta-lhs-wrap::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(0,0,0,.3),rgba(0,0,0,.5));
    z-index: -1;
}
.cta-content{
  padding: 0 20px;
  text-align: center;
}
.cta-section .thumb {
    margin-bottom: 25px;
}
.cta-section .thumb i{
    font-size: 60px;
    color: var(--color-white);
}
.cta-section .content span{
   color: var(--color-white);
   text-transform: capitalize;
   font-size: 14px;
}
.cta-section .content .title-inner{
  color: var(--color-white);
  font-size: 40px;
  line-height: 50px;
  margin-top: 5px;
  font-weight: 700;
  margin-bottom: 0 !important;
}
.cta-section .cta-s {
    margin-top: 32px;
}
.cta-section .cta-img{
  position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.cta-section .cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-section .cta-center-wrap{
    z-index: 2;
    background-image: url('../img/shape/cta-mask.png');
    background-size: 100% 100%;
    position: relative;
    width: 138%;
    left: 50%;
    transform: translateX(-50%);
}
.cta-section .cta-center-wrap .cta-img{
    mask-image: url('../img/shape/cta-mask.png');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 98% 100%;
}
.cta-section .cta-center-wrap .cta-img img{
  object-position: left;
}
.parallax-image {
    transform: scale(1.3);
    transform-origin: 50% 100%;
}
.cta-rhs-wrap{
   position: relative;
  z-index: 1;
}
.cta-section .cta-rhs-wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
  -104deg,
  rgba(0,93,52,0) 1.9%,
  rgba(0,93,52,0.08) 18.93%,
  rgba(0,93,52,0.17) 29.72%,
  rgba(0,93,52,0.37) 47.05%,
  rgba(0,93,52,0.67) 56.36%,
  #005D34 73.4%,
  #005D34 95.2%,
  rgba(0,93,52,0.91) 103.44%
);
    z-index: -1;
}
/* cta form */
.cta-form-section{
    position: relative;
    z-index: 2;
    overflow-x: clip;
}
.cta-form-section .cta-form-bg{
    position: absolute;
    inset-inline: 0;
    inset-block-start: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.cta-form-section .cta-form-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-form-section .cta-form-bg:after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(-104deg,rgba(12,26,23,0) 1.9%,rgba(9,31,27,.08) 15.92%,rgba(9,31,27,.17) 24.99%,rgba(9,31,27,.37) 29.75%,rgba(9,31,27,.67) 56.36%,#091f1b 73.4%,#091f1b 95.2%,rgba(9,31,27,.91) 103.44%);
    width: 100%;
    height: 100%;
}
.pattern-two{
  position: relative;
  overflow: hidden;
  background-image: url('../img/bg/pattern-2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f1edeb;
  z-index: 1;
}
.cta-form-section .spade{
    position: absolute;
    top: 40%;
    inset-inline-start: 78%;
    z-index: -1;
}
.cta-form-section .spade img{
    max-width: 20vw;
    min-width: 60px;
    animation: heart-pulse 4s ease-in-out infinite;
}
.cta-form-block{
   padding: 60px;
    border-radius: 30px;
    background: var(--color-white)
#FFF
;
    box-shadow: 0 10px 100px 0 rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* bottom: -140px; */
    /* margin-top: -140px; */
    background: rgb(239, 213, 197);
}
.cta-form-container{
  max-width: 560px;
}
.ctafm-slogan{
  color: #005D34;
  font-size: 32px;
  font-weight: 800;
  line-height: 42px;
  margin-bottom: 20px;
}
.cta-form-wrapper .form-group{
  margin-bottom: 15px;
}
.cta-form-wrapper .form-control, .cta-form-wrapper .form-select{
  border: 1px solid transparent;
  box-shadow: none !important;
  background-color: #efefef !important;
  padding: 15px 20px;
  border-radius: 30px;
  transition: 0.5s ease-in-out;
}
.cta-form-wrapper .form-control:focus, .cta-form-wrapper .form-select:focus{
  border-color: var(--secondary-color) !important;
}
.cta-form-wrapper .form-control::placeholder, .cta-form-wrapper .form-select::placeholder{
  color: #284d3d !important;
  transition: 0.5s ease-in-out;
}
.cta-form-wrapper .form-control:focus::placeholder, .cta-form-wrapper .form-select:focus::placeholder{
  padding-left: 5px;
}
.cta-rhs-thumb{
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    bottom: 0;
    border-radius: 0 30px 30px 0;
    z-index: -1;
    /* -webkit-mask-image: url('../img/shape/cta-rhs-shape.png'); */
    /* mask-image: url('../img/shape/cta-rhs-shape.png'); */
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left;
    mask-position: left;
}
.cta-rhs-thumb img{
    object-position: left;
    height: 100%;
    max-width: 30vw;
    border-radius: 0 30px 30px 0;
    object-fit: cover;
}
/* Testimonials */
.testimonial-section{
  position: relative;
  padding: 240px 0 100px;
  background-image: url('../img/bg/testimonial-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  z-index: 1;
  overflow: hidden;
}
.testimonial-section .testi-shape{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.testimonial-item{
    padding: 40px;
    background-color: var(--color-white);
    border-radius: 30px;
    transition: all 0.5s ease;
    border: 1px solid var(--primary-color);
    position: relative;
    z-index: 1;
    transition: all .5s ease;
}
.testimonial-item .review{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}
.testimonial-item .review i{
    font-size: 18px;
    color: var(--primary-color);
}
.testimonial-item blockquote{
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--muted-color);
}
.testimonial-item blockquote q{
  font-weight: 600;
}
.testimonial-item .author-info{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.testimonial-item .author-info .author-thumb {
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-item .author-info .author-thumb img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-item .author-info .author-name{
    font-weight: 700;
    color: #005D34;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 8px;
}
.testimonial-item .author-info  .author-designation{
  color: var(--muted-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0 !important;
}
.testimonial-item .quote {
    position: absolute;
    z-index: -1;
    top: 30px;
    inset-inline-end: 20px;
}
.testimonial-item .quote img{
    opacity: .05;
    max-width: 10vw;
    min-width: 20px;
}
.testimonial-slick{
  padding: 0 12.5px;
}
/* Gallery */
.gallery-head{
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 4;
}
.gallery-section{
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.gallery-section .gallery-inner-wrapper{
    width: 100%;
    margin-inline: auto;
    position: relative;
    z-index: 3;
}
.gallery-section .gallery-inner-wrapper::before, .gallery-section .gallery-inner-wrapper::after{
    content: "";
    position: absolute;
    width: 500vw;
    height: 500vw;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: var(--color-white);
    z-index: 3;
}
.gallery-section .gallery-inner-wrapper::before{
  bottom: 80%;
}
.gallery-section .gallery-inner-wrapper::after{
  top: 85%;
}
.gallery-item{
  padding: 0 12.5px;
}
.gallery-card {
	position: relative;
	overflow: hidden;
}
.gallery-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(21, 21, 21, .60);
	transform: scaleX(0.7) rotateX(20deg);
	transition: all 0.4s linear;
	opacity: 0;
	z-index: 1;
  pointer-events: none;
}
.gallery-card:hover::before {
	transform: scaleX(1.0) rotateX(0deg);
	transition: all 0.4s linear;
	opacity: 1;
	transition-delay: 300ms;
}
.gallery-card img {
    min-height: 620px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    /*height: 280px;*/
}
.gallery-card-d img {
    min-height: 620px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    height: 280px;
}
.gallery-card .ico-wrap{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    outline: 2px dashed var(--color-white);
    outline-offset: 5px;
    border-radius: 50%;
    transform: translate(-50%, 40px) scale(0.8);
    opacity: 0;
    z-index: 2;
    transition: all 0.5s cubic-bezier(.25,.8,.25,1);
    cursor: pointer;
}
.gallery-card .ico-wrap i{
  font-size: 23px;
  color: var(--color-white);
}
.gallery-card:hover .ico-wrap{
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.gallery-card .ico-wrap:hover{
  background-color: var(--secondary-color);
}
.fancybox__container{
  z-index: 105000 !important;
}
/* Events */
.event-card{
  position: relative;
  display: block;
  background: var(--color-white);
  border-radius: 30px;
  padding: 30px 30px 30px;
  margin-bottom: 30px;
  box-shadow: 
    0 5px 15px rgba(0,0,0,0.04),
    0 15px 35px rgba(0,0,0,0.06);
}
.event-card .event-inner{
    position: relative;
    display: flex;
    align-items: stretch;
}
.event-card .event-inner .event-thumb{
    position: relative;
    display: block;
    height: 100%;
    max-height: 100%;
    width: 35%;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}
.event-card .event-inner .event-thumb::after{
    background: rgba(255, 255, 255, 0.4);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}
.event-card:hover .event-inner .event-thumb::after{
    height: 100%;
    opacity: 0;
    transition: all 400ms linear;
}
.event-card .event-inner .event-thumb img{
  height: 100%;
  min-height: 300px;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .5s ease;
  transform: scale(1.05);
}
.event-card:hover .event-inner .event-thumb img{
  transform: scale(1);
}
.event-content{
    width: 65%;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.event-content .event-title{
  color: var(--heading-color);
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: 0.3s ease all;
}
.event-content .event-title a{
  color: inherit;
}
.event-content .event-title:hover{
  color:var(--secondary-color) ;
}
.meta-info{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 14px !important;
}
.meta-info li{
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7c85; 
}
.meta-info li i{
    color: var(--primary-color);
    font-size: 16px;
}
.event-desc{
  color: var(--muted-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0 !important;
}
.event-footer{
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid #d8dde1;
    margin-top: 24px;
    padding-top: 31px;
}
.event-footer .btn-box{
    position: relative;
    display: block;
}
.event-footer .btn-box a{
    position: relative;
    display: inline-block;
    color: #005D34;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 500ms ease;
}
.event-footer .btn-box a::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 2px;
    height: 1px;
    background: #005D34;
    transition: all 500ms ease;
    content: "";
}
.event-footer .author-box{
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
    padding-left: 20px;
}
.event-footer .author-box::before {
    position: absolute;
    top: -3px;
    left: 0;
    bottom: -4px;
    width: 1px;
    background: #1F1F1F;
    background: linear-gradient(180deg, rgba(31, 31, 31, 0) 5%, rgba(31, 31, 31, 0.99) 50%, rgba(31, 31, 31, 0) 93%);
    content: "";
}
.event-footer .author-box .img-box{
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.event-footer .author-box .img-box img{
  width: 100%;
 border-radius: 50%;
}
.event-footer .author-box .text-box{
    position: relative;
    display: block;
    margin-left: 15px;
    flex: 1;
}
.event-footer .author-box .text-box h4{
  color: var(--color-dark);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.event-footer .author-box .text-box p{
  color: var(--muted-color);
   font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    margin-bottom: 0 !important;
}
/* Footer */
footer, .footer-section{
  position: relative;
  overflow: hidden;
  background-color: #031F1B;
  z-index: 1;
}
footer .footer-top{
  padding: 80px 0 30px;
}
.footer-logo{
  margin-bottom: 20px;
}
.footer-logo img{
  max-width: 170px;
  height: auto;
}
.footer-desc{
  color: #949d9c;
    line-height: 28px;
}
.footer-social-wrapper{
  margin-top: 35px;
}
.footer-socials{
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-socials li a {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid hsla(0,0%,100%,.12);
    background-color: transparent;
    color: var(--color-white);
    font-size: 14px;
    transition: all .5s ease;
}
.footer-socials li:hover a{
  background-color: var(--primary-color);
}
.footer-title{
  position: relative;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 800;
  line-height: 34px;
  margin-bottom: 10px;
}
.footer-widget .line {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-widget .line span {
  display: inline-block;
  background-color: var(--primary-color);
  height: 2px;
  width: 10px;
}
.footer-widget .line .large-line {
    width: 50px;
}
.footer-links-wrapper{
  margin-top: 25px;
}
.footer-links li{
  position: relative;
  width: fit-content;
  padding-left: 22px; 
  color: #949d9c;
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
}
.footer-links li::before{
  content: "\e09f";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700; 
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #949d9c;
  transition: 0.3s ease;
}
.footer-links li a{
  color: #949d9c;
  font-weight: inherit;
  transition: 0.3s ease;
}
.footer-links li:hover::before{
  transform: translateY(-50%) translateX(4px);
  color: var(--secondary-color);
}
.footer-links li:hover a{
  color: var(--primary-color);
}
.footer-links li::after{
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 2px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    transition: all .5s ease;
}
.footer-links li:hover::after{
   width: 100%;
}
.cont-list li{
   position: relative;
   width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cont-list li::after{
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 2px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    transition: all .5s ease;
}
.cont-list li:hover::after{
  width: 100%;
}
.cont-list li .icon{
   color: var(--primary-color);
    font-size: 18px;
    margin-top: 6px;
}
.cont-list li .content a{
  font-size: 15px;
  color: #949d9c;
  position: relative;
  transition: .5s ease all;
}
.cont-list li:hover .content a{
  color: var(--secondary-color);
}
.footer-bottom{
  border-top: 1px solid hsla(0, 0%, 100%, .1);
  padding: 20px 0;
}
.copyright-text, .credit-text {
    color: var(--color-white);
    font-weight: 600;
}
.copyright-text .brand-text {
    text-transform: uppercase;
    color: var(--primary-color);
}
.credit-text a {
    color: rgb(0, 145, 191) !important;
}
.footer-section .sprade, .footer-section .sprade-light{
   position: absolute;
    z-index: -1;
    top: 27%;
    inset-inline-start: 4%;
}
.footer-section .sprade img, .footer-section .sprade-light img{
   max-width: 5vw;
    min-width: 30px;
    animation: heart-pulse 4s ease-in-out infinite;
}
.footer-section .sprade-light{
    bottom: 30%;
    top: unset;
    inset-inline-start: unset;
    inset-inline-end: 8%;
}
.footer-section .sprade-light img{
  animation-delay: 1s;
}

.common-banner {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /*margin-top: 90px*/
}

.common-banner:before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-104deg,rgba(12,26,23,0) 1.9%,rgba(9,31,27,.48) 37.31%,rgba(9,31,27,.17) 40.18%,rgba(9,31,27,.37) 47.05%,rgba(9,31,27,.67) 56.36%,#091f1b 73.4%,#091f1b 95.2%,rgba(9,31,27,.91) 103.44%);
    z-index: -2
}

.common-banner .sub-title {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
   
    color: var(--primary-color);
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 14px;
    margin-top: 0
}

.common-banner h2 {
    color: #fff;
    font-weight: 800
}

.common-banner .banner-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden
}

.common-banner .banner-bg .parallax-image-inner,.common-banner .banner-bg .parallax-image-wrap,.common-banner .banner-bg img {
    width: 100%;
    height: 100%
}

.common-banner .common-banner__content {
    margin-block:-6px -8px}

.common-banner .shape {
    position: absolute;
    inset-inline-start: 0;
    inset-inline-end: 0;
    top: -5px
}

.common-banner .shape img {
    width: 100%;
    height: 28px
}

.common-banner .sprade {
    position: absolute;
    z-index: -1;
    bottom: 9%;
    inset-inline-start: 7%
}

.common-banner .sprade img {
    max-width: 5vw;
    min-width: 30px;
    animation: pulse 4s ease-in-out infinite
}

@keyframes pulseSm {
    0% {
        transform: scale(1);
        opacity: .5
    }

    50% {
        transform: scale(1.2);
        opacity: 1
    }

    to {
        transform: scale(1);
        opacity: .5
    }
}
.common-banner .sub-title {
 display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-family: var(--secondary-font);
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}.common-banner h2 {
    color: #fff;
    font-weight: 800;
       font-size: 50px;
}

.common-banner .banner-bg img{
    width: 100%;
    height: 100%;
        max-width: 100%;
  
    border: 0;
    outline: 0;
    object-fit: cover;
    object-position: top;

}


.fc-profit {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: rgba(18, 47, 42, .1);
}

.fc-profit .shape-left {
    position: absolute;
    inset-inline-start: 0;
    top: 60%;
    bottom: 0;
    z-index: -1
}

.fc-profit .shape-left img {
    width: 100%;
    height: 100%;
    animation: moveTopBottom 4s ease-in-out infinite
}

.fc-profit .shape-right {
    position: absolute;
    inset-inline-end: 150px;
    bottom: 120px;
    z-index: -1
}

.fc-profit .shape-right img {
    animation: moveLeftRight 7s ease-in-out infinite;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,.25))
}

.fc-profit .fc-profit__tab-btns {
       /* padding: 40px 20px; */
    border-radius: 11px;
    /* border: 1px solid #000; */
    /* background: #fff; */
    flex-direction: column;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
}

.fc-profit .fc-profit__tab-btns svg {
    width: 40px
}

.fc-profit .fc-profit__tab-btns svg path {
    fill: var(--primary-color)!important;
    transition: all 0.5s ease
}

.fc-profit .profit__tab-btn {
    padding: 16px;
    border-radius: 10px;
    border: 1px dashed rgba(0,0,0,.23);
    background: #fff;
    width: 100%;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    color: var(--black);
    padding-block:21px!important;
    text-align: left;}

.fc-profit .profit__tab-btn i {
    position: absolute;
    top: 50%;
    inset-inline-end: 24px;
    transform: translateY(-50%);
    display: none;
    visibility: hidden;
    pointer-events: none
}

.fc-profit .profit__tab-btn:last-of-type {
    margin-bottom: 0
}

.fc-profit .profit__tab-btn:hover {
    background-color: var(--primary-color);
    color: #fff
}

.fc-profit .profit__tab-btn:hover svg path {
    fill: #fff!important
}

.fc-profit .profit__tab-btn:hover i {
    visibility: visible;
    pointer-events: all
}

.fc-profit .active {
    /*background-color: var(--primary-color);*/
    color: #fff
}

.fc-profit .active svg path {
    fill: #fff!important
}

.fc-profit .active i {
    visibility: visible;
    pointer-events: all
}

.fc-profit .more-txt {
    position: relative
}

.fc-profit .more-txt a {
    color: #232222;
    font-size: 16px
}

.fc-profit .more-txt a:hover {
    color: var(--primary-color)
}

.fc-profit .more-txt img {
    position: absolute;
    bottom: -10px;
    right: 30px;
    animation: moveLeftRightSm 3s linear infinite
}

.fc-profit .thumb {
    border-radius: 14px;
    border: 7px solid #fff;
    position: relative;
    z-index: 1
}

.fc-profit .thumb img {
    width: 100%;
    border-radius: 14px
}

.fc-profit .thumb .video-btn-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2
}

.fc-profit .thumb-lg {
    position: relative
}

.fc-profit .thumb-lg i {
    color: #fff!important
}

.fc-profit .thumb-lg img {
    min-height: 260px
}

.fc-profit .thumb-lg .base-img {
    position: absolute;
    top: 40px;
    inset-inline-start: 30px;
    min-height: auto;
    width: auto
}

.fc-profit .fc-profit-group {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.fc-profit li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4f5b73
}

.fc-profit li i {
    color: var(--primary-color)
}

.fc-profit .thumb-sm {
    max-width: 240px
}

.fc-profit .thumb-sm a {
    width: 50px!important;
    height: 50px!important;
    background-color: #fbda33
}

.fc-profit .thumb-sm a i {
    font-size: 14px
}

.fc-profit .thumb-sm .open-video-popup {
    animation: none!important
}
.pg-four .bg-fc {
    background-color: rgba(18, 47, 42, .1);
}.fc-profit__tab-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profit__tab-btn {
    width: 100%;
    padding: 15px 20px;
    background: #f4f4f4;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.profit__tab-btn.active {
    background:#f98540;
    color: #fff;
}

.fc-profit-single {
    display: none;
}

.fc-profit-single.active {
    display: block;
}
.bb {
        border-radius: 14px;
    border: 7px solid #fff;
}
.list-ul ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-ul ul li {
    color: #000;
    font-size: 18px;
    /*letter-spacing: 0.5px;*/
    margin-bottom: 10px;
    line-height: 30px;
    padding-left: 35px;
    position: relative;
    z-index: 0;
  
}

.list-ul ul li a {
    color: #f8b000;
}

.list-ul ul li:before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: url(../img/icon-tick.svg);
    left: 0;
    top: 5px;
    background-size: contain;
}



 .line {
    display: flex;
    align-items: center;
    gap: 6px;
}
 .line span {
  display: inline-block;
  background-color: var(--primary-color);
  height: 2px;
  width: 10px;
}
 .line .large-line {
    width: 50px;
}

.border-tb{
     clip-path: shape(from 0 0,curve to 4.17% 15.5px with 2.78% 15px,curve to 6.94% 9px with 5.56% 16px,curve to 9.72% 20px with 8.33% 2px,curve to 12.5% 44px with 11.11% 38px,curve to 15.28% 27.5px with 13.89% 50px,curve to 18.06% 20.5px with 16.67% 5px,curve to 20.83% 23.5px with 19.44% 36px,curve to 23.61% 10.5px with 22.22% 11px,curve to 26.39% 5.5px with 25% 10px,curve to 29.17% 9.5px with 27.78% 1px,curve to 31.94% 11.5px with 30.56% 18px,curve to 34.72% 20px with 33.33% 5px,curve to 37.5% 23px with 36.11% 35px,curve to 40.28% 28px with 38.89% 11px,curve to 43.06% 24.5px with 41.67% 45px,curve to 45.83% 25.5px with 44.44% 4px,curve to 48.61% 44.5px with 47.22% 47px,curve to 51.39% 31px with 50% 42px,curve to 54.17% 26.5px with 52.78% 20px,curve to 56.94% 23.5px with 55.56% 33px,curve to 59.72% 13.5px with 58.33% 14px,curve to 62.5% 26.5px with 61.11% 13px,curve to 65.28% 41px with 63.89% 40px,curve to 68.06% 28.5px with 66.67% 42px,curve to 70.83% 7.5px with 69.44% 15px,curve to 73.61% 12.5px with 72.22% 0px,curve to 76.39% 27.5px with 75% 25px,curve to 79.17% 28px with 77.78% 30px,curve to 81.94% 27px with 80.56% 26px,curve to 84.72% 34px with 83.33% 28px,curve to 87.5% 28px with 86.11% 40px,curve to 90.28% 31px with 88.89% 16px,curve to 93.06% 37px with 91.67% 46px,curve to 95.83% 23.5px with 94.44% 28px,curve to 100% 0 with 97.22% 19px,vline to 100%,curve to 95.83% calc(100% - 11px) with 97.22% calc(100% - 5px),curve to 93.06% calc(100% - 22.5px) with 94.44% calc(100% - 17px),curve to 90.28% calc(100% - 29.5px) with 91.67% calc(100% - 28px),curve to 87.5% calc(100% - 23.5px) with 88.89% calc(100% - 31px),curve to 84.72% calc(100% - 32px) with 86.11% calc(100% - 16px),curve to 81.94% calc(100% - 30px) with 83.33% calc(100% - 48px),curve to 79.17% calc(100% - 27px) with 80.56% calc(100% - 12px),curve to 76.39% calc(100% - 41px) with 77.78% calc(100% - 42px),curve to 73.61% calc(100% - 33px) with 75% calc(100% - 40px),curve to 70.83% calc(100% - 24px) with 72.22% calc(100% - 26px),curve to 68.06% calc(100% - 29px) with 69.44% calc(100% - 22px),curve to 65.28% calc(100% - 34px) with 66.67% calc(100% - 36px),curve to 62.5% calc(100% - 28.5px) with 63.89% calc(100% - 32px),curve to 59.72% calc(100% - 25px) with 61.11% calc(100% - 25px),curve to 56.94% calc(100% - 19px) with 58.33% calc(100% - 25px),curve to 54.17% calc(100% - 14.5px) with 55.56% calc(100% - 13px),curve to 51.39% calc(100% - 13px) with 52.78% calc(100% - 16px),curve to 48.61% calc(100% - 16px) with 50% calc(100% - 10px),curve to 45.83% calc(100% - 18.5px) with 47.22% calc(100% - 22px),curve to 43.06% calc(100% - 8.5px) with 44.44% calc(100% - 15px),curve to 40.28% calc(100% - 24px) with 41.67% calc(100% - 2px),curve to 37.5% calc(100% - 40px) with 38.89% calc(100% - 46px),curve to 34.72% calc(100% - 36.5px) with 36.11% calc(100% - 34px),curve to 31.94% calc(100% - 19.5px) with 33.33% calc(100% - 39px),curve to 29.17% calc(100% - 11px) with 30.56% calc(100% - 0px),curve to 26.39% calc(100% - 20px) with 27.78% calc(100% - 22px),curve to 23.61% calc(100% - 24px) with 25% calc(100% - 18px),curve to 20.83% calc(100% - 28.5px) with 22.22% calc(100% - 30px),curve to 18.06% calc(100% - 23px) with 19.44% calc(100% - 27px),curve to 15.28% calc(100% - 27px) with 16.67% calc(100% - 19px),curve to 12.5% calc(100% - 36px) with 13.89% calc(100% - 35px),curve to 9.72% calc(100% - 35px) with 11.11% calc(100% - 37px),curve to 6.94% calc(100% - 24px) with 8.33% calc(100% - 33px),curve to 4.17% calc(100% - 22.5px) with 5.56% calc(100% - 15px),curve to 0 100% with 2.78% calc(100% - 30px),vline to 0);

}
.border-t{
    clip-path: shape(from 0 100%,vline to 0,curve to 4.17% 15.5px with 2.78% 15px,curve to 6.94% 9px with 5.56% 16px,curve to 9.72% 20px with 8.33% 2px,curve to 12.5% 44px with 11.11% 38px,curve to 15.28% 27.5px with 13.89% 50px,curve to 18.06% 20.5px with 16.67% 5px,curve to 20.83% 23.5px with 19.44% 36px,curve to 23.61% 10.5px with 22.22% 11px,curve to 26.39% 5.5px with 25% 10px,curve to 29.17% 9.5px with 27.78% 1px,curve to 31.94% 11.5px with 30.56% 18px,curve to 34.72% 20px with 33.33% 5px,curve to 37.5% 23px with 36.11% 35px,curve to 40.28% 28px with 38.89% 11px,curve to 43.06% 24.5px with 41.67% 45px,curve to 45.83% 25.5px with 44.44% 4px,curve to 48.61% 44.5px with 47.22% 47px,curve to 51.39% 31px with 50% 42px,curve to 54.17% 26.5px with 52.78% 20px,curve to 56.94% 23.5px with 55.56% 33px,curve to 59.72% 13.5px with 58.33% 14px,curve to 62.5% 26.5px with 61.11% 13px,curve to 65.28% 41px with 63.89% 40px,curve to 68.06% 28.5px with 66.67% 42px,curve to 70.83% 7.5px with 69.44% 15px,curve to 73.61% 12.5px with 72.22% 0px,curve to 76.39% 27.5px with 75% 25px,curve to 79.17% 28px with 77.78% 30px,curve to 81.94% 27px with 80.56% 26px,curve to 84.72% 34px with 83.33% 28px,curve to 87.5% 28px with 86.11% 40px,curve to 90.28% 31px with 88.89% 16px,curve to 93.06% 37px with 91.67% 46px,curve to 95.83% 23.5px with 94.44% 28px,curve to 100% 0 with 97.22% 19px,vline to 100%, hline to 0);

}
#education{
    scroll-margin-top: 120px;

}

#support{
 scroll-margin-top: 120px;
}

#recognition{
 scroll-margin-top: 120px;
}


#publication{
 scroll-margin-top: 120px;
}
.WCU-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    padding:50px 32px 20px 0px;
    border-radius: 30px;
  background-color: #1fa561;
    /*box-shadow: rgb(53 59 64) 0px 7px 29px 0px;*/
    margin-bottom: 25px;
}
.wcu-avatar{
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #DCA358 0%, #A56924 40%, #DCA358 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px 25px 5px 25px;
    transition: all 300ms ease;
}
.wcu-avatar img{
    max-width: 60px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}
.WCU-card:hover .wcu-avatar {
    transform: scaleX(-1);
}
.WCU-card .WCU-title{
    font-size: 28px;
     color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    /*text-shadow: 0 2px 4px rgba(0,0,0,0.25);*/
}
.WCU-card .WCU-desc{
      color: #fff;
    line-height: 29px;
}
.VM-wid-wrap img{
    height: 550px;
    object-fit: cover;
}
.VM-tab-wrapper{
    margin-top: 50px;
}
.iconw{
        background: #FD8336;
    width: max-content;
    padding: 18px;
    clip-path: shape(from 87.45% 45.02%, curve to 92.48% 56.45% with 90.99% 50.00%, curve to 92.05% 69.35% with 93.97% 62.91%, curve to 82.42% 77.15% with 90.14% 75.80%, curve to 71.01% 83.22% with 74.69% 78.49%, curve to 61.91% 91.53% with 67.33% 87.95%, curve to 49.74% 96.95% with 56.49% 95.12%, curve to 38.70% 91.46% with 42.99% 98.79%, curve to 25.99% 85.79% with 34.41% 84.13%, curve to 15.38% 80.54% with 17.56% 87.44%, curve to 14.30% 66.90% with 13.20% 73.65%, curve to 13.33% 55.08% with 15.41% 60.16%, curve to 11.20% 44.30% with 11.25% 50.00%, curve to 11.95% 32.32% with 11.14% 38.59%, curve to 16.84% 21.25% with 12.75% 26.06%, curve to 27.31% 15.38% with 20.92% 16.44%, curve to 38.83% 11.12% with 33.70% 14.32%, curve to 50.39% 5.23% with 43.95% 7.93%, curve to 62.85% 5.60% with 56.83% 2.53%, curve to 72.70% 14.03% with 68.88% 8.67%, curve to 79.11% 24.51% with 76.53% 19.39%, curve to 82.80% 34.84% with 81.69% 29.63%, curve to 87.45% 45.02% with 83.91% 40.04%);
}
.accordion-item {
    margin-bottom: 24px;
    border: none !important;
    box-shadow: 0 0 10px #00000020;
    border-radius: 10px !important;
    padding: 26px 26px;
}
.accordion-item:first-of-type .accordion-button, .accordion-item:first-of-type {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}
.accordion-item:last-of-type .accordion-button.collapsed, .accordion-item:last-of-type {
    border-bottom-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}
.accordion-button {
    border-radius: 10px !important;
    font-size: 20px !important;
    font-weight: 700;
    color: #111;
    padding: 0 0 !important;
}
.accordion-body p {
    margin: 0;
}
.accordion-body {
    padding: 26px 0 0 !important;
}
button.accordion-button:before {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    background: #f2962f;
    right: -12px;
    z-index: 0;
    border-radius: 6px;
    top: 50%;
    transform: translateY(-50%);
}
.accordion-button:not(.collapsed) {
    color: #f2962f !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
.accordion-button::after {
    filter: brightness(0) invert(1) !important;
}
.accordion-button:focus {
    border-color: none !important;
    box-shadow: none !important;
}
.bob{
     clip-path: shape(from 87.45% 45.02%,curve to 92.48% 56.45% with 90.99% 50.00%,curve to 92.05% 69.35% with 93.97% 62.91%,curve to 82.42% 77.15% with 90.14% 75.80%,curve to 71.01% 83.22% with 74.69% 78.49%,curve to 61.91% 91.53% with 67.33% 87.95%,curve to 49.74% 96.95% with 56.49% 95.12%,curve to 38.70% 91.46% with 42.99% 98.79%,curve to 25.99% 85.79% with 34.41% 84.13%,curve to 15.38% 80.54% with 17.56% 87.44%,curve to 14.30% 66.90% with 13.20% 73.65%,curve to 13.33% 55.08% with 15.41% 60.16%,curve to 11.20% 44.30% with 11.25% 50.00%,curve to 11.95% 32.32% with 11.14% 38.59%,curve to 16.84% 21.25% with 12.75% 26.06%,curve to 27.31% 15.38% with 20.92% 16.44%,curve to 38.83% 11.12% with 33.70% 14.32%,curve to 50.39% 5.23% with 43.95% 7.93%,curve to 62.85% 5.60% with 56.83% 2.53%,curve to 72.70% 14.03% with 68.88% 8.67%,curve to 79.11% 24.51% with 76.53% 19.39%,curve to 82.80% 34.84% with 81.69% 29.63%,curve to 87.45% 45.02% with 83.91% 40.04%);

}
.mnc-fr {
    display: flex;
    gap: 20px;
}
.mncf-box {
     width: 100%;
    text-align: center;
    padding: 40px 20px 30px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
    border-radius: 30px;
    position: relative;
    z-index: 0;
    background: #fff;
    outline: 1px dashed #1fa561;
    outline-offset: -15px;
    height: 100%;
}
.mncf-box span {
   width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #f98540;
    border-radius: 50%;
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}
.mncf-box p, .mncf-box a {
    margin: 0;
    color: #222;
}
.mncf-box h5 {
    margin-bottom: 4px;
    font-weight: 600;
    color: #111;
}
.mncf-box:before {
    /*content: "";*/
    position: absolute;
    width: 120px;
    height: 120px;
    right: 10px;
    top: 10px;
    /*border: 3px solid #052733;*/
    border-left: none;
    border-bottom: none;
    border-radius: 0 20px 0 0;
    transition: all .5s ease-in-out;
    z-index: -1;
}
.mncf-box:hover:before {
    width: 80%;
    height: 80%;
    border: 3px solid #f2962f;
       border-left: none;
    border-bottom: none;
}
.mncf-box:hover span {
    background: #f2962f;
    transition: 0.5s;
}
.mnc-sr {
    margin-top: 70px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    border-radius: 30px;
    padding: 40px 40px;
}
.mncl-ic img {
    width: 100%;
    padding: 15px;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 50% 50% 50%;
    min-height: 600px;
    object-position: center right;
}
.mncl-ic {
    position: relative;
    z-index: 0;
    HEIGHT: 100%;
}
.mncl-ic::before {
    content: "";
    position: absolute;
    border: 6px solid #052733;
    border-radius: 25px 50% 50% 50%;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.form-control, .form-select {
    padding: 14px 20px 14px 20px !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    box-shadow: none !important;
    color: #757f95 !important;
}
.form-row {
    display: flex;
    gap: 20px;
    align-items: end;
    margin-bottom: 20px;
}
.form-group, .form-btn {
    width: 100%;
}
.mncr-form {
    margin: 20px 0 0;
}
.form-btn {
    margin-top: 30px;
}.btn3 {
       border: 1px solid #1fa561;
    background-color: #074e2a;
    padding: 8px 8px 8px 28px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border-radius: 50px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
}.btn2 span, .btn3 span {
    background: #f98540;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transform: rotate(-40deg);
}
.cta-form-section .spade1 {
    position: absolute;
    top: 53%;
    inset-inline-start: 68%;
    z-index: 1;
}
.cta-form-section .spade1 img {
    max-width: 20vw;
    min-width: 60px;
    animation: none;
}

.gallery-card-d img {
   min-height: auto;
}
.gallery-card-d::before {
  
    border-radius: 20px;
}
.team {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%
}

.team,.team .team__single {
    overflow: hidden
}

.team .team__single:hover .team__single-thumb img {
    transform: scale(1.04)
}

.team .team__single:hover .team__single-thumb:before {
    visibility: visible;
    opacity: 1
}

.team .team__single:hover .team__single-content {
   /*background-color: #e9e1dd;*/
}

.team .team__single:hover .team__single-content h6 {
    color: var(--white)
}

.team .team__single:hover .team__single-content p {
    color: var(--base-color)
}

.team .team__single:hover .team__single-content__icon {
    background-color: var(--base-color);
    color: var(--secondary-color)
}

.team .team__single:hover .team__single-content__icon i {
    transform: rotate(45deg)
}

.team .team__single:hover .team__single__thumb-social {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0)
}

.team .team__single-thumb {
    position: relative;
    z-index: 1
}

.team .team__single-thumb:before {
 content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 278.326px;
    background: #f985402e;
    filter: blur(50px);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.team .team__single-thumb a {
    width: 100%;
    border-radius: 10px 10px 0 0;
    overflow: hidden
}

.team .team__single-thumb img {
    width: 100%;
border-radius: 10px;
    transition: all 0.5s ease;
    min-height: 260px
}
.team__single-wrapper{     background-color: #fff;
    padding: 20px;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .15);
}

.team .team__single-content {
   
   
    transition: all 0.5s ease;
    
}

.team .team__single-content h6 {
       margin-top: 20px;
    font-weight: 800;
    color: var(--secondary-color);
            font-size: 20px;
        line-height: 22px;
        margin-bottom: 0;
}
.team .team__single-content h6 a {
     font-weight: 700;
    color: #f98540;
    font-size: 19px;
    line-height: 28px;
}
.team .team__single-content p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    transition: all 0.5s ease;
    line-height: 28px;
    padding-top: 8px;
}

.team .team__single-content__icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--white);
    z-index: 3;
    cursor: pointer;
    transition: all 0.5s ease
}

.team .team__single-content__icon i {
    font-size: 16px;
    transition: transform .3s ease-in-out
}

.team .team__icons {
    position: absolute;
    bottom: -20px;
    inset-inline-end: 20px
}

.team .team__single__thumb-social {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20%);
    transition: all 0.5s ease
}

.team .team__single__thumb-social ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px
}

.team .team__single__thumb-social a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--secondary-color);
    font-size: 16px;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.25)
}

.team .team__single__thumb-social a:hover {
    background-color: var(--base-color);
    color: var(--secondary-color)!important
}

.team .spade {
    position: absolute;
    top: 18%;
    inset-inline-end: 3%;
    z-index: -1
}

.team .spade img {
    max-width: 5vw;
    min-width: 30px;
    animation: pulse 4s ease-in-out infinite
}
#mission-vision{
    scroll-margin-top: 120px;
}
.img-top{
     position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 999;
    background: #1fa561;
    padding: 2px 17px;
    color: #fff;
    border-radius: 50px;
}.donation-card {
      padding: 30px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); border: 1px solid #f1f1f1; transition: 0.3s ease; background: #f98540;
}

.donation-card:hover {
    transform: translateY(-5px);
}

.donation-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.donation-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    padding: 10px 0;
   border-bottom: 1px dashed #eeeeee38;
}

.donation-item span {
   color: #000;
    font-size: 17px;
}

.donation-item strong {
       color: #000;
    font-weight: 600;
    text-align: right;
    font-size: 16px;
}
.cta-form-section,
.container,
.row {
    overflow: visible !important;
}
.donation-item.full {
    flex-direction: column;
}

.donation-item.full strong {
    text-align: left;
    margin-top: 5px;
}

.copy-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: #c97b63;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.copy-btn:hover {
    background: #a85f49;
}