:root {
  --primary-color: ;
  --secondary-color: ;
  --tertiary-color: ;
  --font-1: ;
  --font-2: ;
  --font-3: ;
  --font-4: ;
  --font-5: ;

  --padding: ;
}




body,
html {
  width: 100%;
  font-size: 24px;
  overflow-x: clip;
  background-color: var(--secondary-color);
  transition: all .4s ease;
  color: var(--primary-color);
  scroll-behavior: smooth;
}


body {
  /* background-image: linear-gradient(to right top, #002620, #012b24, #023029, #03352d, #053a32, #083f36, #0b443b, #0e493f, #124f44, #17544a, #1b5a4f, #1f6055); */

  background-image: linear-gradient(to right top, #002620, #002b24, #013028, #02352d, #033a31, #043f35, #05443a, #07493e, #094f43, #0b5548, #0d5b4e, #0f6153);
}


.hero {
  min-height: fit-content;
  padding: var(--padding);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-4);
  font-size: 15vw;
  position: relative;
  top: 30px;
  text-wrap: nowrap;
  /*  */

  background: linear-gradient(to bottom, #cdd9ce 15%, #97b499 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.section-1 {
  min-height: 100vh;
  background-color: var(--primary-color);
  font-family: var(--font-2);
  font-family: var(--font-2);
  color: var(--tertiary-color);
  padding: var(--padding);
  padding-bottom: 200px;
  font-weight: bold;
}

.section-1 .text-1 {
  display: flex;

  gap: 20px;
  font-size: 18px;


}

.section-1 .text-1 .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-1 .text-1 p {
  font-weight: 600;
  width: min(600px, 100%);
  font-size: clamp(13px, 2vw, 17px);
}

.section-1 .text-1 a {
  padding: 6px 19px;
  display: flex;
  width: fit-content;
  border-radius: 8px;
  background-color: var(--tertiary-color);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;

}

.section-1 .text-1 img {
  width: 450px;
  height: 450px;
  object-fit: cover;
  margin-left: auto;
  rotate: 15deg;
}


.section-1 .text-2 {}


.faq-section {
  width: 95%;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0px 0px 13px 8px rgba(132, 131, 131, 0.36);
  padding: 30px;
  border: 1px solid rgba(115, 115, 115, 0.519);
  background-color: var(--tertiary-color);
  color: var(--primary-color);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-family: var(--font-4);
  font-size: 50px;
  /*  */

  background: linear-gradient(to bottom, #cdd9ce 15%, #97b499 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq {
  border-bottom: 1px solid #949494cb;
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  display: flex;
  font-family: var(--font-2);
  font-size: 24px;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  font-weight: bold;
  gap: 4px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  font-size: 14.5px;
  line-height: 1.6;
  font-family: var(--font-2);
  width: fit-content;
}

.faq.active .faq-answer {
  margin-top: 15px;
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  background: rgb(189, 189, 189);
  color: var(--secondary-color);
  border-radius: 10px;
  padding: 10px;
  width: fit-content;
}


.faq-question i {
  transition: transform 0.3s ease;
  font-size: 1rem;
  color: var(--primary-color);
}

.faq.active .faq-question i {
  transform: rotate(180deg);
}




.section-1 .text-3 {
  display: flex;
  gap: 8vw;
  width: 87%;
  margin: 0 auto;
  margin-top: 100px;
}

.section-1 .text-3>div {
  display: flex;
  flex-direction: column;
  gap: 10px;

  /* align-items: center; */
}

.section-1 .text-3 h2 {
  font-size: 35px;
  text-transform: uppercase;
  font-family: var(--font-4);
  font-weight: bold;
  color: var(--tertiary-color);
}

.section-1 .text-3 p {
  font-size: 14px;
  font-family: var(--font-2);
  width: 90%;
  font-weight: 600;
  line-height: 19px;
}

.section-1 .text-3> :nth-child(1) :is(h2, p) {
  text-align: right;
  margin-left: auto;
}


.section-1 .text-4 {
  margin-top: 90px;
  text-align: center;
}

.section-1 .text-4 p {
  width: min(650px, 93%);
  margin: 0 auto;
  font-family: var(--font-2);
  font-size: 14px;
  text-align: center;
  line-height: 19px;
  font-weight: 600;
}

.section-1 .text-4 h2 {
  font-family: var(--font-4);
  font-size: 40px;
  margin-bottom: 20px;
}


/* universal */
.bg-print {
  object-fit: cover;
  opacity: .045;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  left: 0px;
  object-fit: cover;
  /* display: none; */

}



@media (max-width:1200px) {
  .section-1 .text-3 {
    width: 100%;
  }

  .section-1 .text-3 h2 {
    font-size: calc(22px + 1.3vw);
  }
}


@media (max-width:1000px) {

  .section-1 .text-1 {
    flex-direction: column;
  }

}

@media (max-width:760px) {
  .section-1 .text-1 p {
    line-height: 19px;
  }

  .section-1 .text-3 {
    flex-direction: column-reverse;
    gap: 15vw;
  }

  .section-1 .text-3 p {
    font-size: clamp(11px, 2vw, 14px);
  }

  .faq-section {
    width: 100%;
    padding: 30px 20px;
  }

  .faq-question {
    font-size: clamp(16px, 3vw, 26px);
  }

  .faq-section h2 {
    font-size: clamp(40px, 8.5vw, 50px);
  }

  .section-1 .text-4 p {
    font-size: clamp(11px, 2vw, 14px);
  }

  .section-1 .text-4 h2 {
    font-size: clamp(30px, 3vw, 40px);
  }
  .faq-question i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

}