/* * ********ROOTELEMENTS******** * */
:root {
  /* Color Scheme */
  --color-white: #fff;
  --color-black: #000;
  --color-light-gray: #ccc;
  --color-acidic-green: #8ffe09;
  --color-dark-acidic-green: #4a8600;

  --color-light-purple: #18082B;
  --color-dark-purple: #140525;
  --color-pink: #bb0067;
  --color-dark-green: #619E00;
  --color-special-green: #003f0a;

  /* Body */
  --page-max--width: 90rem;

  /* Transitions */
  --transition-100ms: all 100ms ease;
  --transition-200ms: all 200ms ease;
  --transition-300ms: all 300ms ease;
  --transition-400ms: all 400ms ease;
  --transition-500ms: all 500ms ease;
  --transition-600ms: all 600ms ease;
  --transition-700ms: all 700ms ease;
  --transition-800ms: all 800ms ease;
  --transition-900ms: all 900ms ease;
  --transition-1000ms: all 1000ms ease;
  --transition-1100ms: all 1100ms ease;
  --transition-1200ms: all 1200ms ease;

  /* Typography */
  --font-mainText: "Inter", serif;
  --font-mainHeading: "Playfair Display", sans-serif;
  --font-familyLogo: "Sour Gummy", sans-serif;

  /* Box Shadow */
  --box-shadow-light: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;

}

/* * ********RESET DEFAULT******** * */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  &::selection {
    background: var(--color-dark-acidic-green);
    color: var(--color-white);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-family: var(--font-mainHeading);
}

h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  color: var(--color-white);
  font-weight: 600;
  transition: var(--transition-400ms);
  font-family: var(--font-familyLogo);

  &:hover {
    color: var(--color-acidic-green);
  }
}

li {
  list-style: none;
}

img,
video,
iframe {
  object-fit: cover;
  display: block;
  width: 100%;
}
iframe {
  height: 100%;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: var(--font-mainText);
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 1.4;
  color: var(--color-light-gray);
}

section { 
  padding: 6.375rem 20PX;
}
html {
  font-size: 16px;
  font-family: var(--font-mainText);
  scroll-behavior: smooth;
}

body {
  background: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  overflow-x: hidden;
}

/* * ********PREBUILD******** * */
.center {
  margin: 0 auto;
  max-width: var(--page-max--width);
}
.btn {
  position: relative;
  padding: 15px 60px;
  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%;
  }
}

/* * ********NAVBAR******** * */
#main-header {
  height: 5rem;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: var(--transition-400ms);
  z-index: 1000;

  &.active {
    box-shadow: rgba(74, 134, 0, .3) 0px 5px 0px;
    background: rgba(74, 134, 0, .7);
    backdrop-filter: blur(20px);
  }
}
#main-header .center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}
.navbar-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0 100px 0 0;
}
.navbar-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-500ms);
  cursor: pointer;
  position: relative;
}
.navbar-link a {
  transition: var(--transition-500ms);
  &:hover {
    color: var(--color-acidic-green);
  }
}

/* * ********DROPDOWN SERVICES LARGE SCEENS******** * */
.dropdown-services__container {
  position: absolute;
  width: 25rem;
  top: 400%;
  left: 0;
  cursor: pointer;
  transition: var(--transition-400ms);
  opacity: 0;
  overflow: hidden;
  height: 0;

  &.active {
    opacity: 1;
    top: 0;
    height: fit-content;
    overflow: unset;
  }
}
.dropdown-services__innerContainer {
  height: 100%;
  width: 100%;
  margin: 3rem 0 0;
  padding: 20px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 2px solid var(--color-acidic-green);
  background: rgba(0, 63, 10, .8);
  backdrop-filter: blur(20px);
  cursor: default;
  position: relative;
}
.service {
  text-transform: uppercase;
  position: relative;
  height: 100%;
  width: 100%;
}
.dropdown-services__innerContainer .carret {
  position: absolute;
  bottom: 100%;
  left: 30px;
  border: 12px solid transparent;
  border-bottom: 12px solid var(--color-acidic-green);
}
.dropdown-subServices__container {
  position: absolute;
  left: 150%;
  white-space: nowrap;
  top: -10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(0, 63, 10, .8);
  border-left: 2px solid var(--color-acidic-green);
  padding: 0;
  transition: var(--transition-400ms);
  opacity: 0;
  height: 0;
  overflow: hidden;

  &.active {
    left: 100%;
    opacity: 1;
    padding: 10px 15px;
    height: fit-content;
    overflow: unset;
  }
}
.dropdown-subServices__container .carret {
  transform: rotate(-90deg);
  left: -23px;
  top: 10px;
}
#open-side__menu {
  background: none;
  color: var(--color-white);
  font-size: 2rem;
  transition: var(--transition-500ms);
  display: none;

  &:hover {
    color: var(--color-acidic-green);
  }
}
.sideMenu-container {
  display: none;
}

/* * ********FAQ SECTION******** * */
.FAQs-container {
  padding: 4rem 0 0;
}
.faq-container {
  padding: 20px 30px;
  background: rgba(97, 158, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  margin: 0 0 1.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease-in-out;
  z-index: 1;
}

/* Active state */
.faq-container.active {
  background: rgba(44, 83, 0, 0.95);
}

/* Glowing animated effect like the button */
.faq-container.active::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    #2c5300,
    #00cc66,
    #009944,
    #00e67a,
    #00ff88
  );
  background-size: 500%;
  animation: glowingBG 8s ease-in-out infinite;
  filter: blur(30px);
  opacity: 0.4;
  z-index: -1;
  transition: opacity 0.4s ease-in-out;
  border-radius: 20px;
}

@keyframes glowingBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.FAQ-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-family: var(--font-mainText);
  transition: var(--transition-400ms);
  cursor: pointer;
}
.FAQ-heading:hover {
  color: var(--color-acidic-green);
}
.FAQ-heading i {
  font-size: 1.4rem;
}
.FAQ-paragraph {
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 600;
  overflow: hidden;
  height: 0;
  &.active {
    height: fit-content;
    padding: 1rem 0 0 2.4rem;
  }
}


/* * ********TOOLKIT SECTION******** * */
#toolkit-section {
  padding: 13rem 20px;
}
.toolkit-heading {
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 2rem;
  padding: 0 1rem;
}
.tookits-container { 
  height: 35rem;
  width: 100%;
  background: rgba(0, 153, 68, .8);
  backdrop-filter: blur(20px);
  border-radius: 10px;
}
.tookits-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.toolkit-container {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;

  &:nth-child(2), &:nth-child(4), &:nth-child(6), &:nth-child(8), &:nth-child(10) {
    background: rgba(0, 63, 10, .8);
    backdrop-filter: blur(20px);
  }
  &:nth-child(6) img, &:nth-child(8) img {
    width: 65%;
  }
  &:hover img {
    filter: unset;
  }
}
.toolkit-container img {
  width: 40%;
  filter: brightness(0) invert(1);
}


/* * ********PORTFOLIO******** * */
#portfolio-section {
  padding: 15rem 20px;
}
.portfolio-heading {
  font-size: 5rem;
  text-transform: uppercase;
  padding: 2rem 20px;
  border-bottom: 2px solid var(--color-acidic-green);
}
.portfolio-button__container {
  margin: 1rem 0 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portfolio-btn {
  background: none;
  color: var(--color-white);
  font-size: 1.5rem;
  position: relative;
  transition: var(--transition-400ms);
  font-weight: 600;
  &:hover {
    color: var(--color-acidic-green);
  }
  &.active {
    color: var(--color-acidic-green);
  }
}
.portfolio-btn.active::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background: var(--color-white);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  top: 40px;
  border: 8px solid var(--color-acidic-green);
  box-shadow: 2px 2px 20px var(--color-white);
}
.portfolio-swiper {
  height: 400px;
  margin: 0 0 10px;
}
.swiper-slidee {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  &:hover::after, &:hover::before {
    height: 100%;
  }
  &:hover .play-btn__portfolio {
    top: 50%;
  }
}
.swiper-slidee::after {
  position: absolute;
  content: "";
  height: 0;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(8, 230, 0, .3);
  z-index: 10;
  transition: var(--transition-400ms);
}
.swiper-slidee::before {
  position: absolute;
  content: "";
  height: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgb(8, 230, 0, .3);
  z-index: 10;
  transition: var(--transition-400ms);
}


.portfolio-img__container img {
  height: 100%;
  width: 100%;
}
.play-btn__portfolio {
  position: absolute;
  top: -100%;
  left: 50%;
  font-size: 5rem;
  transform: translate(-50%, -50%);
  z-index: 102;
  transition: var(--transition-400ms);
}
.portfolio-container {
  display: none;

  &.active {
    display: block;
  }
}
#portfolio-video__popup {
  height: 35rem;
  width: 65vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  border: 2px solid var(--color-acidic-green);
  border-radius: 20px;
  overflow: hidden;
  display: none;
  &.active {
    display: block;
  }
}
#portfolio-video__popup video {
  height: 100%;
}
#close-portfolio__videoButton {
  position: absolute;
  right: 15px;
  top: 10px;
  color: var(--color-white);
  background: none;
  font-size: 2rem;
  transition: var(--transition-400ms);
  &:hover {
    color: var(--color-acidic-green);
  }
}

/* * ********TESETIMONIAL******** * */
.testimonial-container {
  text-align: center;
}
.testimoninal-heading__container {
  font-size: 2rem;
  color: var(--color-white);
}
.testimonial-heading {
  font-size: 5rem;
  text-transform: uppercase;
}
.testiomonial-swiper {
  margin: 4rem 0 0;
  height: 18.75rem;
}
.testimonial {
  background: rgba(0, 153, 68, 0.8);
  border-radius: 1rem;
  padding: 0 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  color: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
  border: 2px solid var(--color-acidic-green);
}
.testimonial-author {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.testimonial-author img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
  border: 0.125rem solid #ffffff;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
}

.testimonial-author span {
  font-size: 1rem;
  color: #c8f7dd;
}

.testimonial-text {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #f1fdf6;
  font-weight: 600;
}

/* * ********FOOTER******** * */
#main-footer {
  padding: 5rem 0 0rem;
}
.footer-heading {
  font-size: 6rem;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  border-bottom: 2px solid var(--color-acidic-green);
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
  animation: footerHeading 2s linear infinite;

  &:hover {
    color: var(--color-acidic-green);
    animation: unset;
  }
}
@keyframes footerHeading {
  0% {
    color: var(--color-white);
  } 50% {
    color: var(--color-white);
  } 52% {
    color: var(--color-acidic-green);
  } 100% {
    color: var(--color-acidic-green);
  }
}
.footer-rows__container {
  display: flex;
  justify-content: space-between;
  margin: 4rem 0 0;
  border-bottom: 1px solid var(--color-acidic-green);
  padding: 0 1rem 5rem;
}
.footer-row__heading {
  font-size: 2.2rem;
  margin: 0 0 4rem;
}
.footer-row__link {
  padding: 0 0 0 10px;
  margin: 1.5rem 0 0;
  font-size: 1.3rem;
  transition: var(--transition-700ms);
  &:hover {
    color: var(--color-acidic-green);
    transform: translateX(10px);
  }
}
.country-details {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-flag {
  width: 85px;
}
.footer-row:last-child  .footer-row__heading {
  margin: 0 0 2rem;
}
.footer-contact__row {
  margin: 0 0 20px;
  font-size: 1.2rem;
  display: flex;
  gap: 15px;
  align-items: center;
}
.DMCA-btn {
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--color-dark-acidic-green);
  transition: var(--transition-400ms);
  font-weight: 600;

  &:hover {
    background: var(--color-acidic-green);
    color: var(--color-black);
  }
}
.open-contanct__form {
  background: none;
  color: var(--color-white);
  font-size: 1.2rem;
  transition: var(--transition-300ms);
  &:hover {
    color: var(--color-acidic-green);
  }
}
.footer-last__rowColor {
  transition: var(--transition-400ms);
  &:hover {
    color: var(--color-acidic-green);
  }
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 20px;
  font-size: 1.4rem;
  color: var(--color-white);
}
.footer-bottom p {
  color: var(--color-white);
  font-weight: 600;
}
.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer-bottom__links a {
  transition: var(--transition-400ms);
  font-weight: 600;
  &:hover {
    color: var(--color-acidic-green);
  }
}
#mobile-footer {
  display: none;
}

/* * ********CONTACT POPUP FORM******** * */
.popup-contact__formContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35rem;
  height: 40rem;
  background: rgba(0, 63, 10, .8);
  backdrop-filter: blur(16px);
  z-index: 100;
  border: 2px solid var(--color-acidic-green);
  border-radius: 10px;
  display: none;
  &.active {
    display: block;
  }
}
#popup-contact__form {
  height: 100%;
  width: 100%;
  position: relative;
  padding: 20px;
}
#close-popup__formButton {
  background: var(--color-dark-acidic-green);
  color: var(--color-white);
  border-radius: 50%;
  height: 35px;
  width: 35px;
  font-size: 1rem;
  box-shadow: var(--box-shadow-light);
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  border: 2px solid var(--color-acidic-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.contact-logo {
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  padding: 1rem 0 0;
  transition: var(--transition-400ms);
  font-weight: 800;
  font-family: var(--font-familyLogo);
  &:hover {
    color: var(--color-acidic-green);
  }
}
.contact-description {
  color: var(--color-white);
  text-align: center;
  font-size: 1.5rem;
  margin: 1rem 0 2rem;
}
.popup-contact__inputContainer {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 3rem;
  width: 100%;
  background: var(--color-white);
  color: var(--color-black);
  padding: 0 1rem;
  border-radius: 10px;
  margin: 0 0 1rem;
}
.popup-contact__inputContainer i, .popup-contact__textAreaContainer i {
  font-size: 1.2rem;
  color: var(--color-dark-acidic-green);
}
.popup-contact__inputContainer input {
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
}
.popup-contact__textAreaContainer {
  display: flex;
  color: var(--color-dark-acidic-green);
  padding: 1rem 1rem;
  background: var(--color-white);
  gap: 1rem;
  border-radius: 10px;
}
.popup-contact__textAreaContainer textarea {
  width: 100%;
  font-size: 1rem;
  height: 8rem;
  resize: none;
}
#popup-contact__button {
  width: 60%;
  margin: 2rem auto 0;
  display: block;
}

/* * ********CLientale videos******** * */
.client-heading {
  font-size: 3rem;
  text-transform: uppercase;
  margin: 0 0 2rem;
}
.client-swiper {
  height: 350px;
}
.client-swiper img {
  height: 100%;
  width: 100%;
}



/* * ********BREAKDOWN 1630PX******** * */
@media screen and (min-width: 1441px) and (max-width: 1650px) {
  /* * ********NAVBAR******** * */
  .dropdown-services__container {
    left: 50%;
    transform: translateX(-50%);
  }
  .dropdown-services__innerContainer .carret {
    left: 50%;
    transform: translateX(-50%);
  }
  .dropdown-subServices__container .carret {
    transform: rotate(-90deg);
    left: -25px;
    top: 10px;
  }
}

/* * ********BREAKDOWN 1440px******** * */
@media screen and (max-width: 1440px) {
  html {
    font-size: 15px;
  }

  /* * ********NAVBAR******** * */
  .dropdown-services__container {
    left: -30%;
  }
  .dropdown-services__innerContainer .carret {
    left: 80px;
  }
  .dropdown-subServices__container .carret {
    transform: rotate(-90deg);
    left: -25px;
    top: 10px;
  }
}

/* * ********BREAKDOWN 1280px******** * */
@media screen and (max-width: 1280px) {
  html {
    font-size: 14px;
  }

  /* * ********NAVBAR******** * */
  .dropdown-services__innerContainer, 
  .dropdown-subServices__container {
    gap: 1.3rem;
  }
  .navbar-container {
    gap: 2rem;
    padding: 0 50px 0 0;
  }
  .dropdown-services__container {
    left: -10%;
    transform: translateX(-50%);
  }
  .dropdown-services__innerContainer .carret {
    left: 60%;
    transform: translateX(100%);
  }
  .dropdown-subServices__container .carret {
    transform: rotate(-90deg);
    left: -25px;
    top: 10px;
  }

  /* * ********FAQ SECTION******** * */
  .FAQ-heading {
    font-size: 1.6rem;
  }
  .FAQ-paragraph {
    font-size: 1.2rem;
  }

  /* * ********TOOLKIT SECTION******** * */
  .tookits-container {
    height: 39rem;
    grid-template-columns: repeat(4, 1fr);
  }
  .toolkit-container {
  
    &:nth-child(2), &:nth-child(4), &:nth-child(6), &:nth-child(8), &:nth-child(10) {
      background: unset;
      backdrop-filter: unset;
    }
    &:nth-child(9), &:nth-child(10) {
      display: none;
    }

    &:nth-child(2), &:nth-child(4), &:nth-child(5), &:nth-child(7)  {
      background: rgba(0, 63, 10, .8);
      backdrop-filter: blur(20px);
      height: 100%;
    }
  }
}

/* * ********BREAKDOWN 1080px******** * */
@media screen and (max-width: 1080px) {
  html {
    font-size: 13px;
  }

  /* * ********NAVBAR******** * */
  #navbar {
    display: none;
  }
  #open-side__menu {
    display: block;
    font-size: 2.2rem;
  }

  /* * ********SIDEMENU******** * */
  .sideMenu-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    background: rgba(0, 63, 10, .8);
    backdrop-filter: blur(20px);
    display: block;
    overflow: hidden;
    transition: var(--transition-300ms);
    white-space: nowrap;
    &.active {
      width: 65vw;
    }
  }
  .sideMenu-inner__container {
    height: 100%;
    width: 100%;
    position: relative;
    padding: 100px 20px 20px;
  }
  #close-menu__button {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.2rem;
    background: none;
    color: var(--color-white);
    transition: var(--transition-400ms);
    &:hover {
      color: var(--color-acidic-green);
    }
  }
  .sideMenu-list__container {
    height: 100%;
    overflow-y: scroll;

    &::-webkit-scrollbar {
      display: none;
    }
  }
  .sideMenu-listItem {
    padding: 30px 15px 15px;
    text-transform: uppercase;
    font-size: 1.6rem;
    border-bottom: 1px solid var(--color-acidic-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  .sideMenu-listItem a {
    width: 100%;
    height: 100%;
    transition: var(--transition-300ms);
    &:hover {
      color: var(--color-acidic-green);
    }
  }
  .sideMenu-subServices__container,
  .sideMenu-services__container {
    overflow: hidden;
    height: 0;

    &.active {
      height: fit-content;
    }
  }

  /* * ********FAQ SECTION******** * */
  #FAQ-section {
    padding: 0;
  }
  .faq-container {
    margin: 0 4rem 2rem;
  }
  .FAQ-heading {
    font-size: 2.2rem;
  }
  .FAQ-paragraph {
    font-size: 1.8rem;
  }
  /* * ********TOOLKIT SECTION******** * */
  .tookits-container {
    height: 55rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .toolkit-container {
    &:nth-child(2), &:nth-child(4), &:nth-child(5), &:nth-child(7)  {
      background: unset;
      backdrop-filter: unset;
    }
    &:nth-child(2), &:nth-child(4), &:nth-child(6), &:nth-child(8)  {
      background: rgba(0, 63, 10, .8);
      backdrop-filter: blur(20px);
    }
    &:nth-child(9) {
      display: flex;
    }
  }

  /* * ********PORTFOLIO******** * */
  .portfolio-heading{
    font-size: 4rem;
    text-align: center;
  }
  .portfolio-button__container {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .portfolio-btn, .portfolio-btn.active {
    background: var(--color-dark-acidic-green);
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 1.4rem;
    color: var(--color-white);
    &::after {
      display: none;
    }
  }
  .portfolio-swiper {
    height: 300px;
  }
 
  /* * ********TESETIMONIAL******** * */
  .testimonial-heading {
    font-size: 4rem;
  }

  /* * ********FOOTER******** * */
  .footer-rows__container {
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
  }
}

/* * ********BREAKDOWN 768px******** * */
@media screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
  /* * ********SIDEMENU******** * */
  .sideMenu-listItem {
    font-size: 1.5rem;
  }
  .sideMenu-inner__container {
    padding: 70px 20px 20px;
  }

  /* * ********FAQ SECTION******** * */
  .faq-container {
    margin: 0 1rem 2rem;
  }

  /* * ********TOOLKIT SECTION******** * */
  .tookits-container {
    height: 85rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .toolkit-container {
    &:nth-child(2), &:nth-child(4), &:nth-child(5), &:nth-child(7), &:nth-child(8)  {
      background: unset;
      backdrop-filter: unset;
    }
    &:nth-child(2), &:nth-child(3), &:nth-child(6), &:nth-child(7), &:nth-child(10)  {
      background: rgba(0, 63, 10, .8);
      backdrop-filter: blur(20px);
    }
    &:nth-child(8), &:nth-child(10) {
      display: flex;
    }
  }

  /* * ********TESETIMONIAL******** * */
  .testimonial-heading {
    font-size: 3.5rem;
  }

  /* * ********MOBILE FOOTER******** * */
  #main-footer {
    display: none;
  }
  #mobile-footer {
    display: block;
    width: 100%;
    background: rgba(0, 63, 10, .2);
    backdrop-filter: blur(12px);
    padding: 2rem 20px;
  }
  .mobile-footer__link {
    padding: 30px 15px 15px;
    border-bottom: 2px solid var(--color-acidic-green);
  }
  .mobile-footer__link a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition-400ms);
    cursor: pointer;
    &:hover {
      color: var(--color-acidic-green);
    }
  }
  .mobile-footer__heading {
    padding: 0 0 3rem;
    text-transform: uppercase;
    font-size: 4rem;
    text-align: center;
  }
  .mobile-footer__subLinkContainer {
    height: 0;
    overflow: hidden;
    &.active {
      height: fit-content;
    }
  }
  .client-heading {
    font-size: 2.5rem;
  }
}

/* * ********BREAKDOWN 576px******** * */
@media screen and (max-width: 576px) {
  html {
    font-size: 11px;
  }

  /* * ********SIDEMENU******** * */
  .sideMenu-inner__container {
    padding: 70px 20px 20px;
  }
  .sideMenu-container {
    &.active {
      width: 80vw;
    }
  }

  /* * ********FAQ SECTION******** * */
  .FAQ-heading {
    font-size: 1.8rem;
  }
  .FAQ-paragraph {
    font-size: 1.5rem;
  }

  /* * ********TESETIMONIAL******** * */
  .testimonial-heading {
    font-size: 3rem;
  }
  .cliental-videos__container {
    height: 270px;
  }
}

/* * ********BREAKDOWN 480px******** * */
@media screen and (max-width: 480px) {
  html {
    font-size: 10px;
  }

  /* * ********SIDEMENU******** * */
  .sideMenu-inner__container {
    padding: 70px 20px 20px;
  }
  .sideMenu-listItem {
    font-size: 1.5rem;
  }
  .sideMenu-container {
    &.active {
      width: 100%;
    }
  }

  /* * ********FAQ SECTION******** * */
  .FAQ-heading {
    font-size: 1.8rem;
  }
  .FAQ-paragraph {
    font-size: 1.5rem;
  }
  .faq-container {
    margin: 0 .8rem 2rem;
  }

  /* * ********TOOLKIT SECTION******** * */
  .tookits-container {
    height: 70rem;
  }
  .tookits-container img {
    width: 50%;
  }
  .toolkit-heading {
    font-size: 2.5rem;
    line-height: 1.56;
  }

  /* * ********PORTFOLIO******** * */



  .client-heading {
    font-size: 2rem;
  }
}


.logo-home {
    width: 10rem !important;
}