/* =======================================================
General Style
=========================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
body{
    font-family: 'Poppins', sans-serif;

}

a:hover{
    text-decoration: none;}
    .heading{
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .heading h1{
        text-transform: capitalize;
        position: relative;
        color: #000;
        font-weight: 700;
        font-size: 50px;
    }
    .heading h1::before{
        content: "";
        position: absolute;
        width: 150px;
        height: 5px;
        background-color: #503b28;
        bottom: -10px;
        display: flex;
        right: 50%;
        transform: translateX(50%);
    }
    .demo-row .text-center h2{
      text-transform: capitalize;
      position: relative;
      color: #000;
      font-weight: 700;
      font-size: 50px;
  }
  .text-center h2::before{
      content: "";
      position: absolute;
      width: 150px;
      height: 5px;
      background-color: #503b28;
      bottom: -10px;
      display: flex;
      right: 50%;
      transform: translateX(50%);
  }

    .heading-slider h1::before{
        content: "";
        position: absolute;
        width: 150px;
        height: 5px;
        background-color: white;
        bottom: -10px;
        display: flex;
        right: 50%;
        transform: translateX(50%);
    }
    
    .heading.white h1{
        color: #fff;
    }
    .heading.color h1::before{
        background-color: #fff;
    }
/* Loader */
.loader-container{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #0b4f12;
    z-index: 9999;
}
.loader-container .loader-wrap{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: white;
    animation-timing-function: cubic-bezier(0, 2, 2, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }

/*=====================================
Navigation Bar #StickyNavBar
======================================*/
.nav-bar-section{
    position:absolute;
    z-index: 999;
    width: 100%;
}
.popup-menu {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 350px;
    height:2000px;
    color:#ffff;
    border-radius: 10px;
  }
  #menu-list {
    position: absolute;
    top: 10px;
    list-style: none;
    color: #ffff;
    z-index: 9999;
    background-color:#0c4f12;
    line-height: 50px;
    padding-top: 100px;
    display: inherit;
    height:200vh;
  }
  .popup-menu .side-menu-close{
    color: #248FC5;
    border-radius: 50%;
    background-color: #503b28;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    top:0px;
    right: 300px;
    position: absolute;
    z-index: 9999;
}

  .side-nav-header {
    border-bottom: 1px solid #9999;
  }
 
  .dropdown-menu-link-container  ul.dropdown-links{
    position: absolute;
    display: none;
    background-color: white;
    padding: 20px 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 20%);
    width: 230px;
    right: 0;
}
.dropdown-menu-link-container ul.dropdown-links.show{
    display: block;
}
.dropdown-menu-link-container ul.dropdown-links.hide{
    display: none;
}
.dropdown-menu-link-container ul li{
    line-height: 1.5;
    padding: 8px 0px;
    
}
.nav-bar-section .nav-top-container{
    border-bottom: 1px solid #0c4f12;
    padding: 10px 0px;
    margin-bottom: 10px;
    transition-duration: .5s;
}
.nav-bar-section .nav-top-container .nav-top-wrap{
    display: flex;
    width: 100%;
    align-items: center;
}
.nav-bar-section .nav-top-container span{
    color: #fff;
    display: flex;
    width: 100%;
}
.nav-bar-section .nav-top-container span a{
    color: white;
    font-size: 130%;
}
.nav-bar-section .nav-top-container span a:first-child{
    display: flex;
    margin-right: auto;
}
.nav-bar-section .nav-top-container button.theme-btn{
    padding: 5px 20px;
    border: 2px solid #669999;
    transition-duration: .5s;
}
.nav-bar-section .nav-top-container button.theme-btn:hover{
    background-color: transparent;
    color: #669999;
    transition-duration: .5s;
}
.nav-bar-section .is-sticky .nav-top-container button.theme-btn{
    border-color: #fff;
}
.nav-bar-section .nav-bottom-container .icons-container{
    display: inline-flex;
}
.nav-bar-section .nav-bottom-container .icons-container .menu-button-container{
    margin-left: 5px;
    padding-left: 13px;
    border-left: 2px solid white;
    display: none;
    
}
.nav-bar-section .is-sticky .nav-bottom-container .icons-container .menu-button-container{
    border-color: #503b28;
    
}
.nav-bar-section .nav-bottom-container .icons-container .menu-button-container button{
    color: #503b28;
    border-radius: 50%;
    background-color: white;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    
}

.nav-bar-section .is-sticky .nav-bottom-container .icons-container .menu-button-container button{
    color: white;
    background-color: #503b28;
   
}
.nav-bar-section .nav-bottom-container .company-log-container, .nav-bar-section .nav-bottom-container .icons-container{
    width: 200px;
}
.nav-bar-section .nav-links-container{
    margin: 0px auto;
}
.nav-bar-section .nav-links-container ul{
    list-style: none;
    display: flex;
    padding: 0px;
    margin-bottom: 0px;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container{
    position: relative;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container a.link::after{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container ul{
    position: absolute;
    display: none;
    background-color: #FBFFFF;
    top: 50px;
    padding: 20px 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 20%);
    width: 230px;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container ul.dropdown-links.show{
    display: block;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container ul li{
    line-height: 1.2;
    padding: 8px 0px;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container ul li a{
    color: #0D0D0D;
    text-decoration: none;
}
.nav-bar-section .nav-links-container ul li.dropdown-menu-link-container ul li a.active{
    color:#503b28;
}
.nav-bar-section .is-sticky .nav-links-container ul li.dropdown-menu-link-container ul{
    top: 65px;
}
.nav-bar-section .nav-links-container ul li{
    padding: 0px 15px;
}
.nav-bar-section .nav-links-container ul li a{
    color: white;
    position: relative;
    cursor: pointer;
    font-size: 130%;
}
.nav-bar-section .is-sticky .nav-links-container ul li a{
    color: #0D0D0D;
}
.nav-bar-section .is-sticky .nav-links-container ul li a.link.active{
    color:#503b28;
}
.nav-bar-section .is-sticky .nav-links-container ul li a::before{
    background-color: #0D0D0D;
}
.nav-bar-section .nav-links-container ul li a.active::before, .nav-bar-section .nav-links-container ul li a:hover::before{
    width: 100%;
    transition-duration: .5s;
}
.nav-bar-section .is-sticky .nav-links-container ul li a.active::before, .nav-bar-section .is-sticky .nav-links-container ul li a:hover::before{
    background-color: #503b28;
}
.nav-bottom-container .row{
    align-items: center;
}
.nav-bar-section .icons-container ul{
    list-style: none;
    display: inherit;
    justify-content: end;
    padding: 0px;
    margin: 0;
    align-items: center;
    margin-left: auto;
}
.nav-bar-section .icons-container ul li{
    padding: 0px 5px;
}
.nav-bar-section .icons-container ul li a{
    color:white;
    font-weight: bold;
}
.nav-bar-section .is-sticky .icons-container ul li a{
    color: #0D0D0D;
}
.nav-bar-section .icons-container ul li a i{
    font-size: 20px;
}

.nav-bar-section .is-sticky .sticky-header{
    background-color: #ffffff;
    box-shadow: 0px -2px 9px rgba(0,0,0,0.7);
}
.nav-bar-section .is-sticky .nav-top-container{
    height: 0;
    overflow: hidden;
    padding: 0;
    margin-bottom: 0;
    border-bottom: none;
    transition-duration: .5s;
}
.nav-bar-section .is-sticky .nav-bottom-container{
    padding: 25px 0px;
    transition-duration: .5s;
}

  /*=====================================
  End NavBar
  ======================================*/


/* footer section */
.footer-section{
    padding: 40px 0px 0px;
    background-color: #0c4f12;
    color: #fff;
    
}
.footer-section footer h5{
    margin-bottom: 20px;
    font-weight: 700;
    padding-left: 10px;
    font-size: 28px;
}
.footer-section footer ul{
    list-style: none;
    padding-left: 13px;
}
.footer-section footer ul li{
    margin-bottom: 15px;
}
.footer-section footer ul li a{
    color: #fff;
}
.footer-section footer .contact-us ul li{
    display: flex;
}
.footer-section footer .contact-us ul li span{
    font-size: 35px;
    margin-right: 3px;
}
.footer-section footer .span a{
    font-size: 35px;
    margin-right: 3px;
}
.footer-section footer .contact-us .social-icons-container{
    display: flex;
}
.footer-section footer .contact-us .social-icons-container li{
    margin-right: 10px;
}
.footer-section footer .contact-us .social-icons-container a{
    height: 40px;
    width: 40px;
    border: 1px solid #fff;
    border-radius: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aa8559;
}
.footer-section footer .contact-us .social-icons-container a span{
    margin-right: 0;
    font-size: 20px;
    color: #aa8559;
    margin-top: 30%;
}
.footer-section footer .copy-right{
    border-top: 2px solid #fff;
}
.footer-section footer .copy-right p{
    text-align: center;
    margin-bottom: 0px;
    padding: 10px 0px;
}
.footer-section footer .copy-right p h6{
    color: #aa8559;
}
.copy-right a{
    color: #aa8559;
}

/* =======================================================
Home page Style
=========================================================*/
.home-banner-section {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
background-color: rgba(12, 79, 18, 0.699); 
color: #fff; 
}

#hero-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover; 
}

.hero-content {
position: absolute;
top: 25%;
left: 5%;
z-index: 1;
color: white;
background-color: rgba(12,79,18, 0.699);
}
.hero-content .text-container{
width: 420px;
height: 450px;
}

/* General styles */
.home-about-us-section {
    padding: 60px 0;
    z-index: 1;
  }
  .home-about-us-section .col-lg-5{
    margin-top:3%;
  }
  .home-about-us-section .ipad img {
    height: 95%;
    position: absolute;
    width: 110%;
    border-radius: 8%;
  }
  .home-about-us-section video {
    z-index: 3;
    position: fixed;
    margin-top: 35px;
    left: 8%;
  }
  .home-about-us-section .text-content-side h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 9px;
    text-transform: uppercase;
  }
  .home-about-us-section .text-link {
    font-size: 20px;
    position: bottom;
  }
  .home-about-us-section .text-content-side h1 span {
    font-weight: 400;
    color: #003d6c;
  }
  .home-about-us-section .text-content-side p {
    color: black; 
  }
  .theme-white-btn {
    background-color:#0b4f12;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #fff;
    color: white;
    font-weight: 600;
    font-size: 20px;
    display: inline-block;
    cursor: pointer;
}
.theme-white-btn:hover {
    background-color: white;
    color: white;
    border: 2px solid #503b28;
}
/*////////////////////////////////////
about
////////////////////////////////////*/
.home-banner-slider .carousel{
    height: 100vh;
    margin-top: 0px;
    width: 100v;
    overflow: hidden;
    position: relative;
}
.home-banner-slider .carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.home-banner-slider .carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay-contact {
    position: absolute;
    top: 32%;
    right: 5%;
    z-index: 1;
    color: white;
    background-color: rgba(12,79,18, 0.699);
    width: 30%;
}
.overlay-project {
    position: absolute;
    top: 50%;
    left: 7%;
    z-index: 1;
    color: white;
    background-color: transparent;
}
.overlay-project .text-container h1{
    font-size: 55px;
}
.intro-section{
    padding: 40px 0;
}


.overlay-innovation{
    position: absolute;
    top: 30%;
    left: 10%;
    z-index: 1;
    color: white;
    padding: 10px;
    background-color: rgba(12,79,18, 0.699);
  }
  .overlay-innovation .text-wrap-about{
    width: 100%;
  }
  .overlay-innovation h1{
    font-size: 52px;
  }

  .overlay-resource {
    position: absolute;
    top: 35%;
    right: 9%;
    z-index: 1;
    color: white;
    background-color: rgba(12,79,18, 0.699);
  }  
  .overlay-waste {
    position: absolute;
    top: 50%;
    left: 7%;
    z-index: 1;
    color: white;
    background-color: transparent;
  }
  .overlay-waste h1{
    font-size: 50px;
  }
  .overlay-faq {
    position: absolute;
    top: 35%;
    left: 5%;
    z-index: 1;
    color: white;
    background-color: rgba(12,79,18, 0.699);
  }
  .overlay-about {
    position: absolute;
    top: 25%;
    left: 60%;
    z-index: 1;
    color: white;
    padding: 10px;
    background-color: rgba(12,79,18, 0.699);
  }
  .overlay-about .text-wrap-about{
    width: 100%;
  }
  .overlay-about h1{
    font-size: 52px;
  }
/* =======================================================
About us page Style
=========================================================*/
.about-us-section{
    padding: 60px 0;
}
.about-us-container .side-btn{
    list-style: none;
    padding-left: 0px;
}
.about-us-container .side-btn li{
    margin: 10px 0px;
  }
  .about-us-container .side-btn a{
    border: 1px solid #0c4f12;
    width: 100%;
    text-align: left;
    padding: 15px 12px;
    font-weight: bold;
  }
  .tab .center-image img {
    max-width: 100%; 
    height: auto; 
    display: block;
    margin: 0 auto;
  }
  .about-us-container .tabs-container .tab{
    display: none;
  }
  .h1{
    font-weight: bold;
  }
  .about-us-container .tabs-container .tab.show{
    display: block;
  }
  .about-us-container .tabs-container .tab .each-section{
    margin-bottom: 20px;
  }
  .about-us-container .side-btn a.active, .about-us-container .side-btn a:hover{
    background-color:#0c4f12;
    color: #ffff;
  }
  .about-us-section .about-us-container{
    position: relative;
  }
  .about-us-section .about-us-content{
    background-color: #248FC5;
    padding: 30px;
    position: absolute;
    top: 5%;
    left: 35%;
    box-shadow: -20px 5px 14px -15px rgba(0,0,0,.13);
    color: #ffffff;
    border-radius: 4px;
  } 
  .statements-container {
    margin-top: 20px;
  }
  .each-statement {
    text-align: center;
    padding: 30px 20px;
    color: #fff;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 20px -10px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
    transition-duration: .5s;
    background-color: #0c4f12;
  }
  .each-statement:hover{
    background-color:#aa8559 ;
    color: #fff;
    transition-duration: .5s;
  }
  .each-statement:hover .icon-container span{
    color: #fff;
  }
  
  .each-statement .icon-container{
    margin-bottom: 10px;
  }
  .each-statement .icon-container span{
    font-size: 60px;
    color: #fff;
  }
  .each-statement h4{
    font-weight: bold;
  }
  
  .disc {
    padding-left: 15px;
  }
  .disc li{
    list-style: disc;
  }
  /* Our values */
  .each-value {
    padding: 20px;
    /* border: 1px solid #248FC5; */
    border-radius: 4px;
    height: 100%;
    box-shadow: 0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
    transition-duration: .5s;
    background-color: #0c4f12;
    color: #fff;
  }
  .each-value:hover{
    background-color: #503b28;
    color: #fff;
    transition-duration: .5s;
  }
  .each-value .icon-container{
    margin: auto;
    margin-bottom: 20px;
    width: 90px;
  }
  .each-value h5{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
  }
/* team */


.each-team-wrap{
    text-align: center;
}
.each-team-wrap .team-pic-container{
    width: 220px;
    height: 180px;
    border: 2px solid #0c4f12;
    margin: auto;
}
.each-team-wrap .team-content{
    border-radius: 5px;
    transition-duration: .5s;
    background-color: #0c4f12;
    width: 200px;
    height: 100px;
    margin-left: 27px;
   
}
.each-team-wrap .team-content h3{
    font-weight: 800;
    font-size: 25px;
    color: #fff;

}
.each-team-wrap .team-content h5{
    color: #A8A8A8;
    font-size: 18px;
    text-decoration: none;
}
.each-team-wrap .team-content span{
    width: 100px;
    height: 3px;
    background-color: #fff;
    margin: auto;
    margin-top: 30px;
}
.each-team-wrap .team-content:hover{
    background-color: #aa8559;
    color: #fff;
    transition-duration: .5s;
}
.each-team-wrap .team-content:hover span{
    background-color: #fff;
}
.each-team-wrap .team-content:hover  .team-pic-container{
    border-color: #0c4f12;
}
#team {
    background: #eee !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #0c4f12;
    border-color: #0c4f12;
    box-shadow: none;
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #0c4f12;
}


section .section-title {
    text-align: center;
    color: #0c4f12;
    text-transform: uppercase;
}

#team .card {
    border: none;
    background: #ffffff;
    background-color: #0b4f12;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
    border-color: #0b4f12;
}


.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
  }
  
  .frontside .card,
  .backside .card {
    flex: 1;
    background-color: white;
    border-color: #0b4f12;
  }
  
.frontside .card:hover{
    background-color: #0b4f12;
    color: white;
}
.frontside .card .card-title :hover{
color:#fff;
}
.data-tab{
  display: none;
}
.frontside .card .card-title,
.backside .card .card-title {
    color: #0b4f12 !important;
}
.frontside .card .card-title:hover,
.backside .card .card-title:hover{
    color: #fff;
}
.frontside .card .card-title h4:hover{
    color: white;
}
.frontside .card .card-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.frontside .card a{
    color:white;
    background-color: #0b4f12;
    border: white 1px solid;
    border-radius: 50%;
    padding: 10px 13px;
}
.frontside .card .team-read-more button{
    margin-top: -20px;
    margin-bottom: 20px;
}
.team-read-more {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
  }
  .team-read-more button {
    background-color: #0c4f12; 
    border: white 1px solid;
    color: #fff; 
    border-radius: 0;
    cursor: pointer;
    padding: 10px 20px;
    transition: background-color 0.3s, color 0.3s; 
  }
  .team-read-more button:hover {
    background-color: #8B4513;
    border: none;
  }
  .webui-popover-inner {
    max-width: 340px;
  }
  .webui-popover-title{
    font-size: 100px;
  }
  
  .webui-popover .webui-popover-content{
    font-size: 15px;
  }
  /*////////////////////////////////////////////////////////////////////////////////
  Projects slider- overight main css
/////////////////////////////////////////////////////////////////////////////////*/
.advertise-business{
    padding: 50px 0;
    background-color: #0c4f12;
    color: #fff;
  }
  .advertise-business .heading-slider-projects h1::after {
    content: "";
    display: block;
    width: 160px;
    height: 5px;
    background-color: #fff;
    position: absolute;
    bottom: 27px;
    left: 50%;
    transform: translateX(-50%);
  }
  .heading-slider-projects h1 {
    text-align: center;
    font-size: 60px;
    font-weight: 800;
    padding-bottom: 30px;
    position: relative;
  }
  .advertise-business .heading-slider-project h1{
    text-align: center;
    font-size: 60px;
    font-weight: bolder;
    padding-bottom: 30px;
  }
  .our-content-creat h4{
    color: white;
    font-size: 45px;
  }
  .our-content-creat p{
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 0px;
  }
  .advertise-business .main-content img{
    width: 100%;
     height: auto;
     background-size: cover;
  }
  .advertise-business .main-content .Repurpose-image img{
    height: 56vh;
  }
  .advertise-business .main-content{
    display: flex;
    margin: auto;
    height: 100%;
  }
  .advertise-business .owl-nav button {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background-color: transparent;
    color: #503b28;
    font-size: 30px;
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    border: 1px solid #fff;
    font-weight: bolder;
  }
  
  .advertise-business .owl-nav button.owl-prev {
    left: -20px;
    color: #fff;
  }
  
  .advertise-business .owl-nav button.owl-next {
    right: -20px;
    color: #fff;
  }
  .advertise-business .heading-slider-project h1 {
    text-align: center;
    font-size: 60px;
    font-weight:800;
    padding-bottom: 30px;
    position: relative;
  }
  .advertise-business .heading-slider-project h1::after {
    content: "";
    display: block;
    width: 160px;
    height: 5px; 
    background-color: #fff; 
    position: absolute;
    bottom: 27px;
    left: 50%;
    transform: translateX(-50%);
  }
.services-section{
    padding: 60px 0;
    margin-bottom: 10%;
}
.services-section .service-container .col-lg-9 img{
   
    height: 70vh; 
    width: 110vh;
}
.services-section .Service-content{
    margin-left: 10%;
}

.services-section .service-container {
    position: relative;
}
.services-section .Service-content {
    position: absolute;
    top: -20%;
    padding: 30px;
    background-color: #0c4f12;
    color: #fff;
    left: 35%;
    border-radius: 4px;
    box-shadow: 0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
}
.services-section .Service-content .content-wrap .icon-container {
    margin-bottom: 25px;
    width: 100px;
}
.services-section .Service-content .content-wrap h4{
    color: #ffffff;
    font-size: 35px;
}
.services-section .content-wrap h4{
    font-size: 28px;
    font-weight: bold;
}

.services-section .content-wrap p{
    font-size: 16px;
}
/*///////////////////
outerwest
//////////////////////*/
.outerwest-section{
    padding: 20px 0;
    margin-bottom: 10%;
}
.outerwest-section .service-container .col-lg-9 img{
    height: 70vh; 
    width: 110vh;
    margin-left: 40%;
    z-index: 0;
}
.outerwest-section .Service-content{
    margin-left: 0%;
}
.outerwest-section .service-container {
    position: relative;
}
.outerwest-section .Service-content {
    position: absolute;
    top: -20%;
    padding: 30px;
    z-index: 2;
    background-color: #0c4f12;
    color: #fff;
    left: 0%;
    border-radius: 4px;
    box-shadow: 0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
}
.outerwest-section .Service-content .content-wrap .icon-container {
    margin-bottom: 25px;
    width: 100px;
}
.outerwest-section .Service-content .content-wrap h4{
    color: #ffffff;
    font-size: 35px;
}
.outerwest-section .content-wrap h4{
    font-size: 28px;
    font-weight: bold;
}
.outerwest-section .content-wrap p{
    font-size: 16px;
}
/* Hide the navigation arrows */
.container-partner{
    padding: 40px 0;
}
.container-partner .owl-carousel .owl-nav {
display: none !important;
}
.container-partner .main-content img{
    height: 200px;
    width: 200px;
}
 /* ============= Social proof section =============== */
 .social-proof-section{
    background-color: white;
    border: #000;
    padding: 40px 0;
}
.social-proof-section .each-social-proof-container{
    margin-left: auto;
    margin-right: auto;
}
    .social-proof-section .each-social-proof {
        color: white;
        text-align: center;
        background-color: #0b4f12;
        height: 120px;
        text-align: center;
        border-radius: 7px;
    }
.social-proof-section .each-social-proof h1{
    font-family: 'Baskervville', serif;
    font-weight: 800;
    font-size: 60px;
}
.social-proof-section .each-social-proof p{
    font-weight: 500;
    line-height: 1;
    font-size: 22px;
}
.social-proof-section .container .heading h1 {
  font-weight: 700;
  font-size: 50px;

}

.heading-type h1{
  text-align: center;
}
.each-social{
  color: white;
  text-align: center;
  background-color: #503b28;
  height: 80px;
  text-align: center;
  border-radius: 7px 7px 0px 0px;
}
.social-proof-section .container .image-box {
    height: auto;
    margin-bottom: -10%;
  }
  .center-image {
    text-align: center;
  }
  .social-proof-section .container .image-box .center-image img {
    max-width: 100%;
    height: auto; 
    display: block; 
    margin: 0 auto; 
  }
  
/*//////////////////////////////////////////////////
  GOVERNANCE STYLE
///////////////////////////////////////////////////*/
.insights-section {
    padding: 60px 0;
}
.industry-blog {
    width: 100%; /* Change width to 100% for responsiveness */
    margin-bottom: 20px;
}
.resource-links-section {
    padding: 60px 0;
    margin-bottom: 10%;
}
.blogs-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
}
.square {
    padding-bottom: 15px;
    background: white;
    border-radius: 50px;
    box-shadow: 0px 5px 20px #D9DBDF;
    transition: all 0.3s ease;
    width: 100%; /* Change width to 100% for responsiveness */
    margin-bottom: 20px; /* Adjust margin for responsiveness */
}
.square p {
    text-align: justify;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 15px;
    color: black;
    line-height: 18px;
    padding-top: 10px;
}
.resource-links-section .industry-blog .square {
    background-color: #8B4513;
    height: 600px; /* Change height to auto for responsiveness */
    padding: 0px 0px 10px 0px;
    border-radius: 20px 19px 50px 50px;
}
.resource-links-section .square .h1 {
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.square img {
    width: 100%;
    height: 225px;
}
.mask {
    clip: rect(0px, 350px, 220px, 0px);
    border-radius: 20px 20px 0px 0px;
}
.resource-links-section p {
    color: #fff;
}
.resource-links-section ul {
    list-style: none;
}
.resource-links-section .square .h1 {
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.square .h1 {
    text-align: left;
    margin-top: 10px;
    padding-left: 30px;
    color: #0b4f12;
    font-size: 24px;
}
.square .button {
    background-color: #0b4f12;
    color: white;
    width: 130px;
    padding: 10px 18px;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 70px;
    font-size: 18px;
    cursor: pointer;
}
.resource-links-section ul li {
    position: relative;
}
.resource-links-section ul li a {
    display: block;
    color: #fff;
    padding-left: 20px;
    position: relative;
    font-size: 20px;
}
.resource-links-section ul li a:hover {
    color: #0b4f12;
    font-weight: normal;
}
.resource-links-section ul li a:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
}
.resource-links-section .loadMore {
    display: block;
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
}
.resource-links-section .loadMore:hover {
    background-color: #fff;
    color: #000;
}
.hidden-resource-links {
    display: none;
}
.hidden-resource-links .fas {
    color: #fff;
}
.hidden-resource-links #loadLess:hover {
    color: #0b4f12;
    background-color: transparent;
    border: 2px solid #0b4f12;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .industry-blog {
        width: 50%; /* Adjust width for medium-sized screens */
    }
        .resource-links-section .industry-blog .square {
    background-color: #8B4513;
    height: auto; 
}
}

@media (max-width: 768px) {
    .industry-blog {
        width: 100%;
    }
}

/* FAQ section */
.faq-section{
    padding: 30px 0px;
}
.faq-section .card{
    border: none;
    border-radius: 0px;
    border-top: 2px solid #000;
}
.faq-section .card .card-header{
    background-color: transparent;
}
.faq-section .card button{
    width: 100%;
    text-decoration: none;
    text-align: left;
    color: #000;
    font-weight: 600;
    font-size: 25px;
    position: relative;
}
.faq-section .card button.collapsed::after{
    content: "\e874";
}
.faq-section .card button::after{
    position: absolute;
    content: "\e873";
    font-family: 'Linearicons-Free';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    right: 0;
}
/* =================================
contact Us Page Style
==================================*/
.contact-us-section{
    padding: 40px 0px;
}
.contact-us-section .contact-details-section{
    margin-bottom: 30px;
}
.contact-us-section .contact-details-section .contact-card-container{
    padding: 20px;
    border-radius: 5px;
    background-color: #0b4f12;
    color: #fff;
}
.contact-us-section .contact-details-section .contact-card-container .row{
    margin: 0;
    width: 100%;
}
.contact-us-section .contact-details-section .contact-card-container .each-contact-detail-wrap:nth-child(2){
    border: 2px solid #fff;
    border-top: none;
    border-bottom: none;
}
.contact-us-section .contact-details-section .contact-card-container .each-contact-detail-container .icon-container{
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 2px solid #fff;
    padding: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin: 0 60px ;
    margin-top: 0px;
}
.contact-us-section .contact-details-section .contact-card-container .each-contact-detail-container .icon-container i{
    font-size: 25px;
   
    
}
.contact-us-section .contact-details-section .contact-card-container .each-contact-detail-container h4{
    font-size: 18px;
    line-height: 1.5;
}
.contact-us-section .map-form-section{
    position: relative;
}
.contact-us-section .map-form-section .form-container h2{
    margin-bottom: 0px;
    font-weight: bold;
}

.contact-us-section .map-form-section .form-container .button-container{
    display: flex;
    justify-content: end;
}
.contact-us-section .map-form-section .form-container .button-container button{
    color: #fff;
    background-color:#0b4f12;
    ;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid #0b4f12;
    ;
}
.contact-us-section .map-form-section .form-container .button-container button:hover{
  background-color: #aa8559;
  color: #fff;
  border: 2px solid #aa8559;
}
.contact-us-section .map-form-section .map-section{
    position: absolute;
    width: 48%;
    right: 0;
    top: 0;
    bottom: 0;
}
.contact-us-section .map-form-section .map-section iframe{
  width:550px;
  height: 645px;
}
.contact-us-section .map-form-section .map-section .map-container{
    border-radius: 5px;
    overflow: hidden;
}
.form-wrap{
  border-width:3px; 
  border-style:solid; 
  border-color:#0b4f12; 
  border-radius: 2%;
}
.input-container{
    margin-bottom: 15px;
}
    .input-container input, .input-container textarea {
        background-color: transparent;
        border: 2px solid #0b4f12;
        ;
        color: black;
        width: 100%;
        padding: 10px 15px;
        border-radius: 5px;
    }
.input-container input:focus, .input-container textarea:focus{
    outline: none;
}

/* susbscribe popup */
.subcribe-model-section .modal-header{
    border-bottom: none;
}
.subcribe-model-section .close{
    color: #fff;
}
.subcribe-model-section .modal-dialog{
    max-width: 680px;
}
.subcribe-model-section .modal-content{
    background-color: #0c4f12;
    color: #fff;
}
.subcribe-model-section .modal-body{
    padding: 40px;
}
.subcribe-model-section .subs-btn {
    outline: none;
    border: none;
    margin: 18px 0;
    padding: 20px 40px;
    background: #ffffff;
    font-family: sans-serif;
    color: #282627;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}
.subcribe-model-section input{
    width: 100%;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 10px 15px;
    color: #fff;
    margin: 15px 0px;
}
.theme-nav-btn {
background-color: #0c4f12;
padding: 4px;
border-radius: 5px;
border: 2px solid #0c4f12;
color: white;
font-size: 15px;
display: inline-block;
cursor: pointer;
}
.theme-nav-btn:hover {
    background-color: #503b28;
    color: white;
    border: 2px solid white;
}
#response-message{
    color: #fff;
    font-weight: 800;
}
/* Modal styles */
#contactModal .modal-content {
    background-color: #0c4f12;
    margin: 5% auto;
    padding: 20px;
    border-radius: 5px;
    border: 2px solid white;
    color: white;
    text-align: center;
    width: 50%;
}
#contactModal form {
    grid-row-gap: 10px;
    text-align: left;
}
#contactModal form input,
#contactModal form textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid white;
    border-radius: 3px;
    color:#000;
    background-color: #fff;
}
#contactModal .close {
    color: white;
    margin-right: -90%;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
#contactModal .close:hover,
#contactModal .close:focus {
    color: black;
    text-decoration: none;
}
#contactModal input[type="submit"] {
    background-color: #503b28;
    color: white;
    border: 2px solid white;
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 40%;
    margin-left: 60%;
}
#contactModal input[type="submit"]:hover {
    background-color: white;
    color: #503b28;
}
