:root {
  --page-max-width: 90rem;

  --transition-100ms: all ease 100ms;
  --transition-200ms: all ease 200ms;
  --transition-300ms: all ease 300ms;
  --transition-400ms: all ease 400ms;
  --transition-500ms: all ease 500ms;
  --transition-600ms: all ease 600ms;
  --transition-700ms: all ease 700ms;
  --transition-800ms: all ease 800ms;
  --transition-900ms: all ease 900ms;
  --transition-1000ms: all ease 1000ms;
  --transition-1100ms: all ease 1100ms;

  --box-shadow-light: rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
  --box-shadow-mid: rgba(0, 0, 0, 0.19) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px;
  --box-shadow-strong: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

/* Reset */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button,
textarea {
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

body {
  background: #0a0f0a;
  color: #dadada;
  line-height: 1.7;
}
body.no-scroll {
  overflow: hidden;
}
body.active {
  overflow: hidden;
  height: 100vh;
  width: 100%;
}
/* Prebuild Classes */
.center {
  margin: 0 auto;
  max-width: var(--page-max-width);
  padding: 0 10px;
}
.btn {
  position: relative;
  padding: 12px 50px;
  background: #00cc66;
  color: #002b18;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 8px #00ff88, 0 0 16px #00ff88;
  text-transform: uppercase;
}

.btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    #00ff88,
    #00cc66,
    #009944,
    #00e67a,
    #00ff88
  );
  background-size: 500%;
  animation: glowing 8s ease-in-out infinite;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
  transition: opacity 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.btn:hover {
  background: #006633;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 20px #00ff88, 0 0 40px #00ff88, 0 0 60px #00ff88;
}

.btn:hover::before {
  filter: blur(30px);
  opacity: 1;
}

@keyframes glowing {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* LOADING SCREEEN */
.loading-screen.active {
  height: 100vh;
  width: 100%;
  background: linear-gradient(to top right, #000, #111, #222, #333);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  overflow: hidden;
  transition: var(--transition-100ms);
}
.loading-screen {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition-100ms);
}
.rings {
  width: 12rem;
  height: 12rem;
  position: relative;
  perspective: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4rem;
}

.ring {
  width: 100%;
  height: 100%;
  position: absolute;
  border: 0px solid transparent; /* base border */
  border-radius: 50%;
  box-sizing: border-box;
}

.ring:nth-child(1) {
  border-bottom-color: rgb(132, 0, 255);
  border-bottom-width: 8px;
  animation: rotate1 1s linear infinite;
}

.ring:nth-child(2) {
  border-right-color: rgb(0, 247, 255);
  border-right-width: 8px;
  animation: rotate2 1s linear infinite;
}

.ring:nth-child(3) {
  border-top-color: rgb(9, 255, 0);
  border-top-width: 8px;
  animation: rotate3 2s linear infinite;
}

@keyframes rotate1 {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate2 {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate3 {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
.loading-text {
  color: #fff;
  font-family: "Orbitron", cursive;
  font-size: 0.9rem;
  animation: loadingText 1s linear infinite alternate;
}
@keyframes loadingText {
  0% {
    opacity: 1;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0.2;
    transform: translateY(0);
  }
}
.loading-logo {
  width: 10rem;
  position: absolute;
  bottom: 2%;
  animation: loadingText 3s linear infinite alternate;
}

/* Header */
#main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.top-header {
  background: #003f10;
  width: 100%;
  padding: 2px 0;
  font-size: 0.9rem;
  transition: var(--transition-300ms);
}
.top-header__sologon::after {
  content: "|";
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.top-header.active {
  height: 0;
  padding: 0;
  overflow: hidden;
}
.solgon {
  cursor: default;
}
.top-header__itemsContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-header__navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.top-header__navbar a {
  position: relative;
  transition: var(--transition-300ms);
  padding: 2px;
}
.top-header__itemsContainer a:hover,
.top-header__navbar a.active {
  color: #4cff4c;
}
.top-header__itemsContainer a::after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: -2px;
  border-bottom: 2px solid #4cff4c;
  width: 0%;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition-300ms);
}
.top-header__itemsContainer a:hover::after,
.top-header__navbar a.active::after {
  width: 100%;
}
#main-navbar {
  height: 5rem;
  background: #008b07;
  /* background: #8ffe09; */
  box-shadow: 0 8px 20px rgba(0, 204, 26, 0.4);
  transition: var(--transition-300ms);
}
#main-navbar.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 204, 26, 0.7);
}
.navbar-items__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 11rem;
  height: 5rem;
}
.navbar-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.1rem;
}
.navbar-list a {
  transition: var(--transition-300ms);
  padding: 2px;
  position: relative;
  cursor: pointer;
}
.navbar-list a i {
  margin: 0 0 0 5px;
}
.navbar-list li {
  position: relative;
  cursor: pointer;
}
.navbar-list a:hover,
.navbar-list a.active {
  color: #4cff4c;
}
.navbar-list a::after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  height: 1px;
  border-bottom: 2px solid #4cff4c;
  width: 0%;
  transition: var(--transition-300ms);
}
.navbar-list a:hover::after,
.navbar-list a.active::after {
  width: 100%;
}
.search-container {
  width: 20rem;
  height: 2.5rem;
  background: #f0f0f0;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 0 5px 0 10px;
  gap: 8px;
  color: #000;
}
.search-container input {
  width: 100%;
  height: 100%;
  font-size: 1rem;
}
#openMenuBtn {
  display: none;
}
/* Services */
.services-dropdown__container {
  height: fit-content;
  position: absolute;
  top: 400%;
  left: -1rem;
  cursor: pointer;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: var(--transition-300ms);
  z-index: 1000;
}
.services-dropdown__container.active {
  height: fit-content;
  top: 0%;
  overflow: unset;
  opacity: 1;
}
.services-dropdown__innerContainer {
  background: rgba(0, 161, 0, 0.8);
  margin: 2.7rem 0 0;
  backdrop-filter: blur(10px);
  border-top: 4px solid #4cff4c;
  position: relative;
  padding: 1rem 0 0.5rem 1rem;
  cursor: default;
  position: relative;
  white-space: nowrap;
}
.services-dropdown__innerContainer .carret {
  position: absolute;
  border: 15px solid transparent;
  border-bottom: 15px solid #4cff4c;
  height: 15px;
  width: 15px;
  bottom: 100%;
}
.parentServices-dropdown {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0 4rem 0 0;
}
.childServices-sideDrop {
  position: absolute;
  left: 200%;
  top: -0.5rem;
  background: rgba(0, 161, 0, 0.8);
  backdrop-filter: blur(10px);
  overflow: hidden;
  height: 0;
  width: 0;
  opacity: 0;
  transition: var(--transition-300ms);
}
.childServices-sideDrop.active {
  padding: 0.8rem;
  border-left: 4px solid #4cff4c;
  backdrop-filter: blur(10px);
  overflow: unset;
  height: fit-content;
  width: fit-content;
  opacity: 1;
  left: 100%;
}
.childServices-sideDrop .carret {
  right: 100%;
  top: 0.5rem;
  transform: rotate(-90deg);
  height: 14px;
  width: 14px;
  border: 14px solid transparent;
  border-bottom: 14px solid #4cff4c;
}
.childServices-sideDrop li {
  margin: 0px 0 5px;
}

/* Search Container */
.search-container {
  position: relative;
}
.search-results__container {
  height: 0;
  background: rgba(0, 226, 0, 0.5);
  backdrop-filter: blur(20px);
  width: 100%;
  position: absolute;
  top: 110%;
  left: 0;
  border-radius: 8px;
  color: #dadada;
  overflow: hidden;
  z-index: 1001;
}
.search-results__container.active {
  height: fit-content;
  border: 2px solid #4cff4c;
}
.SR-inner__container {
  padding: 10px 6px;
  height: 100%;
  width: 100%;
}
.SR-title__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px;
}
.SR-title__container p {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}
.SR-results__container {
  width: 100%;
  height: 85%;
  padding: 0 0 0 8px;
  font-weight: 600;
}
.SR-results__container a {
  transition: var(--transition-300ms);
  display: block;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}
.SR-results__container a:hover {
  color: #4cff4c;
}
/* Side Menu */
.side-menu__container {
  position: fixed;
  top: 0;
  right: 0;
  width: 0%;
  height: 100vh;
  background: #008b07;
  z-index: 1001;
  overflow: hidden;
  transition: var(--transition-300ms);
}
.side-menu__container.active {
  width: 60%;
}
.SM-inner__container {
  position: relative;
  height: 100%;
  width: 100%;
}
#closeMenuBtn {
  color: #fff;
  font-size: 2.5rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
  transition: var(--transition-300ms);
}
#closeMenuBtn:hover {
  color: #4cff4c;
}
.SMclose-button__container {
  height: 5rem;
  position: relative;
}
.sideMenu-items__container {
  height: 85%;
  width: 100%;
  margin: 2rem 0;
  text-transform: uppercase;
  padding: 0 10px;
  overflow-y: scroll;
}
.sideMenu-items__container::-webkit-scrollbar {
  width: 10px;
}
.sideMenu-items__container::-webkit-scrollbar-thumb {
  border-radius: 2rem;
  background: #4cff4c;
}

.sideMenu-items__container li {
  padding: 30px 20px 10px;
  border-bottom: 1px solid #ccc;
}
.sideMenu-items__container li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  transition: var(--transition-300ms);
  cursor: pointer;
}
.sideMenu-items__container li a:hover {
  color: #4cff4c;
}
.sideMenu-dropdown__services li {
  padding: 30px 20px 10px 40px;
}
.sideMenu-dropdown__subServices li {
  padding: 30px 20px 10px 60px;
}
.sideMenu-dropdown__services,
.sideMenu-dropdown__subServices {
  height: 0;
  overflow: hidden;
}
.sideMenu-dropdown__services.active,
.sideMenu-dropdown__subServices.active {
  height: fit-content;
}
/* Main */
#main {
  margin: 8rem 0 0;
}

/* Hero Section */

.hero-section__itemsContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.hero-headings__container {
  padding: 3rem 0 0;
  position: relative;
  left: 0%;
  transition: var(--transition-600ms);
}
.hero-headings__container.active {
  left: -400%;
}
.hero-sub__heading {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
}
.hero-main__heading {
  font-size: 4rem;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0.8rem 0 2rem;
}
.hero-bottom__heading {
  color: #fff;
  font-size: 1.2rem;
}
.hero-buttons__container {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 5rem 0 0;
  position: relative;
}
.hero-images__container {
  position: relative;
  transition: var(--transition-500ms);
  left: 0;
}
.hero-images__container.active {
  left: -400%;
}
.hero-banner {
  width: 100%;
  animation: movingHeroImages 2s linear infinite alternate;
}
.hero-image {
  animation: movingHeroImages 3s ease infinite alternate;
  width: 10rem;
  position: absolute;
  top: 0;
  right: 0;
}
.hero-image-two {
  animation: movingHeroImages 2s ease-in-out infinite alternate;
  bottom: 0;
  top: unset;
  left: 0;
  right: unset;
}
@keyframes movingHeroImages {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(-20px);
  }
}

/* FAQ Section */
#FAQ-section {
  padding: 10rem 0;
}
.FAQ-items__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  color: #fff;
  transform: translateY(5rem);
  transition: var(--transition-900ms);
  opacity: 0;
}
.FAQ-items__container.active {
  transform: translateY(0);
  opacity: 1;
}
.FAQ-sub__heading {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
}
.FAQ-main__heading {
  font-size: 3rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0.8rem 0 1.6rem;
}
.FAQ-bottom__heading {
  font-size: 1rem;
  text-transform: uppercase;
}
.FAQ-heading__container .btn {
  display: block;
  width: fit-content;
  margin: 5rem 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.FAQ-container {
  background: #006633;
  padding: 1rem;
  animation: colorPulse 5s infinite ease-in-out;
  border-radius: 10px;
  margin: 0 0 1rem;
}
@keyframes colorPulse {
  0% {
    background: #006633;
  }
  50% {
    background: #00994d; /* A lighter shade */
  }
  100% {
    background: #006633;
  }
}
.FAQ-title__container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-300ms);
}
.FAQ-title__container h2 {
  font-size: 1.5rem;
}
.FAQ-title__container:hover,
.FAQ-title__container.active {
  color: #4cff4c;
}
.FAQ-answer__container {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0.5rem 0 0;
  padding: 0 1rem 0 2rem;
  display: none;
}
.FAQ-answer__container.active {
  display: block;
}

/* Toolkit Section */
#toolkit-section {
  padding: 3rem 0 0;
}
.toolkit-title {
  font-size: 2.4rem;
  color: #fff;
  margin: 0 0 1.5rem;
  transform: translateY(5rem);
  opacity: 0;
  transition: var(--transition-600ms);
}
.toolkit-title.active {
  transform: unset;
  opacity: 1;
}
.toolkit-container {
  height: 35rem;
  background: #047a36;
  z-index: 100;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
}
.toolkit {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 500px;
}
.toolkit img {
  width: 35%;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(0deg);
  transform: rotateY(90deg);
}
.toolkit img.active {
  transform: unset;
  transition: transform 1000ms ease;
}

.toolkit:hover img {
  filter: none;
}
.toolkit:nth-child(6) img,
.toolkit:nth-child(8) img {
  width: 60%;
}
.toolkit:nth-child(2),
.toolkit:nth-child(4),
.toolkit:nth-child(6),
.toolkit:nth-child(8),
.toolkit:nth-child(10) {
  background: #005015;
}

/* Page Service Section */
#page-service__section {
  padding: 13rem 0 0;
  transition: var(--transition-800ms);
  transform: scale(0.5);
  opacity: 0;
}
#page-service__section.active {
  opacity: 1;
  transform: scale(1);
}
.page-service__titleContainer {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.page-service__heading {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.page-service__mainHeading {
  font-size: 5rem;
  text-transform: uppercase;
  line-height: 1;
}
.page-services__buttonsContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 5rem 0 0;
}
.page-services__buttonsContainer .btn {
  padding: 12px 30px;
  font-size: 1rem;
}
.page-services__buttonsContainer .btn.active {
  background: none;
  color: #fff;
  box-shadow: none;
  border: 2px solid #4cff4c;
}
.page-services__buttonsContainer .btn.active:hover {
  transform: unset;
  box-shadow: none;
}
.page-services__buttonsContainer .btn.active::after,
.page-services__buttonsContainer .btn.active::before {
  display: none;
}
.page-services__detailsContainer {
  margin: 5rem 0 0;
  color: #fff;
}
.pageServices-details {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.pageServices-details.active {
  display: grid;
}
.pageServices-details h3 {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin: 0 0 2rem;
}
.pageServices-details p {
  font-size: 1.1rem;
  color: #fff;
}
.pageServices-details .btn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 0;
}
.pageServices-details .center-para {
  margin: 1rem 0;
}
.pageServices-details img {
  width: 80%;
  border: 2px solid #4cff4c;
  border-radius: 10px;
}
.pageServices-details .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Portfolio Section */
#page-portfolio__section {
  padding: 14rem 0 2rem;
}
.portfolio-title {
  font-size: 5rem;
  text-transform: uppercase;
  color: #fff;
}
.portfolio-title__section {
  padding: 0 1rem;
  border-bottom: 5px solid #00ff88;
}
.page-portfolio__buttonContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0 0;
  gap: 1rem;
}
.page-portfolio__buttonContainer button {
  color: #fff;
  font-size: 1.3rem;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition-300ms);
}
.page-portfolio__buttonContainer button:hover,
.page-portfolio__buttonContainer button.active {
  font-weight: 600;
}
.page-portfolio__buttonContainer button::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px 5px #ffffff;
  display: none;
  transition: var(--transition-300ms);
}
.page-portfolio__buttonContainer button:hover::after,
.page-portfolio__buttonContainer button.active::after {
  display: block;
}
.portfolio-slide {
  height: 20rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page__portfoliosContainer {
  margin: 8rem 0 0;
}
.portfolioSwiper {
  margin: 0 0 2rem;
}
.portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-slide {
  position: relative;
  cursor: pointer;
}
.portfolio-slide::before {
  content: "";
  height: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 230, 122, 0.4);
  overflow: hidden;
  transition: var(--transition-400ms);
}
.portfolio-slide::after {
  content: "";
  height: 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 230, 122, 0.4);
  overflow: hidden;
  transition: var(--transition-400ms);
}
.portfolio-slide:hover::before,
.portfolio-slide:hover::after {
  height: 100%;
}
.portfolio-slide i {
  font-size: 4rem;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  transition: var(--transition-300ms);
}
.portfolio-slide:hover i {
  top: 50%;
}
.page-portofolio__container {
  display: none;
}
.page-portofolio__container.active {
  display: unset;
}
.dynamicVideo-contianer {
  height: 60vh;
  width: 60vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid #00ff88;
  z-index: 100;
  border-radius: 10px;
  background: #000;
  display: none;
}
.dynamicVideo-contianer.active {
  display: block;
}
.dynamicVideo-innerContianer {
  height: 100%;
  width: 100%;
  position: relative;
}
.close-video__btn {
  height: 2rem;
  width: 2rem;
  background: #008b07;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #00ff88;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  font-size: 1.2rem;
  transition: var(--transition-300ms);
  z-index: 100;
}
.close-video__btn:hover {
  background: #000;
}
#dynamic-video__player {
  height: 100%;
  width: 100%;
}
/* Process Section */
#process-section {
  padding: 6rem 0 0;
}
.process-section__headingContainer {
  text-align: center;
}
.process-sub__heading {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
.process-main__heading {
  font-size: 4.5rem;
  text-transform: uppercase;
  line-height: 1;
  margin: 0.5rem 0 2rem;
  color: #fff;
}
.process-bottom__heading {
  font-size: 1.4rem;
  margin: 0 0 6rem;
  color: #fff;
}
.process-section__container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  justify-content: space-between;
}
.process-part__container {
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.process-title {
  margin: 1rem 0 1.5rem;
  font-size: 1.3rem;
  text-transform: uppercase;
}
.process-image__container {
  width: 10rem;
  height: 10rem;
  background: #008b07;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.process-image__container {
  opacity: 0.3;
}
.process-part__container {
  color: #9e9e9e;
}
.process-image__container img {
  width: 60%;
}
.process-part__container.active {
  color: #fff;
}
.process-image__container.active {
  opacity: 1;
}

/* Testimonial */
#tesetimonial-section {
  padding: 10rem 0;
}
.testimonial-headings__container {
  text-align: center;
  color: #fff;
  margin: 0 0 5rem;
}
.testimonial-sub__heading {
  font-size: 2rem;
  margin: 0 0 1rem;
}
.testimonial-main__heading {
  font-size: 5rem;
  text-transform: uppercase;
  line-height: 1.1;
}
.testimonial-card {
  background: #333;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  height: 18rem;
  cursor: default;
}
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
}
.testimonial-profile img {
  width: 5rem;
  border-radius: 50%;
  border: 3px solid #000;
}
.testimonial-profile h2 {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 0.3rem;
}
.testimonial-profile p {
  color: #fff;
  font-size: 0.9rem;
}
.testimonial-message {
  color: #fff;
  font-size: 1rem;
  padding: 0 0 0 0.3rem;
}

/* Clients Video */
#clients-video__section {
  padding: 0 0 5rem;
}
.clients-section__heading {
  font-size: 3rem;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}
#clients-video__section .portfolio-slide {
  height: 18rem;
  background: #000;
}
#clients-video__section .portfolio-slide img {
  object-fit: contain;
}

/* Footer */
#main-footer {
  margin: 15rem 0 2rem;
}
.footer-main__headingContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-main__headingContainer h2 {
  font-size: 5rem;
  animation: footerHeading 2s linear infinite;
}
.footer-main__headingContainer h2:hover {
  color: #00994d;
}
@keyframes footerHeading {
  1% {
    color: #00994d;
  }
  40% {
    color: #00994d;
  }
  41% {
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
.footer-rows__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 5rem 0 0;
}
.footer-row__heading {
  font-size: 2rem;
  margin: 0 0 2rem;
}
.footer-row li {
  padding: 0 0 0.8rem 0.2rem;
  color: #fff;
}
.footer-row li a {
  transition: var(--transition-600ms);
}
.footer-row li a:hover {
  color: #00e67a;
  margin: 0 0 0 0.3rem;
}
.footer-container {
  padding: 0 2rem 5rem;
  border-bottom: 3px solid #00ff88;
}
.footer-container .footer-country {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 0 1.2rem;
}
.footer-country img {
  width: 2rem;
}
.footer-row__last i {
  font-size: 1.5rem;
}
.DMCA-button a {
  padding: 5px 15px;
  background: #009944;
  width: fit-content;
  display: inline-block;
  border-radius: 10px;
  transition: var(--transition-300ms);
}
.DMCA-button a:hover {
  background: #333;
  box-shadow: 1px 1px 10px #fff;
}
.bottom-footer {
  padding: 2rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.bottom-footer__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.bottom-footer__list a {
  transition: var(--transition-400ms);
}
.bottom-footer__list a:hover {
  color: #00e67a;
}

/* Mobile Footer */
#mobile-footer {
  display: none;
}

/* POPUP CONTACT FORM */
.contact-form__container {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: transparent;
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.contact-form__container.active {
  display: flex;
}
#popup-contact__form {
  width: 30vw;
  border: 4px solid #00ff88;
  border-radius: 10px;
  background: rgba(0, 106, 14, 0.7);
  backdrop-filter: blur(20px);
  position: relative;
  padding: 0 2rem;
  min-width: 35rem;
  min-height: fit-content;
}
.close-form__button {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  border: 4px solid #00ff88;
  background: #006f04;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition-500ms);
}
.close-form__button:hover {
  background: #000;
}
.form-headings__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 0;
  margin: 0 0 3rem;
}
.form-headings__container img {
  width: 10rem;
}
#popup-contact__form .input-container {
  background: #fff;
  height: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  border-radius: 10px;
  margin: 0 0 1rem;
}
#popup-contact__form .input-container i {
  color: #006633;
  font-size: 1.5rem;
}
#popup-contact__form .input-container input {
  font-size: 1.2rem;
  width: 100%;
  height: 100%;
}
#popup-contact__form .input-container input::placeholder {
  font-weight: 600;
}
#popup-contact__form .input-container.text-area-container {
  height: 10rem;
  align-items: unset;
  padding: 1rem 1rem;
}
#popup-contact__form .input-container.text-area-container textarea {
  width: 100%;
  resize: none;
}
#popup-contact__form
  .input-container.text-area-container
  textarea::placeholder {
  font-weight: 600;
  font-size: 1rem;
}
#popup-contact__form #submitFormBtn {
  height: 3rem;
  width: 40%;
  margin: 2rem auto;
  display: block;
}
#popup-contact__form #popup-formDontShowAgain {
  display: block;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  color: #0bff85;
  border-bottom: 1px solid #0bff85;
  transition: var(--transition-300ms);
}
#popup-contact__form #popup-formDontShowAgain:hover {
  color: #fff;
  border-color: #fff;
}
#footer-open__formPopupButton {
  cursor: pointer;
}

/* * **************HOME PAGE END************** * */

/* * **************ABOUT US PAGE************** * */
.aboutUs-hero__itemsContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 5rem 0 0;
}
.aboutus-container {
  padding: 2rem 3rem;
  background: #006c36;
  border-radius: 5px;
}
.aboutus-heading {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
}
.aboutus-text {
  color: #fff;
  font-size: 1.2rem;
  margin: 1rem 0 0;
}
.what-we-do__container {
  padding: 2rem 3rem;
  color: #fff;
  margin: 3rem 0 0;
}
.what-we-do__container h2 {
  font-size: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.what-we-do__container p {
  font-size: 1.2rem;
  margin: 1rem 0 0;
  color: #fff;
}
.aboutRight-hero__section {
  display: flex;
  justify-content: flex-end;
  padding: 0 5rem 0 0;
}
.aboutRight-hero__section img {
  border: 4px solid #00ff88;
  border-radius: 10px;
}
.about-us__buttonsContainer {
  display: none;
}

/* FAQ */
#FAQ-section__aboutus {
  padding: 16rem 0 10rem;
}

/* Promise Section */
.promise-section__aboutus {
  border-top: 4px dotted #00ff88;
  border-bottom: 4px dotted #00ff88;
  padding: 8rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.promise-section__aboutus .btn {
  display: block;
  width: fit-content;
  color: #fff;
}
.promise-section__aboutus h2 {
  font-size: 3rem;
  line-height: 1;
}
.promise-section__aboutus p {
  text-align: right;
  color: #fff;
  font-size: 1.2rem;
  margin: 2rem 0 5rem;
  line-height: 1.7;
  width: 70%;
}

/* aBOUT US PAGE REAL QUESTION SECTION*/
.about-question__itemsContainer {
  padding: 10rem 3rem;
  color: #fff;
  line-height: 1;
}
.about-question__itemsContainer p {
  font-size: 2rem;
}
.about-question__itemsContainer h2 {
  font-size: 4rem;
  margin: 1.5rem 0 2.5rem;
  text-transform: uppercase;
}
.about-question__itemsContainer h4 {
  font-size: 1.2rem;
  margin: 0 0 6rem;
  line-height: 1.7;
}
.about-question__itemsContainer .btn {
  display: block;
  width: fit-content;
}

/* How Can We Help */
.aboutus-help__itemsContainer {
  padding: 10rem 2rem;
  text-align: center;
  color: #fff;
  line-height: 1;
  margin: 0 auto 2rem;
}
.aboutus-help__itemsContainer h2 {
  font-size: 4rem;
}
.aboutus-help__itemsContainer p {
  font-size: 1.3rem;
  margin: 2rem 0 4rem;
  line-height: 2;
}
.aboutus-help__itemsContainer .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* * **************ABOUT US END************** * */

/* * **************CONTACT PAGE************** * */
.contact-form__itemsContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  padding: 10vh 0;
}
.contact-form__itemsContainer {
  color: #fff;
}
.contact-form__itemsContainer .headings-container h2 {
  font-size: 3rem;
  line-height: 1.4;
  margin: 2vh 0 6vh;
}
.contact-form__itemsContainer .headings-container p {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.contact-form__itemsContainer .headings-container h4 {
  line-height: 1.56;
}
.contact-form__itemsContainer .headings-container .btn {
  display: block;
  width: fit-content;
  margin: 10vh 0 0;
}
#contactForm {
  border: 4px solid #00ff88;
  border-radius: 10px;
  background: rgba(0, 106, 14, 0.7);
  backdrop-filter: blur(20px);
  padding: 2rem 3rem;
}
#contactForm h2 {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 3rem;
}
#contactForm .input-container {
  height: 3rem;
  border: 2px solid #00ff88;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 1rem;
  color: #fff;
  border-radius: 10px;
  margin: 0 0 1rem;
}
#contactForm .input-container input {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1rem;
}
#contactForm .input-container i {
  font-size: 1.2rem;
}
#contactForm .input-container input::placeholder,
#contactForm .input-container textarea::placeholder {
  color: #fff;
}
#contactForm .input-container textarea::placeholder {
  line-height: 1.56;
}
#contactForm .input-container textarea {
  width: 100%;
  resize: none;
  height: 100%;
  font-size: 1.1rem;
  color: #fff;
}
#contactForm .input-container.text-area-container {
  height: 12rem;
  align-items: unset;
  padding: 1rem 1rem;
}
#contactForm .input-container.text-area-container i {
  padding: 8px 0 0;
}
#contactForm .btn {
  display: block;
  margin: 3rem auto 1rem;
}

/* * **************CONTACT END************** * */

/* * **************PRIVACY POLICY PAGE************** * */

.privacy-section-wrapper {
  background-color: #000;
  color: #ffffff;
  padding: 2rem;
  font-family: "Poppins", sans-serif;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-header {
  text-align: center;
  margin-bottom: 2rem;
}

.privacy-title {
  font-size: 2.5rem;
  color: #00ff99;
}

.privacy-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
}

.privacy-hero-image img,
.privacy-inline-image img {
  display: block;
  max-width: 150px;
  margin: 2rem auto;
  filter: brightness(1.2);
}

.privacy-content {
  margin-top: 2rem;
}

.privacy-heading {
  color: #00ff99;
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

.privacy-text {
  color: #dddddd;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.privacy-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #222;
  margin-top: 3rem;
}

.privacy-footer-text {
  color: #888;
  font-size: 0.9rem;
}

/* * **************PRIVACY END************** * */

/* * **************TERMS POLICY PAGE************** * */

.tac-wrapper {
  background-color: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.tac-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tac-title {
  color: #00ff99;
  font-size: 2.5rem;
}

.tac-subtitle {
  font-size: 1rem;
  color: #999;
}

.tac-content {
  margin-top: 2rem;
}

.tac-heading {
  font-size: 1.5rem;
  color: #00ff99;
  margin-top: 2rem;
}

.tac-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
  margin-top: 1rem;
}

.tac-wrapper a {
  color: #00ff99;
  text-decoration: underline;
}

/* * **************TERMS END************** * */

/* * **************SERVICE PAGE************** * */
.service-hero__itemsContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.service-hero__itemsContainer video {
  height: 60vh;
  width: 100%;
  margin: 0 2rem;
  border: 3px solid #00ff99;
  border-radius: 10px;
}
.service-hero__buttonContainer {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.service-hero__headingsContainer {
  padding: 0 2rem;
  text-align: center;
}
.service-description {
  font-size: 1rem;
  margin: 0 0 2rem;
}
.service-title {
  font-size: 1.4rem;
  margin: 1rem 0;
}
.service-hero__headingsContainer .btn {
  padding: .75rem 3rem;
  font-size: 1rem;
}
/* Responsive */

@media (max-width: 1440px) {
  html {
    font-size: 15px;
  }
  :root {
    --page-max-width: 90%;
  }
  /* Hero Section */
  .hero-sub__heading {
    font-size: 1.4rem;
  }
  .hero-main__heading {
    font-size: 3.2rem;
  }
  .hero-bottom__heading {
    font-size: 1rem;
  }

  /* Toolkit */
  .toolkit-container {
    height: 32rem;
  }

  /* Page Services Section */
  .page-service__mainHeading {
    font-size: 4.5rem;
  }
  .page-services__buttonsContainer {
    flex-wrap: wrap;
    gap: 2rem 2rem;
    justify-content: center;
  }
  .page-services__buttonsContainer .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  /* Portfolio */
  .page-portfolio__buttonContainer button {
    font-size: calc(1rem + 0.2vw);
  }
}
@media (max-width: 1280px) {
  html {
    font-size: 14px;
  }
  :root {
    --page-max-width: 92%;
  }
  /* Header */
  .search-container {
    width: 15rem;
  }
  .services-dropdown__container {
    left: -40%;
  }
  .hero-main__heading {
    font-size: 3.5rem;
  }
  .btn {
    position: relative;
    padding: 10px 40px;
  }

  /* Toolkit */
  .toolkit-container {
    height: 30rem;
  }

  /* Page Services Section */
  .pageServices-details img {
    width: 100%;
  }
  .page-service__mainHeading {
    font-size: 4.2rem;
  }

  /* Portfolio */
  .page-portfolio__buttonContainer button {
    font-size: calc(1rem + 0.1vw);
  }
}
@media (max-width: 1210px) {
  .hero-main__heading {
    font-size: 3.1rem;
  }
}
@media (max-width: 1080px) {
  html {
    font-size: 13px;
  }
  :root {
    --page-max-width: 94%;
  }
  /* Header */
  .services-dropdown__innerContainer {
    margin: 3rem 0 0;
  }
  .navbar-list {
    gap: 1rem;
  }
  .top-header__navbar {
    gap: 1rem;
  }
  .services-dropdown__innerContainer .carret {
    bottom: 100%;
  }

  /* PAge Services Section */
  .pageServices-details {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .pageServices-details .details {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pageServices-details img {
    width: 70%;
  }
  .pageServices-details h3 {
    font-size: 2.5rem;
  }
  .pageServices-details p {
    font-size: 1.3rem;
  }
}
@media (max-width: 960px) {
  html {
    font-size: 12px;
  }
  /* Header */
  :root {
    --page-max-width: 96%;
  }
  .navbar-list {
    display: none;
  }
  .top-header__navbar {
    display: none;
  }
  .top-header__itemsContainer {
    justify-content: center;
  }
  .search-container {
    width: 100%;
    border-radius: 5px;
    height: 50%;
    padding: 0 8px;
  }
  .logo {
    height: 4.5rem;
    margin: 0.4rem 0 0;
  }
  .navbar-items__container {
    gap: 2rem;
    height: 100%;
  }
  #openMenuBtn {
    display: block;
    color: #f0f0f0;
    font-size: 2rem;
    margin: 0 0 0 2rem;
    transition: var(--transition-300ms);
  }
  #openMenuBtn:hover {
    color: #4cff4c;
  }

  /* Hero Section */
  .hero-images__container {
    display: none;
  }
  .hero-section__itemsContainer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 10%;
  }
  .hero-buttons__container {
    justify-content: center;
  }
  .hero-main__heading {
    font-size: 4.5rem;
  }
  .hero-sub__heading {
    font-size: 1.8rem;
  }
  .hero-bottom__heading {
    font-size: 1.4rem;
  }

  /* FAQ Section */
  .FAQ-items__container {
    grid-template-columns: 1fr;
  }
  .FAQ-heading__container {
    text-align: center;
  }
  .FAQ-heading__container .btn {
    display: none;
  }
  .FAQ-sub__heading {
    font-size: 1.8rem;
  }
  .FAQ-main__heading {
    font-size: 4rem;
  }
  .FAQ-bottom__heading {
    display: none;
  }
  .FAQs-container {
    padding: 0 10%;
  }
  .FAQ-container .FAQ-title {
    font-size: 2rem;
  }
  .FAQ-answer__container {
    font-size: 1.4rem;
  }

  /* Toolkit */
  .toolkit-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .toolkit:nth-child(9),
  .toolkit:nth-child(10) {
    display: none;
  }
  .toolkit:nth-child(2),
  .toolkit:nth-child(4),
  .toolkit:nth-child(6),
  .toolkit:nth-child(8),
  .toolkit:nth-child(10) {
    background: none;
  }
  .toolkit:nth-child(2),
  .toolkit:nth-child(4),
  .toolkit:nth-child(5),
  .toolkit:nth-child(7) {
    background: #005015;
  }

  /* Services section */
  .page-service__mainHeading {
    font-size: 3rem;
  }

  /* Portfolio */
  .page-portfolio__buttonContainer {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-portfolio__buttonContainer {
    gap: 2rem 1.5rem;
  }
  .page-portfolio__buttonContainer button {
    position: relative;
    padding: 10px 20px;
    background: #00cc66;
    color: #002b18;
    font-size: 12px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 8px #00ff88, 0 0 16px #00ff88;
    text-transform: uppercase;
  }

  .page-portfolio__buttonContainer button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      #00ff88,
      #00cc66,
      #009944,
      #00e67a,
      #00ff88
    );
    background-size: 500%;
    animation: glowing 8s ease-in-out infinite;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
    transition: opacity 0.4s ease-in-out, filter 0.4s ease-in-out;
  }

  .page-portfolio__buttonContainer button:hover {
    background: #006633;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 0 20px #00ff88, 0 0 40px #00ff88, 0 0 60px #00ff88;
  }

  .page-portfolio__buttonContainer button:hover::before {
    filter: blur(30px);
    opacity: 1;
  }

  .page-portfolio__buttonContainer button:hover,
  .page-portfolio__buttonContainer button.active {
    background: #333;
  }

  /* Testimonial */
  .testimonial-main__heading {
    font-size: 4rem;
  }

  /* Footer */
  #main-footer {
    display: none;
  }
  /* Mobile Footer */
  #mobile-footer {
    display: block;
    background: #00964b;
    padding: 2rem 0;
  }
  .mobileFooter-heading__container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
  }
  .mobileFooter-heading__container h2 {
    font-size: 3rem;
  }
  .mobile-footer__list {
    margin: 3rem 0 0;
  }
  .mobile-footer__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px 10px;
    border-bottom: 3px solid #00ff88;
    cursor: pointer;
    transition: var(--transition-400ms);
  }
  .mobile-footer__list li:hover {
    color: #00ff88;
  }
  .mobile-footer__list li i {
    font-size: 1.5rem;
  }
  .mobile-footer__list h3 {
    font-size: 2rem;
    text-transform: uppercase;
  }
  .dropdown-footer__menu {
    height: 0;
    overflow: hidden;
  }
  .dropdown-footer__menu.active {
    height: fit-content;
  }
  .dropdown-footer__menu li {
    font-size: 1.7rem;
  }

  /* ABOUT US PAGE */
  /* HRO SECTION */
  .aboutUs-hero__itemsContainer {
    grid-template-columns: 1fr;
    width: 80%;
    text-align: center;
  }
  .aboutRight-hero__section {
    display: none;
  }
  .about-us__buttonsContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 6rem 0 0;
  }

  /* Promise Section */
  .promise-section__aboutus {
    padding: 8rem 3rem 8rem 0;
    margin: 0 1rem 2rem;
  }
  .promise-section__aboutus p {
    width: 80%;
  }

  /* * **************CONTACT PAGE************** * */
  .contact-form__itemsContainer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    width: 80%;
    padding: 10vh 0;
  }
  .contact-form__itemsContainer .headings-container {
    display: none;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 11px;
  }
  :root {
    --page-max-width: 98%;
  }
  .side-menu__container.active {
    width: 70%;
  }
  /* Hero Section */
  .hero-section__itemsContainer {
    padding: 0 5%;
  }
  .btn {
    font-size: 15px;
  }
  .hero-main__heading {
    font-size: 4rem;
  }

  /* FAQ Section */
  .FAQs-container {
    padding: 0 5%;
  }

  /* Toolkit */
  .toolkit-heading {
    font-size: 1.6rem;
  }

  /* Page Services */
  .pageServices-details img {
    width: 90%;
  }

  /* Process Section */
  .process-sub__heading {
    font-size: 1.8rem;
  }
  .process-main__heading {
    font-size: 4rem;
    line-height: 1.1;
  }
  .process-bottom__heading {
    font-size: 1.2rem;
  }
  .process-section__container {
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
  }
  .dynamicVideo-contianer {
    height: 50vh;
    width: 90%;
  }

  /* aBOUT US PAGE REAL QUESTION SECTION*/
  .about-question__itemsContainer h2 {
    font-size: 3.2rem;
    margin: 1.5rem 0 2.5rem;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 10px;
  }
  :root {
    --page-max-width: 100%;
  }
  .side-menu__container.active {
    width: 80%;
  }
  .sideMenu-dropdown__services li {
    padding: 30px 20px 10px 30px;
  }
  .sideMenu-dropdown__subServices li {
    padding: 30px 20px 10px 40px;
  }

  /* Hero Section */
  .btn {
    font-size: 12px;
    padding: 8px 30px;
  }
  .hero-main__heading {
    font-size: 3.5rem;
  }
  .hero-sub__heading {
    font-size: 1.5rem;
  }
  .hero-bottom__heading {
    font-size: 1.2rem;
  }

  /* Toolkit */
  .toolkit-title {
    font-size: 1.8rem;
  }
  .toolkit-container {
    grid-template-columns: repeat(3, 1fr);
    height: 40rem;
  }
  .toolkit:nth-child(10) {
    display: flex;
  }
  .toolkit:nth-child(2),
  .toolkit:nth-child(4),
  .toolkit:nth-child(5),
  .toolkit:nth-child(7) {
    background: none;
  }
  .toolkit:nth-child(2),
  .toolkit:nth-child(4),
  .toolkit:nth-child(6),
  .toolkit:nth-child(8) {
    background: #005015;
  }

  /* Process Section */
  .process-section__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-main__heading {
    font-size: 3rem;
  }

  /* ABOUT US PAGE */
  /* HRO SECTION */
  .aboutUs-hero__itemsContainer {
    width: 95%;
    gap: 1rem;
  }
  .aboutRight-hero__section {
    display: none;
  }
  .about-us__buttonsContainer {
    gap: 2rem;
    margin: 2rem 0 0;
  }

  /* pRIVACY pOLICY */
  .privacy-title {
    font-size: 2rem;
  }

  .privacy-subtitle,
  .privacy-text {
    font-size: 0.95rem;
  }

  .privacy-heading {
    font-size: 1.3rem;
  }

  /* TERMS AND CONDITIONS */
  .tac-title {
    font-size: 2rem;
  }
  .tac-heading {
    font-size: 1.3rem;
  }
  .tac-paragraph {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 9px;
  }
  /* Header */
  .logo {
    width: 9rem;
    height: 4rem;
  }
  #openMenuBtn {
    margin: 0 0 0 1rem;
  }
  .side-menu__container.active {
    width: 100%;
  }

  /* Hero Section */
  .hero-section__itemsContainer {
    padding: 0 10px;
  }
  .hero-main__heading {
    font-size: 3rem;
  }
  .btn {
    font-size: 10px;
    padding: 7px 25px;
  }
  /* FAQ Section */
  .FAQs-container {
    padding: 0;
  }
  .FAQ-container .FAQ-title {
    font-size: 1.6rem;
  }
  .FAQ-answer__container {
    font-size: 1.2rem;
  }

  /* Page Services */
  .page-service__heading {
    font-size: 1.4rem;
  }
  .page-service__mainHeading {
    font-size: 2.5rem;
  }

  /* Testimonial */
  .testimonial-main__heading {
    font-size: 2.5rem;
  }

  /* Cliental Videos */
  .clients-section__heading {
    font-size: 2rem;
  }

  /* Page Portfolio */
  .page-portfolio__buttonContainer button {
    padding: 10px 15px;
    font-size: 10px;
  }

  /* Contact Form */
  #popup-contact__form {
    min-width: 85%;
  }

  /* ABOUT US PAGE */
  /* HRO SECTION */
  .aboutRight-hero__section,
  .aboutLeft-hero__section {
    padding: 2rem 1rem;
  }

  /* Promise Section */
  .promise-section__aboutus p {
    width: 95%;
  }

  /* aBOUT US PAGE REAL QUESTION SECTION*/
  .about-question__itemsContainer h2 {
    font-size: 3rem;
    line-height: 1.4;
  }

  /* How Can We Help */
  .aboutus-help__itemsContainer {
    padding: 7rem 1rem;
  }
  .aboutus-help__itemsContainer h2 {
    font-size: 3rem;
  }

  /* * **************CONTACT PAGE************** * */
  .contact-form__itemsContainer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    width: 90%;
    padding: 10vh 0;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 8px;
  }
  .side-menu__container.active {
    width: 100%;
  }

  /* Toolkit */
  .toolkit-title {
    font-size: 1.5rem;
  }
  .toolkit-container {
    grid-template-columns: repeat(2, 1fr);
    height: 50rem;
  }
  .toolkit:nth-child(9) {
    display: flex;
  }
  .toolkit:nth-child(2),
  .toolkit:nth-child(4),
  .toolkit:nth-child(6),
  .toolkit:nth-child(8) {
    background: none;
  }
  .toolkit:nth-child(1),
  .toolkit:nth-child(4),
  .toolkit:nth-child(5),
  .toolkit:nth-child(8),
  .toolkit:nth-child(9) {
    background: #005015;
  }

  /* Process Section */
  .process-section__container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact Form */
  #popup-contact__form {
    min-width: 95%;
  }
}
