@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root{

  
    /* Color Variable */
    --primary: #FAB36D;
	--primary-hover: #FCD1A7;
    --secondary: #313A40;
    --text: var(--secondary);
    --color-white: #ffffff;
    --light-gray: #F3EFE5;
    --bs-heading-color: var(--secondary);

    
    /* Font Family Variable */
    --font-primary: "Montserrat", serif;
    --font-secondary: "Crimson Text", serif;

    /* Font Size Variable */
    --fs-12: 12px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-17: 17px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-24: 24px;
    --fs-26: 26px;
    --fs-32: 32px;
    --fs-40: 40px;
    --fs-50: 50px;
    --fs-60: 60px;
    --fs-70: 70px;
    --fs-80: 80px;
    --fs-90: 90px;
    --fs-100: 100px;
}


.newyellocircle{
  position: absolute;
  background-color: var(--primary);
  width: 140px ;
  height: 140px;
  border-radius: 50% !important;
  transition: opacity 1s ease;
  will-change: transform;
  opacity: 0;
}
.csSection .newyellocircle.topToBottom {
  left: 54px;
}
.leftToRight{
  transform: translate(0, 0) scale(1);
  left: -44px;
  top: -40px;
}
.animate .leftToRight, .animate .rightToLeft, .animate .topToBottom, .animate .topToBottomAbout, .animate .topToBottomRight{
  opacity: 1;
}
.topToBottomAbout {
  z-index: -1;
}
.rightToLeft{
  transform: translate(0, 0) scale(1);
  right: 0;
  top: -40px;
}
.topToBottom, .topToBottomAbout{
  transform: translate(0, 0) scale(1);
  left: -55px;
  top: 0%;
}
.topToBottomRight{
  transform: translate(0, 0) scale(1);
  top: -11%;
  left: 58%;
}
/* Custom */
.newtextbnrslider {
  max-width: 649px;
  max-height: 150px;
}
.newtextbnrslider .carousel-indicators {
  padding: 20px 0 0 0;
}
.imgCardnew {
  border-radius: 10px;
  overflow: hidden;
}
.contactForm span.wpcf7-spinner {
  position: absolute;
}
.contactForm .form-check label span a {
    font-weight: 600;
}
.contactForm .form-floating input.wpcf7-not-valid {
    border: 1px solid #dc3232;
}
.contactForm .form-check label input:hover {
    cursor: pointer;
}
.leaflet-container .leaflet-control-attribution {
    display: none !important;
}
.heanimatebnrtext {
  opacity: 0;
  visibility: hidden;
}
.newcstmcarousel .owl-nav {
  left: 15%;
  bottom: -8%;
}
.newcstmcarousel .item {
  margin-top: 0;
}
.newcstmcarousel .reviewCard {
  justify-content: center;
}
.socialLink.cstmsocialLink {
  margin-top: 10px;
}
a.CaseStudiesCard{
  transition: .5s;
}
.bounceTop {
  opacity: 1; /* initially hidden */
}
.hideundrline:before {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 2px;
    border-bottom: 0.08rem solid var(--text);
    transition: all 0.4s linear;
    right: 0;
}

a.hideundrline {
    position: relative;
    text-decoration: none !important;
    width: fit-content;
}
.hideundrline:hover::before {
    width: 0%;
    left: 0;
}
/* Main CSS */

body{
    font-family: var(--font-primary);
    font-size: var(--fs-14);
    line-height: 1.5;
    color: var(--text);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body,html{
    height: 100%;
}

html{
    /* scroll-behavior: smooth; */
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--font-secondary);
	font-weight: 400;
}
h2{
  font-size: var(--fs-50);
}
h4{
  font-size: var(--fs-26);  
}
h5{
  font-size: var(--fs-18);  
}
a{
    text-decoration: none;
    color: var(--text);
}
img{
  max-width: 100%;
}
ul{
  list-style: none;
  padding: 0;
}
iframe{
  vertical-align: top;
}

.py-80{
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.py-40{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.btnWhite{
    background-color: var(--color-white);
    border: 1px solid var(--secondary);
    color: var(--text);
    font-size: var(--fs-14);
    font-weight: 500;
    padding: .5rem 2rem;
    border-radius: 100px;
    display: inline-block;
	transition: .3s all ease-in-out;
	letter-spacing: 0.01em;
}
.btnWhite:hover, .btnWhite.bgLightGrey:hover{
    background-color: var(--secondary) !important;
    border: 1px solid var(--secondary);
    color: var(--color-white);
}
.btnPrimary{
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--text);
    font-size: var(--fs-14);
    font-weight: 500;
    padding: .5rem 2rem;
    border-radius: 100px;
    display: inline-block;
	transition: .3s all ease-in-out;
	letter-spacing: 0.01em;
}
.btnPrimary:hover{
    background-color: var(--primary-hover) !important;
    border: 1px solid var(--primary-hover);
}
.bgPrimary{
  background-color: var(--primary);
}
.bgSecondary{
  background-color: var(--secondary);
}
.bgLightGrey{
  background-color: var(--light-gray) !important;
}
.color-secondary{
  color: var(--text) !important;
}
.secHeading{
  font-weight: 400;
  font-size: var(--fs-50);
  line-height: 1;
  margin-bottom: 1rem;
}
.fs-14{
  font-size: var(--fs-14);
}
.fs-16{
  font-size: var(--fs-16);
}
.fs-18{
    font-size: var(--fs-18);
  }
.fs-32{
  font-size: var(--fs-32) !important;
}
.mw-618{
  max-width: 618px;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Remove arrows for all number inputs */
input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield; /* Standard */
}

/* Remove arrows for WebKit browsers (Chrome, Safari, Edge) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.mb-40{
    margin-bottom: 40px;
}
/* Preloader CSS */

.preloaderContainer{
  background: var(--secondary);
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* transition: opacity 0.5s ease-in-out; */
  transition: opacity 0.5s ease-in-out, left 0.8s ease-in-out, border-radius 0.2s ease-in-out;
  transition-delay: .2s;
}
/* .preloaderContainer .preContent{
  width: 200px;
  height: 55px;
  position: relative;
}
.preloaderContainer .preContent .preLogo{
  opacity: 0;
  transition-delay: .25s;
  transition-duration: .5s;
  transition-property: opacity;
}
.preloaderContainer .preContent .rImg, .preloaderContainer .preContent .dotImg{
  position: absolute;    
  left: 78.99px;
  bottom: 0;
  transition: 1s all ease;
}
.preloaderContainer .preContent .dotImg{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}

.preloaderContainer.ani2 .dotImg{
  transition: 1s all ease;
}
.preloaderContainer .preContent  .dotImg{
  left: auto;
  right: 80px;
  top: 91%;
  bottom: auto;
  transform: translateY(-50%);
}
.preloaderContainer.ani1 .preContent .preLogo{
  opacity: 1;
}
.preloaderContainer.ani1 .preContent .rImg{
  left: 0;
}
.preloaderContainer.ani1 .preContent .dotImg{
  right: 0;
}
.preloaderContainer.ani2 .preContent .dotImg{
  right: calc(100% - 9px);
}
.preloaderContainer.ani2 .preContent .preLogo, .preloaderContainer.ani2 .preContent .rImg{
  opacity: 0;
}
.preloaderContainer.ani3 .preContent .dotImg{
  width: 1038px;
  height: 1038px;    
  top: 50%;
  transform: translateY(-42.5%);
  right: 50%;
  bottom: auto;
} */


/* Preloader 2 */

/* .preloaderContainer .preContent2:after{
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-white);
  transition: 1s all ease;
} */

.preloaderContainer.ani4 .preContent2:after{
  left: 0;
}
.preloaderContainer.ani5 .preContent2{
  /* width: 0; */
}
.preloaderContainer.ani5{
  left: 100%;
}
.preloaderContainer.ani2{
  border-radius: 400px 0 0 400px;
}


.preloaderContainer .preContainer{
  width: 200px;
  height: 55px;
  display: flex;
  justify-content: end;
}

.preloaderContainer .preContent2{
  width: 200px;
  height: 55px;
  position: relative;
  overflow: hidden;
  transition: 1.5s all ease;
}
.preloaderContainer .preContent2 .baseText{
  position: relative;
  width: 200px;
  height: 55px;
}
.preloaderContainer .preContent2 .baseText img{
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: .75s all ease;
}
.preloaderContainer .preContent2 .baseText .eImg{
  top: -30px;
}
.preloaderContainer .preContent2 .baseText .baImg{
  top: -20px;
}
.preloaderContainer .preContent2 .baseText .seImg{
  top: -10px;
}
.preloaderContainer .preContent2 .rImg, .preloaderContainer .preContent2 .dotImg, .preloaderContainer .preContent2  .dotImgRight{
  position: absolute;    
  left: 78.99px;
  /* left: 0px; */
  bottom: 0;
  transition: 1s all ease;
}
.preloaderContainer .preContent2 .dotImg, .preloaderContainer .preContent2 .dotImgRight{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  transition: .5s all ease;
}
.preloaderContainer .preContent2  .dotImg{
  left: auto;
  right: 80px;
  /* bottom: -10px; */ 
  bottom: 0px;
  animation: 1s dot1ani linear 1;
  transition: 1s all ease;
}
@keyframes dot1ani{
    0% { bottom: 55px;}
    33% { bottom: 0px;}
    66% { bottom: 30px;}
    100% { bottom: 0px;}
  /* 33% {bottom: 0px;}
  66% {bottom: 27px}
  100% {bottom: 0px;} */
}
/* @keyframes dot1ani{
  0% { bottom: 5px;}
  33% {bottom: 0px;}
  66% {bottom: 5px}
  100% {bottom: -10px;}
} */
.preloaderContainer .preContent2  .dotImgRight{
  left: auto;
  right: 0;
  transition: 0 all ease;
  opacity: 0;
}

.preloaderContainer.ani2 .preContent2  .dotImgRight{
  bottom: 0;
  opacity: 1;
  animation: 1.5s dot2ani linear 1;
}
@keyframes dot2ani{
  0% { bottom: 105%;opacity: 0;}
  33% {bottom: 0px;opacity: 1;}
  66% {bottom: 5px}
  95%{bottom:0;}
  100% {bottom: 0px;}
}

.preloaderContainer.ani1 .preContent2 .rImg{
  /* left: 0; */
}
.preloaderContainer.ani3 .preContent2 .baseText .eImg, .preloaderContainer.ani3 .preContent2 .baseText .baImg, .preloaderContainer.ani3 .preContent2 .baseText .seImg{
  top: 0;
  opacity: 1;
}

/* Homepage Preloader */

.preloader{
  background: var(--secondary);
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: opacity .75s ease-in-out;
}

.preloader .preContainer{
  display: flex;
  justify-content: end;
  transition: 0.75s all ease-in-out;
}

.preloader .preContent2{
  width: 200px;
  height: 55px;
  position: relative;
  overflow: hidden;
  transition: 1s all ease;
}
.preloader .preContent2 .baseText{
  position: relative;
  width: 200px;
  height: 55px;
}
.preloader .preContent2 .baseText img{
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 1s all ease;
}

.preloader .preContent2 .baseText .eImg{
  top: -10px;
}
.preloader .preContent2 .baseText .baImg{
  top: -20px;
}
.preloader .preContent2 .baseText .seImg{
  top: -30px;
}
.preloader .preContent2 .baseText .logoImg{
  height: 55px;
  width: auto;
  transition: .75s all ease;
}
.preloader .preContent2 .rImg, .preloader .preContent2 .dotImg, .preloader .preContent2  .dotImgRight{
  position: absolute;    
  left: 78.99px;
  bottom: 0;
  transition: 0.5s all ease;
}
.preloader .preContent2 .dotImg, .preloader .preContent2 .dotImgRight{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  transition: .5s all ease;
}
.preloader .preContent2  .dotImg{
  left: auto;
  /* right: 80px;
  bottom: -10px; */
  right: 80px;
  bottom: 0px;
  animation: 2s newdot1ani linear 1;
  animation-delay: 0.5s;
  transition: 1s all ease;
  opacity: 0;
}
@keyframes newdot1ani{
  0% { bottom: 55px; opacity: 1;}
  20% { bottom: 0px; opacity: 1;}
  40% { bottom: 30px; opacity: 1;}
  60% { bottom: 0px; opacity: 1;}
  80% { bottom: 0px; opacity: 1;}
  /* 80% { bottom: 25px; right: 80px;} */
  100% { bottom: 0px;}
}
/* @keyframes dot1ani{
  0% { bottom: 5px;}
  33% {bottom: 0px;}
  66% {bottom: 5px}
  100% {bottom: -10px;}
} */
.preloader .preContent2  .dotImgRight{
  left: auto;
  right: 0;
  transition: 0 all ease;
  opacity: 0;
}

.preloader.ani2 .preContent2  .dotImgRight{
  bottom: 0;
  opacity: 1;
  /* animation: 1.5s dot2ani linear 1;  */
}
@keyframes dot2ani{
  0% { bottom: 105%;opacity: 0;}
  33% {bottom: 0px;opacity: 1;}
  66% {bottom: 5px}
  95%{bottom:0;}
  100% {bottom: 0px;}
} 
.preloader.ani1 .preContent2 .rImg{
  left: 0;
} 
.preloader.ani1 .dotImg{
  right: 0;
}
.preloader.ani3 .dotImg{
  opacity: 1;
}
.preloader.ani5 .dotImg{
    display: none;
}
.preloader.ani3 .preContent2 .baseText .eImg, .preloader.ani3 .preContent2 .baseText .baImg, .preloader.ani3 .preContent2 .baseText .seImg{
  top: 0;
  opacity: 1;
}
/* New Changes */

.preloader .container{
  min-height: 100vh;
}
.preloader .preContainer{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 999;
}

.preloader.ani4 .preContent2 .logoImg{
  opacity: 1;
}
.preloader.ani4 .preContent2 .baseText .eImg, .preloader.ani4 .preContent2 .baseText .baImg, .preloader.ani4 .preContent2 .baseText .seImg, .preloader.ani5 .rImg, .preloader.ani5 .preContent2 .dotImgRight{
  top: 0;
  opacity: 0;
}
.preloader.ani5 .rImg, .preloader.ani5 .preContent2 .dotImgRight{
  display: none;
}
.preloader.ani5 .preContainer{
  left: 12px;
  top: 37px;
  transform: none;
}
.preloader.ani5.shrink .preContainer{
  top: 19px;
}

.preloader.ani5 .preContainer .baseText .logoImg{
  height: 28px;
}


/* Nav CSS */

/* .navContainer{
	display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 7.5%;
    padding-right: 7.5%;
} */

.navbar{
    height: 100px;
    transition: .5s all ease-in-out;
}
.navbar.shrink{
  height: 64px;
  background: var(--secondary);
}
.navbar .nav-link{
    color: var(--color-white);
    font-weight: 500;
    font-size: var(--fs-14);
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.navbar .navbar-collapse{
    justify-content: flex-end;
}
.navbar .navbar-nav{
    width: 100%;
    max-width: 736px;
    justify-content: space-between;
}
.navbar .nav-link.contactBtn{
    background-color: var(--primary);
    color: var(--text) !important;
    padding: .5rem 2rem !important;
	transition: .3s all ease-in-out;
}

.contactBtn:hover{
	background-color: var(--primary-hover)
}

.navbar-toggler {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
/*   height: 21px; 3 lines (2px height each) + 2 gaps (5px each) */
  height: 18px; /* 3 lines (2px height each) + 2 gaps (5px each) */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  /* background: red; */
  border-radius: 0;
}
.navbar-toggler:focus{
  box-shadow: none;
}

.toggler-line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

/* Toggle Animation */
.navbar-toggler.active {
  width: 24px;
  /* height: 24px; */
  position: relative;
  top: 4px;
}

.navbar-toggler.active .toggler-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 24px;
}

.navbar-toggler.active .toggler-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  width: 24px;
}

.navbar-collapse.show{
    display: flex;
    opacity: 1;
}

.menu-main-menu-container{
	width: 100%;
}

/* Banner Section CSS */

  .bannerSection{
    /* height: 100vh; */
    /* background-size: cover !important;
    background-attachment: fixed !important;
    background-position: top center !important; */
    position: relative;
    overflow: hidden;
    /* margin-top: -100px; */
  }

  /* .bannerSection:after{ */
/* .bnrHalfcircle{
    content: '';
    position: absolute;
    left: -298px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary);
    opacity: .6;
    width: 1038px;
    height: 1038px;
    border-radius: 50%;
    z-index: 1;
  } */
/*   .bnrHalfcircle {
    position: absolute;
    left: -298px;
    top: 50%;
    transform: translate(-100%, -50%); 
    background: var(--secondary);
    opacity: 0;
    width: 1038px;
    height: 1038px;
    border-radius: 50%;
    z-index: 1;
    transition: all 1s ease; 
  } */

.bannerSection:after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-100%,-50%);
    background: var(--secondary);
    opacity: 0.6;
    width: 1038px;
    height: 1038px;
    border-radius: 50%;
    z-index: 1;
    transition: 1.5s all ease-in-out;
  }
  /* .bannerSection.change:after{
    background: var(--secondary);
    opacity: .6;
  } */
 .bnrHalfcircle{
    content: '';
    position: fixed;
    left: 50%;
    top: 0%;
    transform: translate(-190%,-6.7%); 
    background: var(--primary);
    opacity: 1;
    width: 1038px;
    height: 1038px;
    border-radius: 50%;
    z-index: 1;
    transition: 1s all ease-in-out;
  }
  /* .bannerSection.change .bnrHalfcircle{
    background: var(--secondary);
    opacity: .6;
  } */
  .bannerSection .carousel-item{
    max-height: 900px;
    min-height: 812px;
  }
  .bannerSection .carousel-item.video-item {
    max-height: 804px;
    min-height: 100%;
}
  .bannerSection .carousel-item img{
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: initial;
    min-width: 100%;
    min-height: 812px;
  }

  .bannerSection .carousel-caption{
    z-index: 3;
    left: 7.5%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: left;
	  right: auto;
/*     max-width: 643px; */
    z-index: 4;
  }
  .bannerSection .carousel-caption h1{
    font-size: var(--fs-90);
    font-weight: 600;
    color: var(--color-white);
    max-width: 643px;
	  line-height: 1;
  }
  
  .bannerSection .carousel-caption p{
    max-width: 435px;
    font-weight: 500;
  }
  .bannerSection .carousel-indicators{
/*     top: 66%;
    left: 7.5%;
    margin: 0;
    justify-content: flex-start;
    z-index: 5; */
	  top: 66%;
	  left: 50%;
	  margin: 0;
	  justify-content: flex-start;
	  z-index: 5;
	  transform: translateX(-50%);
	  padding: 0 .75rem;
  }
  .bannerSection .carousel-indicators button{
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }

  /* Home Page CSS */

  .homeSection2 h2{
    /* font-size: var(--fs-50); */
/*     font-weight: 500; */
    line-height: 1;
	  font-weight: 400;
  }
  .cardImg{
    position: relative;
    width: fit-content;
    width: 100%;
  }
  .cardImg div{
    border-radius: 10px;
    overflow: hidden;
  }
  .cardImg div img{
    object-fit: cover;
    object-position: center;
  }
  .cardImg img{
    height: 100%;
    min-width: 100%;
    position: relative;
    z-index: 4;
  }
  .cardImg::before{
    content: '';
    position: absolute;
    background-color: var(--primary);
    width: 140px;
    height: 140px;
    border-radius: 50%;
  }
  .cardImg.img1{
    margin-top: 45px;
  }
  .cardImg.img1 img{
    max-height: 349px;
  }
  .cardImg.img2 div{
    max-height: 534px;
    max-width: 412px;
    width: 100%;
  }
  .cardImg.img2 img{
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
  }
  .cardImg.img3{
    margin-top: 55px;
  }
  .cardImg.img3 img{
    max-height: 401px;
  } 
  .cardImg.img1:before{ 
    left:-55px;
    top: -40px;
    transform: translate(-75px, 0) scale(0.1);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
  }
  
  .cardImg.img1.animate::before {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  .cardImg.img2:before{
    left: -55px;
    top: 50%;
    /* transform: translateY(-50%); */
    transform: translate(0, 0) scale(0.1);
    transition: transform 1s ease, opacity 1s ease;
  }
  .cardImg.img2.animate::before {
    transform: translate(0, -50%) scale(1);
    opacity: 1;
  }
  .cardImg.img3:before{
    top: -35px;
    left:50%;
    /* transform: translateX(-50%); */
    transform: translate(-50%,50%) scale(.1);
    transition: transform 1s ease, opacity 1s ease;
  }
  .cardImg.img3.animate::before {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
  }
  .csSection .cardImg.img2 {
    display: flex;
    justify-content: flex-end;
	  padding-left: 44px;
  }
  .csSection .cardImg.img2:before {
/*     left: 8%; */
    left: 44px;
  }
  .csSection .newyellocircle.topToBottom {
    left: 44px;
  }
  /* Home Service */

.wwoSec ul{
	list-style: disc;
	padding-left: 24px;
}

.wwoSec ul li p{
	margin-bottom:0;
}
  
  .cardService{
    border-radius: 10px;
    background-color: var(--color-white);
    height: 340px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .cardService h3{
    font-size: var(--fs-32);
    line-height: 1.2;
	  font-weight: 400:
  }
  .cardService p{
    font-size: var(--fs-14);
  }
  .cardService a{
    font-size: var(--fs-14);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .cardService img{
    object-fit: cover;
    object-position: center;
    height: 100%;
  }
  .cardService.textCard{
    padding: 34px;
  }

  .carousel-section {
    overflow: hidden;
  }
  .carousel-section .owl-carousel .owl-stage {
    padding-left: 0 !important;
  }
  .carousel-section .owl-carousel .owl-stage-outer {
    overflow: unset;
  }
  .carousel-section .owl-carousel .owl-nav .owl-next:focus,
  .carousel-section .owl-carousel .owl-nav .owl-prev:focus {
    outline: 0;
  }
  .item {
    margin: 0px 0 20px;
  }
  .CSCard {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }
  .CSCard::before{
    content: '';
    position: absolute;
    left: 0;
    bottom:  0;
    width: 100%;
    height: 157px;
    transition: .8s all ease-in-out;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 5.49%, rgba(0, 0, 0, 0.7) 100%);
  }
  .CSCard::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .8s all ease-in-out;
  }

  .CSCard img{
    height: 548px;
    object-fit: cover;
    object-position: center;
  }
  .CSCard .CSContent{
    position: absolute;
    top: 77%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3rem 4rem;
    text-align: center;
    z-index: 3;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    gap: 2rem;
    transition: .8s all ease-in-out;
  }
  .CSCard .CSContent h3{
    color: var(--color-white);
    font-weight: 400;
    font-size: var(--fs-32);
  }
  .CSCard .CSContent p{
    font-size: var(--fs-12);
    margin-bottom: 0;
  }
  .CSCard .CSContent a{
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    font-size: var(--fs-14);
    font-weight: 500;
    opacity: 0;
    transition: 1.5s opacity ease-in-out, 1.1s margin-top ease-in-out ;
    margin-top: 30px;

  }
  span.yellowDot{
    display: inline-block;
    min-width: 8px;
    min-height: 8px;
    max-width: 8px;
    max-height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
  }
  .CSText{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    transition: 1.1s opacity ease-in-out, .7s margin-top ease-in-out ;
    margin-top: 30px;
  }
  .CSCard:hover .CSContent{
    top: 0;
    justify-content: center;
  }
  .CSCard:hover .CSText{
    opacity: 1;
    margin-top: 0;
  }
  .CSCard:hover a{
    opacity: 1;
    margin-top: 0;
  }
  .CSCard:hover::before{
    opacity: 0;

  }
  .CSCard:hover::after{
    opacity: 1;
  }

  /* Disposal CSS */

  .disposalCard{
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-white);
  }
  .disposalCard .imgCard{
    height: 280px;
  }
  .disposalCard .imgCard img{
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .disposalCard .shortDetail{
    padding: 1.25rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
	  min-height: 225px;
	  justify-content: space-between;
  }
  .disposalCard .shortDetail h4{
    font-size: var(--fs-26);
    font-weight: 400;
    margin-bottom: 0;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
  }
  .disposalCard .shortDetail span{
    display: inline-block;
    font-size: var(--fs-12);
  }
  .disposalCard .shortDetail p{
    font-size: var(--fs-14);
    font-weight: 400;
    margin-bottom: .25rem;
  }
  .disposalCard .shortDetail p.shortDescription{
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
  }

  .disposalCard .shortDetail  a{
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    font-size: var(--fs-14);
    font-weight: 500;
  }


  /* Review Section CSS */

  .reviewCard{
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 5rem;
    /* justify-content: space-between; */
  }

  .reviewCard .imgCard{
    height: 642px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 521px;
  }
  .reviewCard .imgCard img{
    object-fit: cover;
    object-position: center;
    height: 100%;
  }
  .reviewCard .reviewDetail{
    color: var(--color-white);
    max-width: 612px;
    padding: 1rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--secondary);
  }
  .reviewCard .reviewText {
    position: relative;
  }
  .reviewCard .reviewText p{
    font-size: var(--fs-24);
    font-weight: 400;
    font-family: var(--font-secondary);
    line-height: 1.2;
  }
  .reviewCard .reviewText:before{
    content: '“';
    position: absolute;
    left: -46px;
    top: -16px;
    font-family: var(--font-secondary);
    color: var(--primary);
    font-size: var(--fs-100);
    line-height: 1;
    font-weight: 700;
  }
  .reviewCard .reviewText:after{
    content: '”';
    position: absolute;
    right: -46px;
    bottom: -40px;
    font-family: var(--font-secondary);
    color: var(--primary);
    font-size: var(--fs-100);
    line-height: 1;
    font-weight: 700;
  }
  .reviewCard h4{
    color: var(--color-white);
    font-size: var(--fs-18);
    font-weight: 400;
    margin-bottom: 0;
  }
  .reviewCard span{
    color: var(--color-white);
    font-size: var(--fs-14);
    font-weight: 400;
  }
  .reviewCard a{
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
  }

.owl-nav {
  position: absolute;
  bottom: 0;
  /* width: 70px; */
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  left: 50%;
  gap: .4rem;
}

.owl-nav i {
    font-size: var(--fs-14);
    color: var(--text);
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-theme .owl-nav [class*='owl-']:hover{
  background: none;
}
.owl-nav i:hover {
    background: var(--primary-hover);
    color: var(--text);
}
.testiCarousel{
	position: relative
}

.testiCarousel .testimonial-slider{
	max-width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}

.testiCarousel .testimonial-photo{
	height: 642px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 521px;
}
.testiCarousel .testimonial-inner{
	gap: 5rem;
	align-items: self-start;
}
.testiCarousel .testimonial-photo img{
	object-fit: cover;
    object-position: center;
    height: 100%;
	width: 100%;
}

.testiCarousel .testimonial-controls{
	 position: absolute;
    bottom: 24px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    left: 50%;
    gap: .4rem;
/* 	margin-top: 10px; */
    text-align: center;
    -webkit-tap-highlight-color: #fff0;
	z-index: 22;
}
.testiCarousel .testimonial-controls button{
	background: transparent;
	outline: none;
	border: 0;
}    

.testiCarousel .testimonial-controls button i{
	font-size: var(--fs-14);
    color: var(--text);
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}    
/* Services Page CSS */

.inner-banner{
  position: relative;
  overflow: hidden;
/*   margin-top: -100px; */
  height: 560px;
  background-position: center !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
/*   padding-left: 7.5%; */
}
.inner-banner::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .4;
}
.inner-banner .bannerText{
  width: 100%;
/*   max-width: 643px; */
  color: var(--color-white);
  position: relative;
  z-index: 3;
}
.inner-banner .bannerText h1{
  font-size: var(--fs-90);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1;
  letter-spacing: 2px;
}
.inner-banner .bannerText p{
  font-size: var(--fs-16);
  font-weight: 500;
  max-width: 435px;
  margin-bottom: 0;
}
.inner-banner .bannerText span{
  font-size: var(--fs-18);
  display: block;
  font-family: var(--font-secondary);
	letter-spacing: 0.01em;
}
.inner-banner .bannerText img{
  height: 75px;
}
.homeServiceList.bgLightGrey{
  background: var(--color-white);
}
.homeServiceList.bgLightGrey .cardService{
  background: var(--light-gray);
}
.interestedText{
	max-width: 618px;
}
/* Disposal Page */

.disposalTabs{
  background-color: var(--secondary);
  display: inline-flex;
  border-radius: 100px;
  border: 2px solid var(--secondary);
}
.disposalTabs .nav-link{
  font-size: var(--fs-12);
  line-height: 1.5;
  border-radius: 100px;
  color: var(--color-white);
  font-weight: 400;
  padding: .25rem 1.5rem;
}

.disposalTabs .nav-link.active{
  background: var(--color-white);
  color: var(--text);
}
.disCard{
  display: block;
  margin-bottom: 2.5rem;
}
.disCard .imgCard{
  position: relative;
  min-height: 380px;
  height: 380px;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.disCard .imgCard img{
  object-fit: cover;
  object-position: center;
  height: 100%;
  min-width:100% ;
  max-width: initial;
}
.disCard .imgCard .badge{
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  padding: 0.3rem 1.2rem;
  font-size: var(--fs-12);
  line-height: 1.5;
  font-weight: 300;
  color: #000000;
  text-transform: capitalize;
}
.disCard .detailCard span, .CaseStudiesCard .detailCard span{
  display: block;
  font-size: var(--fs-12);
  line-height: 1.5;
}
.disCard .detailCard h3{
  display: block;
  font-size: var(--fs-32);
  line-height: 1.2;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  margin-bottom: .5rem;
	font-weight: 400;
}

.mapArea{
  border-radius: 10px;
  overflow: hidden;
}


/* Case Studies CSS */

.singleCS  .reviewCard .reviewText:after{
	line-height: 0;
  bottom: -3px;
}

.CaseStudiesCard{
  background-color: var(--secondary);
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.CaseStudiesCard .imgCard{
  position: relative;
  min-height: 262px;
  height: 262px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.CaseStudiesCard .imgCard img{
  object-fit: cover;
  object-position: center;
  height: 100%;
  min-width:100% ;
  max-width: initial;
}
.CaseStudiesCard .detailCard{
  height: 148px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 1.5rem;
  gap: 10px;
}
.CaseStudiesCard .detailCard span{
  color: var(--color-white);
}
.CaseStudiesCard .detailCard .csLogo{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.CaseStudiesCard .detailCard .csLogo img{
  max-height: 100%;
}
.csCount span{
  font-size: var(--fs-15);
  line-height: 1.5;
  display: block;
  font-weight: 600;
  margin-top: 2rem;
}


/* Contact Us Page CSS */

.contactForm .form-floating{
  margin-bottom: 1.5rem;
}
.contactForm .form-floating label{
  font-size: var(--fs-15);
  line-height: 1.5;
  color: var(--text);
}
.contactForm .form-floating input, .form-floating textarea{
  border: solid 0.5px var(--text);
  padding: 1rem;
	font-size: var(--fs-14);
  border-radius: 10px;
}
.contactForm .form-floating input:focus, .contactForm .form-check-input:focus, .contactForm .form-floating textarea:focus{
  box-shadow: none;
  outline: 0;
}
.contactForm .form-floating label{
  padding: 1rem;
}

.contactForm .form-floating textarea{
  min-height: 187px !important;
  padding: 1rem;
}
.contactForm .form-check-label a{
  font-weight: 600;
}
/* .contactForm .form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.contactForm .form-check-input {
  border-radius: 50%;
  border: .5px solid var(--secondary);
} */
.contactForm .form-control:focus{
  border-color: var(--primary);
}

.contactForm .form-check label{
	display: inline-flex;
	gap: .5rem;
}
.contactForm .form-check label span{
	font-size: var(--fs-12);
}
.contactForm .form-check label input{
	--bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
	border-radius: 50%;
    border: .5px solid var(--secondary);
}
.contactDetail{
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.contactDetail .contactMap{
  width: 100%;
}
.contactDetail .contactAddress{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 433px;
  background-color: var(--secondary);
  height: 100%;
  color: var(--color-white);
  height: 454px;
  text-align: center;
  gap: 2rem;
  padding: 2rem;
}
.contactDetail .contactAddress h4{
  font-size: var(--fs-26);
  color: var(--color-white);
  margin-bottom: 0;
  max-width: 225px;
}
.contactDetail .contactAddress a{
  color: var(--color-white);
  display: block;
  font-size: var(--fs-26);
  color: var(--color-white);
  margin-bottom: 0;
	font-family : var(--font-secondary);
}
.contactDetail .contactAddress a.socialLink{
  background-color: var(--color-white);
  color: var(--text);
  font-size: var(--fs-17);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Privacy Notice Page CSS */
.privacyNotice p{
  margin-bottom: 1.3rem;
  font-size: var(--fs-14);
}
.privacyNotice ul li h3{
  font-size: var(--fs-32);
  line-height: 1.2;
  margin-bottom: .5rem;
  }

/* About Us */

.counter-container {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 892px;
  justify-content: space-between;
}
.counter-container .counter-box {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: var(--light-gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.counter-container .counter-number {
  font-size: var(--fs-70);
  font-weight: 600;
  font-family: var(--font-secondary);
  line-height: 1;
}
.counter-container .counter-text {
  font-size: var(--fs-14);
  line-height: 1.5;
  font-family: var(--font-primary);
  max-width: 169px;
}
.aboutPage{
  position: relative;
}
.aboutPage::before{
  content: '';
  position: absolute;
  background-color: var(--primary);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  left: -40px;
  top: -40px;
  z-index: -1;
}
.aboutPage .carousel-section .reviewCard{
  align-items: center;
  gap: 75px;
  justify-content: space-between;
}
.aboutPage .carousel-section .reviewCard .reviewDetail{
  /* background-color: var(--color-white); */
  background-color: transparent;
}
.aboutPage .carousel-section .reviewDetail p, .aboutPage .carousel-section .reviewDetail h4, .aboutPage .carousel-section .reviewDetail span{
  color: var(--text);
}
.aboutPage .carousel-section .reviewCard .imgCard{
  height: 349px;
  max-width: 521px;
}
.aboutPage .carousel-section .reviewCard .imgCard div{
  border-radius: 10px;
  overflow: hidden;
}
.aboutPage .carousel-section .reviewCard .reviewDetail{
  max-width: 495px;
  gap: 0.5em;
}
.aboutPage .carousel-section .item {
  height: 300px;
}
.aboutPage .carousel-section .owl-nav {
  right: auto;
  bottom: -21px;
  left: 43px;
}
.aboutPage .carousel-section .owl-nav i:hover{
  background: var(--secondary);
  color: var(--color-white);
}
.clientList{
  display: flex;
  flex-wrap: wrap;
  gap: 62px;
  align-items: center;
  justify-content: center;
}
.aboutPage .reviewCard .reviewText:after{
	bottom: -55px
}
.aboutPage .reviewCard .reviewText p{
	font-size: var(--fs-32);
}
.aboutPage .reviewCard a{
	color: var(--text);
}

/* Team Section CSS */

.teamList .teamCard{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
  justify-content: center;
}
.teamList li:last-child .teamCard{
  margin-bottom: 0;
}
 
.teamList .teamCard .imgCard{
  min-height: 183px;
  height: 364px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  display: flex;
}
.teamList .teamCard .imgCard img{
  object-fit: cover;
  object-position: top center;
  min-height: 100%;
  max-width: initial;
  min-width: 100%;
}
.teamList .teamCard .imgCard::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .6s all ease-in-out;
}

.teamList .teamCard.circleDesign .imgCard::after{
  display: none;
}
.teamList .teamCard.circleDesign .imgCard{
  border-radius: 50%;
  width: 240px;
  height: 240px;
}
.teamList .teamCard.circleDesign .imgCard img{
  object-position: center;
}

.teamList .teamCard .imgCard .memberDescription{
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem 2.6rem;
  text-align: center;
  z-index: 3;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  transition: .4s all ease-in-out;
  opacity: 0;
}
/* .teamList .teamCard .imgCard .memberDescription p{
  height: 216px;
  display: flex;
  align-items: center;
  overflow: auto;
} */
.teamList .teamCard .imgCard .memberDescription p, .teamList .teamCard .imgCard .memberDescription a{
  font-size: var(--fs-12);
  margin-bottom: 0;
  color: var(--color-white);
  display: block;
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: anywhere;
}
.teamList .teamCard .imgCard .memberDescription .memberLinks{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
}
.teamList .teamDetail .memberLinks a{
  display: block;
  font-size: var(--fs-14);
  color: var(--text);
}

.teamList .teamCard:hover .imgCard .memberDescription{
  opacity: 1;
  top: 0;
}

.teamList .teamCard:hover .imgCard::after{
  opacity: 1;
}


.teamList .teamCard .teamDetail{
  text-align: center;
}
.teamList .teamCard .teamDetail h4{
  font-size: var(--fs-26);
  line-height: 1;
  margin-bottom: 0;
}
.teamList .teamCard .teamDetail span{
  font-size: var(--fs-14);
  line-height: 1.5;
}
.teamList .teamCard.circleDesign{
  margin-bottom: 2rem;
}
.teamList li:last-child .teamCard.circleDesign{
  margin-bottom: 0;
}


/* Single Disposal Page CSS */

.keyPoints{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.keyPoints li{
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-14);
  line-height: 1.5;
}
.keyPoints li::before{
  content:'';
  position: absolute;
  left: 0;
  top: 6.5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}
.disposalCarousel .carousel-item img{
  height: 728px;
	object-fit: cover;
	object-position: center;
}
.disposalCarousel .carousel-control-prev, .disposalCarousel .carousel-control-next{
  opacity: 1;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  left: 6.5%;
}
.disposalCarousel .carousel-control-next{
  left: auto;
  right: 6.5%;
}
.disposalCarousel .carousel-control-prev i, .disposalCarousel .carousel-control-next i{
  font-size: var(--fs-14);
  color: var(--text);
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.availabilityList{
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  position: relative;
}
.availabilityList::after{
  content: '';
  position: absolute;
  left: 0;
  top: 29.5px;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
}
.availabilityList li{
  /* width: 100%; */
}
.availabilityList h5{
  padding-bottom: 11px;
  margin-bottom: 1rem;
  white-space: nowrap;
}
.availabilityList span{
  font-size: var(--fs-14);
  white-space: nowrap;
  display: block;
}
.subscribeForm {
  margin-top: 40px;
}
.subscribeForm .form-floating{
  width: 100%;
  max-width: 414px;
}

.subscribeForm .form-floating label{
  font-size: var(--fs-15);
  line-height: 1.5;
  color: var(--color-white);
}
.subscribeForm .form-floating input{
  border: solid 0.5px var(--color-white);
  padding: 1rem;
  border-radius: 10px;
  background-color: var(--secondary);
  color: var(--color-white);
}
.subscribeForm .form-floating input:focus{
  box-shadow: none;
  outline: 0;
}
.subscribeForm .form-floating label{
  padding: 1rem;
}

.subscribeForm .form-floating>.form-control:not(:placeholder-shown)~label, .subscribeForm .form-floating>.form-control:focus~label{
  color: rgba(255, 255, 255, 0.65);
}

.subscribeForm .form-floating>.form-control:not(:placeholder-shown)~label::after, .subscribeForm .form-floating>.form-control:focus~label::after{
  background-color: var(--secondary);
}


/* .csSection .cardImg.img2 div{
	max-width:calc(100% - 50px);
} */

/* Footer CSS */

.footerSec{
  padding-top: 12px;
  position: relative;
  overflow: hidden;
}
.footerSec.animate::before{
  transform: translate(0, 0) scale(1);
    opacity: 1;
}
.footerSec::before{
  content: '';
  position: absolute;
  left: -105px;
  top: 40px;
  width: 210px;
  height: 210px;
  background-color: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, 0) scale(.1);
  transition: transform 1s ease, opacity 1s ease;
}
.footerLink li{
  margin-bottom: 16px;
}
.footerLink li:last-child{
  margin-bottom: 0;
}
.footerLink a{
  font-size: var(--fs-14);
  line-height: 1.5;
}
.fLogoArea{
  padding-left: 188px;
}
.fLogoArea p{
  max-width: 411px;
}
.fAddressArea p{
  max-width: 145px;
}
.fAddressArea a{
  font-size: var(--fs-14);
  color: var(--text);
  display: block;
}
.fAddressArea a.linkedIn{
  background-color: var(--secondary);
  color: var(--color-white);
  font-size: var(--fs-15);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.copywriteSec{
  border-top:  0.5px solid var(--secondary);
  font-size: var(--fs-12);
}
.footerLink .contactBtn:hover{
	background-color: transparent;
}
.footerLink a:hover{
	/* font-weight: 600; */
}

.video_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 35%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  pointer-events: none;
}
.privacyNotice ul {
  list-style: disc;
  padding-left: 2rem;
}

/* Responsive CSS */
@media (min-width: 576px) and (max-width: 767px) {
	.cardImg.img2.pImage.cstmimg2::before {
        right: 52% !important;
    }
}
@media (min-width: 769px) and (max-width: 1149px) {
  .aboutPage .reviewCard .reviewText p {
    font-size: 25px;
  }
}
@media (min-width: 993px) and (max-width: 1149px) {
  .container {
    max-width: 1020px !important;
  }
}
  @media (min-width: 900px) and (max-width: 992px) {
  .container {
    max-width: 920px !important;
  }
  #reviewCarousel .owl-nav{
    left: 14% !important;
  }
  .bannerSection:after {
    left: auto;
    right: 0%;
    top: auto;
    transform: none;
    width: 1038px;
    height: 1038px;
    bottom: -60%;
  }
  .reviewCard .reviewDetail {
    max-width: 100% !important;
  }
}
@media (min-width: 993px) and (max-width: 1400px) {
  .bannerSection .carousel-caption h1 {
    max-width: 440px;
  }
  .bnrVideo{
    /* display: none !important; */
  }
  .bannerSection .carousel-item img{
    /* display: block !important; */
  }
}
@media (min-width: 1150px) and (max-width: 1400px) {
  .aboutPage .reviewCard .reviewText p {
      font-size: 25px;
  }
  .aboutPage .carousel-section .owl-nav{
    bottom: 0 !important;
  }
}
@media screen and (min-width: 1024px){
  .availabilityList li span:not(:first-of-type) {
    margin-top: 14px;
  }
}
  @media screen and (min-width: 1030px){
  .cardImg.img1:before,.cardImg.img2:before, .cardImg.img3:before, .aboutPage::before {
    display: none;
  }
}
@media screen and (max-width: 1029px) {
  .newyellocircle{
    display: none;
  }
  .cardImg.img2.pImage.cstmimg2 {
      padding-left: 0;
  }
  .cardImg.img2.pImage.cstmimg2::before {
      right: 22%;
      left: auto;
      bottom: -58px;
      top: auto;
  }
  .aboutPage::before{
    top: -31px;
    left: 8px;
  }
  .aboutPage .imgCardnew {
    margin-left: 25px;
  }
  .cardImg img{
    height: auto;
  }
}
@media screen and (max-width: 1400px){
	.csSection .cardImg.img2:before{
		left: 0;
	}
  .csSection .newyellocircle.topToBottom {
    left: 0;
  }
  .video_overlay{
    display: none;
  }
}

@media screen and (max-width: 992px) {
	
	.cardService{
		height: 260px;
	}
	
	.bannerSection .carousel-caption h1{
    font-size: 60px;
  }
  .bannerSection .carousel-caption{
    top: auto;
/*     transform: none; */
    bottom: 90px;
/* 	max-width: 420px; */
	  transform: translate(-50%, 0)
  }
  .bannerSection .carousel-indicators {
    top: auto;
    bottom: 65px;
  }
  /* .bannerSection:after { */
    .bnrHalfcircle {
	left: auto;
	  right: -5%;
	  top: auto;
	  transform: none;
	  width: 1038px;
	  height: 1038px;
/* 	  bottom: -55%; */
	  bottom: -70%;
  }
	
	
	.navbar-collapse{
    background: var(--secondary);
      height: 100vh !important;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      left: 0;
      top: 0;
      z-index: -1;
      opacity: 0;
      transition: .5s all ease;
  }

  .navbar-collapse .navbar-nav{
    max-width: 100%;
    gap: 80px;
  }
  .navbar-collapse .navbar-nav .nav-item{
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .navbar{
    height: 54px;
  }
  .navbar.shrink{
    height: 54px;
  }
  .navbar .nav-link {
    font-size: var(--fs-16);
    transform: translateY(-50px);
    transition: .5s all ease;
    opacity: 0;
  }
  .contactBtn{
    font-size: var(--fs-14);
  }

  .navbar-collapse.show .nav-link{
    transform: translateY(0);
    opacity: 1;
  }
	
	
	
  .cardImg.img1{
    margin-right: 0;
  }
  .cardImg::before, .aboutPage::before{
    width: 81px;
    height: 81px;
  }
  .cardImg.img1 div{
    width: calc(100% - 22px);
  }
  .cardImg.img1:before {
    right: -12px;
    top: -24px;
    left: auto;
  }
  .aboutPage .carousel-section .reviewCard .imgCard{
    display: flex;
    justify-content: flex-end;
  }
  .aboutPage .carousel-section .reviewCard .imgCard div{
    width: calc(100% - 45px);
  }
  .teamList .teamCard .imgCard .memberDescription{
    padding: 1rem;
  }
  .fLogoArea {
    padding-left: 135px;
  }
  .cardImg.img2:before{
    left: -34px;
  }
  .reviewCard, .testiCarousel .testimonial-inner{
    gap:1.5rem;
    padding-bottom: 24px;
  }
  .reviewCard .reviewDetail{
    /* max-width: 50%; */
    padding: 1rem;
  }
  .reviewCard .reviewText p{
    font-size: var(--fs-26);
  }
  #reviewCarousel .owl-nav{
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
	gap: 36px;
  }
  .reviewCard .reviewText:before {
    left: -28px;
    font-size: 80px;
  }
  .reviewCard .reviewText:after {
    right: -15px;
    bottom: -50px;
    font-size: 80px;
  }
  
}

@media screen and (max-width: 768px) {
	
	.disposalCarousel .carousel-item img{
		height: 560px;
	}
	
	.footerLink li a{
		/* width: 100%; */
		text-align: center;
    display: inline-block;
	}
	.fAddressArea{
		gap: 1.5rem;
	}
	.fAddressArea p, .fAddressArea a.femail{
		margin-bottom:0 !important;
	}
	.footerLink li{
		margin-bottom: 1.5rem;
	}
	
	
	.mb-40{
		margin-bottom: 40px !important;
	}
	.pb-22{
		padding-bottom: 22px !important;
	}
	
	.homeServiceList .cardService p{
		display: none;
	}
	.homeServiceList.srvclst .cardService p{
		display:block;
	}
	.cardService h3{
		font-size: var(--fs-26);
	}
	
	.CSCard .CSContent{
		padding: 2rem 1.25rem;
	}

  .srvclst .srvclstimgdv {
    max-height: 160px;
	  height: 160px;
  }
  .srvclst .cardService h3 {
    font-size: 26px;
  }
  .srvclst .cardService.textCard, .srvclst .srvclstimgdv {
      margin-bottom: 1.1rem;
  }
  .srvclst .cardService.textCard {
    max-height: initial;
    padding: 26px 29px;
	  height: auto;
  }
  .mobile-mb-4 {
    margin-bottom: 1.8rem !important;
  }
  .cnctsubmt p {
    margin-bottom: 0;
  }
  .popup-title {
    font-size: 26px !important;
  }

  .bannerSection .carousel-item {
/*     max-height: 812px; */
/*     min-height: 812px; */
	 max-height: 100vh;
    min-height: 100vh;
	  /* justify-content: center */
  }
	/* .bannerSection .carousel-item img{
		min-height: 100vh;
	} */
	.bannerSection .carousel-item.active{
		display: flex;
	}
  .bannerSection .carousel-caption h1{
    font-size: 60px;
	padding-right: 1rem;
  }
  .bannerSection .carousel-caption{
    top: auto;
/*     transform: none; */
    bottom: 24px;
	  padding: 1.25rem;
  }
	.bannerSection .carousel-caption p{
		margin-bottom: 4rem;
	}
  .bannerSection .carousel-indicators {
    top: auto;
    bottom: -20px;
	  padding: 0 0;
  }
  .bannerSection:after {
/*     .bnrHalfcircle { */
    left: auto;
    right: -10%;
    top: auto;
    transform: none;
    width: 1038px;
    height: 1038px;
    bottom: -60%;
/*     bottom: -30%; */
  }
	.pt-22{
		padding-top: 22px !important;	
	}
	.pt-8{
		padding-top: 8px !important;	
	}

  .reviewCard, .testimonial-inner{
    flex-direction: column;
  }
  .reviewCard .imgCard, .testiCarousel .testimonial-photo{
    height: 240px;
    max-width: 100%;
  }
  .reviewCard .reviewText p{
    font-size: var(--fs-26) !important;
  }
	
  .singleCS .reviewCard .reviewText p{
    font-size: var(--fs-20) !important;
  }
  .reviewCard .reviewDetail{
    padding: 2rem 0 1rem;
    max-width: 100%;
  }
  .reviewCard .reviewText:before {
    left: 0;
    top: -37px;
    font-size: 80px;
  }
  .reviewCard .reviewText:after {
    right: 0;
    bottom: -65px;
    font-size: 80px;
  }
	.testiCarousel .testimonial-controls{
		bottom: 0;
	}
  
	.testiCarousel .testimonial-slider{
		min-height: 860px;
	}
  
  

  .cardImg.img1{
    margin-right: 0; 
    margin-top: 0px;
  }
  .cardImg div{
    border-radius: 10px;
    overflow: hidden;
  }
  
  .cardImg{
    margin-bottom: 2rem;
  }
  .cardImg.img2{
    padding-left: 33px;
  }
  .cardImg.img2 div {
    max-height: 360px;
    max-width: 218.39px;
    width: 100%;
  }
  .cardImg.img2::before{
    left: -0px;
  }
	.cardImg.img3 {
    margin-top: 20px;
}
  .cardService{
    height: 146px;
  }
	.cardService.textCard{
		padding: 16px 0;
		text-align: center
	}
	
	.homeServiceList.srvclst .cardService.textCard{
		text-align: left;
	}
	.CaseStudiesCard .imgCard{
		height:200px;
		min-height: 200px;
	}
	
  .py-80{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .secHeading{
    font-size: var(--fs-40);
  }
  .inner-banner{
    padding: 1rem;
  }
  .inner-banner .bannerText h1{
    font-size: var(--fs-60);
  }
  .contactDetail{
    flex-direction: column;
  }
  .contactDetail .contactAddress{
    max-width: 100%;
    height: auto;
  }
  .contactDetail .contactAddress div{
    gap: 1.5rem;
  }
  .contactDetail .contactAddress a, .contactDetail .contactAddress h4{
    font-size: var(--fs-18);
  }
  .contactDetail iframe{
    height: 300px;
  }
  .counter-container .counter-box{
    width: 160px;
    height: 160px;
  }
  .counter-container .counter-number {
    font-size: var(--fs-50);
  }
  .counter-container .counter-text {
    font-size: var(--fs-12);
    max-width: 145px;
  }
  .counter-container {
    gap: 3rem;
    width: auto;
    max-width: initial;
    justify-content: center;
  }
  .clientList{
    gap: 24px;
  }
  .clientList li img{
    max-height: 30px;
  }
  .aboutPage .carousel-section .reviewCard{
    gap: 32px;
  }
  .aboutPage .carousel-section .reviewCard .imgCard{
    max-height: 320px;
    max-width: 100%;
  }
	.owl-nav i{
		font-size: 12px;
	}
  .aboutPage .carousel-section .item{
    margin: 25px 0 0 0;
    height: auto;
  }
  .aboutPage .carousel-section .reviewCard{
    padding-bottom: 2.5rem;
  }
  .aboutPage .carousel-section .owl-nav{
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: -0px;
  }
  .teamList .teamCard{
    gap: .5rem;
    margin-bottom: 1.5rem;
  }
  .teamList .teamCard .imgCard{
    height: auto;
    max-height: 312px;
  }
  .teamList .teamCard .imgCard .memberDescription{
    padding: .5rem;
  }
  .teamList .teamCard .imgCard .memberDescription p, .teamList .teamCard .imgCard .memberDescription .yellowDot{
    display: none;
  }
  .teamList .teamCard .teamDetail h4{
    font-size: var(--fs-18);
  }
  .teamList .teamCard .teamDetail span{
    font-size: var(--fs-12);
  }
  .availabilityList{
    flex-direction: column;
    gap: 0;
  }
  .availabilityList:after{
    display: none;
  }
  .availabilityList li{
    flex-direction: row;
    gap: 1rem;
    padding: .75rem 0;
    display: flex;
    border-bottom: 1px solid var(--secondary);
  }
  .availabilityList li:last-child{
    border: 0;
  }
  .availabilityList li h5, .availabilityList li span{
    width: 50%;
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  .teamList .teamCard.circleDesign .imgCard {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    min-height: initial;
  }
  .singleDisposalMap{
    padding-top: 0;
  }
  .singleDisposalMap iframe{
    height: 526px;
  }
}



@media screen and (max-width: 576px) {
  .case_studies-template-default .inner-banner .bannerText img {
    height: auto;
  }
  .bannerSection{
    height: 100vh;
  }
  .bannerSection .carousel-caption {
    bottom: 0;
    transform: translate(-50%, -40%);
}
	.copywriteSec{
		gap: 24px;
	}
	.disposalCard .imgCard{
		height: 120px;
	}
	.disposalCard .shortDetail{
		padding: 1.5rem 19px;
	}
	img.custom-logo{
		/* max-height: fit-content !important; */
		max-height: 24px !important;
		max-width: 88px !important;
	}
	.preloader.ani5 .preContainer{
		top: 15px;
	}
	.preloader.ani5 .preContainer .baseText .logoImg {
		height: 24px;
		max-width: 88px;
	}
	 .csSection .cardImg.img2 div {
    max-height: 282px;
    max-width: 100%;
    width: 100%;
  }
	.csSection .cardImg.img2{
		padding-left:33px;
		width: calc(100% - 50px);
	}
	
	.aboutPage .carousel-section .reviewCard .imgCard{
    max-height: 202px;
    max-width: 100%;
  }
  body{
    font-size: var(--fs-14);
  }
	.bannerSection .carousel-item p{
    	font-size: var(--fs-16);
	}
	.cardService a, .CSCard .CSContent a, .reviewCard span, .fLogoArea p{
    	font-size: var(--fs-12);
		
	}
	.reviewCard .reviewText p{
		font-size: var(--fs-20) !important;
	}
	.HDisposalHeading h2, .HDisposalHeading p{
		text-align: center;
	}
	.clientList {
        gap: 40px 24px;
    }
	.fLogoArea img{
		max-width: 114px;
		height: auto
	}
	.hAboutText{
		font-size: 26px !important;
	}
	.clientList li img{
		max-height: 21px;
	}
	 .bannerSection:after { 
/*         .bnrHalfcircle { */
    	left: auto;
		right: -20%;
		top: auto;
		transform: none;
		width: 713px;
		height: 713px;
		bottom: -30%;
/* 		bottom: -20%; */
  }
  .counter-container {
    gap: 1.5rem;
    flex-direction: column;
  }
  .aboutPage .carousel-section .reviewCard{
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 2.5rem;
  }
  .aboutPage .carousel-section .reviewCard .reviewDetail{
    max-width: 100%;
  }
  .footerSec::before{
    width: 162px;
    height: 162px;
    left: -81px;
  }
  .fLogoArea{
    padding-left: 116px;
  }
}




.nhSliderWrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.nhSlider {
  display: flex;
  will-change: transform;
}

.nhSlide {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.nhReviewDetail {
  background: transparent;
  padding: 30px;
}

.nhReviewText p {
  font-size: 18px;
  line-height: 1.6; 
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  color: #fff;
}

.nhReviewText h4, .nhReviewText span, .nhReviewText a {
  opacity: 0;
  transform: translateY(20px);
  color: #fff;
}

.nhReviewText a {
  color: #fff;
  text-decoration: none;
}

.nhSliderNav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.nhSliderNav button {
  padding: 8px 16px;
  background: #4dabf7;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.nhSliderNav button:hover {
  background: #339af0;
}

.nhDots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.nhDot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #495057;
  cursor: pointer;
  transition: background 0.3s;
}
.map-touch-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  z-index: 999;
  text-align: center;
  pointer-events: none;
  display: none;
}

@media (max-width: 768px) {
  .map-touch-message {
    display: block;
  }
}