@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Unbounded", sans-serif;
  background: #FFF;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #FFF;
}

[class*=__container] {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

.title {
  font-size: clamp(30px, 6vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FF9F05 0%, #F07 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[class*=__text] {
  color: #202020;
  font-size: 14px;
  font-weight: 400;
}

.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 60px;
  border: 3px solid #FFF;
  background: linear-gradient(90deg, #FF9F05 0%, #F07 100%);
  padding: 24px 50px;
}

.m-60 {
  margin: 60px 0;
}

.white {
  color: #fff;
}

.text-center {
  text-align: center;
}

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

.footer {
  padding-bottom: 20px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__text {
  color: rgba(32, 32, 32, 0.5);
  text-align: center;
}
@media (max-width: 767px) {
  .footer .header__menu {
    flex-direction: column;
    gap: 20px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 500px;
  width: 100%;
  border-radius: 26px;
  background: #202020;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.cookies__btns {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.cookies__btn {
  width: 100%;
}
.cookies__btn:last-child {
  border: 3px solid #FFF;
  background: transparent;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #FFF;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #202020;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu a {
  color: #202020;
  font-size: 14px;
  font-weight: 400;
}

.hero {
  background: linear-gradient(180deg, #00560C 0%, #33AC44 100%);
  margin: 70px 0 0;
}
@media (max-width: 991px) {
  .hero {
    padding: 30px 0;
  }
}
@media (max-width: 575px) {
  .hero {
    margin: 107px 0 0;
  }
}
.hero__content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero__content {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .hero__img {
    height: 500px;
  }
  .hero__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero__title {
  color: #FFF;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
}
.hero__text {
  max-width: 364px;
}
.hero__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero__block {
    position: static;
    margin-left: auto;
  }
}

.about {
  margin-top: 60px;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__row {
  display: flex;
  align-items: center;
  gap: 57px;
}
@media (max-width: 1023px) {
  .about__row {
    flex-direction: column;
    gap: 30px;
  }
}
.about___text {
  max-width: 250px;
}
@media (max-width: 1023px) {
  .about___text {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .about__img {
    height: 380px;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.faq__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1023px) {
  .faq__content {
    flex-direction: column;
  }
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border: 3px solid #202020;
  padding: 20px;
  border-radius: 30px;
  display: flex;
  gap: 15px;
  cursor: pointer;
}
.faq__name {
  font-size: 24px;
}
@media (max-width: 767px) {
  .faq__img {
    height: 516px;
  }
  .faq__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.faq__txt {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}
.faq__item.active .faq__txt {
  max-height: 500px;
  margin-top: 10px;
}
.faq__arrow {
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
.faq__arrow {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.faq__item.active .faq__arrow {
  transform: rotate(180deg);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 575px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.catalog .privacy__content {
  max-width: 400px;
}
@media (max-width: 1023px) {
  .catalog .privacy__content {
    max-width: 100%;
  }
}
.catalog__card {
  position: relative;
}
.catalog__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__card a {
  position: absolute;
  inset: 0;
}

.product__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.product__row {
  display: flex;
  gap: 30px;
}
.product__row_center {
  align-items: center;
}
@media (max-width: 1023px) {
  .product__row {
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .product__img {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .product__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.product__img-sub {
  margin-top: auto;
}
.product__title-sub {
  font-size: clamp(30px, 4vw, 46px);
}

.contact {
  padding: 30px 0;
  background: linear-gradient(180deg, #00560C 0%, #33AC44 100%);
}
.contact__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .contact__content {
    flex-direction: column;
  }
}
.contact__title {
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  color: #FFF;
}
.contact__address {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 3px solid #fff;
  border-radius: 22px;
  padding: 20px;
}
.contact__address p,
.contact__address a {
  color: #FFF;
  font-weight: 900;
  font-size: 18px;
}
@media (max-width: 575px) {
  .contact__address p,
  .contact__address a {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .contact__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.privacy {
  margin: 70px 0 0;
  padding: 0 0 60px;
}
@media (max-width: 575px) {
  .privacy {
    margin: 107px 0 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.privacy__content_center {
  align-items: center;
}