@import-normalize; /* bring in normalize.css styles */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 125px;
  }
}
@media screen and (min-width: 1280px) {
  html {
    scroll-padding-top: 176px;
  }
}

:root {
  /* Colors */
  --white: #ffffff;
  --black: #2f2f37;
  --green: #568e3e;
  --yellow: #f9b805;
  --gray: #c2cbd2;

  /* Animation */
  --transition-dur-and-func: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  margin: 0;
  background-color: var(--white, #ffffff);
  color: var(--black, #2f2f37);
  font-style: normal;
  font-family: "Nunito", serif;
}

main,
footer {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a,
button {
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  padding: 0;
}

img {
  padding: 0;
  margin: 0;
}

.hidden-element {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

main {
  background: url("../img/mob-front-page-bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  padding-bottom: 122px;
  min-height: 100vh;
}

@media screen and (min-width: 768px) {
  main {
    background: url("../img/tab-front-page-bg.svg");
    padding-bottom: 221px;
  }
}

@media screen and (min-width: 1280px) {
  main {
    background: url("../img/desc-front-page-bg.svg");
    padding-bottom: 345px;
  }
}

.sub-title {
  color: var(--green, #568e3e);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
  cursor: pointer;
  transition: var(--transition-dur-and-func);
  margin-bottom: 8px;
}

.simple-title {
  color: var(--green, #568e3e);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
  cursor: pointer;
  transition: var(--transition-dur-and-func);
  margin-bottom: 12px;
}

.simple-title {
  cursor: auto;
}

.sub-title:hover,
.sub-title:focus {
  color: var(--yellow, #f9b805);
  text-decoration-line: underline;
}

.sub-description {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 342px;
}

@media screen and (min-width: 768px) {
  .sub-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .simple-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .sub-description {
    font-size: 20px;
    margin-bottom: 20px;
    max-width: 608px;
  }
}

@media screen and (min-width: 1280px) {
  .sub-title {
    font-size: 36px;
  }
  .simple-title {
    font-size: 36px;
    margin-bottom: 24px;
  }
  .sub-description {
    font-size: 24px;
    margin-bottom: 24px;
    max-width: 996px;
  }
}

.container {
  width: 100%;
  min-width: 320px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: auto;
  margin-right: auto;
}

/* MOBILE */
@media screen and (min-width: 375px) {
  .container {
    min-width: 375px;
    width: 100%;
    /* max-width: 480px; */
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* TABLET */
@media screen and (min-width: 768px) {
  .container {
    width: 768px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* DESKTOP */
@media screen and (min-width: 1280px) {
  .container {
    width: 100%;
    min-width: 1280px;
    max-width: 1440px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* FULL */
@media screen and (min-width: 1920px) {
  .container {
    width: 1920px;
    min-width: 1920px;
    max-width: 1920px;
    padding-left: 240px;
    padding-right: 240px;
  }
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white, #ffffff);
  border-top: 6px solid var(--green, #568e3e);
  height: 92px;
}
.header.scrolled {
  /* border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px; */
  /* border: 0.5px solid var(--green, #568e3e);
  border-top: 6px solid var(--green, #568e3e); */
  /* background: none; */
  background: linear-gradient(
    to bottom,
    var(--white, #ffffff) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.header.scrolled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    183deg,
    rgba(86, 142, 62, 0.7) 3.03%,
    rgba(227, 226, 226, 0.62) 83.58%
  );

  filter: blur(30px);
  z-index: 1;
}
.header .header-container {
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  z-index: 2;
}
.header-container__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 146px;
}
.header .header-container .burger-btn {
  display: flex;
  margin-left: auto;
}
.header .header-container .header-logo,
.header .header-container .header-logo img {
  width: 110px;
  height: 54px;
}
.header .header-container .header-menu {
  display: none;
  flex-grow: 1;
  justify-content: space-between;
}
.header .header-container .header-menu a {
  color: var(--black, #2f2f37);
  font-size: 18px;
  transition: var(--transition-dur-and-func);
}
.header .header-container .header-menu a:hover,
.header .header-container .header-menu a:focus,
.burger-menu .burger-container .nav-menu a:hover,
.burger-menu .burger-container .nav-menu a:focus {
  color: var(--green, #568e3e);
  font-weight: 700;
}

.burger-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: url("../img/mob-burger-menu-bg.svg"), var(--white, #ffffff);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  transition: opacity 600ms ease-in-out, visibility 600ms ease-in-out;
  padding-top: 112px;
}

.burger-menu.active {
  opacity: 1;
  visibility: visible;
  z-index: 998;
  overflow: scroll;
}

.burger-icon path {
  transition: var(--transition-dur-and-func);
}
.burger-icon.active #line0 {
  opacity: 0;
}
.burger-icon.active #line1 {
  transform: rotate(45deg) translate(-0.5px, 8px);
  transform-origin: center;
}
.burger-icon.active #line2 {
  transform: rotate(-45deg) translate(0px, -8.5px);
  transform-origin: center;
}

.burger-menu .nav-menu {
  margin-bottom: 24px;
}

.burger-menu .nav-menu li a {
  padding: 12px 0;
  display: flex;
  width: 100%;
  color: var(--black, #2f2f37);
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid var(--grey, #eee);
}

.header-menu-dropdown {
  align-items: center;
  display: flex;
  /* padding-top: 8px;
  padding-bottom: 18px;
  margin-right: 16px; */
}

.dropdown a:hover,
.dropdown a:focus {
  font-weight: 400 !important;
  color: #2f2f37 !important;
}

.dropdown {
  position: relative;
  font-size: 18px;
  background-color: transparent;
}

.dropdown-button {
  position: relative;
  display: flex;
  gap: 4px;
  align-items: flex-start;
  padding: 0;
  width: 61px;
  height: 19px;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  background-color: transparent;
}

.dropdown-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../img/arrow-down.svg");
  background-repeat: no-repeat;
  pointer-events: none;
}

.dropdown-list {
  display: none;
  z-index: 2;
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  overflow: hidden;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.dropdown-list-item {
  display: flex;
  gap: 4px;
}

.dropdown-list-item:first-child {
  border-bottom: 0.5px solid var(--grey, #c2cbd2);
}

.dropdown-list--visible {
  display: flex;
  flex-direction: column;
}

.dropdown-list-reverse {
  flex-direction: column-reverse;
}
.dropdown-list-reverse .dropdown-list-item:last-child {
  border-bottom: 0.5px solid var(--grey, #c2cbd2);
}
.dropdown-list-reverse .dropdown-list-item:first-child {
  border-bottom: none;
}

.burger-menu .burger-container-lang {
  display: flex;
  flex-direction: row;
  gap: 8px;
  font-size: 16px;
}

.burger-menu .burger-container-lang .dropdown-list {
  top: 1.5px;
}

@media screen and (min-width: 768px) {
  .header {
    height: 125px;
  }
  .header .header-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header .header-container .header-logo,
  .header .header-container .header-logo img {
    width: 160px;
    height: 79px;
  }
  .burger-menu {
    background: url("../img/tab-burger-menu-bg.svg"), var(--white, #ffffff);
    padding-top: 145px;
  }
  .burger-menu .nav-menu {
    margin-bottom: 32px;
  }
  .burger-menu .nav-menu li a {
    font-size: 18px;
  }
  .dropdown-button {
    width: 67px;
    height: 25px;
    font-size: 18px;
  }
  /* .dropdown-button::after {
    width: 24px;
    height: 24px;
  } */
  .dropdown-list {
    font-size: 18px;
  }
  .burger-menu .burger-container-lang {
    gap: 12px;
    font-size: 18px;
  }

  .burger-menu .burger-container-lang .dropdown-list {
    top: 0;
  }
}

@media screen and (min-width: 1280px) {
  .header {
    height: 176px;
  }
  .header .header-container {
    padding-top: 40px;
    padding-bottom: 18px;
  }
  .header-container__nav {
    gap: 96px;
  }
  .header .header-container .burger-btn {
    display: none;
  }
  .header .header-container .header-logo,
  .header .header-container .header-logo img {
    width: 220px;
    height: 109px;
  }
  .header .header-container .header-menu {
    display: flex;
  }
  .burger-menu {
    display: none;
  }
}

@media screen and (min-width: 1920px) {
  .header-container__nav {
    gap: 146px;
  }
}

.hero-section {
  padding-top: 92px;
  position: relative;
  padding-bottom: 20px;
}

.hero-section .hero-item {
  height: 720px;
  cursor: pointer;
}

.hero-section .hero-container {
  position: absolute;
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding-top: calc(275px + 92px);
  z-index: 99;
  padding-bottom: 275px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-section .hero-title {
  color: var(--white, #fff);
  text-align: center;
  text-shadow: 0.819px 0.819px 0.819px rgba(0, 0, 0, 0.25);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 281px;
  margin-bottom: 32px;
}

.hero-section .hero-btn {
  pointer-events: all;
  color: var(--white, #fff);
  font-size: 16px;
  display: flex;
  padding: 8.5px 21.5px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--green, #568e3e);
  transition: var(--transition-dur-and-func);
}

.hero-section .hero-btn:hover,
.hero-section .hero-btn:focus {
  color: var(--black, #2f2f37);
  background: var(--yellow, #f9b805);
}

.hero-section .swiper {
  padding-bottom: 40px;
}

.popular-section .swiper2 {
  padding-bottom: 20px;
}

.hero-section .swiper .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}

.popular-section .swiper2 .swiper-pagination-bullets {
  position: relative;
  bottom: -20px;
}

.hero-section .swiper .swiper-pagination-bullet,
.popular-section .swiper2 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  margin: 0 6px;
  opacity: 1;
  border: 1px solid #d9d9d9;
  cursor: pointer;
  transition: var(--transition-dur-and-func);
}

.hero-section .swiper .swiper-pagination-bullet-active,
.popular-section .swiper2 .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--green, #568e3e);
  border: 1px solid var(--green, #568e3e);
}

@media screen and (min-width: 768px) {
  .hero-section {
    padding-top: 125px;
    padding-bottom: 35px;
  }
  .hero-section .hero-container {
    padding-top: calc(162px + 125px);
    padding-bottom: 162px;
  }
  .hero-section .hero-item {
    height: 470px;
  }
  .hero-section .hero-title {
    font-size: 28px;
    max-width: 437px;
  }
}

@media screen and (min-width: 1280px) {
  .hero-section {
    padding-top: 176px;
    padding-bottom: 50px;
  }
  .hero-section .hero-container {
    padding-top: calc(226px + 176px);
    padding-bottom: 226px;
  }
  .hero-section .hero-item {
    height: 680px;
  }
  .hero-section .hero-title {
    font-size: 48px;
    max-width: 749px;
    margin-bottom: 48px;
  }
  .hero-section .hero-btn {
    font-size: 20px;
    padding: 12px 40px;
    border-radius: 12px;
  }
}

.popular-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.popular-section .popular-list .popular-item {
  display: flex;
  flex-direction: column;
  display: flex;
  height: 430px;
  width: 230px;
  padding: 45px 16px 16px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  border: 0.5px solid var(--grey, #c2cbd2);
  background: #fff;
  position: relative;
}

.popular-section .popular-list .popular-item .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: fit-content;
  display: inline-flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  color: var(--white, #fff);
  text-align: center;
  font-size: 10px;
}

.popular-section .popular-list .popular-item .badge.under-order {
  background: var(--blue, #0b99cd);
}

.popular-section .popular-list .popular-item .badge.in-stock {
  background: #568e3e;
}

.popular-section .popular-list .popular-item .badge.sold-out {
  background: #ca0828;
}

.popular-section .popular-list .popular-item .badge.is-expected {
  background: var(--yellow, #f9b805);
  color: var(--black, #2f2f37);
}

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

.popular-section .popular-list .popular-item .button {
  padding: 8px 30px;
  border-radius: 8.887px;
  background: var(--green, #568e3e);
  color: var(--white, #fff);
  font-size: 14px;
  transition: var(--transition-dur-and-func);
}

.popular-section .popular-list .popular-item .button:hover,
.popular-section .popular-list .popular-item .button:focus {
  color: var(--black, #2f2f37);
  background: var(--yellow, #f9b805);
}

.popular-section .popular-list .popular-item .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 95px;
}

.popular-section .popular-list .popular-item .text .popular-item__price {
  color: var(--black, #2f2f37);
  font-size: 20px;
  font-weight: 700;
  margin-top: auto;
}

.popular-section .popular-list .popular-item .text .popular-item__price span {
  font-size: 16px;
}

.popular-section .popular-list .popular-item .text h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.popular-section .popular-list .popular-item .text p {
  text-align: center;
  font-size: 14px;
}

.popular-section .popular-list .popular-item .image {
  height: 207px;
  width: 198px;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .popular-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .popular-section .popular-list .popular-item {
    height: 593px;
    width: 343px;
    padding: 60px 30px 30px;
    gap: 12px;
    border-radius: 12px;
    border: 1px solid var(--grey, #c2cbd2);
  }
  .popular-section .popular-list .popular-item .badge {
    top: 20px;
    right: 30px;
    font-size: 18px;
  }
  .popular-section .swiper2 {
    overflow: hidden;
  }
  .popular-section .popular-list .popular-item .text {
    height: 137px;
    margin-bottom: 20px;
  }
  .popular-section .popular-list .popular-item .text .popular-item__price {
    font-size: 32px;
  }
  .popular-section .popular-list .popular-item .text .popular-item__price span {
    font-size: 18px;
  }
  .popular-section .popular-list .popular-item .button {
    padding: 8px 40px;
    font-size: 16px;
  }
  .popular-section .popular-list .popular-item .text h3 {
    font-size: 20px;
  }
  .popular-section .popular-list .popular-item .text p {
    font-size: 20px;
  }
  .popular-section .popular-list .popular-item .image {
    width: 283px;
    height: 302px;
  }
}

@media screen and (min-width: 1280px) {
  .popular-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .popular-section .popular-list .popular-item {
    height: 744px;
    width: 464px;
    padding: 60px 40px 40px;
    gap: 20px;
    border-radius: 20px;
  }
  .popular-section .popular-list .popular-item .badge {
    top: 20px;
    right: 40px;
  }
  .popular-section .popular-list .popular-item .text {
    height: 155px;
  }
  .popular-section .popular-list .popular-item .button {
    padding: 12px 40px;
    border-radius: 12px;
    font-size: 20px;
  }
  .popular-section .popular-list .popular-item .text h3 {
    font-size: 24px;
  }
  .popular-section .popular-list .popular-item .text p {
    font-size: 24px;
  }
  .popular-section .popular-list .popular-item .image {
    width: 384px;
    height: 408px;
    border-radius: 12px;
  }
}

.services-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.services-section .services-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.services-section .services-list .services-item {
  width: 100%;
  height: 291px;
}

.services-section .services-list .services-item .card {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 214px 62px 8px 63px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
}

.services-section .services-list .services-item .text-wrap {
  display: flex;
  width: 218px;
  height: 69px;
  padding: 12px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--white, #fff);
}

.services-section .services-list .services-item .text-wrap h3 {
  position: relative;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 4px;
}

.services-section .services-list .services-item .text-wrap h3::after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 50%;
  height: 1px;
  width: 26px;
  transform: translate(-50%, -50%);
  background-color: var(--green, #568e3e);
}

@media screen and (min-width: 768px) {
  .services-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .services-section .services-list {
    flex-direction: row;
    gap: 20px;
  }
  .services-section .services-list .services-item {
    width: calc((100% - 20px) / 2);
  }
  .services-section .services-list .services-item .card {
    padding: 210px 58px 8px 58px;
  }
  .services-section .services-list .services-item .text-wrap {
    width: 227px;
    height: 73px;
  }
  .services-section .services-list .services-item .text-wrap h3 {
    font-size: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .services-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .services-section .services-list {
    gap: 24px;
  }
  .services-section .services-list .services-item {
    width: calc((100% - 24px) / 2);
    height: 601px;
  }
  .services-section .services-list .services-item .card {
    padding: 460px 162px 21px 162px;
  }
  .services-section .services-list .services-item .text-wrap {
    width: 384px;
    height: 120px;
    padding: 24px 68px;
    border-radius: 12px;
  }
  .services-section .services-list .services-item .text-wrap h3 {
    font-size: 22px;
    padding-bottom: 12px;
  }
  .services-section .services-list .services-item .text-wrap h3::after {
    bottom: -12px;
    height: 2px;
    width: 52px;
  }
}

.about-section {
  padding-top: 20px;
  padding-bottom: 40px;
}

.about-section .about-wrapper {
  display: flex;
  flex-direction: column;
}

.about-section .about-img {
  height: 330px;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 16px;
}

.about-section .about-wrapper {
  margin-bottom: 16px;
}

.about-section .about-wrapper .sub-text {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
}

.about-section .about-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-section .about-list .about-item {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  padding-left: 24px;
}

.about-section .about-list .about-item::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../img/arrow-down.svg);
  top: 50%;
  left: -8px;
  transform: translate(50%, -50%);
}

.about-section .about-counter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-section .about-counter-item {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.about-section .about-counter-item span {
  color: var(--green, #568e3e);
  font-family: "Montserrat", serif;
  font-size: 90px;
  font-weight: 600;
  text-align: right;
}

.about-section .about-counter-item:first-child span {
  width: 96px;
}

.about-section .about-counter-item:nth-child(2) span {
  /* min-width: 172px; */
  min-width: 156px;
}

.about-section .about-counter-item:last-child span {
  width: 113px;
}

.about-section .about-counter-item p {
  font-size: 14px;
  font-weight: 400;
  padding: 18px 0;
}

@media screen and (min-width: 768px) {
  .about-section {
    padding-top: 35px;
    padding-bottom: 70px;
  }
  .about-section .about-img {
    height: 368px;
    margin-bottom: 20px;
  }
  .about-section .about-wrapper .sub-text {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .about-section .about-wrapper {
    margin-bottom: 20px;
  }
  .about-section .about-list {
    gap: 10px;
  }
  .about-section .about-list .about-item {
    font-size: 16px;
  }
  .about-section .about-counter-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px;
  }
  .about-section .about-counter-item span {
    font-size: 110px;
  }
  .about-section .about-counter-item:first-child span {
    width: 116.5px;
  }
  .about-section .about-counter-item:nth-child(2) span {
    min-width: 209px;
  }
  .about-section .about-counter-item:last-child span {
    width: 138px;
  }
  .about-section .about-counter-item p {
    font-size: 16px;
    padding: 25px 0;
  }
}

@media screen and (min-width: 1280px) {
  .about-section {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .about-section .about-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }
  .about-section .about-img {
    width: 692px;
    height: 360px;
    margin-bottom: 0;
  }
  .about-section .about-wrapper {
    margin-bottom: 40px;
  }
  .about-section .about-wrapper div {
    width: 586px;
  }
  .about-section .about-wrapper .sub-text {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .about-section .about-list .about-item {
    font-size: 18px;
  }
  .about-section .about-counter-list {
    flex-wrap: nowrap;
    gap: 63px;
  }
  .about-section .about-counter-item {
    gap: 12px;
  }
  .about-section .about-counter-item span {
    font-size: 140px;
  }
  .about-section .about-counter-item:first-child span {
    width: 148px;
  }
  .about-section .about-counter-item:nth-child(2) span {
    min-width: 267px;
  }
  .about-section .about-counter-item:last-child span {
    width: 176px;
  }
  .about-section .about-counter-item p {
    font-size: 18px;
    padding: 33px 0;
  }
}

.footer {
  background: transparent;
  border-radius: 12px;
  border: 0.5px solid var(--green, #568e3e);
  height: 126px;
  margin-top: -126px;
}

.footer .container {
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer .container .logo,
.footer .container .logo img {
  display: flex;
  width: 110px;
  height: 54px;
  margin: 0 auto 12px;
}

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

.footer .footer-wrapper .btn-wrapper {
  width: 61px;
  display: flex;
  justify-content: flex-end;
}

.footer .footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.footer .footer-social a {
  height: 24px;
}

.footer .footer-social img {
  width: 24px;
  height: 24px;
}

.footer .footer-contacts {
  display: none;
}

.footer-desc-container {
  display: none;
}

@media screen and (min-width: 768px) {
  .footer {
    border-radius: 20px;
    height: 221px;
    margin-top: -221px;
    border: 1px solid var(--green, #568e3e);
  }
  .footer .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer .container .logo,
  .footer .container .logo img {
    width: 160px;
    height: 79px;
    margin: 0 auto 20px;
  }
  .footer .footer-lang {
    display: none;
  }
  .footer .burger-btn {
    display: none;
  }
  .footer .footer-contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .footer .footer-contacts li a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
  }
  .footer .footer-contacts li img {
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 1280px) {
  .footer {
    border-radius: 40px;
    height: 345px;
    margin-top: -345px;
  }
  .footer .container {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .footer .container .logo,
  .footer .container .logo img {
    width: 220px;
    height: 109px;
  }
  .footer-mob-container {
    display: none;
  }
  .footer-desc-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer-desc-container div:first-child {
    width: 262px;
  }
  .footer-desc-container div:first-child h3 {
    color: var(--green, #568e3e);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  .footer-desc-container div:first-child .footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-desc-container div:first-child .footer-contacts a {
    font-size: 18px;
  }
  .footer-desc-container div:nth-child(2) {
    width: 345px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-desc-container .hero-btn {
    color: var(--white, #fff);
    font-size: 20px;
    display: flex;
    padding: 12px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: var(--green, #568e3e);
    transition: var(--transition-dur-and-func);
    margin-bottom: 12px;
  }
  .footer-desc-container .hero-btn:hover,
  .footer-desc-container .hero-btn:focus {
    color: var(--black, #2f2f37);
    background: var(--yellow, #f9b805);
  }
  .footer-desc-container div:nth-child(2) .footer-social {
    margin-bottom: 16px;
  }
  .footer-desc-container div:nth-child(2) p {
    font-size: 18px;
    font-weight: 400;
  }
  .footer-desc-container div:last-child {
    width: 262px;
    text-align: right;
  }
  .footer-desc-container div:last-child .header-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-desc-container div:last-child .header-menu a {
    font-size: 18px;
    font-weight: 400;
    transition: var(--transition-dur-and-func);
  }
  .footer-desc-container div:last-child .header-menu a:hover,
  .footer-desc-container div:last-child .header-menu a:focus {
    color: var(--green, #568e3e);
    font-weight: 700;
  }
}
