html{
        overflow-x: hidden;
}
body{
    overflow: hidden;
  margin: auto;
 font-family: "Figtree", sans-serif !important;

}

@media(min-width: 1366px){
.cmpad{
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
}
@media(max-width: 1366px){
.cmpad{
  padding-left:80px;
  padding-right:80px;
}
}
@media(max-width: 991px){
.cmpad{
  padding-left:40px;
  padding-right:40px;
}

}
@media(max-width: 767px){
.cmpad{
  padding-left:15px;
  padding-right:15px;
}

}

p{
    margin-bottom: 0;
    color: #88888A;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
}

a{
  color: #1A1A1A;
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
   font-size: 16px;
  font-weight: 500;
}
a:hover{
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
ul {
    padding-left: 0px;
    list-style-type: none;
    margin: 0;
}
img{
    display: block;
  max-width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.posrel{
  position: relative;
}
.btn {
  padding: 6px;
  padding-left: 20px;
  display: flex;
  font-weight: 700;
  text-align: center;
  border-radius: 40px;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.btn span {
  background: white;
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

.btn span img {
  width: 26px !important;
}

.btn:hover span {
  background: #51B34C;
}

.btn:hover span img {
  animation-name: zoomIn;
  animation-duration: .5s;
  animation-iteration-count: 1;
  transform: rotate(45deg);
  filter: brightness(0) invert(1);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.mybtn-primary {
 position: relative;
    color: white;
    background: #51B34C;
    overflow: hidden;
    min-width: 163px;
    z-index: 1;
    border: 1px solid transparent;
}

.mybtn-primary:hover {
  background: white;
  color: #51B34C;
  border: 1px solid #51B34C;
}

.mybtn-secondary {
 position: relative;
    color: white;
    background: #F1CC1E;
    overflow: hidden;
    min-width: 163px;
    z-index: 1;
    border: 1px solid transparent;
}

.mybtn-secondary:hover {
  background: white;
  color: #F1CC1E;
  border: 1px solid #F1CC1E;
}
.mybtn-secondary:hover span {
  background: #F1CC1E;
}



.mybtn-fill {
  position: relative;
  color: #00BAA6;
  background: transparent;
  background: #fff;
  border: 1px solid transparent;
  overflow: hidden;
  min-width: 161px;
  z-index: 1;
}

.mybtn-fill:hover {
  background: #00BAA6;
  color: #fff;
}

.mybtn-fill span {
  background: #ffffff;
  display: flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}


.bnrhed{
     font-size: 180px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 76%;
}
.bnrhed .lne1{
      margin-left: 116px;
}
.bnrhed .lne3{
  line-height: 90%;
}

.mainhed {
    font-size: 60px;
    font-weight: 700;
    color: #252528;
    line-height: 100%;
}
.mainhed span{
  background-image: linear-gradient(180deg, #2060AD, #79B0F2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}







/* haeder */

.header{
  
  position: relative;
    z-index: 11;
  padding: 24px 0px;
  background: #ffffff;
}
.logo{
  width: 100%;
  float: left;

}
.logo img{
  width: 100%;
     max-width: 186px;
  float: left;
}
.hdr-menu{
    height: 100%;
}
.menus{
  display: flex;
      gap: 12px;
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}


/* Fixed header class */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 1px 11px #00000030;
  animation: slideDown 0.3s ease forwards;
}

/* Optional animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}



/*mob*/
/* Wrapper */
/* Wrapper & Container */
.mobile-wrapper {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  float: right;
  height: 100%;
  display: flex
;
    align-items: center;
}

.content {
  background: transparent;
  display: block;
  width: 100%;
  height: 100%;
}

nav {
  position: relative;
}

/* Hide native checkbox */
nav input[type=checkbox] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

/* Hamburger Icon */


.hamburger-label {
  position: relative;   /* Use absolute for positioning inside the container */
  top: 7px;        /* Aligns to the right side */
  z-index: 1100;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
.mobile-container {
  position: relative;
}


.hamburger-label::before,
.hamburger-label::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #51B34C;
  left: 0;
  transition: 0.3s ease;
}

.hamburger-label::before {
  top: 0;
}

.hamburger-label::after {
  top: 10px;
}

/* Becomes X when open */
#hamburger1:checked + .hamburger-label::before {
  transform: rotate(45deg);
  top: 8px;
}

#hamburger1:checked + .hamburger-label::after {
  transform: rotate(-45deg);
  top: 8px;
}

/* Overlay full menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Show overlay */
#hamburger1:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
}

/* Navigation links */
.nav-links {
  margin: 0px 0 0 0;
 padding: 125px 0;
 background: #378333;
}

.nav-links li {
  list-style: none;
  /*border-bottom: 1px solid #ddd;*/
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.nav-links li a,
.submenu-label {
  text-decoration: none;
  display: block;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: white;

}

.nav-links li a:hover,
.submenu-label:hover {
  color: #fbc904;
}

/* Animate in when menu opens */
#hamburger1:checked ~ .overlay .nav-links li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

#hamburger1:checked ~ .overlay .nav-links li:nth-child(1) { transition-delay: 0s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(2) { transition-delay: 0.1s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(3) { transition-delay: 0.2s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(4) { transition-delay: 0.3s; }

/* Submenu */
.has-submenu {
  position: relative;
}

.has-submenu input[type="checkbox"] {
  display: none;
}

.submenu {
  display: none;
  background: #0e3563;
}

.submenu li a {
  font-size: 16px;
  padding: 10px 40px;
  border-top: 1px solid #144b8aa8;
}

.has-submenu input[type="checkbox"]:checked ~ .submenu {
  display: block;
  padding-left: 0;
}

@media(min-width:992px){
  .mobile-wrapper{
    display: none;
  }
}
/*mob*/

.header_menu_area ul li a img{
  margin-left: 5px;
    width: 13px;
        transition: .4s ease;
}

.header_menu_area {
    position: relative;
    text-align: center;
}
.header_menu_area > ul {
    padding-right: 0px;
    padding: 0px 0px 0px 0px;
    width: auto;
    float: left;
    vertical-align: middle;
}

.header_menu_area > ul > li {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    color: #191817;
    float: left;
    text-decoration: none;
    list-style-type: none;
    position: relative;
    padding: 0px 0;
    z-index: 1;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    text-decoration: none;
    text-align: center;
}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
}
.header_menu_area > ul > li > a {
    position: relative;
    display: flex;
    gap: 4px;
    float: left;
    color: #252528;
    font-weight: 400;
    text-decoration: none;
    font-style: normal;
    padding: 0px 32px;
    height: 37px;
    border: 1px solid transparent;
    border-radius: 30px;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    align-items: center;
}
.header_menu_area > ul > li > a:hover{
    color: #51B34C;
}
.stable{
    color: #51B34C!important;
}
.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    top: 20px;
    /* height: 0; */
    padding: 0;
    width: 230px;
    position: absolute;
    /* right: 20px; */
    padding-top: 42px;
    /* right: 0; */
    bottom: 0;
    background: transparent;
    z-index: 99999;
    /* transform: translate(0, 20px); */
    /* transition: all .2s ease-out; */
    /* -webkit-transform: perspective(600px) rotateX(-90deg); */
    -moz-transform: perspective(600px) rotateX(-90deg);
    -ms-transform: perspective(600px) rotateX(-90deg);
    -o-transform: perspective(600px) rotateX(-90deg);
    /* transform: perspective(600px) rotateX(-90deg); */
    /* -webkit-transition: -webkit-transform .5s ease, opacity .6s ease, max-height .6s step-end, max-width .6s step-end, padding .6s step-end; */
    -o-transition: -o-transform .5s ease,opacity .6s ease,max-height .6s step-end,max-width .6s step-end,padding .6s step-end;
    /* transition: transform .5s ease, opacity .6s ease, max-height .6s step-end, max-width .6s step-end, padding .6s step-end; */
}
.submenu2{
  width: 460px!important;
}
.submenu2 li{
  width: 50%!important;
}

.menu ul li a:hover, .menu ul li:hover>a {
    background: #ffffff24;
    color: #fff;
    backdrop-filter: blur(15px);
    border-radius: 10px;
    text-decoration: none;
    transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.header_menu_area ul li:hover a img{
transform: rotate(180deg);
    transition: .4s ease;
}


.menu li:first-child {
    margin-left: 0;
}
.menu li:first-child {
    margin-left: 0;
}
.menu ul li {
        display: block;
    float: left;
    background: 0 0;
    margin: 0;
    padding: 0px 7px;
    width: 100%;
    background: #4db44d;
    position: relative;
}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
    /* z-index: 9; */
    /* padding-bottom: 50px; */
}
.menu ul li a {
        width: 100%;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 10px;
    display: block;
    color: #ffffff;
    background: transparent;
    text-align: -webkit-match-parent;
    text-decoration: none;
    /* border-radius: 30px; */
    /* margin-bottom: 10px; */
    text-align: left;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    /* transform: translate(0, 0); */
    transition: all .5s ease-out;
    height: auto;
    top: 0px;
}


.sub-menu li:first-child {
    margin-left: 0;
    padding-top: 7px;
    border-radius: 10px 10px 0 0;
}
.sub-menu li:last-child {
    margin-left: 0;
    padding-bottom: 7px;
    border-radius: 0 0 10px 10px;
}



/*overlay*/

.side-menu-4 {
    position: relative;
    top: 0;
    right: 0;
    z-index: 999;
    width: auto;
    float: right;
}

.burger-menu img {
  width: 32;
 
  cursor: pointer;
}

.overlay-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 102;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  display: flex;
  background: rgba(0, 0, 0, 0.95);
}

.overlay-menu.active {
  opacity: 1;
  visibility: visible;
}

.overlay-wrap {
  display: flex;
  width: 100%;
  height: 100%;
}

.left-area,
.right-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px;
}
.right-areamain{
  width: 100%;
  float: left;
}
.right-areamain h2{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.right-areamain p{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 14px;
  font-weight: 400;
}
.left-area h6{
  width: 100%;
  float: left;
  text-align: left;
  color: #fff;
  font-size: 55px;
    font-weight: 600;
    line-height: 127%;
    margin-bottom: 0;
}

.left-area {
  background: #51b34c;
  color: white;
  text-align: left;
}

.right-area {
  background: #fff;
  color: #252528;
      box-shadow: -1px 0px 13px #10346057;
  text-align: left;
}

.left-area nav ul {
  list-style: none;
  padding: 0;
}

.left-area nav li {
  margin-bottom: 20px;
}

.left-area nav a {
  color: white;
  font-size: 40px;
  text-decoration: none;
}
.close img{
  width: 100%;
  max-width: 30px;
      filter: brightness(0) invert(1);

}
.overlay-menu .close {
  position: absolute;
    right: 60px;
    top: 55px;
    font-size: 30px;
    background: #51b34c;
    border-radius: 30px;
    cursor: pointer;
    opacity: 1;
    z-index: 10;
    transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.overlay-menu .close:hover {
  opacity: 1;
}
.right-area-main{
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
.right-area-main h2{
  width: 100%;
  float: left;
  text-align: left;
  color: #252528;
  font-size: 35px;
  font-weight: 500;
}
.right-area-main p{
  width: 100%;
  float: left;
  text-align: left;
  color: #252528;
  font-size: 15px;
  font-weight: 400;
}
.right-area-main a{
  width: 100%;
  float: left;
  text-align: left;
  color: #252528;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
.left-area form {
    width: 100%;
    float: left;
    margin-top: 40px;
    transition-delay: 300ms;
}
.ham-field {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.ham-field label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    width: 100%;
    float: left;
    margin-bottom: 5px;
}
.ham-field input {
    width: 100%;
    float: left;
    padding: 12px;
    border: none!important;
    border-radius: 10px;
    font-size: 15px;
    color: #000;
    height: 51px;
    background: #ffffff;
    outline:none!important;
}
.ham-field textarea {
    width: 100%;
    float: left;
    padding: 12px;
      border: none!important;
    border-radius: 10px;
    font-size: 16px;
    color: #000;
    height: 150px;
    background: #ffffff;
    outline:none!important;
}


/* banner */

/* banner */
.bnr-carousel .owl-nav {
    display: none;
}
.bnrtxt-carousel .owl-nav {
    display: none;
}


.bnr-carousel .owl-dots{
  display: none;
  
}
.bnr-carousel .owl-dots .owl-dot span {
      background: #ffffff59;
    width: 43px;
    backdrop-filter: blur(16px);
    height: 3px;
    display: block;
    border-radius: 20px;
    margin: 0px 4px;
}

.bnr-carousel .owl-dots .owl-dot.active span {
  background: #FFFFFF; 
   backdrop-filter: unset;    
}
.banner {

    position: relative;
}
.bnrtxt-slider{
    width: 100%;
    height: 620px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
}

.bnrimg-sec{
  position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;

}
.banner .sldimg{
      width: 100%;
    float: left;
    position: relative;
    /* max-width: 582px; */
    height: 620px;
    object-fit: cover;
}
.bnrsecnd{
  max-width: 389px;
      display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.bnrtext {
        display: flex;
    gap: 19px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;padding-bottom:26px;
}
.bnrtext p{
  color: #FFFFFF;
    font-size: 18px;
    line-height: 162%;
}
.bnrsub{
    
    text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  opacity: 50%;
}


.spad{
  padding-top: 80px;
  padding-bottom: 80px;
}
.spad2{
   padding-top: 70px;
  padding-bottom: 70px;
}

@keyframes zoomIn {
    from {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
  }




.bnr-second{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.slide-con {
       position: fixed;
    z-index: 11;
    padding: 10px 0;
    right: -2px;
    display: flex;
    top: 50%;
    width: 68px;
    transform: translateY(-68px);
    text-align: center;
    /* overflow: hidden; */
    flex-direction: column;
    border-radius: 20px 0 0 20px;
    border: 1px solid #ffffff81;
    background: #70707026;
    /* backdrop-filter: blur(6px); */
    /* mix-blend-mode: overlay; */
}

.slide-con li {
       border: none !important;
    margin-bottom: 0;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    border-radius: 0;
}

.slide-con li:hover img{
animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}
@keyframes zoomIn {
    from {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
  }

.slide-con li:nth-child(3) {
    margin-bottom: 0;
}

.slide-con li a {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.subhed{
       color: #252528;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.subhed span{
         width: 36px;
         transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.subhed:hover span{
transform: rotate(6deg);
transition: all 0.3s ease;
  transition: all 0.3s ease;
}


/* counter */


.count-secnd{
       display: flex;
    flex-direction: row;
    height: 100%;
        justify-content: space-between;
    align-items: center;
}
.count-cont{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.countbx{
        display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 0 15px;
    flex: 1 0 auto;
        justify-content: flex-start;
    align-items: center;
}
.count-cont h3{
    font-weight: 600;
    font-size: 65px;
    color: #252528;
    display: flex;
        justify-content: center;
        align-items: flex-start;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value{
  color: #252528;
}


.cntpointfull{
  padding-top: 45px;
  border-top: 1px solid #00000020;
}
.countpoint{
display: flex;
    gap: 20px;
    align-items: flex-start;
}
    
.countpoint span{
  width: 60px;
  height: 60px;
  border: 1px solid #DCDCDC;
  border-radius: 50%;
  color: #88888A;
  font-weight: 500;
  font-size: 16px;
  display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
  transition: all 0.3s ease;
}


.countpoint span::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background:conic-gradient(
        #51B34C 0deg,
        #51B34C 0deg,
        #d9c0c000 0deg,
        #d9c0c000 360deg
    );
     -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
   transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.countpoint:hover span{
  color: #51B34C;
}
.countpoint:hover span::before{
    background: conic-gradient(#51B34C 0deg, #51B34C 120deg, #dcdcdc00 120deg, #dcdcdc00 360deg);
    transition: all 0.8s ease;
  transition: all 0.8s ease;
  transform:rotate(360deg);
}
.countpoint .cont {
  width: calc(100% - 80px);
}
.countpoint .cont .desc{
color: #252528;
font-size: 20px;
font-weight: 600;
}


/* about */
.welcomefull{
  padding: 35px;
  border-radius: 50px;
  border: 1px solid #00000027;
}
.abt img {
    object-fit: cover;
    border-radius: 20px;
}

/* source */
.source-country{
  display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 9px;
    margin-top: 25px;
}
.source-country span{
font-size: 16px;
    font-weight: 400;
    color: #88888A;
    padding: 5px 15px;
    border: 1px solid #00000027;
    border-radius: 25px;
}
.source-country span:hover{
  color: #51B34C;
  border: 1px solid #51B34C;
  transition: all 0.8s ease;
  transition: all 0.8s ease;
}


/* about-under */
.backlinear{
  background: linear-gradient(180deg, #FBFBFB, #ffffff);
}
.abtundbx{
      border-radius: 40px;
    border: 1px solid #00000027;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    gap: 17px;
    position: relative;
    transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.abtundbx .desc{
  margin-top: 14px;
color: #252528;
font-size: 24px;
font-weight: 700;
}
.abtundbx .desc span{
  background: #FFE04C;
  padding: 3px 5px;
}
.abtundbx:hover{
  border: 1px solid #51B34C;
   transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.abtundbx:hover img{
  animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}


/* whychoose */
.con-cta{
  background: url(../img/images/cta-bac.webp) no-repeat;
      background-size: cover;
    border-radius: 50px;
    background-position: center;
    height: 620px;
}
.con-cta .cta-card{
         display: flex;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    justify-content: space-between;
    padding: 60px 70px;
    max-width: 100%;
    position: relative;
}
.con-cta .cta-card .ctabx{
  padding: 40px;
  border-radius: 35px;
  background: #fff;
  gap: 15px;
}
.con-cta .cta-card .ctabx .desc{
color: #252528;
font-weight: 700;
font-size: 45px;
margin-bottom: 5px;
line-height: 100%;
}

.ribbon{
    position: relative;
    width:100%;
    height:80px;
    background:#55b948;
    overflow:hidden;
margin-top: -100px;
    display:flex;
    align-items:center;

}

.ribbon-track{
    display:flex;
    width:max-content;
    white-space:nowrap;
    animation:marquee 20s linear infinite;
}

.ribbon-track span{
    display:flex;
    align-items:center;
    font-size:26px;
    flex: 1 0 auto;
    gap: 12px;
    font-weight:600;
    color:#fff;
    margin-right:12px;
    letter-spacing:2px;
}
.ribbon-track span img{
  width: 36px;
  mix-blend-mode: overlay;
}
@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

.marquee{
    display:flex;
    overflow:hidden;
    background:#F5F5F5;
    padding:50px 0;
    user-select:none;
}

.marquee .marquee-track{
    display:flex;
    align-items:center;
    flex-shrink:0;
    animation:marquee1 18s linear infinite;
}

.marquee:hover .marquee-track{
    animation-play-state:paused;
}

.marquee .marquee-track .item{
    flex-shrink:0;
    margin:0 28px;
}

.marquee .marquee-track .item img{
    width:37px;
    height:37px;
    display:block;
}

@keyframes marquee1{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-100%);
    }
}


/* products */
.indianfruits{
  display: flex;
  height: 100%;
  flex-direction: row;
}
.indianfruits .fruitshedr{
  width: 123px;
  background: #51B34C;
  height: auto;
      display: flex;
    justify-content: center;
    text-align: center;
}
.indianfruits .fruitshedr p{
  writing-mode: vertical-lr;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
    transform: rotate(180deg);
    letter-spacing: 2px;
}
.indianfruits .fruitsslid{
  width: calc(100% - 123px);
}
.prodbx{
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}
.prodbx img{
  transform: scale(1.01);
}
.prodbx:hover img{
  transform: scale(1.1);
}
.prodbx::after{
  content: '';
    position: absolute;
    width: 100%;
    height: 75%;
    bottom: 0;
    background: linear-gradient(0deg, black, transparent);
    opacity: 80%;
}
.prodbx p{
      position: absolute;
    bottom: 43px;
    font-size: 22px;
    color: #fff;
    line-height: 120%;
    text-align: center;
    margin: auto;
    width: 100%;
    z-index: 1;
    padding: 10px;
}
.fruits-slider .owl-nav{
  display: none;
}
.fruits-slider2 .owl-nav{
  display: none;
}

.indianfruits2{
    flex-direction: row-reverse;
}
.indianfruits2 .fruitshedr{
  background: #F1CC1E;
}

/* ventures */
.venturebx{
  border-radius: 50px;
    border: 1px solid #00000027;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    gap: 22px;
    position: relative;
    transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.venturebx:hover{
  border: 1px solid #51B34C;
   transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.venturebx:hover img{
  animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}
.venturebx img{
  height: 100px;
  object-fit: contain;
}
.venturebx p{
  max-width: 75%;
}


/* cta */
.ctaft {
    background: url(../img/images/ctaft-bac.webp) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    /* height: 620px; */
}
.ctaft .mainhed{
color: #fff;
margin-bottom: 30px;
}
.ctaft .ctacountry{
  display: flex;
      align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.ctaft .ctacountry img{
  width: 155px;
}
.ctaft .ctacountry p{
  width: calc(100% - 170px);
  font-style: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 130%;
}




/* footer */
.footer{
  background: #fff;
  padding-top: 70px;

}
.foter-logo{
      justify-content: flex-start;
    align-items: center;
}

.ft-logo{
  max-width: 224px;
}
.ft-tptxt{
      display: flex;
    justify-content: space-between;
    align-items: center;
}
.ft-tptxt .mainhed{
font-size: 42px;
font-weight: 700;
}

.ft-line{
   padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #00000014;
    border-bottom: 1px solid #00000014;
}
 .menus-ftr{
  display: flex
;
    justify-content: flex-end;
    gap: 60px;
    align-items: center;
    height: 100%;
 }
 .menus-ftr a{
  font-weight: 400;
  font-size: 16px;
  color: #252528;
 }
  .menus-ftr a:hover{
    color: #51B34C;
  }
.follows{
  display: flex
;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
}
.follows p{
  font-weight: 400;
  color: #fff;
  opacity: 50%;
  margin-bottom: 0px;
}

.ftr-line2{
      display: flex
;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ftr-line2 p{
      font-size: 24px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 5px;
    flex: 1 0 auto;
}
.ftr-line2 p a{
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0px;
}
.ftr-line2 p span{
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0px;
}
.ftrline2-br{
  color: #f6f3f312!important;
}


  
.quicklink h2{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.quicklink li{
  margin-bottom: 8px;
  color:#B2B3B1;
  font-size: 15px;
  font-weight: 400;
}
.quicklink li a{
  color:#B2B3B1;
  font-size: 15px;
  font-weight: 400;
}
.quicklink2{
  padding-top: 40px;
}
.quicklink li a:hover{
  color:#ececec;

}

.copyfull{
  background: #fff;
}
.copy{
    padding: 20px 0px;
    /* border-top: 1px solid #171717; */
    display: flex
;
    justify-content: space-between;
    align-items: center;
}
.copy p{
  color: #252528;
    font-weight: 400;
    font-size: 16px;
}

.ft-social{
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.ft-social a {
        width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ft-social a:hover{
  /*background: #124477;*/
}
.ft-social a:hover span img{
animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}

.copy p a{
   color: #252528;
  font-weight: 400;
}

.copy p a:hover{
  color: #b3b3b3;
}
.copy p br{
  display: none;
}
.copy p span{
  padding: 0 5px;
}
/* .ft-social a span img{
    height: 17px;
    width: 17px;
} */












@media(max-width: 1366px){
    
.mainhed{
      font-size:45px;
    }
   
  }

@media(max-width: 1300px){
.header_menu_area > ul > li > a{
  padding: 0 15px;
}
}



@media (min-width:992px) and (max-width:1199px){

.header_menu_area > ul > li > a {
  font-size: 15px;
}
.header_menu_area > ul > li {
  padding: 0px 4px 0px 0px;
}
}

@media(max-width: 1199px){
.service-card .card-hed h3{
  font-size: 22px;
}
.ft-tptxt{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    padding-left: 25px;
    flex-direction: column;
}
.ft-tptxt .mainhed {
    font-size: 35px;
    font-weight: 700;
}
.menus-ftr {
    justify-content: space-between;
    gap: unset;
}
}



@media(max-width: 991px){

.menus{
  display: none;
}
.side-menu-4{
  display: none;
}
.hdr-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.bnrtext{
  width: 100%!important;
}
.bnrhed{
  font-size: 100px;
  line-height: 78%;
}
    .bnrhed .lne1 {
        margin-left: 60px;
    }

.banner .sldimg{
  height: 500px;
}
.shining:before{
  left: -106%;
}
.mainhed {
        font-size: 35px;
    }
.count-cont h3{
  font-size: 30px;
        line-height: 1.1 !important;
}

.count-cont h4{
  font-size: 18px;
}
.certifications p{
  max-width: 100%;
}
.certificte{
  padding: 0;
}
.certficatelist{
  padding: 0;
  padding-top: 25px;
}
.certifications{
  padding: 18px!important;
}
.spad{
  padding-top: 60px;
  padding-bottom: 60px;
}
.spad2{
   padding-top: 60px;
  padding-bottom: 60px;
}
.quicklink{
  margin-bottom: 25px;
}

.count-text {
  padding: 20px;
  margin-right: 0px;
}
.countbx{
  justify-content: flex-start;
}
.countbx img{
  width: 100px;
}
.count-secnd{
  flex-wrap: wrap;
  padding-right: 0px;
}
.abt-cta{
  position: relative;
}
.abt-callaction .round{
      display: flex
;
    justify-content: flex-end;
    align-items: flex-end;
}
.abt-callaction{
  padding-bottom: 0px!important;
}
.abt-callaction::after{
  width: 350px;
}
.serviceslide{
  padding-left: 40px;
}
.service-sec {
  width: 70%;
}
.service-card{
  min-height: 350px;
}
.whybxs{
  display: flex;
  justify-content: space-between;
      height: 286px;

}
.color-card{
  width: 48%;
  margin-bottom: 0px;
  margin-top: 0px;
}
.action-card{
  width: 48%;
}
.action-card img{
  width: 100%;
  object-fit: cover;
}
.action-card2{
  width: 100%;
  height: 320px;
  margin: 15px 0;
}
.bahrain-callactio .card-cont {
    width: 67%;
}
.bahrian-cta img {
    margin-top: -81px;
    top: 0px;
    right: 0;
    max-width: 250px;
}
.testimonialslide{
  padding-right: 40px;
}
.testimonialslide .service-sec{
  padding-left: 40px;
  margin-bottom: 20px;
}
.follows{
  justify-content: flex-start;

}
.ftr-line2 p{
  font-size: 20px;
}
.ftr-line2 p span{
  font-size: 20px;
}
.ftr-line2 p a{
  font-size: 20px;
}
.bnrtxt-slider{
  height: 500px;
}
.abtcont{
  margin-bottom: 20px;
  height: auto!important;
}
.footer{
  padding-top: 50px;
}
.ft-line {
  padding: 24px 0;
  margin-top: 24px;
}
}

@media(max-width: 767px){
  .ft-tptxt .mainhed br{
    display: none;
  }
  .ft-tptxt{
    margin-top: 24px;
    padding-left: 0px;
  }
  .ft-tptxt .mainhed{
    font-size: 30px!important;
  }
.bnrhed{
  font-size: 70px;
}
.bnrhed .lne1 {
        margin-left: 40px;
    }
.abtundbx{
  padding: 20px 15px;
}
.abtundbx p br{
  display: none;
}
.abtundbx .desc{
  font-size: 20px;
}
.abtcont{
  padding-left: 0;
  width: 100%;
  height: auto!important;
  margin-bottom: 20px;
}
    .service-card .card-hed h3 {
        font-size: 20px;
    }
.service-sec{
  width: 65%;
}
.indianfruits .fruitshedr{
  width: 75px;
}   
.indianfruits .fruitshedr p{
  font-size: 16px;
}
.indianfruits .fruitsslid {
    width: calc(100% - 75px);
}
   .prodbx p{
    font-size: 16px;
    bottom: 23px;
   }
  .countbx{
    margin-bottom: 15px;
      
  }
  .copy{
    flex-direction: column;
            gap: 7px;
              align-items: flex-start;
                margin-top: 0;
  }
  .copy p{
    text-align: left;
  
  }

  .callto-bx{
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 50px 25px;
  }
  .callto-bx p{
    max-width: 100%;
  }
  .count-text a{
    bottom: -24px;
  }
  .count-text{
    border-radius: 20px;
  }
  .count-full{
    height: auto;
  }
  .count-secnd{
  padding-top: 15px;
}
.service-card{
  padding: 30px;
}
.service-card {
        min-height: 300px;
    }
    .serviceslide{
      padding-left: 15px;
    }
    .bahrain-callactio .card-cont {
    width: 100%;
}

.bahrian-cta{
    width: 100%;
}
.bahrian-cta img {
  position: relative;
    margin-top: 20px;
    top: 0px;
    right: 0;
    max-width: 250px;
}
.bahrain-callactio{
  flex-direction: column;
}
.foter-logo{
  justify-content: flex-start;
  margin-top: 15px;
}
.menus-ftr{
  gap:15px;
          justify-content: flex-start;
          margin-top: 10px;
}
.subhed span{
  width: 24px;
}
.subhed{
  gap: 10px;
  font-size: 14px;
}
.cntpointfull{
  padding-top: 15px;
}
.welcomefull {
    padding: 20px;
    border-radius: 25px;
  }
  .ribbon-track span{
    font-size:20px;
}
.ribbon-track span img{
  width: 28px;
}
.ribbon{
  height: 55px;
  margin-top: 20px;
}
.con-cta{
  height: auto;
}
.con-cta .cta-card{
  padding: 25px 25px;
}
.venturebx{
  padding: 20px;
  border-radius: 25px;
}
.venturebx p{
  max-width: 100%;
}
.con-cta .cta-card .ctabx{
    padding:25px;
        gap: 10px;
}
.con-cta .cta-card .ctabx .desc{
    font-size: 30px;
}
}


@media(max-width: 575px){
    .con-cta .cta-card .ctabx .desc{
    font-size: 24px;
}
  
  .venturebx img {
  height: 70px;
  }
  .logo img {
    max-width: 150px;
  }
  .header{
    padding: 15px 0;
  }
  .banner .sldimg{
    height: 360px;
  }
 .bnrtxt-slider{
  height: auto;
 }
.bnrtext{
  width: 100%;
  height: 360px;
}
.slide-con{
  width: 48px;
}

.slide-con li a img{
  width: 20px;
}
.bnrtext p br{
  display: none;
}
.bnrhed{
  font-size: 55px;
}
    .bnrhed .lne1 {
        margin-left: 37px;
    }
.abtmain{
  max-width: 100%;
}
.mainhed {
        font-size: 30px;
    }
    .service-sec{
  width: 100%;
}

.service-carousel .owl-nav{
  top: -5px;
  justify-content: flex-start;
  right: 0;
}
.service-card{
  padding: 20px;
  border-radius: 25px;
  min-height: 330px;
}
.serviceslide{
  padding-top: 54px;
}
.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    width: 36px !important;
    height: 36px !important;
}
.service-carousel .owl-nav img{
width: 18px;
}
.team-carousel .owl-nav{
  top: -5px;
  justify-content: flex-start;
  right: 0;
}

.circle-logo {
    width: 56px;
    height: 56px;
  }

  .stoppuls {
    width: 20px;
    height: 20px;
    bottom: -13px;}

    @keyframes pulseShadow {
  0% {
    box-shadow:
      0 0 0 5px rgba(47, 105, 174, 0.6),
      0 0 0 10px rgba(47, 105, 174, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(47, 105, 174, 0.2),
      0 0 0 16px rgba(47, 105, 174, 0.1);
  }
  100% {
    box-shadow:
      0 0 0 5px rgba(47, 105, 174, 0.6),
      0 0 0 10px rgba(47, 105, 174, 0.5);
  }
}


.spad{
  padding-top: 50px;
  padding-bottom: 50px;
}
.spad2{
   padding-top: 50px;
  padding-bottom: 50px;
}
.quicklink{
  margin-bottom: 16px;
}
.quicklink2{
  padding-top: 0px;
}
.circle-logo2 {
    width: 55px;
    height: 55px;
}
.ft-logo {
    max-width: 100%;
    width: 150px;
}


.copy p br{
  display: block;
}
.copy p span{
  display: none;
}
  .count-secnd{
  flex-direction: row;
      align-items: flex-start;
     padding: 15px;
}
.countbx1{
   flex-direction: column!important;
}
.countbx{
  padding: 0px!important;
  border-left: none!important;
}
.abt-bx {
  padding: 16px;
}
.abt-callaction{
  padding: 30px;
  overflow: hidden;
}

.whybxs{
  display: flex;
  justify-content: unset;
  flex-direction: column;
      height: auto;

}
.color-card{
  width: 100%;
  margin-bottom: 15px;
  margin-top: 15px;
  padding: 35px;
}
.action-card{
  width: 100%;
}
.action-card img{
  width: 100%;
  object-fit: cover;
}
.action-card2{
  width: 100%;
  height: auto;
  margin: 15px 0;
}
.action-card .cardcont {
  padding: 35px;
}
.teamcard .card-cont{
  padding: 18px 10px;
}
.teamcard .card-cont h3{
  font-size: 20px;
}
.testimonial-card{
  padding: 30px;
  border-radius: 27px;
}
.testimonial-card .testicon {
    max-width: 115px;
}
.testimonial-carousel .owl-nav {
      position: relative;
      top: 15px;
      left: 0;
      right: 0;
}
.ftr-line2{
  flex-direction: column;
}
.ftrline2-br{
  display: none;
}
.teamcard{
  width: max-content;
    max-width: 100%;
    margin: auto;
}
.menus-ftr {
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
}
.ctaft .mainhed{
  margin-bottom: 18px;
}
.ctaft .ctacountry{
  margin-bottom: 18px;
}
.marquee{
    padding: 28px 0px;
}
}


@media(max-width: 360px){
  .ctaft .ctacountry img {
    width: 90px;
}
.ctaft .ctacountry {
    align-items: flex-start;
    flex-direction: column;
}


}





/* Loader */
.loader-wrapper{
    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .3s ease, visibility .6s ease;
}

.loader-wrapper.hide{
    opacity:0;
    visibility:hidden;
}
.loader{
    width:120px;
    height:120px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.loader svg{
    width:100%;
    overflow:visible;
    animation: logoFloat 4s ease-in-out infinite;
}

/* Brown curve */
#brown{
    transform-origin:center;
    animation:brownMove 2.8s ease-in-out infinite;
}

/* Fruit */
#fruit,
#yellow{
    transform-origin:center;
    animation:fruitFloat 3s ease-in-out infinite;
}

/* Leaves */
#leaf1{
    transform-origin:300px 205px;
    animation:leafLeft 1.8s ease-in-out infinite;
}

#leaf2{
    transform-origin:300px 205px;
    animation:leafRight 1.8s ease-in-out infinite;
}

/* Animations */

@keyframes logoFloat{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.04);
    }
}

@keyframes fruitFloat{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-6px);
    }
}

@keyframes brownMove{
    0%,100%{
        transform:translateX(0) rotate(0deg);
    }
    25%{
        transform:translateX(-5px) rotate(-1deg);
    }
    50%{
        transform:translateX(3px) rotate(1deg);
    }
    75%{
        transform:translateX(-2px) rotate(-0.5deg);
    }
}

@keyframes leafLeft{
    0%,100%{
        transform:rotate(0deg);
    }
    25%{
        transform:rotate(-6deg);
    }
    50%{
        transform:rotate(2deg);
    }
    75%{
        transform:rotate(-4deg);
    }
}

@keyframes leafRight{
    0%,100%{
        transform:rotate(0deg);
    }
    25%{
        transform:rotate(6deg);
    }
    50%{
        transform:rotate(-2deg);
    }
    75%{
        transform:rotate(4deg);
    }
}

@media(max-width: 575px){
.loader{
    width:120px;
    height:120px;}
    }
    
    @media(min-width:576px){
        .mainhed br{
            display:none;
        }
    }
    
    
    
.hidden-input-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}


.grecaptcha-badge { 
    visibility: hidden;
}