html{
        overflow-x: hidden;
}
body{
    overflow: hidden;
  margin: auto;
 font-family: "Bricolage Grotesque", sans-serif !important;
}

@media(min-width: 1366px){
.cmpad{
    max-width: 1200px;
    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: #7D7878;
    font-size: 16px;
    font-weight: 400;
    line-height: 169%;
}

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: 11px 24px;
    display: flex;
    font-weight: 600;
    text-align: center;
    border-radius: 30px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}


.btn span img {
  
    margin-top: 3px; 
    width: 15px !important;
}

.btn:hover span img {
  animation-name: zoomIn;
  animation-duration: .5s;
  animation-iteration-count: 1;
  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: #0C80BC;
    overflow: hidden;
    z-index: 1;
}

.mybtn-primary:hover {
  background: #17af4b;
  color: #fff;
}



.mybtn-secondary {
   position: relative;
    color: #111111;
    background: #fff;
    overflow: hidden;
    z-index: 1;
}
.mybtn-secondary:hover {
  background: #17af4b;
  color: #fff;
}
.mybtn-secondary span img {
  filter: brightness(0);
}



.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;
}



/* Outer framed container with corner marks */
.frame{
position: relative;
    padding: 1px;
    border: 1px solid #00000030;
    display: inline-block;
}

/* Decorative crop/corner marks (small L shapes) */
.frame::before, .frame::after,
.frame .spn::before, .frame .spn::after{
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border: 2px solid #111;
    box-sizing: border-box;
    background: transparent;
}
/* top-left */
.frame::before{ left:-2px; top:-2px; border-right:none; border-bottom:none; }
/* top-right */
.frame::after{ right:-2px; top:-2px; border-left:none; border-bottom:none; }
/* We'll use span pseudo-elements for bottom corners */
.frame .spn::before{ left:-2px; bottom:-2px; border-right:none; border-top:none; }
.frame .spn::after{ right:-2px; bottom:-2px; border-left:none; border-top:none; }

/* whitecorner */
.framew{
  position: relative;
    padding: 1px;
    border: 1px solid #ffffff4d;
    display: inline-block;
    }

/* Decorative crop/corner marks (small L shapes) */
.framew::before, .framew::after,
.framew .spn::before, .framew .spn::after{
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border: 2px solid #fff;
    box-sizing: border-box;
    background: transparent;
}
/* top-left */
.framew::before{ left:-2px; top:-2px; border-right:none; border-bottom:none; }
/* top-right */
.framew::after{ right:-2px; top:-2px; border-left:none; border-bottom:none; }
/* We'll use span pseudo-elements for bottom corners */
.framew .spn::before{ left:-2px; bottom:-2px; border-right:none; border-top:none; }
.framew .spn::after{ right:-2px; bottom:-2px; border-left:none; border-top:none; }





.mybtn-third .text {
      flex: 1;
    text-align: center;
    color: #000;
    padding: 0 15px;
    background-color: #fff;
    height: 100%;
    display: flex
;
    align-items: center;
     transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.mybtn-third .arrow {
  background-color: #121416;
  color: #fff;
  width: 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mybtn-third .arrow img{
  filter: brightness(0) invert(1);
}
.mybtn-third:hover .text{
  background-color: #121416;
  color: #fff;
}
.mybtn-third:hover .arrow{
  background-color: #fff;
}
.mybtn-third:hover .arrow img{
  filter: unset;
}


.bnrhed{
    font-size: 96px;
    color: #111111;
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 100%;
}
.bnrhed span{

 background: linear-gradient(45deg, #1AA664, #04713e, #1AA664);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
text-decoration: 5px solid #1AA664 underline;
text-underline-offset: 7px;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.mainhed{
  font-size: 48px;
    font-weight: 500;
    color: #111111;
    line-height: 58px;
}







/* loader */
.ip-loader {
	    bottom: 0 !important;
    text-align: center !important;
    position: relative !important;
    margin-left: 0%;
    width: 100%;
    height: 100vh;
    display: flex
;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.loader {
  width: 150px;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}

.loader {
  /* width: 100%; */
  height: 4.8px;
  display: inline-block;
  position: relative;
  background: #1aa66533;
  overflow: hidden;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  width: 0;
  height: 4.8px;
  background: #1AA664;
  position: absolute;
  top: 0;
  left: 0;
  animation: animFw 3s linear infinite;
}

@keyframes animFw {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.c-leaf {
  position: relative;
  overflow: hidden;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: #ffffff;
  transform: scale(1);
  border-radius: 15px;
}

.c-leaf__icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100px;
  height: 107px;
  fill: white;
}

.c-leaf__fill {
  width: 100px;
  height: 100px;
  background: #2060AD;
  -webkit-animation: fillUp 1.5s ease-in-out infinite;
  animation: fillUp 1.5s ease-in-out infinite;
}

@-webkit-keyframes fillUp {
  0% {
    transform: translate(0, 100px);
  }
  100% {
    transform: translate(0, -100px);
  }
}

@keyframes fillUp {
  0% {
    transform: translate(0, 100px);
  }
  100% {
    transform: translate(0, -100px);
  }
}





/* haeder */

.header{
  position: relative;
    z-index: 11;
  /* padding: 25px 0px; */
  background: transparent;
  height: 0;
}
.hedr{
  padding-top: 34px;
}
.nav-header{
  max-width: 195px;
}

.hedrfll{
  justify-content: space-between;
  align-items: center;
}
.logo{
  width: 190px;
  float: left;

}
.logo img{
  width: 100%;
  max-width: 153px;
  float: left;
}
.hdr-menu{
    height: 100%;
}
.menus{
  display: flex;
      gap: 12px;
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}


.megalistcust{
        padding: 20px 7px !important;
    display: flex !important
;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}



/* 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: #2060ad;
  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: #134075;
}

.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: bold;
  text-align: center;
  color: white;

}

.nav-links li a:hover,
.submenu-label:hover {
  color: #5794de;
}

/* 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: 0px;
    width: 17px;
    filter: brightness(0) invert(1);
}

.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: #000000;
    float: left;
    text-decoration: none;
    list-style-type: none;
    position: relative;
    padding: 0px 12px;
    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: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-style: normal;
    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 > a:hover{
    color: #A8D044;
}
/* .stable{
  color: #ffffff !important;
} */



.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    top: 0px;
    padding: 0;
    width: 230px;
    position: absolute;
    right: 20px;
    padding-top: 30px;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 99999;
    -moz-transform: perspective(600px) rotateX(-90deg);
    -ms-transform: perspective(600px) rotateX(-90deg);
    -o-transform: perspective(600px) rotateX(-90deg);
    
    -o-transition: -o-transform .5s ease,opacity .6s ease,max-height .6s step-end,max-width .6s step-end,padding .6s step-end;
   
}
.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transition: all .5s ease-out;
    height: auto;
    right: -80px;
}

.menu ul li a:hover, .menu ul li:hover>a {
        background: #396dab;
    color: #ffffff;
    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;
}
.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: 0;
    width: 100%;
    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;
    display: block;
    color: #ffffff;
    background: #1e5aa1;
    text-align: -webkit-match-parent;
    text-decoration: none;
    /* border-radius: 30px; */
    /* margin-bottom: 10px; */
    text-align: left;
    border-bottom: 1px solid #356bab;
}



/*overlay*/

.side-menu-4 {
    position: relative;
    top: 0;
    right: 0;
    z-index: 999;
    width: auto;
    float: right;
}

.burger-menu img {
  width: 32px;
 
  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: white;
  font-size: 55px;
    font-weight: 500;
    line-height: 127%;
    margin-bottom: 0;
}

.left-area {
  background: #121416;
  color: white;
  text-align: left;
}

.right-area {
  background: #FD421B;
  color: #A8A8A8;
      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: #121416;
    border-radius: 30px;
    cursor: pointer;
    opacity: 0.5;
    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: white;
  font-size: 35px;
  font-weight: 500;
}
.right-area-main p{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 15px;
  font-weight: 400;
}
.right-area-main a{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  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: #fff;
    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;
    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;
    outline:none!important;
}



/* banner */
.bnr-carousel .owl-nav {
    display: none;
}
.bnrtxt-carousel .owl-nav {
    display: none;
}

.bnr-carousel .owl-dots{
  position: relative;
    bottom: 47px;
    max-width: 1145px;
    display: flex;
    margin: auto;
    justify-content: flex-end;
    padding-right: 15px;
    display: none;
}
.banner {
  position: relative;
  /* padding-bottom: 90px; */
  height: 100vh;
  z-index: 1;
  background-position: center;
  /* padding-top: 160px; */}

/* .banner::after{
     content: '';
    background: url(../img/images/bnrefct.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: top;
    z-index: 1;
} */


.bnrtxt-slider{
  width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 11;
    padding-top: 124px;
    flex-direction: column;
    justify-content: center;
}
.bnrcontact{
        border: 1px solid #E6E6E6;
    border-radius: 50px;
    /* backdrop-filter: blur(12px); */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 8px 16px;
}
.bnrcontact .ttl{
    display: flex;
    width: 72px;
    height: 24px;
    align-items: center;
    background: #08244D;
    border: 1px solid #ffffff63;
    border-radius: 30px;
    justify-content: center;
    gap: 4px;
}
.bnrcontact .ttl img{
  width: 15px!important;
}
.bnrcontact .ttl span{
font-size: 10px;
    font-weight: 600;
    color: #fff;
    margin-top: 1px;
}
.bnrcontact .nmbr{
  display: flex;
    align-items: center;
    gap: 8px;  
}
.bnrcontact .nmbr img{
  width: 16px!important;
}
 .bnrcontact .nmbr span{
      color: #0C80BC;
    font-size: 14px;
    font-weight: 600;
    margin-top: 1px;
 }   
 .bnr-point{
  display: flex;
  gap: 13px;
 }
.bnrpoint{
      font-size: 16px;
    color: #fff;
    font-weight: 600;
    display: flex;
    gap: 13px;
    align-items: center;
}





.bnrimg-sec{
  position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;

}
.bnrimg-p{
      position: absolute;
    bottom: 2%;
    left: 73%;
}
.bnrimg-p p{
  color: #fff;
}
.bnrimg-p .mrgn{
margin-right: 5px;
}
.banner .sldimg{
      width: 100%;
    float: left;
    position: relative;
    /* max-width: 582px; */
    height: 100vh;
    object-fit: cover;
}
.bnrtext {
      display: flex;
      gap: 22px;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.bnrtext p{
  color: #FFFFFF;
  opacity: 70%;
  max-width: 70%;
}
.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;
}

.slide-con {
    position: fixed;
    z-index: 1;
    right: 23px;
    top: 56%;
    transform: translateY(-56%);

    text-align: center;
    
    /* overflow: hidden; */
}

.slide-con li {
   background-color: #0C80BC;
    margin-bottom: 14px;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    border-radius: 35px;
}
.slide-con li:hover {
    background-color: #1AA664;
}
.slide-con li:hover img{
animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
    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;
    }
  }
.slide-con li a {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.bnr-contnt {
        width: 100%;
    display: flex;
    flex-direction: row;
    padding-bottom: 25px;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}
.gglrate{
  padding: 16px 20px;
  padding-left: 0px;
  border-right: 1px solid #595959;
  position: relative;
}
.gglrate img{
  max-width: 188px;
}
.bnrgren{
     padding: 13px 20px;
    padding-right: 0px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.bnrgren img{
  max-width: 55px;
}
.bnrgren p{
font-size: 18px;
  font-weight: 500;
  line-height: 118%;
  color: #fff;
}
.bnr-contnt p{
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.bnr-second{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}



/* about */
.abt{
  overflow: hidden;
    position: relative;
    width: 100%;
}
.abt img{
  object-fit: cover;
  border-radius: 16px;
}

.subhed{
       color: #1AA664;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.subhed span{
         width: 17px;
}
.abtcont{
    height: 100%;
    display: flex;
    gap: 10px;
    
}
.shining{
      position: relative;
    overflow: hidden;
}
.shining:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.shining:before {
    position: absolute;
    top: 0;
    left: -92%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgb(255 255 255 / 23%) 0%, rgb(255 255 255 / 31%) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

.mytab .nav-tabs{
  border: none!important;
  gap: 40px;
}
.mytab .tab-content{
  margin-top: 18px;
}
.mytab .tab-content p{
  font-size: 16px;
  line-height: 26px;
  color: #666666;
  font-weight: 400;
  margin-bottom: 0px;
}
.mytab .nav-tabs .nav-link{
  font-weight: 500;
    color: #1C392E !important;
    font-size: 24px;
    opacity: 30%;
    border: none !important;
    padding: 0;
}
.mytab .nav-tabs .nav-link.active{
opacity: 100%;
}

.mylist{
    display: flex;
    flex-flow: column;
    margin-bottom: 1rem; 
    gap: 10px;
}
.mylist li{
    position: relative;
    padding: 7px 0;
    padding-left: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #1C392E;
}
.mylist li:before{
    content: '';
    background-image: url(../img/icons/listicon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 34px;
    height: 34px;
    position: absolute;
    left: 0;
    margin-top: -4px;
}
.mylist .grenicon:before{
content: '';
    background-image: url(../img/icons/listicon-g.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
/* marquee */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 15px 0;
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-item {
  flex: 0 0 auto;
  text-align: center;
  margin-right: 27px;
  display: flex;
    flex-direction: row;
    align-items: center;
}
.marquee-item a{
  margin: 0;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 20px;
  color: #111111;
  border: 1px solid #E6E6E6;
  border-radius: 35px;
}
.marquee-item a:hover{
  background: #1AA664;
  border: 1px solid #1AA664;
  color: #fff;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause when any item is hovered */
.marquee:hover .marquee-track {
    animation-play-state: paused;
}






/* services */
.servicesall{
  border-radius: 50px;
  background: #1AA664;
  width: 96%;
    margin: auto;
}
.services{
  border-radius: 50px;
  background: #0C80BC;
  
}
.service-sec{
       display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}
.service-sec .subhed{
  color: #fff;
}
.service-sec h2{
  color: #fff;
  margin-top: 16px;
}
.prodct-card{
 background: #FFFFFF;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    height: 411px;
}
.prodct-card .crdimg{
  padding: 24px 15px;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prodct-card .crdimg img{
  height: 160px;
  object-fit: contain;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prodct-card .cont{
  width: 100%;
  padding: 40px 40px;
  padding-top: 0px;
  background: #fff;
  border-radius: 25px;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prodct-card .cont span{
  font-size: 12px;
  font-weight: 400;
  color: #111111;
  padding: 8px 18px;
  border: 1px solid #E6E6E6;
  border-radius: 35px;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prodct-card .cont h3{
  font-size: 20px;
  font-weight: 500;
  color: #111111;
  margin-top: 15px;
  margin-bottom: 10px;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prodct-card .cont p{
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 12px;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.prodct-card .cont .morebtn{
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 0;
  text-decoration: 1px solid #111111 underline!important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prodct-card:hover .crdimg{
  padding: 18px 15px;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prodct-card:hover .crdimg img{
height: 200px;
transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prodct-card:hover .cont{
  padding-top: 40px;
  background: #1AA664;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prodct-card:hover .cont span{
  color:#fff;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prodct-card:hover .cont h3{
  color:#fff;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prodct-card:hover .cont p{
  display: none;
}
.prodct-card:hover .cont .morebtn{
  color: #fff;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
  text-decoration: 1px solid #fff underline!important;
}


.marquee-track2 {
  display: flex;
  animation: marquee-scroll2 20s linear infinite;
}

.marquee-track2 .marquee-item {
  flex: 0 0 auto;
  text-align: center;
  margin-right: 35px;
  display: flex;
    flex-direction: row;
    align-items: center;
}
.marquee-item img {
  width: 36px;
  height: 36px;
  display: block;
  margin-right: 35px;
}

.marquee-item p {
  margin: 0;
  font-weight: 500;
  font-size: 64px;
  color: #FFFFFF;
  opacity: 20%;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.marquee-item p:hover{
  opacity: 100%;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
@keyframes marquee-scroll2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.marquee:hover .marquee-track2 {
    animation-play-state: paused;
}



/* adserv */
.adcard{
      padding: 38px 35px;
  display: flex;
  gap: 30px;
  background: #1AA664;
  flex-direction: row;
  border-radius: 20px;
  margin-bottom: 20px;
}
.adcard .cardimg{
  width: 50px;
}
.adcard .cont{
width: calc(100% - 50px);
}
.adcard .cont h3{
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
}
.adcard .cont p{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.adcard2{
  background: #0C80BC;
}



/* whyschoose */
.whychoose{
  background: linear-gradient(
180deg, #F7F7F7, #fff);
}
.w-card{
      flex-direction: column;
  display: flex;
 
}
.w-card span{
  width: 70px;
    height: 70px;
    border-radius: 14px;
    border: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: center; 
}
.w-card h3{
  color: #1C392E;
  font-size: 24px;
  font-weight: 500;
  margin-top: 22px;
  margin-bottom: 15px;
}
.w-card p{
  color: #666666;
  font-size: 16px;
  font-weight: 400;
}
.w-card:hover span img{
animation-name: zoomIn;
  animation-duration: .5s;
  animation-iteration-count: 1;
}
.w-cardcentr{
background: #1AA664;
    border-radius: 20px;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
.w-cardcentr .cont{
      display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 30px 15px;
    text-align: center;
}
.w-cardcentr .cont h2{
  color: #fff;
  margin-bottom: 15px;
}
.w-cardcentr .cont p{
  font: 16px;
  font-weight: 400;
  color: #fff;
   margin-bottom: 15px;
}



/* process */
.processhedr{
  border-top: 1px solid #E6E6E6;

}

.prcscard{
  padding: 55px 26px;
  border: 1px solid #E6E6E6;
  border-radius: 25px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
.prcscard:hover{
  border: 1px solid #1AA664;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.prcscard h3{
  color: #111111;
  font-weight: 600;
  font-size: 20px;
  margin: 20px 0;
}
.prcscard p{
  color: #666666;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}




/* CONTACTFROM */
.con-field{
    margin-bottom: 20px;
}
.con-desc {
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  
}

.con-desc .cont-img {
 width: 36px;
    height: 36px;
    background: #2e7bd7;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.con-desc p {
  margin-bottom: 0;
  width: calc(100% - 51px);
  color: #ffffff;}
.con-desc p a{
    color: #ffffff!important;
    font-weight:400;
}
.cont-img img {
  width: 22px;
}

.con-field label {
    font-size: 16px;
    color: #111111;
    font-weight: 500;
    width: 100%;
    float: left;
    margin-bottom: 5px;
        display: flex;
    gap: 5px;
    align-items: center;
}
.con-field input {
    width: 100%;
    float: left;
    padding: 14px;
    border: none!important;
    border-radius: 8px;
    font-size: 16px;
    color: #74757D;
        background: #FDFDFD;
    height: 60px;
    outline:none!important;
}
.con-field textarea {
    width: 100%;
    float: left;
         background: #FDFDFD;
    padding: 12px;
      border: 1px solid #C6C6C6;
    border-radius: 8px;
    font-size: 16px;
    color: #74757D;
    height: 170px;
    outline:none!important;
}
.con-field select {
    width: 100%;
    float: left;
    padding: 14px;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
    font-size: 16px;
    color: #74757D;
        background: #FDFDFD;
    height: 60px;
    outline:none!important;
}

.bookingfrm input,
.bookingfrm textarea,
.bookingfrm select{
height: 46px!important;
padding: 10px 14px;
background: #0c80bc33;
}

.modal-content .contct-frm{
      border-top: 2px solid #1aa664;
    padding-top: 11px;
    margin-top: 25px;
}


/* modal */
@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px !important;
    }
}
#booking .modal-content {
    /* background: #000; */
    background-size: cover;
    border-radius: 20px;
        background: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
 border: none;
}


.modal-content .mainhed span{

 background: linear-gradient(45deg, #1AA664, #04713e, #1AA664);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
}
.close_form {
    border-radius: 30px;
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 5px;
    z-index: 999;
    top: 15px;
    background: #1AA664 url(../img/icons/close.svg) no-repeat center center;
    background-size: 15px 15px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.mod-new {
    width: 100%;
    float: left;
    padding: 30px;
}



















/* group */
.groupsec{
  text-align: center;
  align-items: center;
  max-width: 900px;
  margin: auto;
  padding-top: 70px;
}
.groupsec p{
  font-size: 18px;
  color: #A2A2A2;
}
.goc-logo{
     width: 210px;
    height: 100px;
    border-radius: 10px;
    padding: 10px;
    display: flex
;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    margin-top: 20px;

}




/* market */
.market .service-sec{
gap:18px;
}
.marketcard .cardno{
  position: relative;
  margin-bottom: 15px;
  overflow-x: hidden;
}
.marketcard .cardno span{
      width: 51px;
    height: 44px;
    color: #161F00;
    background: #FFFFFF;
    clip-path: polygon(0% 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.cardno::after{
  content: '';
    position: absolute;
    background: #AEB59A;
    height: 0.5px;
    width: 100%;
    left: 62px;
    top: 50%;
}
.marketcard .cardcont h3{
  font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 10px;
}    
.marketcard .cardcont p{
  color: #828282;
  margin-bottom: 14px;
  line-height: 155%;
}
.marketcard:hover .cardno span{
background: #A8D044;
transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.marketcard .card-img img{
width:100%;
max-width: 100%;}



.globalmap{
  position: absolute;
    top: 80px;
    right: 0;
    width: 50%;
    /* height: 380px; */
    display: flex
;
    justify-content: flex-end;
}
.globalmap img{
object-fit: contain;
    height: 380px;
    position: relative;
    right: 0;
}

.globlhed{
font-size: 42px;
}





.menuimg{
  clip-path: polygon(0% 44px, 44px 0, 100% 0, 100% calc(100% - 44px), calc(100% - 44px) 100%, 0 100%);
}




/* footer */
.footer{
  background: linear-gradient(
133deg, #1AA664, #0C80BC);
  background-size: cover;
  background-repeat: no-repeat;
}
.ft-top{
      display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 60px 0;
    border-bottom: 1px solid #ffffff36;
    margin-bottom: 60px;
}
.ftsectn{
  background: #1C1C1C;
  padding: 55px 40px 30px;
  border-radius: 20px;
}


.ft-p{
  color: #fff;
  line-height: 25px;
  margin: 20px 0;
}
.ft-logo{
  max-width: 100%;
  width: 300px;
  margin-bottom: 0;
}
.ft-logo img{
  width: 100%;
  filter: brightness(0) invert(1);
}
.quicklink h2{
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 18px;
}
.quicklink li{
      margin-bottom: 15px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}
.quicklink li a{
  color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}
.quicklink li p{
   color:#ffffff;
  font-size: 16px;
  font-weight: 500;
}

.quicklink li .adrs{
      margin-bottom: 49px;
    line-height: 36px;
}

.quicklink li a:hover{
  color:#ffffffad;

}
.quicklink2{
  padding-left: 55px;
}
.copy{
    padding: 21px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-top: 1px solid #ffffff36;
    margin-top: 50px;
}
.copy p{
  color: #fff;
}

.ft-social{
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
}
.ft-social a {
       width: 40px;
    height: 40px;
    border: 1px solid #E6E6E6;
    border-radius: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ft-social a:hover span img{
animation-name: zoomIn;
filter: unset;
    animation-duration: .5s;
    animation-iteration-count: 1;
}

.copy p a{
  color: #ffffff;
}
.copy p a:hover{
  color: #e6e6e6;
}
.copy p br{
  display: none;
}
.copy p span{
  padding: 0 5px;
}
/* .ft-social a span img{
    height: 17px;
    width: 17px;
} */


.fix-nmbr {
    position: fixed;
    z-index: 1;
    right: 23px;
    bottom: 50px;
    text-align: center;
}
.fix-nmbr .bnrcontact .nmbr img{
  width: 27px!important;
}
.fix-nmbr .bnrcontact{
  padding: 11px 15px;
  border: none!important;
  background: #fff;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.fix-nmbr .bnrcontact .nmbr span {
    color: #101010;
    font-size: 18px;
    font-weight: 600;
    margin-top: 1px;
}
.fix-nmbr .bnrcontact:hover{
  background: #1AA664;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.fix-nmbr .bnrcontact:hover .nmbr span {
  color: #fff;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}










@media(max-width: 1366px){
  .bnrhed{
    font-size: 77px;
  }  
.mainhed{
      font-size:40px;
      line-height: 49px;
    }
    
  }

@media (min-width:992px) and (max-width:1280px){
.nav-menu > li > a {
    padding: 0px 6px!important;
    font-size: 14px;
  }
}

@media (min-width:1281px) and (max-width:1366px){
.nav-menu > li > a {
    padding: 0px 13px!important;
    font-size: 14px;
  }
}

@media (min-width:992px) and (max-width:1199px){

.header_menu_area > ul > li > a {
  font-size: 15px;
}
.header_menu_area > ul > li {
  padding: 0px 10px 0px 1px;
}
.whybox5 .man{
  max-width: 95%;
}
.whybox5 .whyrounded {
    bottom: -15%;
    left: -33%;
}

  .nav-header {
    width: 120px;
}
}

@media(max-width: 1199px){

  .prodct-card .cont {
    padding: 40px 12px;
    padding-top: 0px;
  }
  .prodct-card .cont h3{
    font-size: 17px;
  }
  .prodct-card {
    justify-content: space-between;
}
  .bnrtext{
    padding-right: 25px;
  }
  .bnrhed{
    font-size: 50px;
  }
.service-card .card-hed h3{
  font-size: 22px;
}

.about-sect p {
    font-size: 27px;
    line-height: 38px;
}
.countsection .count-cont h3{
  font-size: 45px;
}
.countsection .countbx p{
  font: 18px;
}
.addsercard img {
    margin-top: 24px;
    height: 70px;
}
.addsercard{
  padding: 15px 10px;
}
.addsercard p{
  font-size: 14px;
}
.whycard1 .cont {
width: 225px;
}
.whycard1 .cardimg {
    width: calc(100% - 22px);}
    .whycard2 .cardimg{
  width: 125px;
}
.brnadcard img {
    max-width: 100px;
    height: 50%;
    object-fit: contain;
}
.brnadcard{
  background-position: center;
}
}



@media(max-width: 991px){
.whycard{
  height: auto!important;
  display: flex!important;
  gap: 15px!important;
  flex-direction: column!important;
  margin-bottom: 15px!important;
}
.whycard .cont{
width: 100%!important;
}
.whycard .cardimg{
        width: 100% !important;
        display: flex;
        justify-content: flex-start;
}
.whycard .cardimg img{
  max-width: 200px;
}
.whycard3{
  height: 220px!important;
}


.menus{
  display: none;
}
.side-menu-4{
  display: none;
}
.hdr-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.bnrtext{
  padding-right: 0;
}
.bnrhed{
  font-size: 50px;
}

.shining:before{
  left: -106%;
}
.mainhed {
       font-size: 36px;
       line-height: 43px;
    }
.whybox{
  height: 280px;
}
.whybox4{
  height: 215px!important;
}
.whybox5 .man{
  max-width: 93%;
}
.whybox5 .whyrounded {
    bottom: -15%;
    left: -33%;
}

.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;
}
.abt{
  margin-bottom: 15px;
}
.service-card{
  margin-bottom: 30px;
}
.atributes-card {
    padding-top: 25px !important;
}
.flavours-card .card-hed h3{
  font-size: 22px;
}
.flavour-under .mainhed{
  font-size: 26px;
}
.flavour-under p br{
  display: none;
}
.countbx {
  padding: 30px 15px;
}
.cta{
  height: auto;
}
.cta-card {
  
    padding: 50px 40px;
}
.quicklink2{
  padding-left: 0px;
}
.ft-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 45px 0;
    border-bottom: 1px solid #ffffff36;
    margin-bottom: 45px;
    flex-direction: column;
    gap: 15px;
}
.ft-social{
  margin-bottom: 25px!important;
}
.servicecrain {
    margin-top: -60px;
    max-width: 165px;
}
.countsection .count-cont h3{
  font-size: 30px;
}
.countsection .countbx p{
  font-size: 16px;
}
.countsection .countbx{
  padding: 15px 0;
}
.variations{
  padding: 0;
}
.f-top{
  width: 280px;
}

.groupsec{
  padding-top: 0px;
}
.navigation-portrait .megamenu-panel{
  padding: 12px!important;
}
.megamenu-panel {
width: 100%!important;}
.nav-toggle {
margin-top: -26px!important;}
.abt-cntsec{
  margin: 0;
}
.serviceslidefull{
  padding-left: 40px;
}
.w-cardcentr .cont{
  padding: 30px 30px 15px;
}
}






@media(max-width: 767px){
  .w-card {
    align-items: flex-start !important;
    text-align: left !important;
            margin-bottom: 15px !important;
}
.w-cardcentr{
          margin-bottom: 15px;
        height: auto;
}
  .banner .sldimg{
    object-position: right;
  }
 
  .banner{
    height: auto;
  }
  .whychoosehedr {
    width: 100%;
    max-width: 100%;}

.service-card .cont h3 {
  font-size: 20px;
}
.whyship {
  width: 140px;
}
.whygroup {
    width: 140px;
    top: 0px;
}

.bnrhed{
  font-size: 40px;
}
.abtcont{
  padding-left: 0;
  width: 100%;
  margin-bottom: 20px;
  padding-right: 0;
}
    .service-card .card-hed h3 {
        font-size: 20px;
    }

.whybox{
  height: auto!important;
}
   
    .product-bx{
      height: 250px;
    }
    .product-bx img{
      height: 100%;
              width: 100%;
    }
    .product-bx .cont h3{
      font-size: 20px;
    }
    .product-bx .cont {
    padding: 15px 15px;
  }
  .countbx{
   margin-bottom: 0px;
   padding-bottom: 0px;
  }
  
  .copy{
    flex-direction: column;
            gap: 10px;
                margin-top: 30px;
  }
  .copy p{
    text-align: center;
  }

  .callto-bx{
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 50px 25px;
  }
  .callto-bx p{
    max-width: 100%;
  }
 .whybox4 {
      margin-top: 15px;
        /* height: 215px !important; */
        width: 50%;
    }
  .whybox5{
            height: 340px !important;
     width: 50%;
             margin-top: 15px;
}
    .whybox5 .man {
        max-width: 50%;
    }
        .whybox5 .whyrounded {
        bottom: -30%;
        left: -36%;
    }
    .whybox4 img{
      bottom: -57%;
    }
.whyfull3{
  flex-direction: row;
  height: 100%;
}
.flavours-card{
  margin-bottom: 30px;
}
.globalmap {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    /* height: 380px; */
    display: flex
;
    justify-content: flex-start;
}
.globalmap img{
  height: auto;
}
.blogcard .card-date{
  flex-direction: column;
}
.servicecrain {
        margin-top: 0;
        max-width: 90px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
    .service-sec{
      position: relative;
      z-index: 1;
    }
    .f-top{
      display: none;
    }
   .con-cta {
    height: auto;
   }
    .con-cta .cta-card{
      max-width: 100%;
      padding: 50px 30px;
    }
    .serviceslidefull{
      padding-left: 15px;
      margin-top: 30px;
    }
    .service-carousel .owl-nav{
      top: 0;
    }
    .mainhed br{
      display: none;
    }
    .marquee-item img{
  width: 16px;
  height: 16px;
      margin-right: 13px;
}
.marquee-item p{
  font-size: 15px;
}
.marquee-track2 .marquee-item{
  margin-right: 13px;
}
.marquee-track2 {
    display: flex;
    animation: marquee-scroll2 10s linear infinite;
}
}


@media(max-width: 575px){
  .bnrtxt-slider{
    padding-top: 86px;
    height: 450px;
  }
  .banner{
    height: 450px;
  }
  .banner .sldimg {
        height: 450px;
        object-position: 80%;
    }
  .ft-social{
    justify-content: flex-start;
  }
  .adcard {
    padding: 15px 15px;}
    .adcard .cont h3{
      margin-bottom: 15px;
    }
  .marquee-track {
  display: flex;
  animation: marquee-scroll 5s linear infinite;
}
.marquee-track2 {
    display: flex;
    animation: marquee-scroll2 6s linear infinite;
}
 .banner::after{
     content: '';
    background: #ffffff75;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.marquee-item a {
    padding: 11px 15px;
    font-size: 14px;
}
.marquee-item{
  margin-right: 13px;
}



  .proces-card .cont h3{
    font-size: 20px;
  }
  .proces-card .cont h2{
    font-size: 20px;
  }
  .proces-card .cont{
    gap: 10px;
  }
      .service-card .cont h3 {
        font-size: 17px;
    }
    .whycard h3{
      font-size: 18px;
    }
  .count-cont h3 {
    font-size: 38px
  }
  .abt-cntsec{
    flex-direction: column;
  }
  .gglrate {
    padding: 16px 8px;
  }
  .gglrate img {
    max-width: 125px;
}
.bnrgren img {
    max-width: 36px;
}
.bnrgren {
    padding: 15px 5px;
  }
  .bnr-contnt p{
    font-size: 14px;
  }
.con-cta .cta-card{
  max-width: 100%;
  width: 100%;
}
.con-cta-round{
  display: none;
}
.ft-top{
  flex-direction: column;
      align-items: flex-start;
      padding-bottom: 20px;
      margin-bottom: 20px;
      gap: 15px;
}
    .countbx {
      padding-top: 15px;
    }
    .atributes-card h3 {
      font-size: 19px;
    }
.bnrhed{
  font-size: 40px;
}
.hedr {
    padding-top: 20px;
}
.btn {
    padding: 10px 19px;
    font-size: 14px;
    font-weight: 500;}
.nav-header{
  width: 140px;
}
.abtmain{
  max-width: 100%;
}
.mainhed {
                font-size: 28px;
                line-height: 33px;
    }
.mainhed br{
  display: none;
}    
.service-carousel .owl-nav{
  top: -10px;
  justify-content: flex-start;
}
.serviceslide{
  padding-top: 0;
}
.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;
}
.whybox2{
  width: 100%;
}
.whybox3{
  width: 100%;
}
.whyfull {
  height: auto!important;
}
.whyfull2 {
  height: auto!important;
}
.whybox2 img {
    margin: auto;
    width: auto;
    margin-top: 15px;
    margin-bottom: 50px;
    pointer-events: none;
}
.whybox{
  height: 280px!important;
}

.whyfull3{
  flex-direction: column;
  height: auto;
}
.whybox5{
  width: 100%;
}
    .whybox5 .man {
        height: calc(100% - 120px) !important;
        width: auto;
    }
        .whybox5 .whyrounded {
        bottom: -31%;
        left: -91px;
        max-width: 230px;
        width: 230px;
    }
.whybox4{
  width: 100%;
}
.product-bx {
        height: 210px;
    }
.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: 35px;
  padding-bottom: 35px;
}
.spad2{
   padding-top: 35px;
  padding-bottom: 35px;
}
.quicklink{
  margin-bottom: 16px;
}
.quicklink2{
  padding-top: 0px;
}
.circle-logo2 {
    width: 55px;
    height: 55px;
}
.ft-logo {
    max-width: 100%;
    width: 170px;
}
.foter-logo {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.slide-con li a {
                  width: 42px;
        height: 42px;
      }

    .slide-con li a img{
  width: 22px;
}
.copy p br{
  display: block;
}
.copy p span{
  display: none;
}

.subhed {
  font-size: 15px;
}
    .cta-card {
        padding: 50px 15px;
    }
    .service-sec p br{
      display: none;
    }
.whycontainer{
  display: none;
}
.variations-full{
  padding-top: 40px !important;
}
.whygroup{
  width: 65px;
  height: 29px;
}
    .whyship {
        width: 70px;
        top: 0;
        height: 22px;
    }
    .f-btm {
    margin-top: 20px;
}
.f-card h3 {
font-size: 21px;
margin-bottom: 10px;
}
.servicesall{
  border-radius: 25px;
}
.services{
  border-radius: 25px;
}

}



@media(max-width: 480px){
.adcard{
  flex-direction: column;
  gap: 13px;
}
.adcard .cont h3 {
        margin-bottom: 13px;
    }
}














