* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  /*
   :root{
    --main-color:#03315c;
    --second-color:#ffe459;
    --third-color:#045e07;
    --color2:#c6c6c6;
    --text-color:#fff;
    --text-color2:#000000;
    --icon-color:#e9c305;
    --btn-bg-color:#b9d8f6;
    --bg-color:#84b3a04a;
    --bg-color2:#e7f9ff;
    --btn-hover:#F6A919;
}
  */
  :root{
    --main-color:#0e3110;
    --second-color:#ffe459;
    --third-color:#045e07;
    --color2:#c6c6c6;
    --text-color:#fff;
    --text-color2:#000000;
    --icon-color:#e9c305;
    --btn-bg-color:#b9d8f6;
    --bg-color:#84b3a04a;
    --bg-color2:#e7f9ff;
    --btn-hover:#F6A919;
}
.p-100{
  padding: 100px 0px;

}
  body {
    font-family: Montserrat, sans-serif;
    background-size: 100% 200%;
    color: #000000;
    min-height: 100vh;
    font-size: 14px;
    overflow-x: hidden;
    top: 0px !important;
    /* overflow-y: hidden; */
  }
.heading-one, .heading-two{
    color:var(--main-color);
}
.main-page{
    margin: 0 auto;
}
.page-content{
    /* max-width: 90% !important; */
    max-width: 1320px !important;
    margin: 0 auto;
}
p{
    font-size: 18px;
    color: var(--main-color);
}
h1, h2,h3,h5,h6,p{
    color: var(--main-color);
}
.gf-text{
    padding: 50px 0;
    text-align: justify;
}
  /* lnaguage */
     /* Hide the "Powered by" text */
     .goog-logo-link:after {
      content: '';
    }
    .goog-te-gadget span {
      display: none !important;
    }
    .goog-te-banner-frame.skiptranslate {
      display: none !important;
    }

    .goog-te-gadget {
      color: transparent !important;
  }
    /* Hide the "Powered by Google Translate" */
    .goog-logo-link {
      display: none !important;
    } 
    /* Hide the Google branding icon */
    .goog-te-gadget span {
      display: none !important;
    }
    /* Additional frame adjustment */
    iframe {
      display: none;
    }
/* ===== Topbar Start ===== */
header{
  background-color: #ffffff;
}
.gf-TopMenu-sec{
  background-color: #0cb40c;
}
.gf-TopMenu .goog-te-gadget .goog-te-combo{
  padding: 5px 0 !important;
  border-radius: 3px !important;
  margin-top: 6px !important;
}
.gf-TopMenu{
  min-height: 60px;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-color);
}
.gf-TopMenu .address{
  color: var(--text-color);
  font-size: 15px;
}
.gf-TopMenu .icon{
  color: #FFF;
  font-size: 25px;
  padding-right: 5px;
}
.gf-TopMenu .glx_lang{
  border: none;
  padding: 5px;
  border-radius: 3px;
  margin-right: 50px;
  background-color: transparent;
  color: var(--text-color);
  max-height: 50px !important;
}
.gf-TopMenu .glx_lang option{
  background-color: var(--color2);
  color: #333;
  border: none;
}
.gf-TopMenu .glx_lang:hover{
  background-color: var(--main-color);
}
.gf-TopMenu .form-select{
  background-color: #FFF !important;
  border-color: #FFF !important;
}
/*.gf-TopMenu .form-select option:checked,*/
/*.gf-TopMenu .form-select option:hover,*/
/*.gf-TopMenu .form-select option:active{*/
/*  background: #0cb40c;*/
/*  color: #fff;*/
/*}*/

/* ===== Topbar End ===== */
/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}
.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}
.popup .popup__content {
    width: 50%;
    padding: 0px;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}
.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #0cb40c;
    transition: all .5s;
    z-index: 9;
}
.popup .popup__content .close:hover {
    background-color: var(--main-color);
}
.popup .popup__content .close:hover span {
    background-color: #FFF;
}
.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #FFF;
}
.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}
.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}
.left {
    display: flex;
    align-items: end;
    background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 47%)), url(../img/join-thumbnail.webp) no-repeat;
    background-size: cover;
    background-position: center;
    display: none;
}
.left .logo{
    height: auto;
    position: relative;
    z-index: 1;
}
.right {
    padding: 30px;
    background: #FFF;
    .title{
        font-family: Montserrat, sans-serif;
        font-weight: 700;
        font-style: normal;
        margin-bottom: 20px;
        color: #0cb40c;
        padding-block: 0;
    }
}
.pop-up-btn{
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #0cb40c;
    color: #FFF;
    border: none;
    text-align: center;
    border-radius: 8px;
}
 .iti{
    width: 100%;
}
.iti__country-list {
  z-index: 999999 !important;
}
.contact-btn{
    background: #0cb40c;
    color: #FFF;
}
.mb-50{
    margin-bottom: 50px;
}



  /* navbar */
  .logo img{
    width: 250px;
  }
  .gf-navbar {
    background: transparent;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 60px; */
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    
  }
  .sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .gf-navbar .logo {
    text-decoration: none;
    color: #122f48;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
  }
  
  /* nav menu button */
  
  .menu-btn {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
  }
  
  .gf-navbar .menu-btn__lines::before,
  .gf-navbar .menu-btn__lines::after {
    content: "";
    position: absolute;
  }
  
  .gf-navbar .menu-btn__lines,
  .gf-navbar .menu-btn__lines::before,
  .gf-navbar .menu-btn__lines::after {
    width: 1.5rem;
    height: 0.1rem;
    background: #132f48;
    transition: all 0.4s ease-in-out;
  }
  
  .gf-navbar .menu-btn__lines::before {
    transform: translateY(-0.5rem);
  }
  
  .gf-navbar .menu-btn__lines::after {
    transform: translateY(0.5rem);
  }
  
  .gf-navbar .gf-menu-items {
    display: flex;
    align-items: center;
  }
  
  .gf-navbar ul li {
    list-style: none;
    transition: 0.3s ease;
  }
  
  .gf-navbar ul li .arrow {
    transition: all 0.3s ease-out;
  }
  
  .gf-navbar ul li a {
    text-decoration: none;
    color: #112f48;
  }
  
  /* gf-dropdown menu */
  
  .gf-navbar .gf-dropdown {
    position: relative;
  }
  .expand-btn:after {
    content: " \25BE";
    opacity: 0.4;
    margin-left: 5px;
  }
  
  .gf-navbar .gf-dropdown-menu,
  .menu-right {
    position: absolute;
    background: #ffffff;
    /* width: 190px; */
    width: 280px;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
    top: 65px;
    border-top: 1px solid white;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  }
  
  .gf-navbar .menu-right {
    top: 0;
    left: 100%;
  }
  /* .gf-navbar .gf-dropdown-menu,
  .menu-left {
    left: unset;
    right: 0;
  } */
  .gf-navbar .gf-dropdown-menu,
  .menu-left {
    /* left: unset; */
    right: 0;
  }
  .gf-navbar .menu-left {
    left: -100%;
  }
  
  .gf-navbar .gf-menu-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1.5rem;
    font-size: 16px;
    font-weight: 600;
  }
  .gf-navbar .gf-menu-item:hover {
    /* color: #ff5722; */
    color: #ffffff;
    background-color: var(--main-color);
    border-radius: 2px;
  }
  
  .gf-menu-item.first-item {
    padding: 0.8rem 1rem;
  }
  
  .gf-navbar .gf-dropdown:hover .gf-dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .gf-navbar .gf-dropdown-right:hover .menu-right {
    left: 100%;
    opacity: 1;
    visibility: visible;
  }
  
  .gf-navbar .gf-dropdown-right:hover .menu-left {
    left: -100%;
  }
  .gf-dropdown-menu.sample, .menu-right.sample{
    padding: 0 !important;
  }
 
  /* mega menu  */
  
  .gf-navbar .mega-menu {
    position: absolute;
    left: 0;
    width: 100vw;
    top: 65px;
    border-top: 1px solid #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  }
  
  .mega-menu .content {
    background: #e9ecef;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 30%;
    justify-content: space-between;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    float: right;
  }
  
  .blog .content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .content .col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 3rem;
  }
  
  .content .col .img-wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: 20vw;
    overflow: hidden;
  }
  
  .content .col .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .content .col img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .content .col .img-wrapper:hover img {
    transform: scale(1.1);
  }
  
  .content .col .menu-title {
    color: #ff5722;
    font-size: 1.2rem;
    line-height: 3rem;
    font-weight: bold;
  }
  
  .content .col p {
    line-height: 1.2rem;
    margin-top: 5px;
    color: #112f48;
  }
  
  .content .col .mega-links {
    border-left: 1px solid #3c3c3c;
  }
  
  .content .col .read-more {
    font-size: 16px;
    display: flex;
    padding-top: 1rem;
    color: #03a9f4;
    transition: color 0.3s ease;
    justify-content: flex-end;
    padding-right: 10px;
  }
  
  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 1rem;
  }
  
  .gf-menu-items li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .content .col .read-more:hover {
    color: #ff5722;
  }
  
  /* container */
 
  

  /* animation menu hamburger */
  .menu-btn.open .menu-btn__lines {
    transform: translateX(1rem);
    background: transparent;
  }
  
  .menu-btn.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: #132f48;
  }
  
  .menu-btn.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: #132f48;
  }
  
  /* gf-top*/
  .gf-top{
    background-image: url("../img/home/17.jpg"); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 480px;
  }
  .gf-top-sec{
    height: 450px;
    width: 100%;
    /* position: relative; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  /* .gf-top-sec .gf-top-img{
    max-width: 1320px;
    overflow: hidden;
    margin: 0 auto;
  } */
  .gf-top .gf-top-text{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;


  }
  .gf-top .gf-top-text .gf-title{
    text-transform: capitalize;
    font-size: 3.5rem;
    padding: 0;
    margin: 0;
    line-height: 6.5rem;
    text-wrap: wrap;
    font-weight: 700;
    display: inline-block;
    background: #FFF;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .gf-top .gf-top-text .gf-sub-title span{
    text-transform: capitalize;
    font-size: 2.8rem;
    font-weight: 600;
    background-color: var(--text-color);
    padding: .8rem 1.5rem;
    border-radius: 10px;
    
  
  }
  .gf-top .gf-top-text .gf-sub-title{
   
    text-align: center;
  }
  .gf-top .gf-to-get-touch{
    display: flex;
    background-color: #0cb40c;
    width: 65%;
    padding: 1rem 1.5rem;
    position: absolute;
    left: 50%;
    bottom: -5%;
    transform: translate(-50%, -50%); 
    color: var(--text-color);
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
  }
  .gf-top .gf-to-get-touch p{
    font-size: 1.5rem;
    color: #FFF;
  }
  .gf-top .gf-to-get-touch .btn{
    font-size: 1.5rem;
    color: #0e3110;
    background-color: #FFF;
    padding: .1rem 1.5rem;
  }


  /* Social Share Icon */
 .share-btn-container {
  background: #0cb40c;
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 0px 5px 5px 0;
  position: fixed;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  z-index: 9999;
}
.share-btn-container a i {
  font-size: 30px;
  color: var(--text-color);
}
.share-btn-container a {

  transition: 500ms;
}
.share-btn-container a:hover {
  transform: scale(1.2);
}
.share-btn-container .fa-share-alt{
  color: #eeeeee;
}

  /* About  */
.gf-about{
  /* background-color: var(--btn-bg-color); */
  /* background-color: #eeefff; */
  background-color: #eef3ff;
  padding: 70px 0;
}
.gf-about .gf-about-sec h1{
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}
  .gf-about-sec .gf-about-founder{
    padding: 50px 0 50px 0;
    /* max-width: 800px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    }
  .gf-about-sec .gf-about-founder-img{
    display: block !important;
    text-align: center;
    }
  .gf-about-sec .gf-about-founder-text{
   /* background-color: #eef2f5; */
   margin-top: 50px;
   padding: 10px 20px;
   font-weight: 600;
   border-radius: 3px;
    }
  .gf-about-sec .gf-about-founder-text h2{
   font-weight: 600;
   font-size: 25px;
    }
  .gf-about-sec .gf-about-founder-img img{
    width: 250px;
    border-radius: 3px;
    background-color: #fff;
    border-radius: 10px;
  }

  .gf-about-journy{
  padding: 70px 0;
  }
  .gf-about-content h1{
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center
  }
  .new-gf-about{
      background-color: #0cb40c;
      .gf-about-sec h1, .gf-about-founder-text h2, .gf-about-founder-text p, p{
          color: #FFF;
      }
      
  }

  /* Who do we help */

  .gf-help h1{
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
  }
  .gf-help h1{
    font-size: 2.9rem;
    font-weight: 700;
    text-align: center;
  }

  .gf-help .gf-help-toggle{
text-align: center;
  }
  .gf-help .gf-help-toggle button{
    background-color: #ffe359;
    color: var(--text-color2);
    border: none;
    padding: .2rem 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 5px;
  }
  .gf-help .gf-help-toggle button:hover{
    background-color: #0cb40c;
    color: var(--text-color);
  }
  #ind-help-toggle-one{
    background-color: var(--main-color);
    color: var(--text-color);
    border-radius: 5px 15px 15px 5px;
    margin-right: -15px;
    z-index: 1;
    background-color: #0cb40c;
   color: var(--text-color)
   
  }
  .gf-help .gf-help-toggle{
    /* background-color: var(--main-color); */

    display: flex;
    margin: 0 auto;
    justify-content: center;
    border-radius: 5px;
  }

  #ind-help-toggle-content{
    padding-top: 60px;
  }
  #ind-help-toggle-content .card img{
    width: 100%;
    height: 250px;
    transition: all .3s ease-in-out;
  }
  #ind-help-toggle-content .card img:hover{
    transform: scale(1.2);
  }
  #ind-help-toggle-content .card .ind-help-img{
    position: relative;
  }

  #ind-help-toggle-content .card{
   position: relative;
   padding-bottom: 20px;
  }
  #ind-help-toggle-content .card .card-img-text{
   position: absolute;
   top: 25%;
   left: 30%;
   transform: translate(-20%, -50%);
   padding: 20px;
   max-width: 100%;
   border-radius: 20px;
   background-color: #ffffffd6;
   text-align: center;
   background: linear-gradient(to right, #ffffffd6 50%, rgba(3, 86, 111, 0.798) 50%) left;
   background-size: 200% 100%;
  transition: .5s ease-out;
  z-index: 99999;
  }
  #ind-help-toggle-content .card .card-img-text:hover{
  background-position: right;
  }

  #ind-help-toggle-content .card .card-img-text h3{
    font-size: 2.1rem;
    font-weight: 600;
    word-spacing: 1px;
  }

  #ind-help-toggle-content .card .card-img-text:hover h3{
    color: var(--text-color);
  }

  #ind-help-toggle-content .card hr{
    height: 5px;
    width: 80%;
    color: rgb(246, 169, 25);
    height: 3px;
    margin: 0 auto;
    background-color: rgb(247, 162, 5);;
    border: none;
  }
  #ind-help-toggle-content .card a{
    color: var(--main-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(to right, #ffffffd6 50%, var(--btn-hover) 50%) left;
    background-size: 200% 100%;
   transition: .2s ease-out;
  }
  #ind-help-toggle-content .card a:hover{
    padding: 10px 20px;
    color: var(--text-color);
    background-position: right;
    border-radius: 5px 10px;
   
  }
  #ind-help-toggle-company{
    display: none;
  }

  /* What do we do */

  .gf-what-do{
background-color: var(--bg-color2);
 padding: 80px 50px 120px 50px;
  }
  .what-do{
      background: #0cb40c;
  }
  .gf-what-do h4{
font-size: 2.7rem;
text-align: center;
font-weight: 700;
padding-bottom: 50px;

  }
  .gf-what-do h5{
font-size: 2rem;
text-align: center;
font-weight: 700;
color: var(--second-color);

  }
.gf-what-do .card{
    border-radius: 60px;
    padding: 30px;
    background-color: var(--main-color);
}
.gf-what-do .card .card-text{
    color: var(--text-color);
}
.gf-what-do .card a{
    color: var(--second-color);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
}


/* Testimonials */

.gf-testimonials{
    background-color: var(--main-color);
    padding: 80px 50px 100px 50px;


}
.gf-testimonials h5{
    color: var(--text-color);
    font-size: 3rem;
    text-align: center;
    font-weight: 700;

}
.gf-testimonials .card{
margin-top: 20px;
background-color: transparent;
border: none;
color: var(--text-color);
padding: 0;

}
.gf-testimonials .card-body{
padding: 0;
display: flex;
align-items: center;
height: 300px;

}
.gf-testimonials .gf-testimonials-img img{
    width: 260px;
    height: 100%;
    padding: 0;
    height: 260px;
    border-radius: 30px;

}
.what-do{
    .card{
        background: #FFF;
        .card-text, a{
            color: var(--main-color);
        }
    }
    h4{
        color: #0e3110;
    }
}


.shine_overlay {
  position:absolute;
  top:0px;
  border-radius: 5px;
  overflow: hidden;
  display: inherit;
  border-radius: 30px;
  z-index: 9999;
}
.shine_overlay:after {
  content: "";
  position: absolute;
    top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  opacity: 0;
  transform: rotate(30deg);
  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0.0) 100%
  );
}
/* Hover state - trigger effect */
.shine_overlay:hover:after {
  opacity: 1;
  left: 130%;
  transition-property: left, top, opacity;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-timing-function: ease;
}

/* Active state */
.shine_overlay:active:after {
  opacity: 0;
}

.gf-testimonials .card-body .card-title{
    font-size: 1.5rem !important;
    padding: 15px 15px 0px 15px;
    font-weight: 600;
}
.gf-testimonials .card-body p{
    font-size: 17px;
    text-align: justify;
    padding: 5px 15px;
    color: var(--text-color);
}

#gf-testimonials .owl-nav button.owl-prev{
    font-size: 1.8rem;
    position: absolute;
    left: -4.5%;
    padding: 0;
    top: 40%;
    background: var(--second-color);
   width: 40px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}
#gf-testimonials .owl-nav button.owl-next{
    font-size: 1.8rem;
    position: absolute;
    right: -4.5%;
    padding: 0;
    top: 40%;
    background: var(--second-color);
   width: 40px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}
/* News and Blog Section */
.gf-new-blog{
    background-color: var(--bg-color2);
    padding: 80px 50px 100px 50px;

}
.gf-new-blog .card{
    background-color:transparent;
    border: none;


}
.gf-new-blog h5{
    color: var(--text-color2);
    font-size: 3rem;
    text-align: center;
    font-weight: 600;
}
.gf-new-blog .new-blog-slide{
    padding-top: 50px;
}
.gf-new-blog .gf-new-blog-img{
  position: relative;
  width: 100%;
}
.gf-new-blog .new-blog-slide .card img{
    height: 290px;
    transition: all .3s ease-in-out;
}
.gf-new-blog .new-blog-slide .card img:hover{
  transform: scale(1.2);
}
.gf-new-blog .new-blog-slide .card-body {
text-align: left;
}
.gf-new-blog .new-blog-slide .card-body .card-text{
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    font-weight: 600;
}
.gf-new-blog .new-blog-slide .card-body .sub-title{
  font-size: 18px;
  color: #333;
}
.gf-new-blog .new-blog-slide .card-body p{
    font-size: 14px;
    text-align: left;
}
.gf-new-blog .new-blog-slide .card-body .card-link{
    font-size: 16px;
    background-color: var(--second-color);
    text-decoration: none;
    color: var(--text-color2);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 16px;
    background: linear-gradient(to left, var(--second-color) 50%, var(--btn-hover) 50%) right;
    background-size: 200% 100%;
}
.gf-new-blog .new-blog-slide .card-body .card-link:hover{
  background-position: left;
  color: #fff;
}





#gf-new-blog .owl-nav button.owl-prev{
    font-size: 1.8rem;
    position: absolute;
    right: -4.5%;
    padding: 0;
    top: 40%;
    background: var(--second-color);
   width: 40px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}
#gf-new-blog .owl-nav button.owl-next{
    font-size: 1.8rem;
    position: absolute;
    left: -4.5%;
    padding: 0;
    top: 40%;
    background: var(--second-color);
   width: 40px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

/*why-choose */

.gf-why-choose {
    padding: 80px 50px 70px 0px;
    color: var(--text-color2);
}
.gf-why-choose .card {
  border: none !important;
  border-radius: none !important;
 
 }
.gf-why-choose .card h5{
  color: var(--main-color);
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;

}
.gf-why-choose .card-body{
  padding-left: 0;
}
.gf-why-choose .card h6{
  color: var(--main-color);
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    text-align: left;

}
.gf-why-choose .card-body.ourValue .row{
padding-top: 30px;

}
#gf-accordion .accordion-header .accordion-button, .accordion-collapse{
color: var(--main-color) !important;
}
#gf-accordion .accordion-item{
border: none !important;
}

/* contact us */
.gf-contact-us {
  padding: 80px 50px 70px 50px;
  background-color: var(--bg-color);
}
.gf-contact-us h5{
  color: var(--main-color);
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    padding-bottom: 30px;
}
.gf-contact-us .gf-contact-address .gf-contact-icon{
 font-size: 1rem;
 background-color: var(--icon-color);
 height: 25px;
 width: 25px;
 text-align: center;
 border-radius: 3px ;
 color: var(--text-color);
}
.gf-contact-us .gf-contact-address .gf-contact-icon, .gf-contact-us .gf-contact-address p{
  /* margin-top: 10px; */
}
.gf-contact-us .gf-contact-address p{
padding-left: 8px;
font-size: 16px;
margin: 0;
}
.gf-contact-us .gf-contact-address a{
text-decoration: none;
color: var(--main-color);

}
.gf-contact-form .conatct-btn{
  color: var(--text-color);
  margin-top: 20px;
  font-size: 16px;
  padding: 8px 15px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(to left, #0cb40c 50%, var(--btn-hover) 50%) right;
  background-size: 200% 100%;
  transition: .3s ease-out;
}
.gf-contact-form .conatct-btn:hover{
  background-position: left;
  color: #fff;
}
.new-contact-us{
    .gf-contact-address{
        .gf-contact-icon{
            background: #0cb40c;
        }
    }
}

/* Individuals-page */
.gf-help-top-btn button{
background-color: var(--second-color);
padding: .2rem 2.5rem;
font-size: 2.5rem;
font-weight: 700;
color: var(--main-color);
border: none;
border-radius: 20PX;
/* position: absolute;
bottom: -0%; */
}
.new-gf-help-top-btn{
    button{
        background: #0cb40c;
        color: #FFF;
    }
}
.gf-prop-list .gf-prop-list-1, .gf-prop-list .gf-prop-list-2{
  padding: 50px 0;
}
.shine_overlay{
  position: relative;
}
.gf-prop-list .gf-prop-list-img img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
 border-radius: 30px;

}
.gf-prop-list .gf-prop-list-img .image-wrapper{
 width: 570px;
 height: 385px;
 margin: 0 auto;
 transition: transform .5s;
}
.gf-prop-list .gf-prop-list-img .image-wrapper img{
  transition: all .5s ease-in-out;
}
/* .gf-prop-list .gf-prop-list-img .image-wrapper img:hover{
  transform: scale(1.2);
} */
.gf-prop-list .gf-prop-title{
  font-size: 2rem;
  font-weight: 700;
}
.gf-prop-text{
  font-size: 1.3rem;
  color: var(--main-color);
  
}
.gf-prop-text a{
  background: linear-gradient(to left, #ffffff00 50%,  #ffe359 50%) right;
  background-size: 200% 100%;
 transition: .2s ease-out;

}
.gf-prop-text a:hover{
  background-position: left;
  color: var(--main-color) !important;
  padding: 5px 15px;
  border-radius: 5px;
}

.gf-prop-list a{
  font-size: 1.5rem;
  color: var(--main-color);
  font-weight: 700;
  text-decoration: none;
}

.gf-prop-list-2{
 background-color: var(--bg-color);
}
.gf-prop-list-2 img{
  float: right;
}

/* service List */

.gf-service-list .gf-service-img{
  width: 130px;
}
.gf-service-list .gf-service-line{
  border-right: 2px solid var(--color2);
  border-bottom: 2px solid var(--color2);
}
.gf-service-list .gf-service{
  border-right: 2px solid var(--color2);
  border-bottom: 2px solid var(--color2);
}
.gf-service-list .gf-service-line-1{
  border-bottom: 2px solid var(--color2);
}
.gf-service-list .gf-service-line-2{
  border-right: 2px solid var(--color2);
}

.gf-service-list .gf-service-one{
  padding: 0px 50px 0px 0;
}
.gf-service-list .gf-prop-title{
  font-size: 1.5rem;
  /* color: var(--main-color); */
  font-weight: 700;
}
.gf-service-list .gf-service-two{
  padding: 0px 30px 40px 40px;
}
.gf-service-list .gf-service-three{
  padding: 0px 0px 40px 40px;
}
.gf-service-list .gf-service-four,.gf-service-list .gf-service-seven,.gf-service-list .gf-service-ten {
  padding: 40px 50px 0px 0;
}
.gf-service-list .gf-service-five, .gf-service-list .gf-service-eight, .gf-service-list .gf-service-eleven{
  padding: 40px 30px 40px 40px;
}
.gf-service-list .gf-service-six, .gf-service-list .gf-service-nine, .gf-service-list .gf-service-twelve{
  padding: 40px 0px 40px 40px;
}
.gf-service-list .gf-service-img{
  padding-bottom: 25px;
}
.gf-servince-text{
  font-size: 1.3rem;
  color: var(--main-color);
}

/* #gf-services .gf-services:hover{
background-color: #044e70;
color: var(--text-color) !important;
} */
/* News And Blog Page */
.gf-news-blog .gf-news-blog-list .card{
  border: none;
  width: 100%;;
}
.gf-meta {
    margin-bottom: 10px;
}
.gf-news-blog .gf-news-blog-list .card img{
  border-radius: 30px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top;
}
.gf-news-blog .gf-news-blog-list .card .card-title{
  font-size: 1.3rem;
    font-weight: 600;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .5s;
}
.gf-news-blog .gf-news-blog-list .card:hover .card-title{
    color: #0cb40c;
}
.gf-news-blog .gf-news-blog-list .card .gf-news-text{
  font-size:17px;
  text-align: left;
  
}
.gf-news-blog .gf_news_blog_more{
  border: none;
  background-color: var(--main-color);
  padding: .5rem 2rem;
  border-radius: 20px;
  font-size: 1.1rem;
  color: var(--text-color);

}
.blog-details-img {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
}
.sidebar-service {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 17px 0 rgb(0 0 0 / 10%);
    padding: 25px;
    margin-bottom: 30px;
    ul{
        a:hover{
            color: #0cb40c;
        }
    }
}
.blog-details {
    padding-block: 50px;
}
.sidebar-form {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 17px 0 rgb(0 0 0 / 10%);
    padding: 25px;
        .form-control {
        border-radius: 10px;
        border: 1px solid #E2E0E0;
    }
    .form-group {
    margin-bottom: 10px;
}
label {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
    color: #000;
}
}
/* Saving and Investments */
.gf-invest-text{
  font-size: 1.2rem;
  color: var(--main-color);
}
.gf-nsaving_invest .gf-blog-slide{
  padding-top: 50px;
}
.gf-nsaving_invest .gf-blog-slide h5{
  font-weight: 600;
  font-size: 1.2rem;

}
.gf-nsaving_invest .gf-blog-slide h5 i{
  color: #03a9f4;

}
.new-blog-slide .card .card-body .card-text{
font-size: 1.1rem !important;
font-weight: 600;
}
.new-blog-slide .card .card-body p{
font-size: 15px !important;
}
/* faq */


/* contact */
.gf-contact{
  /* padding-top: 50px; */
}
.gf-cnt-top-btn{
  background-color: var(--bg-color);
}

.gf-address-map iframe{
  display: block !important;
}
/* Footer */ 
        a,
        a:hover,
        a:focus,
        a:active {
            text-decoration: none;
            outline: none;
        }
        
        a,
        a:active,
        a:focus {
            color: #6f6f6f;
            text-decoration: none;
            transition-timing-function: ease-in-out;
            -ms-transition-timing-function: ease-in-out;
            -moz-transition-timing-function: ease-in-out;
            -webkit-transition-timing-function: ease-in-out;
            -o-transition-timing-function: ease-in-out;
            transition-duration: .2s;
            -ms-transition-duration: .2s;
            -moz-transition-duration: .2s;
            -webkit-transition-duration: .2s;
            -o-transition-duration: .2s;
        }
        
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
img {
    max-width: 100%;
    height: auto;
}
.footer-section {
  background-color: #0cb40c;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.footer-section:before {
  content: '';
  position: absolute;
  top: -146%;
  left: -18%;
  width: 44%;
  height: 257%;
  transform: rotate(54deg);
  background-color: #0cb40c;
  -webkit-transform: rotate(54deg);
  -moz-transform: rotate(54deg);
  -ms-transform: rotate(54deg);
  -o-transform: rotate(54deg);
  z-index: -10;
}
.footer-section:after {
  position: absolute;
  content: '';
  background-color:#0cb40c;
  top: -24%;
  right: 4%;
  width: 26%;
  height: 264%;
  transform: rotate(44deg);
  -webkit-transform: rotate(44deg);
  -moz-transform: rotate(44deg);
  -ms-transform: rotate(44deg);
  -o-transform: rotate(44deg);
  z-index: -10;
}
.footer-top {
  padding-top: 96px;
  padding-bottom: 50px;
}
.footer-top p,
.company-footer-contact-list li {
  color: #ffffff;
}
.company-footer-contact-list {
  margin-top: 10px;
}
.company-footer-contact-list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.company-footer-contact-list li+li {
  margin-top: 5px;
}
.company-footer-contact-list li i {
  margin-right: 10px;
  font-size: 20px;
  display: inline-block;
}

.footer-top .site-logo {
    margin-bottom: 25px;
    display: block;
    max-width: 170px;
}
.widget-title {
  text-transform: capitalize;
}
.footer-top .widget-title {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.3rem !important;
  font-weight: 600;
  border-bottom: 2px solid var(--color2);
  padding-bottom: 30px;
}
.courses-link-list .foter-icon{
 width: 50px;
 height: 50%;
 padding-right: 10px;
}
.courses-link-list .gf-footer-icon{
 padding-bottom: 10px;
}
.courses-link-list li+li {
  margin-top: 10px;
}
.courses-link-list li a {
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 500;
}
.courses-link-list li a:hover {
  color: #ffb606;
}
.courses-link-list li i {
  margin-right: 5px;
}
.courses-link-list.quick_link li a{
font-size: 1rem;
font-weight: 500;
}
.footer-top .small-post-title a {

  color: #ffffff;
  font-weight: 400;
}
.small-post-item .post-date {
  color: #ffb606;
  margin-bottom: 3px;

  font-weight: 400;
}
.small-post-list li+li {
  margin-top: 30px;
}
.news-letter-form {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.sent-news-letter{
  font-size: 25px;
  margin-left: -30px;
  cursor: pointer;
  color: #363636;
}
.news-letter-form input {
  width: 100%;
  padding: 12px 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: none;
  background-color: #ffe459;
}
.news-letter-form input[type="submit"] {
  width: auto;
  border: none;
  background-color: #ffb606;
  padding: 9px 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: var(--text-color2);
  margin-top: 10px;
}
.footer-bottom {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.149);
}
.copy-right-text {
  color: #ffffff;
}
.copy-right-text a {
  color: #ffb606;
}


.footer-section .gf-footer-text{
  text-align: justify;
  font-size: 14px;
}
.footer-top .widget-title-cont {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.1rem !important;
  font-weight: 400;
}
.footer-top .cont-num img{
  width: 80px;
  height: 60px;
  float: right;
  padding-left: 20px;
  margin-top: -50px;
}

.gf-social-icon{
display: flex;
align-items: center;
}
.gf-social-icon span img{
width: 28px;
height: 28px;
}
.gf-social-icon span .youtube{
height: 40px !important;
}

.copy-right-text{
  display: flex;
  align-items: center;
}

/* Video Link */
.gl-about-video{
  text-align: center;

  padding: 60px 0;
}
.gl-about-video h3{
  font-size: 35px;
}
.video-container iframe .ytp-impression-link{
  display: none !important;
}
.gl-about-video .video-container iframe {
  width: 700px;
  height: 400px;
  border-radius: 15px;
  margin-top: 30px;
}
.ytp-watermark{
  display: none !important;
}

/* MISSION,VISION,VALUES */
.gl-mission-section{
  padding: 60px 0;
  }
  .gl-mission-section .gl-mission{
    background-color: #0cb40c;
    border-radius: 10px;
    padding: 30px;
    min-height: 580px;
    max-height: 580px;
    text-align: center;
    color: var(--text-color);
  }
  .gl-mission-section .gl-value{
    background-color: #0cb40c;
    border-radius: 10px;
    padding: 30px;
    min-height: 580px;
    max-height: 580px;
    text-align: center;
    color: var(--text-color);
  }
  .gl-mission-section .gl-vission{
    background-color: #0cb40c;
    border-radius: 10px;
    padding: 30px;
    min-height: 580px;
    max-height: 580px;
    text-align: center;
    color: var(--text-color);
  }
  .gl-mission-section img{
    width: 150px;
    padding-bottom: 30px;
  }
  .gl-mission-section h2{
    font-size: 25px;
    color: var(--text-color);
    font-weight: 600; 
  }
 
  .gl-vission .heding-border{
  border: 2px solid #FFF;
  }
  .heding-border{
  border: 2px solid #FFF;
  width: 100px;
  display: block;
  margin: 15px auto;
  }
  .gl-mission-section p{
    color: var(--text-color);
    text-align: center;
    font-size: 17px;
  }
  .gl-mission-section .gl-vission h2{
    font-size: 25px;
    color: #FFF;
    font-weight: 600;
  }
  .gl-mission-section .gl-vission p{
    color: #FFF;
    text-align: center;
    font-size: 17px;
  }

  /* faq */

  #gf-faq-accordion .accordion-header button{
  font-size: 20px;
  font-weight: 600;
  }
  #gf-faq-accordion .accordion-body p{
  font-size: 16px;
  }
 .contact-page {
    display: flex;
    align-items: center;
    justify-content: center;
    
    h1 {
    padding: .2rem 2.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    border: none;
    border-radius: 20PX;
    background: #0cb40c;
    color: #FFF;
}
}
@media screen and (max-width: 680px) {
    .contact-page {
    background-position: left;
        h1 {
        font-size: 1.9rem;
    }
}
}
  
  