    * {
  padding: 0;
  
}

body, html {
  max-width:100%;
}



a:hover,
a:focus,
a:focus-visible {
  text-decoration: none;
  outline: none;
}

body {
font-family: "Inter", sans-serif;
}

h1,
h2,h3,h4,h5 {
  font-family: "Inter", sans-serif !important;
  font-optical-sizing: auto;
  margin-bottom:15px;
  font-weight:400 !important;
}



p { font-size: 14px; line-height: 1.8; color: #8E8E8E; }


.banner {
    position:relative;
}

.banner .container{
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:100%;
    z-index:1;
}


.banner .h2 { color: #fff;  margin-bottom: 15px; text-align: center; font-size: 65px; }


.caption { position: absolute; left:0; right:0; display: flex; flex-direction: column; height: 100%; width: 100%; align-items: center; justify-content: center; }


.banner img, .banner video {
    height:100vh;
    object-fit:cover
}

.banner p {color:#fff;font-size: 18px;}

.overlay {
    position:absolute;
    width:100%;
    left:0;
    top:0;
    height:100%;
    background:linear-gradient(360deg,rgba(0, 0, 0, 0.81) 0%, rgba(0, 0, 0, 0.65) 34%, rgba(0, 0, 0, 0.17) 100%);
    z-index:1;
}

.span {
    font-size:14px;
    display:block;
    color:#000000;
    margin-bottom:25px;
}
.span::before { background: url(../images/Polygon-201.svg) no-repeat center center;
background-size: contain;
    content: '';
    color: #0D825E;
    margin-right: 8px;
    width: 15px;
    height: 30px;
    position: absolute;
    margin-left: -24px;
    margin-top: -4px;}


nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  transition: all ease-in-out 0.5s;
  padding:15px 0;
  background:#f7f7f5;
}
nav .navbar {
  padding: 0px;
}
.navbar-brand img {
  width: 200px;
}

.navbar-brand {
    margin-left:0px;
}
nav .logoblack {
  display: none;
}
nav .navbar-nav {
    margin-right: 35px;
}

nav .navbar-nav .nav-item {
  margin-left: 70px;
}
nav .navbar-nav .nav-link {
  color: #000;
  font-size: 14px;
  opacity:0.8;
  transition:all 0.5s ease 0s;
  position:relative;
  padding-left:0px !important;
  padding-right:0px !important;
}

nav .navbar-nav .nav-link::before {
    content:'';
    position:absolute;
    left:0px;
    bottom:0px;
    width:0px;
    background:rgb(23 115 84);
    height:1px;
    transition:all 0.5s ease 0s;
}

@media (min-width: 991px){
    nav .navbar-nav .nav-link:hover {
    opacity:1;
    color:rgb(23 115 84);
}

nav .navbar-nav .nav-link:hover::before {
    width:100%;
}
}

nav.dlf_nav {
  -webkit-animation: navbar-animation 0.6s;
  animation: navbar-animation 0.6s;
  /*background:#000;*/
}

nav .borde {border:1px solid #fff !important; color:#fff !important;}

nav.dlf_nav .grm-btn.borde::before {background:#000 !important;}


.banner {height:100vh;}
.banner p {margin-top:12px;}
.banner .d-flex {margin-top:8px;}
/*.banner .d-flex a:first-child {color:#fff; border:1px solid #fff;}*/
.banner .d-flex a:last-child {color:#000; background:#fff; border:1px solid #fff;}
.banner .d-flex a:hover {border:1px solid transparent !important;}
.banner .d-flex a:last-child:hover {color:#fff; border:1px solid transparent !important;}

.bannertint::after{
        content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000099;
}

.nav-right {
    margin:0px;
    display:flex;
    align-items:center;
    margin-left:30px;
}



@-webkit-keyframes navbar-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes navbar-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.hamburger .line {
  width: 30px;
  height: 2px;
  background-color: rgb(0 0 0);
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}

#hamburger-11 {
  outline: none !important;
  transition: all 0.3s ease-in-out;
}

#hamburger-11.is-active {
  -webkit-animation: smallbig 0.6s forwards;
          animation: smallbig 0.6s forwards;
}

@-webkit-keyframes smallbig {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
}

@keyframes smallbig {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
}
#hamburger-11.is-active .line:nth-child(1),
#hamburger-11.is-active .line:nth-child(2),
#hamburger-11.is-active .line:nth-child(3) {
  transition-delay: 0.2s;
}

#hamburger-11.is-active .line:nth-child(2) {
  opacity: 0;
}

#hamburger-11.is-active .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#hamburger-11.is-active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}/*# sourceMappingURL=style.css.map */


@keyframes fadeInUp2 {
        from {
        }

        to {
            opacity: 1
        }
    }

    @-webkit-keyframes fadeInUp2 {
        from {
        }

        to {
            opacity: 1
        }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
@-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(40px);
      transform: translateY(40px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
      transform: translateY(40px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
  }
  
  .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }




.pad80 {
  padding: 80px 0;
}

.padt80 {
  padding-top: 80px;
}

.padb80 {
  padding-bottom: 80px;
}



.h2 {
  font-size: 50px;
  margin-bottom: 15px;
}

.h2 span {font-style: italic;}

.h2.large {margin-bottom:50px;}

h3 {font-size:35px; font-weight:500 !important;}



h4{
    font-size:25px;
}

h4 span {
    color:#23BA97;
}


.black {
    color:#000;
}

.grey {
    background:#F2F2EF;
}



h5 {
    font-size:17px;
    line-height:1.6;
}

h5.head {
    padding-bottom:20px;
    border-bottom:1px solid #ffffff45;
    margin-bottom:35px;
}

.til-btn {
    border:0px;
    color:#000;
    padding:11px 21px;
    transition:all 0.5s ease 0s;
    cursor:pointer;
    background:none;
    /*border:1px solid #000;*/
    border: 1px solid #fff;
    background: #fff;
    border-radius:8px;
    font-size:13px;
    position:relative;
    overflow:hidden;
    display:inline-block;
    z-index:1;
}

.til-btn::before {
    content:'';
    background: linear-gradient(90deg, rgba(55, 189, 165, 1) 0%, rgb(117 212 42) 100%) !important;
    z-index: -1;
    width: 100%;
    height: 0;
    top: auto;
    bottom: 0;
    border-radius: 0;
    transform: none;
    transition: all 0.5s ease 0s;
    position:absolute;
    left:0;
    
}

.til-btn:hover::before {
    height:100%;
}

.til-btn:hover {
    color:#fff;
    border:1px solid transparent;
}

.til-btn.fill {background: linear-gradient(90deg, rgb(22 157 177) 0%, rgb(117 212 42) 100%) !important;
    border: 0px;
    color: #fff;}
.til-btn.fill::before {background:#000 !important;}

.til-btn svg {
    width: 13px;
    margin-left: 6px;
    transition: all 0.3s ease 0s;
    position: relative;
    top: 4px;
}

.til-btn:hover svg path {stroke:#fff}

.hoverlink {
    position:relative; 
    color:#000 !important; 
    font-size:14px; 
    transition:all 0.5s ease 0s;
    display: inline-flex;
}
.hoverlink:hover {color:#0D825E !important;}
.hoverlink::after {
    content:'';
    position:absolute;
    left:0;
    width:0;
    bottom:-2px;
    background:#000;
    transition:all 0.3s ease-in-out 0s;
    height:0.5px;
}
.hoverlink:hover::after {width:100%; left:auto;}
.hoverlink svg {width:13px; margin-left:8px; position:relative; top:3px;}
.hoverlink img { background: #0D825E; width: 16px; height: 16px; padding: 3px; border-radius: 50%; margin-left:10px; }


.overflow {overflow:hidden;}
.overflow img {transition:all 0.5s ease 0s;}
.overflow:hover img {transform:scale(1.2);}

.aboutus {text-align:center; border-bottom:1px solid #cccccc6e;}

.aboutus .til-btn {margin-top:10px;}

.map {margin-top:200px; position:relative;  }
/*.map::after {*/
/*    z-index: 1;*/
/*    filter: blur(8px);*/
/*    content: '';*/
/*    background: linear-gradient(to top, rgb(247 247 245) 0%, rgb(247 247 245 / 20%) 100%);*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 130px;*/
/*    bottom: -30px;*/
/*    position: absolute;*/
/*}*/
.pointer img {width:45px; }
.pimg  {position:absolute; left:0; top:0; cursor:pointer; z-index:1;}
.pimg:before { position: absolute; background: linear-gradient(134deg,rgba(109, 210, 59, 1) 0%, rgba(48, 197, 198, 1) 100%); bottom: -10px; left: 1px; content: ''; border-radius: 50%; height: 30px; width: 40px; z-index: -1;animation: pulseWave 2s infinite ease-in-out;
  transform-origin: center;
  opacity: 0.8; }
  
  @keyframes pulseWave {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3); /* grows */
    opacity: 0.5;           /* slightly fades */
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
.pimg img {transition:all 0.4s ease 0s; transform:scale(0.8);}
.pimg.one { left: 51%; top: 12%; }
.pimg.one img {transform: rotate(0deg) scale(0.8);}
.pimg.two { left: 70%; top: 27%; width: 44px; }
.pimg.three { left: auto; right: 33.5%; top: 39%; width: 45px;  }
.pimg.three img {transform: rotate(22deg) scale(0.8);}
.desc { transform:translateY(30px); width:0; height:0; overflow:hidden; opacity:0; position: absolute; width: 500px; background: #f6f7f5; padding: 20px 30px; border-radius: 10px; transition: all 0.4s ease 0s; left: -270px; top: -200px; text-align:center;}
.desc h5 {margin-bottom:5px; font-weight:600 !important;}
.desc p {margin:0;}
.pimg.two .desc { left: -150px }
.pimg.three .desc { left: auto; right: -450px;}
.pimg.active .desc {opacity:1; width:500px; height:auto; transform:translateY(-20px);}
.pimg.one.active img { transform: rotate(0deg) scale(1); }
.pimg.two.active img { transform: scale(1); }
.pimg.three.active img { transform: rotate(0deg) scale(1); }

/*.mapimage.one, .mapimage.two, .mapimage.three {*/
/*  display: none;*/
/*}*/

/*.mapimage {*/
/*  transition: transform 1s; */
/*}*/

/*.mainimg img {transition:all 1s ease 0s;}*/
.mapimage.apacimg.active {animation: rotate 2s linear forwards;}
.mapimage.emea.active {animation: rotate1 2s linear forwards;}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(10deg);
  }
}
@keyframes rotate1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-10deg);
  }
}



.mapimage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  object-fit: cover;
  object-position: top;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  transition: transform 1s ease, opacity 0.8s ease; /* smooth transform */
}

/*.mapimage {*/
/*  transition: transform 1s ease; */
/*}*/


.mapimage.active {
  opacity: 1;
  visibility: visible;
}


.mainimg {
    min-height:500px; 
    max-width:1200px; 
    margin:0 auto;
    position: relative;
    overflow: hidden;
}



.product_row {text-align:center; margin-top:50px;}
.product_row p {padding:0 45px;}
.product {position:relative; height:100%; padding:60px 0px;border-radius: 15px;overflow: hidden;}
/*.product .whiteicon {z-index:0;}*/
/*.product:hover .blackicon {z-index:0;}*/
/*.product:hover .whiteicon {z-index:1;}*/
/*.product img {width:100%;height:100%; object-fit: contain;position: absolute;top:0;bottom:0;left:0;right:0;margin: auto;transition: z-index 0.5s ease;z-index: 1;}*/

.product .blackicon,
.product .whiteicon {
    position: absolute;
     object-fit: contain;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width:100%;height:100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product .whiteicon {
    opacity: 0;
}

.product:hover .blackicon {
    opacity: 0;
}

.product:hover .whiteicon {
    opacity: 1;
}

.product .co-img{
    height: 104px;
    width: 104px;
    transition:all 0.4s ease;
    position:relative;
    margin: auto;
    margin-bottom:20px;
}
.product:hover .co-img{
    transform:translateY(-30px)
}

.product::before {
    content: '';
    width: 100%;
    height: 0%;
    /*background: linear-gradient(90deg,rgba(55, 189, 165, 1) 0%, rgb(117 212 42) 100%) !important;*/
    background:linear-gradient(148deg, rgb(22 157 177) 12%, rgb(117 212 42) 100%) !important;
    position: absolute;
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin: auto;
    transition: all 0.5s ease;
    opacity:0;
}
.product h3, .product p {position:relative; z-index:1; transition:all 0.4s ease;}
.product .hoverlink {color:#fff !important; transition:all 0.4s ease 0s; opacity:0;}
.product .hoverlink svg path {stroke:#fff !important;}
.product .hoverlink::after {background:#fff;}
.product:hover::before {height:100%; opacity:1;}
.product:hover .hoverlink {opacity:1;}
.product:hover h3, .product:hover p {color:#fff; transform:translateY(-30px);}


.whyus {background:#000 url(../images/blur.webp) no-repeat 150% top; position:relative; min-height:80vh; background-attachment:fixed; }
/*.whyus::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: -110px;*/
/*    bottom: -100px;*/
/*    width: 710px;*/
/*    height: 350px;*/
/*    background: #11362ae6;*/
/*    border-radius: 50%;*/
/*    filter: blur(101px);*/
/*}*/
.whyus .span {color:#fff !important;}
.whyus .h2, .whyus p {color:#fff;}
.whyus p {color:#ffffff9e;}

.borderbox {
    position: relative;
    border-radius: 12px;
    padding: 30px 15px;
    overflow: hidden;
    transition: all 0.5s ease 0s;
    height: 100%;
    min-height: 330px;
}

.borderbox::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(302deg, black, #a5a3a369);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.borderbox::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(182deg,rgba(5, 11, 3, 1) 0%, rgba(30, 71, 26, 1) 42%, rgba(24, 74, 62, 1) 62%, rgba(7, 36, 40, 1) 100%);
    

    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.borderbox p {
    margin-bottom:0px;
}

.borderbox p br {display:none;}

.borderbox h5 {color:#fff;}
.borderbox img {margin-bottom:40px; z-index:1; position:relative; width:55px;}
.scrollrow {margin-left:-8px; margin-right:-8px; }
.scrollrow .col-sm-6 {
    margin-bottom: 20px;
    padding-left: 8px;
    padding-right: 8px;
}

/*.slideb {*/
/*    transition: all 0.5s ease 0s;*/
/*    transform: translateY(75%);*/
/*    z-index: 1;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.slideb p {*/
/*    overflow: hidden;*/
/*    min-height:100px;*/
/*}*/

.slideb {
    transition: all 0.5s ease 0s;
    z-index: 1;
    position: absolute;
    overflow: hidden;
    height: 100%;
    bottom: -70%;
    padding: 0 14px 0 0;
}

.slideb p span {transition:all 0.5s ease 0s; opacity:0; visibility:hidden;}

.borderbox:hover::after {opacity:1;}
.borderbox:hover .slideb {bottom:-38%; }
.borderbox:hover .slideb span {opacity:1; visibility:visible;}
/*.borderbox:hover .slideb p {height:auto;}*/

.newsbox {background:#F6F7F5; border-radius:10px;}
.newsbox.flexnews {display:flex;}
.newsbox h4 {font-weight:500 !important; font-size:18px; line-height:1.8;}
.newscontent {padding:40px;}
.newsimage {overflow:hidden;}
.flexnews .newsimage {width:50%; border-top-left-radius:15px; border-bottom-left-radius:15px;}
.newsimage img {transition:all 0.5s ease 0s; }
.flexnews .newsimage img {width:100%; object-fit:cover; border-top-left-radius:15px; border-bottom-left-radius:15px;}
.flexnews .newscontent {width:50%;}
.flexnews .newscontent .hoverlink {margin-top:30px;}
.newsbox:hover .newsimage img {transform:scale(1.2);}

.newsbox.strag .newsimage {
     border-top-left-radius:15px;
    border-top-right-radius:15px;
}
.newsbox.strag .newsimage img {
    border-top-left-radius:15px;
    border-top-right-radius:15px;
    /*height: 250px;*/
    width: 100%;
    object-fit: cover;
}

.newsbox.strag .newscontent {
    padding: 20px;
}

.newsbox.strag .newscontent h4 {
    margin-bottom:10px;
}

.mainform .form-control { background: #F6F7F5; border: 0px; font-size: 12px; padding: 15px 20px; border-radius:10px; color:#5b5d62;}
.mainform select {
    appearance: none;
    background: #F6F7F5 url(../images/arrowethan.svg) no-repeat 80% center !important;
    padding: 10px !important;
    height: 50px !important;
    background-size: 10px !important;
    padding-right:48px !important;
}
.mainform .form-control:focus {box-shadow:none;}
.mainform .form-control:placeholder {font-size:12px;}
.mainform .til-btn {padding: 10px 45px;}
.checkform {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}
.checkform label {
    font-size: 14px;
    color: #8E8E8E;
    position: relative;
    top: -3px;
    padding-left: 7px;
}


.sticky-top1 {position:sticky; top:110px;}
.whyus .span, .contact .span {margin-left:20px;}

.slick-dots li button:before {
    height: 5px !important;
    border-radius: 0px !important;
}


footer {
    overflow: hidden;
    font-size: 13px;
    background: #000;
    padding-bottom:30px !important;
}

footer h5 {
    color:#fff;
    margin-bottom:20px;
    opacity:0.9;
}

footer ul {padding:0; margin:0;}
footer li {list-style:none; margin-bottom:10px; }
footer li a {position:relative; transition:all 0.5s ease 0s ;}
footer li a img { width: 10px; transform: rotate(-45deg); }
footer li a::before {content:''; background:#ffffff8a; width:0; height:1px ; left:0; bottom:0; position:absolute; transition:all 0.5s ease 0s;}
footer li a:hover::before {width:100%;}
footer li a, footer p a {color:#ffffff8a; opacity:1; transition: all 0.3s ease 0s; }
footer li a:hover, footer p a:hover {opacity:1; color:#fff;}

footer p {
    font-size:13px;
}

footer p a {color:#ffffff8a;}
footer p a:hover {color:#fff;}
/*.sociallinks {margin-top:100px; margin-bottom:30px;}*/
.sociallinks a { background: #262626; transition: all 0.5s ease 0s; color: #ffffff; margin-right: 8px; border-radius: 10px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 23px; }
.sociallinks a:hover {background:#0D825E; color:#fff;}
.sociallinks .d-flex {justify-content:end;}
.address {margin-top:30px;}
.address img {
    width: 18px;
    margin-right: 10px;
}
.address p {margin-bottom:8px;}
.ft-text {
    margin-top: 20px;
    margin-bottom: 60px;
}
footer p a {display:flex; }
footer p a i {color:#fff; margin-right:8px; margin-top:5px;}
.footerbarlinks a { color: #ffffff8a; transition: all 0.5s ease 0s; position: relative; padding-right: 10px; padding-left: 10px; font-size:12px; }
.footerbarlinks a::after {content:''; right:0; position:absolute; right:0; width:1px; height:100%; background:#ffffff8a;}
.footerbarlinks a:hover {color:#fff;}
.footerbarlinks a:last-child::after {display:none;}
.footerlogo {width:200px;}

.copyrite {background:#000; border-top:1px solid #4c4c4c; padding:10px 0px; font-size:12px;color:#ffffff8a;}

label.error {
    color:red;
    font-size:12px;
    position:relative;
   
    margin-bottom:-20px;
}

.mobile-content {display:none;}

.innerscrow .col-lg-4, .scrollrow .col-lg-8 {margin-bottom:30px;}
.innerscrow {margin-top:30px;}
.innerscrow .slideb {
    transform: translateY(0%);
     position: initial; 
    height: auto;
}
.innerscrow .span {position:relative; z-index:1;}
.innerscrow .borderbox {display:flex; flex-direction:column; justify-content:space-between; padding:30px; min-height:400px;}
.innerscrow h5 {font-size:30px; line-height:1.2;}
.innerscrow .slideb p {min-height:initial;}

.header .til-btn.fill::before {
    background: #fff !important;
}

.header .til-btn.fill:hover {color:#000;}

.bottom-content {position:absolute; bottom:0; left:0; width:100%;  z-index:1; opacity:0; transition:all 0.5s ease 0s; transform:translateY(10px);}
.bottom-content ul {display:flex; justify-content:space-between; padding:0 15px; }
.bottom-content li {
    list-style: none;
    background: #f3f3f3;
    width: 19%;
    border-radius: 15px;
    padding: 15px;
    transition: all 0.5s ease 0s;
    position: relative;
}

.bottom-content li::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg,rgba(55, 189, 165, 1) 0%, rgb(117 212 42) 100%) !important;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.bottom-content h5 {margin-bottom:8px;}
.bottom-content p {margin:0;line-height:1.4;}


.bottom-content.active {opacity:1; visibility:visible; transform:translateY(0px);z-index:4;}

.bottom-content li:hover::after {
    opacity:1;
}

.bottom-content li:hover h5, .bottom-content li:hover p {color:#fff; position:relative; z-index:1;}
.bottom-content li:hover p {color:#ffffffa6;}




/*.productp { */
    /*background: linear-gradient(90deg,rgba(24, 78, 67, 1) 0%, rgba(7, 24, 20, 1) 50%, rgba(0, 0, 0, 1) 100%);*/
/*    background: radial-gradient(*/
/*  circle at 10% 40%,*/
/*  rgba(32, 103, 86, 1) 9%,*/
/*  rgba(31, 85, 59, 1) 15%,*/
/*  rgba(0, 0, 0, 1) 70%*/
/*);*/



/*    border-radius:15px; margin-bottom:20px; position:relative;}*/
/*.productp::before { content: ''; background: #fff; width: 300px; height: 300px; border-radius: 50%; position: absolute; left: -190px; bottom: 0; filter: blur(191px); opacity: 0.4; }*/

.productp {
  position: relative;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #000;
}

/* 🔥 LOCKED RADIAL GRADIENT */
.productp::before {
  content: "";
  position: absolute;
  inset: 0;

  /* 🔒 FIXED POSITION — WILL NOT MOVE */
  background: radial-gradient(circle at 103px 140px, rgb(32 103 86 / 84%) 11%, rgb(117 212 42 / 26%) 28%, rgba(0, 0, 0, 1) 50%);

  z-index: 0;
}

/* glow */
.productp::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #fff;
  border-radius: 50%;
  left: -190px;
  bottom: 0;
  filter: blur(191px);
  opacity: 0.4;
  z-index: 0;
}

.productp > * {
  position: relative;
  z-index: 1;
}


.key-benefits-0 ul {
  transition: max-height 0.4s ease;
}

/*.productp .row {align-items:center;}*/
.m_img {
  text-align: center;
  animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.m_img img {width: 230px;
    margin-top: 0;margin-left: 15%;}
.builticon {width:250px !important;}
.productp h3, .productp h5 {color:#fff; }
.productp h3 {margin-bottom:30px;}
.productp .hd-col {margin-bottom:8px; }
.productp p {color:#ffffffab; }
.dropmenu { cursor: pointer;
    /* border-bottom: 1px solid #fff; */
    /* padding-bottom: 15px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0; }
.productpdetail {padding-right:60px;}


.key-benefits-0{
    background: hsl(0deg 0% 100% / 12%);
    border: 1px solid #ffffff21;
    backdrop-filter: blur(60px);
    border-radius: 15px;
    padding: 15px 25px;
        margin-top: 26px;
}

.productpdetail ul {display: none;
margin: 0;
padding:0 !important;
    padding: 20px 0 10px 20px!important;;
    margin-top: 20px;
     border-top: 1px solid #ffffff21;
    
}
.productpdetail li {margin-bottom:10px; font-size: 14px;
    line-height: 1.8;
    color: #ffffffab;}
.productpdetail li:last-child {margin-bottom:0px;}
.icon {
  transition: transform 0.3s ease;
}

.productpdetail li::marker {
  color: #ffffffab;
    font-size: 22px;
    line-height: 11px;
}


.icon .vert {
  transition: opacity 0.3s ease;
}

.dropmenu.active .icon .vert {
  opacity: 0; /* hides vertical line => becomes minus */
}

/*.mt-50 {margin-top:50px;}*/


/* .main-map {*/
     
/*       height: 700px;*/
/*width: 700px;*/
/*margin: auto;*/
/*position: relative;*/
/*margin-top: 80px;*/
/*    }*/
    
    
/*    .main-map-inner-one{*/
/*        height: 100%;*/
/*    width: 100%;*/
/*    border-radius: 50%;*/
/*    overflow: hidden;*/
/*    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f7f9fa 60%, #eef1f5 100%);*/
/*    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03), inset -10px -10px 20px rgba(0, 0, 0, 0.02), inset 10px 10px 20px rgba(255, 255, 255, 0.5);*/
/*    position: relative;*/
/*    margin-top: 80px;*/
/*    }*/
    

/*    .main-map img {*/
/*        height: 100%;*/
/*        width: 100%;*/
        /* 'cover' fills the sphere; change to 'contain' if you need to see the edges of the map */
/*        object-fit: cover; */
        
        /* Optional: Blends the map slightly with the globe shading */
/*        mix-blend-mode: multiply; */
/*        opacity: 0.9; */
/*    }*/
    
/*    .main-map-inner{*/
/*        position: absolute;*/
/*        left:0;*/
/*        top:0;*/
/*        width: 100%;*/
/*        height: 100%;*/
/*    }*/
    
/*    .pointer-one{*/
/*        width: 35%;*/
/*    height: 60%;*/
    /*background: #34343447;*/
/*    position: absolute;*/
/*    bottom: 144px;*/
/*    cursor: pointer;*/
/*    left: 47px;*/
/*    }*/

/*.pimg-new  {position: absolute;*/
/*    z-index: 1;*/
/*    cursor: pointer;*/
    /* Create the dot */
/*    width: 30px; */
/*    height: 30px;*/
/*    background-image:  linear-gradient(134deg, rgba(109, 210, 59, 1) 0%, rgba(48, 197, 198, 1) 100%);*/
/*    border-radius: 50%;*/
    /* This ensures the dot is centered exactly on the coordinate */
/*    transform: translate(-50%, -50%);  }*/

/*.pimg-new:before { content: '';*/
/*    position: absolute;*/
    /* Center the wave behind the dot */
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
    
    /* Start size matches the dot */
/*    width: 100%;*/
/*    height: 100%;*/
/*    border-radius: 50%;*/
    
    /* Wave color (Light Grey or match the dot with transparency) */
/*    background-image: linear-gradient(134deg, rgba(109, 210, 59, 1) 0%, rgba(48, 197, 198, 1) 100%); */
    /*z-index: -1;*/
    
    /* The Animation */
/*    animation: pulseWave 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);}*/
  
/*  @keyframes pulseWave {*/
/*    0% {*/
/*        width: 100%;*/
/*        height: 100%;*/
/*        opacity: 0.8;*/
/*    }*/
/*    100% {*/
        /*width: 400%; */
/*        height: 400%;*/
        /*opacity: 0;*/
/*    }*/
/*}*/
/*.pimg-new img {transition:all 0.4s ease 0s;transform: scale(1.5);}*/
/*.pimg-new.one { left: 40%;*/
/*    top: 35%;}*/
/*.pimg-new.two { left: 13%;*/
/*    top: 55%;}*/
/*.pimg-new.three { left: 92%;*/
/*    top: 27%;}*/
/*    .pimg-new.four {left: 47%;*/
/*    top: 90%;}*/
/*.new-content{*/
/*     overflow: hidden;*/
    /* opacity: 0; */
/*    position: absolute;*/
/*    width: 429px;*/
/*    background: #f6f7f5;*/
/*    padding: 20px 30px;*/
/*    border-radius: 10px;*/
/*    transition: all 0.5s ease 0s;*/
/*    left: -95px;*/
/*    top: -148px;*/
/*    text-align: center;*/
/*    height: 0px;*/
/*    opacity:0;*/
/*}*/
/*.pointer-one:hover .new-content{*/
/*    height:234px;*/
/*     opacity:1;*/
/*}*/
/*.new-content2{*/
/*     left: -25px;*/
/*    top: -210px;*/
    
/*}*/
/*.pointer-two{*/
/*         width: 34%;*/
/*    height: 34%;*/
    /*background: #34343447;*/
/*    position: absolute;*/
/*    bottom: 229px;*/
/*    cursor: pointer;*/
/*    right: 148px;*/
/*}*/
/*.pointer-two:hover .new-content2{*/
/*    height:234px;*/
/*     opacity:1;*/
/*}*/


/*.new-content h5 {*/
/*    margin-bottom: 5px;*/
/*    font-weight: 600 !important;*/
/*}*/
/* Close Button (Hidden by default on Desktop) */
/*.close-btn {*/
/*    display: none; */
/*    position: absolute;*/
/*    right: 15px;*/
/*    top: 10px;*/
/*    font-size: 24px;*/
/*    font-weight: bold;*/
/*    color: #333;*/
/*    cursor: pointer;*/
/*    line-height: 1;*/
/*}*/
/*@media (min-width: 1499px) {*/
/*  .main-map {*/
     
/*       height: 1100px;*/
/*width: 1100px;*/
/*margin: auto;*/
/*position: relative;*/
/*margin-top: 80px;*/
/*    }  */
    
/*    .pimg-new.one {*/
/*    left: 45%;*/
/*    top: 19%;*/
/*}*/
/*    .pointer-two {*/
   
/*    bottom: 341px;*/
/*    cursor: pointer;*/
/*    right: 231px;*/
/*}*/
/*}*/

/* --- TABLET & MOBILE BEHAVIOR (Click + Fixed) --- */
/*@media (max-width: 991px) {*/
    
    /* Show Close Button */
/*    .close-btn { display: block; }*/
    
    /* Disable default hover behavior */
/*    .pointer-wrapper:hover .new-content {*/
/*        height: 0; opacity: 0;*/
/*    }*/

    /* Active Class (Triggered by JS) */
/*    .new-content.active-mobile {*/
/*        height: auto !important;*/
/*        opacity: 1 !important;*/
/*        pointer-events: all;*/
        /*position: fixed; */
/*        z-index: 9999;*/
/*        border: 1px solid #ddd;*/
        /*box-shadow: 0 0 100vh rgba(0,0,0,0.5); */
/*    }*/

    /* 1. TABLET LAYOUT (Fixed Right Center) */
/*    .new-content.active-mobile {*/
/*        width: 300px;*/
/*        top: 50%;*/
/*        right: 20px;*/
/*        left: auto;*/
/*        transform: translateY(-50%);*/
/*    }*/
/*}*/

/* 2. MOBILE LAYOUT (Fixed Center Center) */
/*@media (max-width: 767px) {*/
/*     .main-map {*/
        /* 1. Reset the fixed height so it doesn't stretch */
/*        height: auto;*/
        
        /* 2. Make width fluid (fit the screen) */
/*        width: 90%; */
        
        /* 3. Force it to stay a perfect circle based on the new width */
/*        aspect-ratio: 1 / 1;*/
        
        /* Optional: Reduce the top margin slightly for mobile */
/*        margin-top: 25px;*/
/*    }*/
/*    .new-content.active-mobile {*/
/*        width: 90%;*/
/*        left: 50%;*/
/*        right: auto;*/
/*        top: 50%;*/
/*        transform: translate(-50%, -50%);*/
/*    }*/
/*    .data{*/
/*        overflow:hidden;*/
/*    }*/
/*    .pointer-one {*/
   
/*    bottom: 66px;*/
/*    cursor: pointer;*/
/*    left: 26px;*/
/*}*/
/*.pointer-two {*/
   
/*    bottom: 101px;*/
/*    cursor: pointer;*/
/*    right: 74px;*/
/*}*/
/*    .pimg-new.two {*/
/*        left: 17px;*/
/*        top: 30px;*/
/*    }*/
/*.pimg-new.three {*/
/*        left: 74px;*/
/*        top: 18px;*/
/*    }*/
/*    .pimg-new.four {*/
/*        left: 47px;*/
/*        top: 62px;*/
/*    }*/
/*.pimg-new img {*/
/*    transition: all 0.4s ease 0s;*/
/*    transform: scale(1);*/
/*}*/
/*.pimg-new:before {*/
/*    bottom: -35px;*/
/*        left: 3px;*/
/*        height: 20px;*/
/*        width: 20px;*/
   
/*}*/
/*.main-map-inner-one{*/
/*    margin-top: 0px;*/
/*}*/
/*.pimg-new{*/
/*    width: 16px;*/
/*    height: 16px;*/
/*}*/
/*.pimg-new.one {*/
/*    left: 57%;*/
/*    top: 49%;*/
/*}*/
/*.pimg-new.two {*/
/*        left: 25px;*/
/*        top: 46px;*/
/*    }*/
/*     .pimg-new.three{*/
/*        left: 87px;*/
/*        top: 38px;*/
/*    }*/
       
/*        .pimg-new.four {*/
/*        left: 49px;*/
/*        top: 67px;*/
/*    }*/
/*}*/
/*@media (max-width: 321px) {*/
/*    .pointer-two {*/
/*        bottom: 84px;*/
        
/*        right: 64px;*/
/*    }*/
/*     .pimg-new.three {*/
/*        left: 69px;*/
/*        top: 31px;*/
/*    }*/
     
/*}*/

/* --- Main Container --- */
.main-map {
    height: 700px;
    width: 100%;
    max-width: 1200px;
    padding: 0px 20px;
    margin: 50px auto 0px;
    position: relative;
}

.map-layers-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
}

/* --- Image Layering --- */
.map-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.map-layer.active {
    opacity: 1;
}

/* --- Interaction Overlay --- */
.main-map-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Important: The wrapper covers the map area so we can place dots anywhere, 
   but 'none' ensures it doesn't block clicks to the map itself */
.pointer-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
}

/* --- Pulse Dot (The Wave) --- */
.pimg-new {
    position: absolute;
    z-index: 5;
    cursor: pointer;
    width: 20px; 
    height: 20px;
    background-image: linear-gradient(134deg, #6dd23b 0%, #30c5c6 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto; /* Re-enable clicking on the dots */
}

.pimg-new:before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulseWave 2s infinite;
}

@keyframes pulseWave {
    0% { width: 100%; height: 100%; opacity: 0.8; }
    100% { width: 400%; height: 400%; opacity: 0; }
}

/* --- Dot Positioning --- */
/* EMEA */
.dot-emea { top: 38%; left: 50%; }

/* APAC (3 Waves) */
.dot-india { top: 50%;
    right: 23%;}
.dot-singapore { top: 64%;
    right: 20%; }
.dot-japan { top: 44%;
    right: 11%; }


/* --- Content Popups --- */
.new-content {
    position: absolute;
    width: 450px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 20;
    pointer-events: auto; /* Re-enable clicking on the popup */
}

/* Active State for Popups */
.pointer-wrapper.active-popup .new-content {
    opacity: 1;
    visibility: visible;
}

/* EMEA Popup Position */
[data-target="emea"] .new-content {
    top: 55%;
    left: 22%;
    transform: translate(-50%, -110%);
}

/* APAC Popup Position */
[data-target="apac"] .new-content {
   top: 46%;
    right: 15%;
    transform: translate(0%, -110%);
}

.new-content h5 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: #999;
}

.close-btn:hover { color: #333; }

/* --- Responsive Behavior --- */

/* Hide address content by default */
.bottom-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 0px;
}

/* Only show when active */
.bottom-content.active {
    display: block;
    opacity: 1;
}

.main-inner{
    width:100%;
    height: 100%;
}

.pt160{
    padding-top: 160px;
}
/* --- Navigation Styling --- */
        .nav-wrapper {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 5px;
            display: inline-block;
            /*box-shadow: 0 2px 5px rgba(0,0,0,0.02);*/
        }

        .custom-pills .nav-link {
            border-radius: 9px;
            padding: 9px 38px;
            color: #333;
                font-size: 16px;
            transition: all 0.3s ease;
        }

        /* The Active Green Gradient State */
        .custom-pills .nav-link.active {
            background: linear-gradient(90deg, #4cd4b0 0%, #5dce5d 100%);
            color: white;
            /*box-shadow: 0 4px 10px rgba(93, 206, 93, 0.3);*/
        }

        .custom-pills .nav-link:hover:not(.active) {
            background-color: #f8f9fa;
        }

        /* --- Card Styling --- */
        .card-img-custom {
            border-radius: 20px;
            width: 100%;
            /*height: 220px;*/
            object-fit: cover;
            /*box-shadow: 0 5px 15px rgba(0,0,0,0.08);*/
            margin-bottom: 20px;
        }

        .content-text {
    font-size: 15px;
    line-height: 25px;
    color: #000000;
    font-weight: 500;
    margin-right: 15px;

    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 2*/
    /*-webkit-box-orient: vertical;*/
    /*overflow: hidden;*/
    margin-bottom:0;
}


        /* --- Arrow Icon Styling --- */
        .icon-circle {
            width: 32px;
            height: 32px;
            border: 1px solid #ccc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            transition: all 0.2s;
            cursor: pointer;
            flex-shrink: 0; /* Prevent shrinking */
        }

        .icon-circle:hover {
            border-color: #333;
            color: #333;
        }

        .icon-circle i {
            transform: rotate(-45deg); /* Angled arrow */
            font-size: 12px;
            padding-top: 3px;
        }
        
        /* --- Show More / Fading Logic --- */
.blog-list-container {
    position: relative;
}

/* When the list is collapsed (default state) */
/*.blog-list-container.is-collapsed .col-md-4:nth-child(n+4) {*/
/*    opacity: 0.1; */
/*    pointer-events: none; */
/*    filter: blur(2px);*/
/*    transition: all 0.5s ease;*/
/*}*/

/* The Button Overlay Wrapper */
.show-more-overlay {
  position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    /* top: 0; */
    margin: auto;
    
}
.show-more-overlay::after{
      background: linear-gradient(to top, #fff, #ffffffd9);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* The Green Button Style */
.btn-show-more {
        background: linear-gradient(90deg, #4cd4b0 0%, #5dce5d 100%);
    color: white !important;
    font-size: 14px;
    padding: 15px 40px;
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 45px;
}
.btn-show-more span{
    color:#fff;
    transition: all 0.5s ease;
}
.btn-show-more:hover span{
    color:#000;
    position: relative;
    z-index: 1;
}

.btn-show-more:hover::before {
    height: 100%;
}
.btn-show-more::before {
    content: '';
    background: #fff !important;
    z-index: 0;
    width: 100%;
    height: 0;
    top: auto;
    bottom: 0;
    border-radius: 0;
    transform: none;
    transition: all 0.5s ease;
    position: absolute;
    left: 0;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: unset;
}

.emea-enable .innerscrow .borderbox {
   
    min-height: 215px;
}

.banner-emea {
    height: calc(100vh - 80px);
    margin-top: 80px;
}

/* Strategy Section Title */
.strategy-title {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 16px;
    color: #a1a1a1 !important;
}

/* Container for the 3 items */
.strategy-container {
    display: flex;
    justify-content: center; /* Center items */
    align-items: flex-start;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 30px; /* Space between items */
}

/* Individual Item Card */
.strategy-item {
   flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    padding: 25px;
    border: 1px solid #55bb5526;
    border-radius: 10px;
}

/* The Icon Circle */
/*.strat-icon {*/
/*   display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 70px;*/
/*    height: 70px;*/
/*    border-radius: 50%;*/
    /*background: linear-gradient(90deg, rgba(55, 189, 165, 1) 0%, rgb(117 212 42) 100%);*/
/*    background:linear-gradient(90deg, rgb(22 157 177) 0%, rgb(117 212 42) 100%);*/
/*    margin-bottom: 25px;*/
    /* box-shadow: 0 10px 20px rgba(76, 212, 176, 0.3); */
/*    transition: all 0.5s ease;*/
/*}*/

.icon-wrap {
    position: relative;
    display: inline-block;
}

/* YOUR REQUIRED SHAPE */
.strat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 80px;
    clip-path: polygon(
        0% 25%,
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75%
    );
    background: linear-gradient(90deg, rgb(22 157 177) 0%, rgb(117 212 42) 100%);
    margin-bottom: 25px;
    transition: all 0.5s ease;
    z-index: 2;
}

.gap-3{
    gap:10px
}
.news-date {
    color: #000;
    opacity: .6;
    font-size: 14px;
}

/* SVG styling inside the circle */
.strat-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff; /* White icon lines */
    stroke-width: 1.5;
}

/* Text Styling */
.strategy-item p {
       font-size: 14px;
    color: #8E8E8E;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Hover Effect */
.strategy-item:hover .strat-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(76, 212, 176, 0.5);
}

.bioinfo h3 a{
    color:#000;
    font-size: 18px;
}
.bioposition {
    margin:0;
    text-transform: uppercase;
}

.apac-img img{
        margin-bottom: 40px;
    z-index: 1;
    position: relative;
    width: 55px;
}

/* Optional: Connecting lines between items (Desktop only) */
@media (min-width: 992px) {
    .strategy-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 35px; /* Center with icon */
        right: -15px; /* Position in the gap */
        width: calc(100% - 100px); /* Line length */
        height: 1px;
        background: #e0e0e0;
        z-index: -1;
        display: none; /* remove display:none if you want dotted lines connecting them */
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .strategy-container {
        flex-direction: column; /* Stack items vertically */
        gap: 15px;
    }
    
    .strategy-item {
        width: 100%;
        
    }
    
    .strat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .strat-icon svg {
        width: 28px;
        height: 28px;
    }
}


/*.btn-show-more:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 8px 20px rgba(93, 206, 93, 0.6);*/
/*}*/
        
/* Tablets */
@media (max-width: 991px) {
    .main-map{
        height: auto;
    }
    .new-content {
        /*position: fixed;*/
        /*top: 50% !important;*/
        /*left: 50% !important;*/
        /*right: auto !important;*/
        /*transform: translate(-50%, -50%) !important;*/
        width: 90%;
        max-width: 400px;
    }
    
    .bottom-content ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
    .bottom-content li {
    /*list-style: none;*/
    /*background: #f3f3f3;*/
    width: 32%;
    }
     .dot-emea {
    top: 43%;
    
}
.dot-india {
    top: 52%;
   
}

.dot-japan {
    top: 46%;
   
}
.dot-singapore {
    top: 59%;
}
.main-inner{
    position:relative;
    height: 400px;
}
.address-section .bottom-content{
    position: static;
}
}

/* Mobile */
@media (max-width: 767px) {
   .dot-india {
   
    right: 19%;
}
    .main-map { 
        height: auto; 
      
    }
    
    .main-inner{
        height: auto; 
        aspect-ratio: 16/9; /* Keeps map proportional */
    }
    
    .pimg-new {
        width: 15px;
        height: 15px;
    }
    
    .new-content {
        padding: 20px;
        width: 100%;
    }
    [data-target="apac"] .new-content{
        right:0px;
    }
    .main-map{
        padding:0px;
    }
        .bottom-content ul {
        
        gap: 5px;
        padding: 0;
    }
    .bottom-content li {
        
        width: 47%;
    }
    [data-target="emea"] .new-content{
        left:40%;
        
    }
        [data-target="emea"] .new-content{
left: 0;
    
    transform: translate(0);
    top: -249px;
}
}

.focus-areas1 li.d-flex:after {
       content: "";
    box-sizing: border-box;
    height: 10px;
    width: 10px;
    border-style: solid;
    border-color: #000000;
    border-width: 0px 1px 1px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
    position: absolute;
    right: 26px;
    top: 29px;
}
.focus-areas1 li.d-flex.active {
        background: #f7f7f5;
}
.focus-areas1 li.d-flex.active p {
    display:block;
}

.focus-areas1 li p {
    margin: 0;
    display: none;
}
.core-slide-inner img {
    display:none !important;
}

.focus-areas1 li {
    flex-wrap: wrap;
    padding: 22px 20px !important;
    cursor: pointer;
    position:relative;
}
.table-dark {
    color: #000000;
    background-color: transparent;
}
.table {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.text-underline {
    font-size: 12px;
    color: #9c9b9b;
}
.table td, .table th {
    padding: 10px 0;
    font-size: 14px;
}
.table thead th {
     border: none !important;
    width: 50%;
        
}


.focus-areas1 li.d-flex.active:after {
    transform: rotate(224deg);
}

