/* Fonts */
:root {
  --default-font: "Figtree Light", sans-serif;
  --sectionTitle: 14px;
  --sectionTitleLineHeight: 21px;
  --sectionHeading: 56px;
  --sectionHeadingLineHeight: 67.2px;
  --sectionPera: 16px;
  --sectionPeraLineHeight: 24px;
}

:root {
  --background-color: #ffffff;
  --default-color: #3d4348;
  --heading-color: #4D4D4D;
  --accent-color: #57CC99;
  --accent-color-hover: #8be9c0;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #313336;
  --nav-hover-color: var(--accent-color);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #313336;
  --nav-dropdown-hover-color: #77b6ca;
}

.light-background {
  --background-color: #f8fbfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: #f5f5f5;
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

.mainContainer {
  width: 1440px;
  margin: 0 auto;
  background-color: var(--background-color);
}

.content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 64px 0px;
  position: relative;
}

.content.contentOverPad {
  padding: 80px 64px;
}

section {
  scroll-margin-top: 70px;
}

.promotion {
  background: #56CC98;
  background: linear-gradient(79deg, rgba(86, 204, 152, 1) 0%, rgba(56, 163, 165, 1) 40%, rgba(33, 86, 122, 1) 100%);
  padding: 4px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;

}


.discover-btn {
  color: #fff;
  font-size: 40px;
  margin-top: 20px;
  border: 2px solid #fff;
  padding: 10px 50px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.discover-btn:hover {
  color: #57CC99;
  /* Change text color */
  border-color: #57CC99;
  /* Change border color */
  /* Optional: add background on hover */
  scale: 1.05;
  transition: all 2s ease-in-out;

}

.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  padding-left: 32px;
  padding-right: 32px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 560px) {
  .header .logo img {
    max-height: 40px;
  }
}

@media (max-width: 480px) {


  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 24px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color-hover);
}

.scrolled .header {
  /* box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1); */
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navbar-nav .nav-link,
  .mainmenu .nav-link,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 16px !important;
    font-size: 16px;
    font-family: var(--default-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }


  .navmenu li:hover>a,
  .navmenu li.active>a,
  .navbar-nav .nav-link:hover,
  .mainmenu .nav-link:hover {
    color: var(--nav-hover-color);
  }

  .navmenu li.active a,
  .navmenu li.active a:focus,
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:focus,
  .mainmenu .nav-link.active,
  .mainmenu .nav-link:focus {
    color: var(--nav-hover-color);
    border-bottom: 3px solid #000;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .header .mainmenu {
    display: flex !important;
    flex-direction: row !important;
  }
}

.navbar-toggler {
  color: #000;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile Navigation */
.slideMenu {
  height: 100vh
}

@media (max-width:1200px) {
  .navbar-nav .nav-link {
    color: var(--nav-color);
    padding: 10px 16px !important;
    font-size: 16px;
    font-family: var(--default-font);
    font-weight: 500;
    text-transform: uppercase;
    border-left: 3px solid transparent;
  }

  .navbar-nav .nav-link:hover {
    color: var(--nav-hover-color);
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:focus {
    color: var(--nav-hover-color);
    border-left: 3px solid #000;
  }

}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .discover-btn {
    font-size: 30px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 0px 0px 0px 20px;
    padding: 40px 0;
    margin: 0;
    top: 0;
    right: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.5s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #000;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
    height: 100vh;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.footer {
  color: var(--default-color);
  background-color: #F0FDF8;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 60px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 4px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #161C1A;
  margin-right: 24px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}

.footer .social-links a i {
  margin-right: 8px;
}

.footer .social-links a:hover {
  color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.newsletter-form {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.actions {
  border: 4px solid #fff;
  font-size: 16px;
  padding: 8px 12px;
  margin: 0px -6px 0 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
  width: 132px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.actions:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-top: 24px
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}


.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}


@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* ---------- */

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color-hover);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
  text-transform: uppercase;
}

.btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.btn-watch-video:hover {
  color: var(--accent-color);
}

.btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }

  .discover-btn {
    font-size: 20px;
  }

}

.social-linksA {
  border-top: 1px solid #f1f2f3;
  padding: 12px 0px;
  position: relative;
  justify-content: center;
}


.sep {
  border-right: 1px solid #f1f2f3;
}

.sep:hover {
  border-right: 1px solid #f1f2f3 !important;
}

.social-linksA a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 14px;
  color: #0C0A09;
  margin-right: 0;
  transition: 0.3s;
  gap: 6px;
  text-transform: uppercase;
  font-weight: 500;
}

.social-linksA a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/* ourStory */

.ourStory {
  width: 100%;
  background: #f9f9f9;
  background: url(../img/ourStory.png) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  padding: 300px 0px 400px;
}

.storyContainer {
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
}

.ourStoryCont {
  width: 62%;
  margin: 0 auto;
  margin-top: 0;
}

.ourStoryCont h2 {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.06em;
  color: #d5ede3;
  text-transform: uppercase;
}

.ourStoryCont h3 {
  font-size: 56px;
  font-weight: 700;
  line-height: 56px;
  color: #d5ede3;
  margin-bottom: 3vw;
}

.ourStoryCont h3 span {
  color: var(--accent-color);
}

.ourStoryCont p {
  font-size: 24px;
  font-weight: normal;
  line-height: 34px;
  color: #fff;
}

/* Services */

.ourSerivices {
  width: 100%;
  background-color: #EAFFF6;
  border-radius: 0;
}

.ourSerivices h2 {
  font-size: var(--sectionTitle);
  font-weight: 600;
  line-height: var(--sectionTitleLineHeight);
  letter-spacing: 0.06em;
  color: #000;
  text-align: center;
  text-transform: uppercase;
}

.ourSerivices h3 {
  font-size: var(--sectionHeading);
  font-weight: 500;
  line-height: var(--sectionHeadingLineHeight);
  text-align: center;
  color: #000;
}

.ourSerivices h3 span {
  color: var(--accent-color);
}

.ourSerivices p {
  font-size: var(--sectionPera);
  line-height: var(--sectionPeraLineHeight);
  text-align: center;
}

.servicesCont {
  display: flex;
  margin-top: 60px;
  gap: 40px;
}

.serviceOne {
  background: var(--background-color);
  border-radius: 32px;
  width: 50%;
  text-align: left;
  box-shadow: 3px 4px 10px #00000017;
}

.serviceImg {
  border-radius: 32px;
  width: 100%;
  max-width: 100%;
}

.serviceDetails {
  padding: 40px;
}

.serviceDetails h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.06em;
  color: #4d4d4d;
  text-transform: uppercase;
}

.serviceDetails h5 {
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  color: #000;
}

.serviceDetails h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 24px;
}

.serviceTwo {
  display: flex;
  width: 50%;
  flex-wrap: wrap;
}

.subServices {
  width: 100%;
  display: flex;
  gap: 32px;
}

.seviceGreen {
  width: 50%;
  border-radius: 32px;
  background-color: var(--background-color);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 3px 4px 10px #00000017;
}

.seviceGreen.bg {
  background: #57CC99;
}

.seviceGreen h5 {
  font-size: 27px;
  font-weight: 500;
  line-height: 32.4px;
  margin-top: 12px;
  color: #000;
}

.seviceGreen h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  min-height: 88px;
}

.seviceGreen.bg h5 {
  color: var(--contrast-color);
}

.seviceGreen.bg h6 {
  color: var(--contrast-color);
}

.seviceGreen.bg .btn-get-started {
  background-color: #161C1A
}

.seviceGreen.bg .btn-get-started:hover {
  background-color: #000;
}

.seviceGreen2 {
  width: 100%;
  border-radius: 32px;
  background-color: var(--background-color);
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 32px;
  gap: 32px;
  box-shadow: 3px 4px 10px #00000017;
}

.seviceGreen2 h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.06em;
  color: #4d4d4d;
  text-transform: uppercase;
}

.seviceGreen2 h5 {
  font-size: 27px;
  font-weight: 500;
  line-height: 32.4px;
  margin-top: 12px;
  color: #000;
}

.seviceGreen2 h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 24px;
}

.mt-4cust {
  padding-top: 32px;
  padding-right: 15px;
}

/* environmentalServices  */
.environmentalServices {
  width: 100%;
  background: #fff;
}

.environmentalServicesHeading {
  text-align: center;
}

.environmentalServicesHeading h2 {
  font-size: var(--sectionTitle);
  font-weight: 600;
  line-height: var(--sectionTitleLineHeight);
  letter-spacing: 0.06em;
  text-align: center;
  color: #000;
  text-transform: uppercase;
}

.environmentalServicesHeading h3 {
  font-size: var(--sectionHeading);
  font-weight: 500;
  line-height: var(--sectionHeadingLineHeight);
  text-align: center;
  color: #000;
}

.environmentalServicesHeading h3 span {
  color: var(--accent-color);
}

.environmentalServicesHeading p {
  font-size: var(--sectionPera);
  line-height: var(--sectionPeraLineHeight);
  text-align: center;
}

.environmentalFeatuire {
  max-width: 976px;
  margin: 60px auto auto;
  display: flex;
  gap: 96px;
  padding-bottom: 40px;
}

.featureDetails {
  padding-top: 28px;
}

.featureDetails h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  margin-top: 16px;
  color: #000;
  margin-bottom: 16px;
}

.featureDetails ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.featureDetails ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  list-style: none;
  margin-bottom: 18px;
}

.listing {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 60px;
  margin-top: 30px;
}

.listing a.btn-get-started2 {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  padding: 4px 16px 4px 16px;
  border-radius: 24px;
  text-align: center;
  background-color: #60FBB733;
  color: #000;
}

/* techContact */

.ourSerivicesTech {
  width: 100%;
  background: url(https://compliancekart-website-images.s3.ap-south-1.amazonaws.com/TechContent.png) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  border-radius: 0;
  text-align: center;
}

.ourSerivicesTech h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  color: #fff;
  text-align: center;
  margin: 21px 0px 50px;
}

.servicesTechCont {
  margin-top: 60px;
}

.servicesTechCont ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 60px;
}

.servicesTechCont ul li {
  list-style: none;
  margin: 0;
  width: 100%;
  position: relative;
}

.servicesTechCont ul li img {
  margin-bottom: 21px;
}

.servicesTechCont ul li h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  padding-bottom: 12px;
  /* min-height: 76px; */
}

.servicesTechCont ul li p {
  margin: 0;
  color: #d3d7d0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.servicesTechCont ul li::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  width: 1px;
  background-color: #596f4e;
  height: 100%;
}

.servicesTechCont ul li:last-child::after {
  content: none;
}

.techContact {
  width: 100%;
  position: relative;
  border-radius: 0;
  background: url(../img/Contact.png) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  padding: 300px 0px 300px;
}

.techContactCont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.techText {
  background: var(--background-color);
  padding: 128px;
  border-radius: 24px;
  display: flex;
}

.headingtext {
  width: 50%;
}

.headingtext h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  color: #000;
}

.peraText {
  width: 50%;
}

.peraText p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}


/* Projects */

.projects {
  width: 100%;
  background-color: #F9F9F9;
}

.projectHeader {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.projectHeader h2 {
  font-size: var(--sectionTitle);
  font-weight: 600;
  line-height: var(--sectionTitleLineHeight);
  letter-spacing: 0.06em;
  color: #000;
  text-transform: uppercase;
}

.projectHeader h3 {
  font-size: var(--sectionHeading);
  font-weight: 500;
  line-height: var(--sectionHeadingLineHeight);
  color: #000;
}

.projectHeader h3 span {
  color: var(--accent-color);
}

.projectHeader p {
  font-size: var(--sectionPera);
  line-height: var(--sectionPeraLineHeight);
}

/* Accord */
.accordion-wrapper {
  background: #f9f9f9;
  width: 100%;
  margin-top: 30px;
}

.accordion {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 700px;
  background: #57cc99;
  border-radius: 30px;
}

.accordion .tabs {
  /* flex: 1; */
  background-color: white;
  padding: 2.6rem;
  display: flex;
  overflow: hidden;
  position: relative;
  transition: all 0.1s;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-right: 3px solid #fff;
  background: linear-gradient(0deg, var(--Primary, #57CC99), var(--Primary, #57CC99)),
    linear-gradient(0deg, rgba(14, 202, 120, 0.3), rgba(14, 202, 120, 0.3));
}

.accordion .tabs:hover {
  cursor: pointer;
}

.accordion .tabs .tab-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FCFCFC;
  width: 100%;
  visibility: visible;
  opacity: 1;
  font-size: 24px;
  font-weight: 500;
  line-height: 33.6px;
}

.accordion .tabs .tab-header .text>div {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: left top;
  width: 250px;
}

.accordion .tabs .tab-content {
  visibility: hidden;
  opacity: 0;
  color: white;
  position: relative;
  width: 100%;
  /* display: none; */
}

.accordion .tabs .tab-content .tab-content-wrapper {
  position: absolute;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  /* transition: all 0.5s 0.3s; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.accordion .tabs .tab-content .title-time {
  font-weight: bold;
  font-size: 5.4rem;
  text-transform: uppercase;
  margin: 2rem 0 10rem;
}

.accordion .tabs .tab-content .tab-img {
  position: absolute;
  top: 4rem;
  left: 2rem;
  right: -3rem;
  height: auto;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  z-index: 2;
}

.accordion .tabs.is-active {
  flex: 1;
  background: #f0fdf8;
  padding: 0;
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
}

.accordion .tabs.is-active::after {
  /* content: ""; */
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.accordion .tabs.is-active .tab-header {
  width: 10%;
  border-right: 3px solid #fff;
  align-items: center;
  padding: 2rem;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.accordion .tabs.is-active .tab-content {
  visibility: visible;
  opacity: 1;
  padding: 38px 32px;
  color: #000;
}

.accordion .tabs.is-active .tab-content .tab-content-wrapper {
  visibility: visible;
  opacity: 1;
}

.accordion:first-child .tabs {
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
}

.wrapperText {
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  color: #000;
  width: 60%;
}

.wrapperPera {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  width: 38%;
  padding-right: 15px;
}

.wrapperTextImage {
  width: 100%;
  position: relative;
  margin-top: 30px;
  border-radius: 32px;
}

.text {
  line-height: 0;
}

.slideDetails {
  background-color: #d2cccc;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #fff;
  position: absolute;
  bottom: 10px;
  right: 10%;
  max-width: 280px;
}

.slideDetails h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  color: #000;
}

.slideDetails p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}


/* Feedback */

.feedback {
  width: 100%;
  background: #fff;
}

.feedbackHeading {
  text-align: center;
}

.feedbackHeading h2 {
  font-size: var(--sectionTitle);
  font-weight: 600;
  line-height: var(--sectionTitleLineHeight);
  letter-spacing: 0.06em;
  text-align: center;
  color: #000;
  text-transform: uppercase;
}

.feedbackHeading h3 {
  font-size: var(--sectionHeading);
  font-weight: 500;
  line-height: var(--sectionHeadingLineHeight);
  text-align: center;
  color: #000;
}

.feedbackHeading h3 span {
  color: var(--accent-color);
}

.feedbackHeading p {
  font-size: var(--sectionPera);
  line-height: var(--sectionPeraLineHeight);
  text-align: center;
}

.scrollElementsContainer {
  width: 100%;
  display: flex;
  margin-top: 60px;
  /* overflow-y: scroll; */
  /* max-height: calc(100vh - 400px); */
  position: relative;
}

.scrollElem {
  width: 50%;
  padding: 0px 60px;
  max-height: 300px;
  overflow: auto;
  padding-bottom: 100px;
}

.textElms {
  max-width: 356px;
  max-height: 140px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  padding: 12px 0px 0px 0px;
  padding: 10px;
  border-radius: 12px 12px 0px 12px;
  border: 1px solid #F1F2F3;
  overflow: auto;
  min-width: 356px;
}

.owner {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 356px;
  padding: 10px;
  justify-content: end;
  min-width: 356px;
}

.ownwrPik {
  width: 36px;
  height: 36px;
  background-color: #f3f4f5;
  border: 1px solid #f3f4f5;
  border-radius: 50%;
}

.ownwrProfile {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #000
}

.ownwrProfile span {
  display: block;
  color: 898a8a;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.scrollElem div.scrollElemText:nth-child(odd) .textElms {
  background-color: #fff;
}

.scrollElem div.scrollElemText:nth-child(even) .textElms {
  background-color: #F1F2F3;
}

.scrollElem div.scrollElemText:nth-child(even) {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.scrollElemText {
  margin-bottom: 60px;
}

.scrollElem.rt div.scrollElemText:nth-child(odd) .textElms {
  background-color: #F1F2F3;
}

.scrollElem.rt div.scrollElemText:nth-child(even) .textElms {
  background-color: #fff;
}

.scrollElem.rt div.scrollElemText:nth-child(even) {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.scrollElem.rt div.scrollElemText:nth-child(odd) {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.scrollElem.rt .owner {
  justify-content: start;
}

#style-3::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

#style-3::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}

#style-3::-webkit-scrollbar-thumb {
  background-color: rgba(87, 204, 153, 1);
}



#style-31::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

#style-31::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}

#style-31::-webkit-scrollbar-thumb {
  background-color: #7e7d7d;
}



#style-4::-webkit-scrollbar {
  width: 0px;
  background-color: #F5F5F5;
}


/* Clients */

.ourClients {
  width: 100%;
  background-color: #F9F9F9;
}

.ourClientsHeader {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ourClientsHeader h2 {
  font-size: var(--sectionTitle);
  font-weight: 600;
  line-height: var(--sectionTitleLineHeight);
  letter-spacing: 0.06em;
  color: #000;
  text-transform: uppercase;
}

.ourClientsHeader h3 {
  font-size: var(--sectionHeading);
  font-weight: 500;
  line-height: var(--sectionHeadingLineHeight);
  color: #000;
}

.ourClientsHeader h3 span {
  color: var(--accent-color);
}

.ourClientsHeader p {
  font-size: var(--sectionPera);
  line-height: var(--sectionPeraLineHeight);
}

.clientsList {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}

.clientDetails {
  width: 100%;
  height: 114px;
  border: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: none
}

.clientDetails img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;

}

/* Our Team */

.ourTeam {
  width: 100%;
  background-color: #eee;
}

.ourTeamHeader {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ourTeamHeader h2 {
  font-size: var(--sectionTitle);
  font-weight: 600;
  line-height: var(--sectionTitleLineHeight);
  letter-spacing: 0.06em;
  color: #000;
  text-transform: uppercase;
}

.ourTeamHeader h3 {
  font-size: var(--sectionHeading);
  font-weight: 500;
  line-height: var(--sectionHeadingLineHeight);
  color: #000;
}

.ourTeamHeader h3 span {
  color: var(--accent-color);
}

.ourTeamHeader p {
  font-size: var(--sectionPera);
  line-height: var(--sectionPeraLineHeight);
}

.teamList {
  margin-top: 60px;
}

.item {
  border-radius: 16px;
  border: 1px solid #f1f2f3;
  overflow: hidden;
  background: #fff;
}

.teamDetails {
  text-align: center;
  padding: 24px;
  min-height: 300px;
}

.teamDetails h2 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #0C0A09;
  margin-bottom: 24px;
}

.teamDetails h2 span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #898A8A;

}

.teamDetails p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  color: #898A8A;
  min-height: 240px;
  overflow: auto;
}


/* Blogs */

.ourBlogs {
  width: 100%;
  background-color: #F9F9F9;
}

.ourBlogsHeader {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ourBlogsHeader h2 {
  font-size: var(--sectionTitle);
  font-weight: 600;
  line-height: var(--sectionTitleLineHeight);
  letter-spacing: 0.06em;
  color: #000;
  text-transform: uppercase;
}

.ourBlogsHeader h3 {
  font-size: var(--sectionHeading);
  font-weight: 500;
  line-height: var(--sectionHeadingLineHeight);
  color: #000;
}

.ourBlogsHeader h3 span {
  color: var(--accent-color);
}

.ourBlogsHeader p {
  font-size: var(--sectionPera);
  line-height: var(--sectionPeraLineHeight);
}

.blogsList {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.news {
  display: flex;
}

.newsImageContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.newsImage {
  width: 80%;
}



.blogsDesign {
  display: flex;
  width: 48.5%;
}

.mediaList {
  width: 50%;
  height: 310px;
  border-radius: 32px;
  background-color: #f3f4f5;
  overflow: hidden;
  border: 1px solid #ebeced;
}

.mediaList img {
  width: 100%;
}

.mediaTag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.mediaTag span {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  color: #898A8A;

}

.mediaTag span.tags {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  padding: 4px 16px 4px 16px;
  border-radius: 24px;
  background: #60FBB733;
  color: #000;
}

.mediaDetails h2 {
  font-size: 27px;
  font-weight: 500;
  line-height: 32.4px;
  color: #0C0A09;
}

.mediaDetails p {
  font-size: 13px;
  font-weight: 500;
  line-height: 19.6px;
  color: #57534E;
  overflow: auto;
  padding-right: 5px;
  margin-bottom: 24px;
  display: -webkit-box;
  max-width: 200px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-readMore {
  width: 177px;
  padding: 10px 24px;
  border-radius: 32px;
  border: 1px solid var(--accent-color);
  background: var(--background-color);
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s;
}

.btn-readMore:hover {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.mediaDetails {
  width: 50%;
  padding: 20px 24px;
}


/* Header */
.starter-section {
  margin: 0 auto;
  scroll-margin-top: 87px;
}

.headerCarousel.item {
  border-radius: 0;
  border: 0;
  overflow: hidden;
  display: flex;
  padding: 0;
  justify-content: space-between;
  position: relative;
}

.SignUp {
  width: 41%;
  padding-right: 0px;
  padding-top: 32px;
  padding-left: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.SignUpDetails {
  width: 56%;
  position: relative;
}

.SignUp p {
  font-size: 14px;
  font-weight: 700;
  line-height: 0px;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
}

.SignUp h1 {
  font-size: 72px;
  font-weight: 300;
  line-height: 80px;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 10px;
}

.SignUp h1 span {
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.SignUp h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  color: #fff;
}

.slideDetails.bg2 {
  top: auto;
  bottom: 20%;
  left: auto;
  right: 5.5%;
  background: rgba(240, 247, 239, 0.87);
}

.slideDetails.bottomSet {
  background: rgba(240, 247, 239, 0.87);
  bottom: 110px;
  right: -20px;
}

.disclm {
  position: absolute;
  bottom: 11px;
  right: 20px;
  text-align: right;
  font-weight: bold;
}

.actions span img {
  width: 16px !important
}

#headerCarousel {
  position: relative;
}

#demoSlider.owl-theme .owl-dots,
.owl-theme .owl-nav {
  width: 120px;
  position: absolute;
  bottom: 4%;
  right: 7%;
  margin-left: 0px;
}

#demoSlider.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
}

#demoSlider.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--accent-color);
}

#demoSlider.owl-theme .owl-dots {
  z-index: 50;
  display: flex;
}

#demoSlider.owl-theme .owl-dots .owl-dot {
  border: 0;
  background: none;
}

#clientCarousel.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--accent-color);
}

/* Nav */
#header {
  margin: 0 auto;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: rgba(148, 178, 126, 0.4);

  background: #fff;
}

.headerBT {
  padding: 12px 52px 12px 52px;
  border-radius: 16px;
  border: 2px solid rgba(87, 204, 153, 1);
  background: rgba(87, 204, 153, 1);
  margin-top: 24px;
  color: #fff;
  text-align: left;
  display: block;
  width: 85%;
}

.headerBT:hover {
  color: var(--contrast-color);
  background: var(--accent-color-hover);
  border: 2px solid var(--accent-color-hover);
}

#myVideo {
  width: 100%;
}

.contentBG {
  top: 0;
  left: 0;
  width: 100%;
}

.footer-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-left: 24px;
}

.footerBG {
  background: #fff;
  padding: 30px 8px;
  border-radius: 24px;
}


.jarallax-keep-img {
  position: relative;
  z-index: 0;
}

.jarallax-keep-img>.jarallax-img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  z-index: -100;
  opacity: 0;
}

.jarallax {
  min-height: 800px;
  /* background: black; */
}

.jarallax-keep-img.demo-float-left {
  margin-right: 15px;
  margin-left: -60px;
}

.jarallax-keep-img.demo-float-right {
  margin-left: 15px;
  margin-right: -60px;
}

@media screen and (max-width: 600px) {

  .jarallax-keep-img.demo-float-left,
  .jarallax-keep-img.demo-float-right {
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}

.dnone-dex {
  display: none !important;
}

.modal-content {
  background-color: #e5f0eb !important;
}

.blurOnBottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 103px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

/* mobile test */
.testimonialsStruct {
  margin-top: 40px;
}

.mobleSlideStr {
  display: flex;
  flex-direction: column;
}

.peragraph span {
  font-size: 26px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.3125px;
  display: block;
}

.peragraph {
  border: 1px solid rgba(224, 222, 221, 1);
  padding: 24px;
  font-size: 14px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.peraOwner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.peraOwnerPhoto {
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #d1d4d7;
}

.peraOwnerName {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #000;
}

.peraOwnerName span {
  display: block;
  color: #898a8a;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px
}

.borderRadiousNone {
  border-radius: 0 !important;
  border: 0;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 24px;
}

.height100VH {
  max-width: 100% !important;
}

.fontW {
  font-weight: bold;
}


#headerCarousel .owl-nav {
  display: none;
}

#navmenu ul li a.active {
  color: var(--nav-hover-color);
  border-bottom: 2px solid #000;
}

#navmenu ul li a {
  border-bottom: 2px solid transparent;
}

.blogpage h2 {
  font-size: 1.7rem;
  font-weight: 550;
}

.blogpageCont {
  background-color: #fff;
}

.techLogo {
  width: 220px;
  margin-bottom: 50px;
}

@media screen and (max-width: 1600px) {
  .headerCarousel.item {
    padding: 0;
  }

  .SignUp h1 {
    font-size: 60px;
    line-height: 72px;
    margin-bottom: 24px;
  }

  .SignUp h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .SignUp p {
    font-size: 13px;
    line-height: 0px;
  }

  /* ------ */
  .ourStoryCont h3 {
    font-size: 52px;
    line-height: 54px;
  }

  .ourStoryCont p {
    font-size: 22px;
    line-height: 32px;
  }
}

@media screen and (max-width: 1440px) {
  .SignUp {
    padding-right: 0;
    padding-top: 28px;
    padding-left: 100px;
  }

  .SignUp h1 {
    margin-bottom: 18px;
    font-size: 56px;
    line-height: 68px;
  }

  .SignUp h2 {
    line-height: 38px;
    font-size: 26px;
  }

  .ourStoryCont {
    width: 72%;
  }
}

@media screen and (max-width: 1380px) {
  .SignUp h1 {
    margin-bottom: 18px;
    font-size: 52px;
    line-height: 64px;
  }

  .SignUp h2 {
    line-height: 32px;
    font-size: 24px;
  }

  .ourSerivicesTech h3 {
    font-size: 32px;
    line-height: 32px;
  }

  .techLogo {
    width: 180px;
  }
}

@media screen and (max-width: 1280px) {
  :root {
    --sectionTitle: 13px;
    --sectionTitleLineHeight: 18px;
    --sectionHeading: 42px;
    --sectionHeadingLineHeight: 52px;
    --sectionPera: 14px;
    --sectionPeraLineHeight: 22px;
  }

  /* --------------- */
  .ourStoryCont h3 {
    font-size: 48px;
    line-height: 52px;
  }

  .ourStoryCont p {
    font-size: 20px;
    line-height: 28px;
  }

  /* -------------- */
  .serviceDetails h4 {
    font-size: 13px;
    line-height: 19px;
  }

  .serviceDetails h5 {
    font-size: 26px;
    line-height: 30px;
  }

  .serviceDetails h6 {
    font-size: 14px;
    line-height: 22px;
  }

  .seviceGreen h5 {
    font-size: 22px;
    line-height: 27px;
  }

  .seviceGreen h6 {
    font-size: 14px;
    line-height: 22px;
  }

  .seviceGreen img {
    max-width: 36px;
  }

  .seviceGreen2 h4 {
    font-size: 13px;
    line-height: 19px;
  }

  .seviceGreen2 h5 {
    font-size: 22px;
    line-height: 27px;
  }

  .seviceGreen2 h6 {
    font-size: 14px;
    line-height: 22px;
  }

  /* ---------------------- */
  .accordion .tabs {
    padding: 1.8rem;
    border-right: 2px solid #fff;
  }

  .text {
    line-height: 1;
  }

  .accordion .tabs .tab-header {
    font-size: 21px;
    line-height: 33.6px;
  }

  .accordion .tabs.is-active .tab-header {
    padding: 1.8rem;
    font-size: 21px;
  }

  .wrapperText {
    font-size: 30px;
    line-height: 38px;
  }

  .wrapperPera {
    font-size: 14px;
    line-height: 21px;
  }

  .accordion {
    height: 650px;
  }

  .accordion .tabs.is-active .tab-content {
    padding: 38px 16px;
  }

  .slideDetails h2 {
    font-size: 16px;
    line-height: 24px;
  }

  .btn-get-started {
    font-size: 13px
  }

  .featureDetails img {
    width: 42px;
  }

  /* ------------- */
  .mediaDetails h2 {
    font-size: 22px;
    line-height: 27px;
  }

  .teamDetails p {
    font-size: 14px;
    line-height: 22px;
  }

  /* ---------------- */
  .featureDetails h2 {
    font-size: 32px;
    line-height: 34px;
  }

  .featureDetails ul li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 16px;
  }

  .servicesTechCont ul li p {
    font-size: 14px;
    line-height: 20px;
  }

  .servicesTechCont ul li h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .ourSerivicesTech h3 {
    font-size: 28px;
    line-height: 28px;
  }
}

@media screen and (max-width: 1180px) {
  :root {
    --sectionHeading: 38px;
    --sectionHeadingLineHeight: 48px;
  }

  .SignUp h1 {
    font-size: 42px;
    line-height: 52px;
  }

  .SignUp h2 {
    font-size: 22px;
    line-height: 34px;
  }

  .SignUp {
    padding-right: 0;
    padding-top: 28px;
    padding-left: 50px;
    width: 100%;
  }

  .ourStoryCont p {
    font-size: 16px;
    line-height: 24px;
  }

  .content.contentOverPad {
    padding: 60px 24px;
  }

  .servicesCont {
    gap: 24px;
  }

  .seviceGreen {
    padding: 32px 32px;
  }

  .serviceDetails {
    padding: 32px;
  }

  .subServices {
    gap: 24px;
  }

  .seviceGreen2 {
    margin-top: 24px;
    gap: 24px;
  }

  .mt-4cust {
    padding-top: 20px;
    padding-right: 8px;
  }

  .seviceGreen h5 {
    font-size: 18px;
    line-height: 24px;
  }

  .seviceGreen h6 {
    font-size: 13px;
    line-height: 18px;
  }

  .seviceGreen img {
    max-width: 36px;
  }

  .seviceGreen2 h4 {
    font-size: 13px;
    line-height: 19px;
  }

  .seviceGreen2 h5 {
    font-size: 18px;
    line-height: 24px;
  }

  .seviceGreen2 h6 {
    font-size: 13px;
    line-height: 18px;
  }

  .serviceDetails h5 {
    font-size: 22px;
    line-height: 24px;
  }

  /* ------- */
  .accordion .tabs .tab-header {
    font-size: 18px;
  }

  .tabs.is-active .text {
    line-height: 0;
  }

  .accordion .tabs {
    padding: 1.4rem;
  }

  .accordion .tabs.is-active .tab-header {
    padding: 1.4rem;
    font-size: 18px;
  }

  .wrapperText {
    font-size: 24px;
    line-height: 28px;
  }

  .wrapperTextImage img {
    width: 96%;
  }

  .accordion {
    height: 620px;
  }

  .environmentalFeatuire {
    max-width: 100%;
    margin: 50px auto auto;
    gap: 32px;
    padding-bottom: 40px;
  }

  .mediaList {
    height: auto;
    border-radius: 32px;
  }

  .mediaList {
    height: auto;
    background: transparent;
    border: 0;
  }

  .mediaDetails h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .wrapperTextImage {
    text-align: center;
  }

  .blogsList {
    gap: 20px;
  }

  .news {
    display: flex;
    flex-direction: column;
  }

  .teamDetails {
    padding: 24px 18px;
  }

  #headerCarousel.owl-theme .owl-dots,
  .owl-theme .owl-nav {
    bottom: 0%;
  }

  .servicesTechCont ul {
    gap: 40px;
  }

  .servicesTechCont ul li::after {
    right: -20px;
  }

  .ourSerivicesTech h3 {
    font-size: 24px;
    line-height: 24px;
  }
}

/* 991 */
@media screen and (max-width: 1024px) {
  #navmenu ul li a.active {
    color: var(--nav-hover-color);
    border-bottom: 2px solid transparent;
  }

  .servicesTechCont ul li h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .techLogo {
    width: 160px;
  }
}

@media screen and (max-width: 991px) {
  .accordion .tabs {
    transition: none
  }

  .SignUp h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .SignUp h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .listing {
    gap: 8px;
    flex-wrap: wrap;
  }

  .ourStoryCont h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .servicesCont {
    margin-top: 40px;
    flex-direction: column;
  }

  .serviceOne {
    width: 100%;
  }

  .btn-get-started {
    font-size: 13px;
    padding: 12px 28px;
  }

  .btn-watch-video {
    font-size: 13px;
  }

  .serviceTwo {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .seviceGreen {
    width: 100%;
  }

  .mt-4cust.w-50 {
    width: 100% !important;
  }

  .mt-4cust {
    padding: 32px 32px;
  }

  .accordion {
    height: auto;
    border-radius: 30px;
    flex-direction: column;
  }

  .accordion .tabs .tab-content .tab-content-wrapper {
    position: relative;
  }

  .accordion .tabs .tab-content {
    display: none;
  }

  .accordion .tabs {
    flex-direction: column;
    padding: 1.5em;
    border-bottom: 2px solid #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .accordion .tabs .tab-header {
    flex-direction: row-reverse;
    font-size: 18px;
    line-height: 24.6px;
  }

  .accordion .tabs .tab-header .text>div {
    position: relative;
    transform: rotate(-0);
    transform-origin: center;
    width: 100%;
  }

  .text {
    line-height: normal;
    width: 100%;
    text-align: left;
  }

  .accordion .tabs.is-active .tab-header {
    width: 100%;
    border-right: 0;
    padding: 1.5rem;
    border-bottom: 2px solid #fff;
    flex-direction: row-reverse;
    font-size: 18px;
    line-height: 24px;
  }

  .wrapperText {
    font-size: 18px;
    line-height: 22px;
    width: 100%;
    margin-bottom: 12px;
    padding: 0px 12px;
    font-weight: bold;
  }

  .wrapperPera {
    font-size: 14px;
    line-height: 22px;
    width: 100%;
    padding-right: 0;
    padding: 0px 12px;
  }

  .accordion .tabs.is-active .tab-content {
    opacity: 1;
    padding: 24px 0px;
    height: calc(100% - 74px);
    display: block;
  }

  .wrapperTextImage>img {
    width: 100%;
  }

  .seviceGreen2 h6 {
    margin-bottom: 32px;
  }

  .scrollElem {
    padding: 0px 12px;
    max-height: 330px;
    padding-bottom: 90px;
  }

  .textElms {
    max-width: 330px;
    max-height: 180px;
    font-size: 13px;
    min-width: 330px;
  }

  .owner {
    max-width: 330px;
    min-width: 330px;
  }

  .mediaList {
    width: 100%;
    height: 310px;
    border-radius: 16px;
  }

  .mediaDetails {
    width: 100%;
    padding: 10px 0px 10px 16px;
  }

  .mediaDetails p {
    max-width: max-content;
    -webkit-line-clamp: 3;
  }

  .footer-about {
    padding-left: 0;
    width: 100%;
    margin-top: 0;
    padding: 32px;
  }

  .footer-about::before {
    content: none;
  }

  .slideDetails {
    padding: 0px 0 24px;
    border-radius: 0;
    right: 0;
    max-width: 100%;
    top: 0;
    bottom: auto;
    right: 0;
    position: relative;
    background: none;
    text-align: left;
    border: none
  }

  .wrapperTextImage {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 12px;
    padding: 0px 12px;
  }

  .accordion:first-child .tabs {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .teamDetails p {
    min-height: 160px;
  }

  #headerCarousel.owl-theme .owl-dots,
  .owl-theme .owl-nav {
    bottom: -1%;
  }

  .servicesTechCont ul li h2 {
    font-size: 16px;
    line-height: 22px;
  }

  .servicesTechCont ul li img {
    max-height: 50px;
  }

  .servicesTechCont ul li p {
    font-size: 12px;
    line-height: 18px;
  }

  .techLogo {
    width: 130px;
  }

  .ourSerivicesTech h3 {
    font-size: 21px;
    line-height: 21px;
  }
}

@media screen and (max-width: 900px) {
  .servicesTechCont ul {
    gap: 20px;
  }

  .servicesTechCont ul li::after {
    right: -10px;
  }
}

/* Mob Meadia by Section */
@media screen and (max-width: 767px) {
  :root {
    --sectionTitle: 13px;
    --sectionTitleLineHeight: 18px;
    --sectionHeading: 28px;
    --sectionHeadingLineHeight: 38.2px;
    --sectionPera: 14px;
    --sectionPeraLineHeight: 22px;
  }

  .dnone-dex {
    display: block !important;
  }

  .dnone-mob {
    display: none !important;
  }

  .height100VH {
    height: calc(100vh - 74px) !important;
  }

  .blogsDesign {
    width: 100%;
  }

  .headerCarousel.item {
    padding: 0;
    flex-direction: column;
  }

  .SignUp {
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    padding: 0px 18px 24px 18px;
    text-align: center;
    background-color: rgb(0 0 0 / 62%);
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .SignUpDetails {
    width: 100%;
    margin-top: 24px;
  }

  .SignUp h1 {
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 24px;
    color: #d5ede3;
  }

  .SignUp h2 {
    font-size: 20px;
    line-height: 28px;
    color: #d5ede3;
  }

  .header {
    padding-left: 0;
    padding-right: 0;
  }

  .promotion {
    font-size: 12px;
  }

  .slideDetails h2 {
    font-size: 14px;
    line-height: 18px;
  }

  .slideDetails.bg2 {
    left: -10px;
  }

  .SignUp p {
    font-size: 12px;
    line-height: 12px;
    color: #fff;
  }

  #headerCarousel.owl-theme .owl-dots,
  .owl-theme .owl-nav {
    flex-direction: row;
    bottom: 10%;
    left: 50%;
    margin-left: -60px;
  }

  .slideDetails p {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }

  /* ................... */
  .ourStoryCont {
    width: 92%;
    text-align: center;
    margin-top: 280px;
  }

  .storyContainer {
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
  }

  .ourStoryCont h3 {
    font-size: 36px;
    line-height: 42px;
    font-weight: 400;
    margin-bottom: 32px;
  }

  .ourStoryCont p {
    font-size: 16px;
    line-height: 20px;
  }

  /* ------------ */
  .content.contentOverPad {
    padding: 60px 12px;
  }

  .serviceDetails {
    padding: 30px;
  }

  .servicesCont {
    margin-top: 40px;
    flex-direction: column;
  }

  .serviceOne {
    width: 100%;
  }

  .serviceDetails h5 {
    font-size: 24px;
    line-height: 32px;
  }

  .serviceDetails h6 {
    font-size: 14px;
    line-height: 22px;
  }

  .btn-get-started {
    font-size: 13px;
    padding: 12px 28px;
  }

  .btn-watch-video {
    font-size: 13px;
  }

  .serviceTwo {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .subServices {
    flex-direction: column;
  }

  .seviceGreen {
    width: 100%;
  }

  .seviceGreen h5 {
    font-size: 24px;
    line-height: 32px;
  }

  .seviceGreen h6 {
    font-size: 14px;
    line-height: 22px;
    min-height: 75px;
  }

  .seviceGreen2 {
    flex-direction: column;
    gap: 0;
  }

  .serviceImg.w-50,
  .mt-4cust.w-50 {
    width: 100% !important;
  }

  .mt-4cust {
    padding: 32px 24px;
  }

  /* -------------- */
  .projectHeader .w-75 {
    width: 100% !important;
  }

  .projectHeader {
    text-align: center;
    flex-direction: column;
  }

  .environmentalFeatuire {
    margin: 10px auto auto;
    gap: 0;
    padding-bottom: 30px;
    flex-direction: column;
  }

  .featureDetails {
    padding: 32px 24px;
  }

  .featureDetails h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .featureDetails ul li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 16px;
  }

  .listing {
    gap: 4px;
    margin-bottom: 40px;
    margin-top: 30px;
  }

  .listing a.btn-get-started2 {
    font-size: 12px;
    padding: 4px 14px 4px 14px;
  }

  .environmentalFeatuire.mob {
    flex-direction: column-reverse;
  }

  .environmentalServicesHeading {
    margin-bottom: 40px;
  }

  /* --------------- */

  .techText {
    padding: 32px;
    flex-direction: column;
    text-align: center;
  }

  .headingtext {
    width: 100%;
  }

  .peraText {
    width: 100%;
  }

  .headingtext h2 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 12px;
  }

  .techContact {
    border-radius: 0;
    padding: 160px 0px 160px;
  }

  /* ------------- */
  .scrollElementsContainer {
    flex-direction: column;
  }

  .scrollElem {
    width: 100%;
    padding: 0px 0px;
    max-height: none;
    overflow: hidden;
  }

  .textElms {
    max-width: 300px;
    max-height: none;
    font-size: 13px;
    line-height: 19px;
    padding: 12px 0px 0px 0px;
    padding: 10px;
    min-width: 300px;
  }

  .scrollElemText {
    margin-bottom: 40px;
  }

  .owner {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 300px;
    padding: 10px;
    justify-content: end;
    min-width: 300px;
  }

  /* --------------- */
  .ourClientsHeader .w-75,
  .ourTeamHeader .w-75,
  .ourBlogsHeader .w-75 {
    width: 100% !important;
  }

  .ourClientsHeader,
  .ourTeamHeader,
  .ourBlogsHeader {
    text-align: center;
    flex-direction: column;
  }

  .teamList {
    margin-top: 40px;
  }

  /* ----------- */

  .blogsList {
    margin-top: 40px;
    flex-direction: column;
  }

  .news {
    display: flex;
    flex-direction: column;
  }

  .blogsDesign {
    width: 100%;
    flex-direction: column;
  }

  .mediaList {
    width: 100%;
    height: 310px;
    border-radius: 16px;
  }

  .mediaDetails {
    width: 100%;
  }

  .mediaTag span.tags {
    font-size: 13px;
  }

  .mediaDetails h2 {
    font-size: 20px;
    line-height: 26px;
  }

  /* ---------------- */
  .accordion {
    border-radius: 30px;
    flex-direction: column;
  }

  .accordion .tabs {
    flex-direction: column;
    padding: 1.1em;
    border-bottom: 2px solid #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .accordion .tabs .tab-header {
    flex-direction: row-reverse;
    font-size: 18px;
    line-height: 24.6px;
  }

  .accordion .tabs .tab-header .text>div {
    position: relative;
    transform: rotate(-0);
    transform-origin: center;
    width: 100%;
  }

  .text {
    line-height: normal;
    width: 100%;
    text-align: left;
  }

  .accordion .tabs.is-active .tab-header {
    width: 100%;
    border-right: 0;
    padding: 25px 1.1rem;
    border-bottom: 2px solid #fff;
    flex-direction: row-reverse;
    font-size: 18px;
    line-height: 24px;
  }

  .wrapperText {
    font-size: 18px;
    line-height: 22px;
    width: 100%;
    margin-bottom: 12px;
    padding: 0px 12px;
    font-weight: bold;
  }

  .wrapperPera {
    font-size: 14px;
    line-height: 22px;
    width: 100%;
    padding-right: 0;
    padding: 0px 12px;
  }

  .accordion .tabs.is-active .tab-content {
    opacity: 1;
    padding: 24px 0px;
  }

  .wrapperTextImage>img {
    width: 100%;
  }

  .headerBT {
    padding: 12px 52px 12px 52px;
    border-radius: 12px;
    background: rgb(5 73 44 / 81%);
    color: #fff;
    text-align: center;
    display: block;
    width: 200px;
    margin: 24px auto;
    border: 0;
  }

  .featureDetails img {
    width: 40px;
  }

  .teamDetails p {
    min-height: 150px;
  }

  /* --------------------- */
  #VideoWorker-0 {
    margin: -46.55px 0px 0px -688.144px !important;
  }

  .popCenter {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin)* 2);
  }

  .section-title h2 {
    font-size: 24px;
  }

  .blogpage h2 {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .techLogo {
    width: 120px;
  }

  .ourSerivicesTech h3 {
    font-size: 18px;
    line-height: 18px;
  }

  .servicesTechCont ul {
    gap: 80px;
    flex-wrap: wrap;
  }

  .servicesTechCont ul li::after {
    content: "";
    position: absolute;
    right: auto;
    top: auto;
    width: 100%;
    background-color: #596f4e;
    height: 1px;
    bottom: -40px;
    left: 0;
  }

  .servicesTechCont {
    margin-top: 60px;
    padding: 0px 28px;
  }

  .servicesTechCont ul li p {
    font-size: 13px;
    line-height: 18px;
  }
}

@media screen and (max-width: 500px) {
  .jarallax-img {
    left: -333px !important;
    width: 830px !important;
  }
}

@media screen and (max-width: 400px) {
  .jarallax-img {
    left: -390px !important;
    width: 810px !important;
  }
}