* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "News Cycle", sans-serif;
  font-weight: 400;
  font-style: normal;

  background-color: rgb(244, 255, 228);
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  display: block;
  cursor: pointer;
  padding: 0;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
}

@media (min-width: 1280px) {
  .container {
    padding: 0 100px;
  }
}

/*  header  */

.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;

  background-color: #fff;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__page {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  width: 100%;
  max-width: 40px;
}

.header__nav {
  display: none;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.burger {
  font-size: 25px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  color: #228941;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 30px;

  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 50px;
  color: #228941;
  cursor: pointer;
}

.modal-content ul {
  list-style: none;
  padding: 0;
}

.modal-content li {
  margin: 30px 0;

  list-style: none;
}

.modal-content li a {
  color: #228941;
  font-size: 20px;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .header__nav {
    display: block;
  }

  .header__logo {
    font-size: 40px;
  }

  .header__nav {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
  }

  .header__nav li {
    transition: all 0.5s ease;
  }

  .header__nav li a {
    color: #228941;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.5s ease;
  }

  .header__nav li:hover a {
    border-bottom: 2px solid #228941;
  }

  .burger {
    display: none;
  }
}

@media (min-width: 1000px) {
  .header__nav li a {
    font-size: 18px;
  }
}

@media (min-width: 1100px) {
  .header__nav {
    gap: 25px;
  }
}

@media (min-width: 1200px) {
  .header__nav li a {
    font-size: 20px;
  }
}
/*  hero  */

.hero {
  padding: 200px 0 50px;
  position: relative;

  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.hero h1 {
  color: #fff;

  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.hero a {
  display: block;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  color: #228941;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px;
  background-color: #fff;
  border: 3px solid #228941;
  border-radius: 5px;
  margin-bottom: 50px;
  transition: all 0.5s ease;
}

.hero a:hover {
  background-color: #228941;
  color: #fff;
}

.hero h3 {
  text-align: center;
  padding: 15px;
  background-color: #fff;
  color: #31a245;
  width: fit-content;
  border-radius: 5px;
  font-size: 25px;
  margin: 0 auto 40px;
}

@media (min-width: 900px) {
  .hero h1 {
    font-size: 60px;
    margin-bottom: 40px;
  }

  .hero a {
    font-size: 30px;
  }
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 60px;
  }

  .hero {
    padding: 250px 0 100px;
  }
}

/*  service  */

.service {
  padding: 60px 0;
}

.service h2 {
  color: #121309;
  font-size: 35px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-align: center;
  background: #228941;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
}

.service ul {
  display: flex;
  flex-direction: column;
  gap: 40px;

  list-style: none;
  padding: 0;
  margin: 0 auto 60px;
}

.service ul li {
  background-color: #31a245;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.service a {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  color: #228941;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px;
  background-color: #fff;
  border: 3px solid #228941;
  border-radius: 5px;
  margin-bottom: 50px;
  transition: all 0.5s ease;
}

.service a:hover {
  background-color: #228941;
  color: #fff;
}

.service ul li h3 {
  color: #121309;
  text-transform: uppercase;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 5px;
  text-align: center;
}

@media (min-width: 768px) {
  .service ul {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
  }

  .service ul li {
    width: 48%;
  }
}

@media (min-width: 900px) {
  .service h2 {
    font-size: 40px;
  }
}

/*  faq  */

.faq-section {
  padding: 60px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/images/bg-faq.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.faq-question {
  width: 100%;

  padding: 15px 20px;
  font-size: 20px;
  background-color: #31a245;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-question.active {
  background-color: #e9f5ff;
}

.faq-question::after {
  transform: translateY(-50%) rotate(270deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: transparent;
}

.faq-answer p {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

.faq-question.active + .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
  overflow: visible;
}

.faq-section h2 {
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-align: center;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
}

.faq-section a {
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px;
  background-color: purple;
  border-radius: 10px;

  transition: all 0.5s ease;
}

.faq-section a:hover {
  background-color: #fff;
  color: purple;
}

@media (min-width: 900px) {
  .faq-section h2 {
    font-size: 40px;
  }

  .faq-question::after {
    font-size: 35px;
  }
}

/*  about  */

.about {
  padding: 50px 0;
}

.about h2 {
  color: #121309;
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;

  background: #228941;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about__content p {
  color: #121309;
  font-size: 20px;
  font-style: normal;

  font-weight: 500;
  line-height: normal;
}

.about__content div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.about__content div img {
  width: 100%;
  max-width: 600px;
}

@media (min-width: 900px) {
  .about h2 {
    font-size: 40px;
  }

  .about__content {
    flex-direction: row;
    justify-content: space-between;
  }

  .about__content div {
    width: 50%;
  }

  .about__content p {
    width: 40%;
  }
}

/*  contact  */

.contact {
  padding: 180px 0 60px;
}

.contact h2 {
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-align: center;
  background: #228941;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
}

.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.contact__content div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__content div p {
  color: #228941;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (min-width: 900px) {
  .contact h2 {
    font-size: 40px;
  }

  .contact__content {
    flex-direction: row;
    gap: 40px;
  }
}

#age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.popup-box {
  background: #fff;
  padding: 30px;
  text-align: center;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.popup-box h2 {
  margin-bottom: 20px;
}
.popup-box .buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.popup-box button {
  min-width: 120px;
  margin: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.yes-btn {
  background-color: #28a745;
  color: white;
}

/*  footer  */

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;

  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;

  /* margin-bottom: 40px; */
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 20px 10px;

  border: 1px solid #228941;
  border-radius: 5px;
  font-size: 16px;
}

.contact__form button {
  background: #228941;
  color: #fff;
  border: none;
  width: fit-content;
  margin: 0 0 0 auto;
  padding: 10px 20px;

  font-size: 18px;
  cursor: pointer;

  transition: all 0.5s ease;
}

.contact__form button:hover {
  background-color: #fff;
  color: #228941;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.popup.active {
  visibility: visible;
  opacity: 1;
}

.popup p {
  color: #121309 !important;

  font-size: 20px;

  line-height: normal;
  letter-spacing: 0.6px;
}

.popup-content {
  background: #fff;
  padding: 40px;

  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.popup button {
  margin: 20px auto 0 auto;
  background: #228941;
  color: #fff;
  padding: 10px 35px;
  border: none;
}

.popup button:hover {
  background-color: #fff;
  color: #228941;
}

@media (min-width: 900px) {
  .contact__form {
    width: 70%;
    margin: 0;
  }

  .contact__form input,
  .contact__form button {
    height: 50px;
  }

  .contact__form button {
    font-size: 20px;
  }

  .contact__location {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;

    gap: 30px;
  }

  .contact__location div {
    width: 500px;
  }
}

.footer {
  padding: 50px 0;

  background-color: #0f1208;
}

.footer__logo img {
  width: 100%;
  max-width: 60px;
  margin: 0 auto 40px;
}

.footer__list-img {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.footer__list-img img {
  height: 100%;
  max-height: 80px;
  transition: transform 0.3s ease;
}

.footer__list-img img:hover {
  transform: scale(1.1);
}

.footer__list-link {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer__list-link li {
  color: #31a245;

  transition: all 0.5s ease;
}

.footer__list-link li:hover {
  color: #fff;
}

.footer h3 {
  text-align: center;
  padding: 15px;
  background-color: #fff;
  color: #31a245;
  width: fit-content;
  border-radius: 5px;
  font-size: 25px;
  margin: 0 auto 40px;
}

.footer p {
  color: #fff;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.6px;
  text-align: center;
}

.footer p a {
  color: #31a245;
  transition: all 0.5s ease;
}

.footer p a:hover {
  color: #fff;
}

@media (min-width: 900px) {
  .footer__list-link li {
    font-size: 22px;
  }
}

.add__page {
  padding: 150px 0 50px 0;
}

@media (min-width: 900px) {
  .add__page {
    padding: 200px 0 50px 0;
  }
}

.add__page h2 {
  margin-bottom: 30px;
  background: #228941;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.add__page h3,
.add__page p {
  margin-bottom: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 35%;
  background: #fff;
  color: #170b0b;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-size: 14px;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner button {
  background-color: #121309;
  color: #fff;
  border: none;
  margin-top: 15px;
  padding: 10px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-banner button:hover {
  background-color: #fff;
  color: #121309;
}
