@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --index: calc(1vw + 1vh);
  --font-size: 16px;
  --line-height: 1.4;
  --item-width: 325px;
  --burger-color: black;
  --burger-color-active: black;
  --container-width: calc(1284px + 60px);
  --container-padding: 30px;
  --font-default: "Montserrat", sans-serif;
  --transition: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  --transition2: cubic-bezier(0.785, 0.135, 0.150, 0.860);
  --transition3: cubic-bezier(0.715, -0.235, 0.120, 1.300);
  --bg-body: white;
  --grey-bg: #F1F1F1;
  --color-body: #000000;
  --color-text: #000000;
  --primary: #5B9E2D;
}
@media screen and (max-width: 480px) {
  :root {
    --item-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --container-padding: 10px;
  }
}

/* responsive */
@font-face {
  font-family: "Diatype";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Diatype/ABCDiatype-Regular.woff2") format("woff2");
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
}

a {
  transition: 0.3s ease;
}
a:hover {
  opacity: 0.6;
}
a:hover {
  color: var(--primary);
}

input,
a {
  outline: none !important;
  color: var(--color-text);
}

button,
input,
textarea {
  font-family: var(--font-default);
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*::-webkit-input-placeholder {
  opacity: 1;
}

*:-moz-placeholder {
  opacity: 1;
}

*::-moz-placeholder {
  opacity: 1;
}

*:-ms-input-placeholder {
  opacity: 1;
}

input:focus {
  outline: none;
}

html {
  font-size: var(--font-size);
}

body {
  background: var(--bg-body);
  font-size: var(--font-size);
  min-width: 320px;
  position: relative;
  line-height: var(--line-height);
  font-family: var(--font-default);
  font-weight: normal;
  font-style: normal;
  color: var(--color-body);
  border-top: 8px solid var(--color-blue-light);
}
@media screen and (max-width: 992px) {
  body {
    border-top: 4px solid var(--color-blue-light);
  }
}
body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}
@media screen and (max-width: 992px) {
  body.no-scroll {
    padding-right: 0px;
  }
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}

@media screen and (min-width: 480px) {
  .-md4-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .-md3-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 1280px) {
  .-md1-hidden {
    display: none !important;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  max-width: var(--container-width);
}

.container-fluid {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
}

.burger-content {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999;
}
.burger-content__body {
  position: absolute;
  top: 120px;
  left: 30px;
  background: white;
  width: calc(100% - 60px);
  height: calc(100% - 120px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .burger-content__body {
    left: 10px;
    width: calc(100% - 20px);
  }
}
.burger-content__body ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.burger-content__body ul li a {
  text-decoration: none;
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .burger-content__body ul li a {
    font-size: 22px;
  }
}
.burger-content__body .homeheader__soc {
  margin-left: 0;
  gap: 15px;
}
@media screen and (max-width: 480px) {
  .burger-content__body .homeheader__soc {
    gap: 10px;
  }
}
.burger-content__body .homeheader__soc a {
  min-width: 52px;
  max-width: 52px;
  height: 52px;
}
@media screen and (max-width: 480px) {
  .burger-content__body .homeheader__soc a:not(:last-child) {
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .burger-content__body .homeheader__soc a {
    min-width: 32px;
    max-width: 32px;
    height: 32px;
  }
}
.burger-content__body .homeheader__soc a img {
  max-width: 25px;
  max-height: 25px;
}
@media screen and (max-width: 480px) {
  .burger-content__body .homeheader__soc a img {
    max-width: 15px;
    max-height: 15px;
  }
}
.burger-content__body .homeheader__btn {
  margin-left: 0;
  font-size: 22px;
  padding: 13px 30px;
  display: block !important;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .burger-content__body .homeheader__btn {
    font-size: 20px;
    width: 100%;
    padding: 13px 0;
  }
}

.burger {
  cursor: pointer;
  display: none;
  width: 26px;
  position: relative;
  z-index: 1000;
  padding-bottom: 7.5px;
  margin-left: 20px;
}
@media screen and (max-width: 992px) {
  .burger {
    display: block;
  }
}
.burger i {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  transition: all 0.2s ease-out;
}
.burger i::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  top: -9px;
}
.burger i::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  bottom: -9px;
}
.burger.active i {
  background: transparent;
}
.burger.active i::before {
  top: 0;
  transform: rotateZ(45deg);
  background: var(--burger-color-active);
}
.burger.active i::after {
  bottom: 0;
  transform: rotateZ(-45deg);
  background: var(--burger-color-active);
}

.title {
  font-size: 32px;
  font-family: "Comfortaa", sans-serif;
  font-weight: bold;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 26px;
  }
}
.title span {
  color: var(--primary);
}

.aioseo-breadcrumbs {
  font-weight: 500;
  font-size: 12px;
}
.aioseo-breadcrumbs .aioseo-breadcrumb {
  font-weight: 600;
}
.aioseo-breadcrumbs .aioseo-breadcrumb a {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  font-weight: 500;
}
.aioseo-breadcrumbs .aioseo-breadcrumb-separator {
  color: rgba(0, 0, 0, 0.5);
}

.homeheader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 1000;
}
.homeheader__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 130px;
  gap: 50px;
}
@media screen and (max-width: 1200px) {
  .homeheader__body {
    padding-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .homeheader__body {
    background: white;
    border-radius: 16px;
    padding: 6px 20px;
    gap: 20px;
  }
}
.homeheader__body ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .homeheader__body ul {
    display: none;
  }
}
.homeheader__body ul li {
  display: flex;
  align-items: center;
}
.homeheader__body ul li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
}
.homeheader__body ul li:last-child a {
  padding: 9px 17.5px;
  border-radius: 100px;
  border: 1px solid black;
}
.homeheader__logo {
  display: flex;
  align-items: center;
  max-width: 120px;
}
@media screen and (max-width: 992px) {
  .homeheader__logo {
    display: none;
  }
}
.homeheader__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.homeheader__logo--mob {
  display: none;
}
.homeheader__logo--mob img {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .homeheader__logo--mob {
    display: flex;
    align-items: center;
    max-width: 120px;
    width: 100%;
  }
}
.homeheader__right {
  display: flex;
  align-items: center;
}
.homeheader__soc {
  display: flex;
  gap: 7px;
  margin-left: 49px;
}
@media screen and (max-width: 1200px) {
  .homeheader__soc {
    margin-left: 20px;
  }
}
.homeheader__soc a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 100%;
  border: 1px solid black;
}
@media screen and (max-width: 480px) {
  .homeheader__soc a:not(:last-child) {
    display: none;
  }
  .burger-content .homeheader__soc {
    display: flex !important;
  }
}
.homeheader__soc a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 15px;
  max-height: 15px;
}
.homeheader__btn {
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 100px;
  padding: 8.5px 13.5px;
}
@media screen and (max-width: 768px) {
  .homeheader__btn {
    display: none;
  }
  .homeheader__soc, .header__soc {
    display: none !important;
  }
  .burger-content .homeheader__soc {
    display: flex !important;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 0 0 0;
  z-index: 1000;
}

.header--fixed {
  position: fixed;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.header--fixed .header__body {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header--fixed.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header .burger {
  margin-left: 0;
}
.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: white;
  border-radius: 16px;
  padding: 6px 56px;
}
@media screen and (max-width: 1200px) {
  .header__body {
    padding: 6px 15px;
  }
}
.header ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 29px;
}
@media screen and (max-width: 1200px) {
  .header ul {
    gap: 15px;
  }
}
@media screen and (max-width: 992px) {
  .header ul {
    display: none;
  }
}
.header ul li {
  display: flex;
  align-items: center;
}
.header ul li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
}
.header ul li:last-child a {
  padding: 9px 17.5px;
  border-radius: 100px;
  border: 1px solid black;
}
@media screen and (max-width: 1200px) {
  .header ul li:last-child a {
    padding: 6px 12px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  max-width: 95px;
  min-width: 30px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__soc {
  display: flex;
  gap: 6px;
}
.header__soc a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  max-width: 38px;
  height: 38px;
  border-radius: 100%;
  border: 1px solid black;
}
@media screen and (max-width: 1200px) {
  .header__soc a {
    min-width: 32px;
    max-width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 480px) {
  .header__soc a:not(:last-child) {
    display: none;
  }
}
.header__soc a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 18px;
  max-height: 18px;
}
@media screen and (max-width: 1200px) {
  .header__soc a img {
    max-width: 15px;
    max-height: 15px;
  }
}
.header__btns {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .header__btns {
    display: none;
  }
}
.header__btn {
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  border-radius: 100px;
  padding: 11.5px 16.5px;
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary);
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .header__btn {
    padding: 9px 13px;
  }
}
.header__btn:hover {
  color: white;
}
.header__btn--outline {
  background: transparent;
  color: var(--primary);
}
.header__btn--outline:hover {
  color: var(--primary);
}

.mainsect {
  padding: 0 0 80px;
  background: var(--grey-bg);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mainsect {
    padding-bottom: 70px;
  }
}
.mainsect__body {
  padding-top: 114px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mainsect__body {
    padding-top: 100px;
  }
}
.mainsect__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  height: 490px;
  background: var(--primary);
  border-radius: 0 0 9px 9px;
}
@media screen and (max-width: 768px) {
  .mainsect__body::before {
    opacity: 0.1;
  }
}
.mainsect__top {
  display: flex;
  justify-content: space-between;
  margin-right: 90px;
  position: relative;
  z-index: 1;
  gap: 25px;
}
@media screen and (max-width: 1200px) {
  .mainsect__top {
    margin-right: 0;
  }
}
.mainsect__img {
  display: flex;
  align-items: center;
  margin-left: -9px;
}
@media screen and (max-width: 768px) {
  .mainsect__img {
    display: none;
  }
}
.mainsect__top-right {
  margin-top: 56px;
  max-width: 681px;
}
@media screen and (max-width: 768px) {
  .mainsect__top-right {
    max-width: 100%;
    margin-top: 0;
  }
}
.mainsect__title {
  margin-bottom: 32px;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 118%;
}
@media screen and (max-width: 992px) {
  .mainsect__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .mainsect__title {
    margin-bottom: 25px;
  }
}
.mainsect__title span {
  color: var(--primary);
}
.mainsect__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.mainsect__btn {
  border-radius: 100px;
  padding: 16.25px 28px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  line-height: 100%;
}
.mainsect__btn:hover {
  color: white;
}
.mainsect__btn--outline {
  background: transparent;
  color: var(--primary);
}
.mainsect__btn--outline:hover {
  color: var(--primary);
}
.mainsect__items {
  display: flex;
  justify-content: space-between;
  margin-top: 21px;
  padding-left: 15px;
  position: relative;
  z-index: 1;
  gap: 35px;
}
@media screen and (max-width: 1200px) {
  .mainsect__items {
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .mainsect__items {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 35px;
         column-gap: 35px;
    row-gap: 35px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 480px) {
  .mainsect__items {
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 24px;
  }
}
.mainsect__item {
  max-width: 240px;
  width: 100%;
  min-height: 194px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 9px;
  background: linear-gradient(180deg, #5B9E2D 0%, #169D4A 100%);
  padding: 126px 28px 30px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .mainsect__item {
    padding: 100px 20px 25px;
  }
}
@media screen and (max-width: 768px) {
  .mainsect__item {
    grid-column: 6 span;
    max-width: 100%;
    min-height: 150px;
  }
}
@media screen and (max-width: 480px) {
  .mainsect__item {
    grid-column: 6 span;
    min-height: 110px;
    padding: 80px 14px 18px;
  }
}
.mainsect__item-img {
  min-width: 107px;
  max-width: 107px;
  height: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: white;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  position: absolute;
  left: -24px;
  top: -12px;
}
@media screen and (max-width: 992px) {
  .mainsect__item-img {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .mainsect__item-img {
    left: -15px;
  }
}
@media screen and (max-width: 480px) {
  .mainsect__item-img {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    left: -10px;
    top: -10px;
  }
}
.mainsect__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 60px;
  max-height: 60px;
}
@media screen and (max-width: 992px) {
  .mainsect__item-img img {
    max-width: 40px;
    max-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .mainsect__item-img img {
    max-width: 30px;
    max-height: 30px;
  }
}
.mainsect__item-title {
  color: white;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
}

.control {
  padding: 77px 0 103px;
  background: white;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .control {
    padding: 40px 0 70px;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
  }
}
.control__body {
  border-radius: 9px;
  background: var(--grey-bg);
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  padding: 58px 58px 58px 0;
  position: relative;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .control__body {
    padding: 40px 40px 40px 0;
  }
}
@media screen and (max-width: 992px) {
  .control__body {
    flex-direction: column;
    gap: 100px;
  }
}
@media screen and (max-width: 768px) {
  .control__body {
    gap: 40px;
    padding: 25px 25px 25px 0;
  }
}
.control__body::before {
  content: "";
  position: absolute;
  left: -52px;
  bottom: -492px;
  min-width: 736px;
  max-width: 736px;
  height: 736px;
  background: radial-gradient(118.02% 81.75% at -3.62% 50.05%, #5B9E2D 66.83%, #169D4A 100%);
  border-radius: 100%;
  transform: rotate(-90deg);
}
@media screen and (max-width: 992px) {
  .control__body::before {
    right: -550px;
    left: auto;
    bottom: 130px;
  }
}
@media screen and (max-width: 768px) {
  .control__body::before {
    opacity: 0.1;
  }
}
.control__left {
  display: flex;
  position: relative;
  gap: 28px;
}
@media screen and (max-width: 992px) {
  .control__left {
    justify-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .control__left {
    flex-direction: column;
    gap: 30px;
  }
}
.control__left-items {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
}
.control__left-item {
  background: var(--grey-bg);
  border-radius: 0 100px 100px 0;
  position: relative;
  padding: 27px 107px 22px 58px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .control__left-item {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .control__left-item {
    background: white;
    padding-right: 70px;
    width: 100%;
  }
}
.control__left-item:nth-child(2n) {
  background: var(--primary);
  color: var(--grey-bg);
}
.control__left-item:nth-child(1) .control__left-item-title {
  max-width: 147px;
}
.control__left-item:nth-child(2) .control__left-item-title {
  max-width: 240px;
}
.control__left-item:nth-child(3) .control__left-item-title {
  max-width: 257px;
}
.control__left-item-title {
  font-size: 16px;
  width: 100%;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .control__left-item-title {
    max-width: 100% !important;
  }
}
.control__left-item-img {
  position: absolute;
  right: 0;
  bottom: -10px;
  max-width: 93px;
}
@media screen and (max-width: 768px) {
  .control__left-item-img {
    max-width: 70px;
  }
}
.control__left-promo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.56px;
  text-align: center;
  background: white;
  border-radius: 100%;
  height: 203px;
  min-width: 207px;
  max-width: 207px;
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .control__left-promo {
    margin-top: 0;
    margin-left: 25px;
    align-self: center;
  }
}
.control__left-promo::after {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  border-radius: 100%;
  border: 1px solid var(--primary);
  width: calc(100% + 16px);
  height: calc(100% + 16px);
}
.control__left-promo-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 55.17px;
  line-height: 120%;
}
.control__left-promo-desc {
  font-weight: 600;
  font-size: 18.39px;
  max-width: 134px;
  line-height: 120%;
}
.control__left-img {
  position: absolute;
  left: 30px;
  min-width: 598px;
  max-width: 598px;
  height: 598px;
  top: -70px;
}
@media screen and (max-width: 992px) {
  .control__left-img {
    left: 50%;
    transform: translateX(-50%);
    min-width: 500px;
    max-width: 500px;
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .control__left-img {
    display: none;
  }
}
.control__left-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.control__right {
  max-width: 410px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .control__right {
    max-width: 350px;
  }
}
@media screen and (max-width: 992px) {
  .control__right {
    max-width: 100%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .control__right {
    padding-left: 25px;
  }
}
.control__right form {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.control__right form input:not([type=submit]) {
  margin-bottom: 12px;
  background: white;
  border-radius: 16px;
  border: none;
  padding: 21px 29px;
  font-size: 12px;
}
.control__right form input:not([type=submit])::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.control__right form input:not([type=submit])::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.control__right form input[type=submit] {
  background: var(--primary);
  border: none;
  color: white;
  padding: 20px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14.58px;
  cursor: pointer;
  transition: 0.3s ease;
}
.control__right form input[type=submit]:hover {
  opacity: 0.6;
}
.control__right-title {
  margin-bottom: 16px;
}
.control__right-desc {
  margin-bottom: 32px;
  font-weight: 500;
}

.about {
  background: var(--grey-bg);
  padding: 72px 0 95px;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 40px 0 40px;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
  }
}
.about__desc {
  max-width: 542px;
  margin-top: 16px;
  margin-bottom: 44px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .about__desc {
    margin-bottom: 25px;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
}
.about__items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .about__items {
    flex-direction: column;
  }
}
.about__items--top {
  position: relative;
}
.about__items--top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: black;
}
@media screen and (max-width: 768px) {
  .about__items--top::after {
    height: 100%;
    top: 0;
    width: 2px;
    left: 5px;
  }
}
.about__items--top .about__item {
  padding-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .about__items--top .about__item {
    padding: 0;
    padding-left: 25px;
  }
}
.about__items--top .about__item::after {
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .about__items--top .about__item::after {
    left: 0;
    transform: translateY(-50%);
    top: 50%;
  }
}
.about__items--top .about__item:first-child::after {
  left: 0;
  transform: none;
}
@media screen and (max-width: 768px) {
  .about__items--top .about__item:first-child::after {
    top: 0;
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .about__items--top .about__item:last-child {
    padding-bottom: 20px;
  }
}
.about__items--top .about__item:last-child::after {
  right: 0;
  transform: none;
  left: auto;
}
@media screen and (max-width: 768px) {
  .about__items--top .about__item:last-child::after {
    right: auto;
    left: 0;
  }
}
.about__items--bottom {
  justify-content: space-around;
  padding: 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__items--bottom {
    padding: 0;
  }
}
.about__items--bottom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: black;
  display: none;
}
@media screen and (max-width: 768px) {
  .about__items--bottom::after {
    height: 100%;
    top: 0;
    width: 2px;
    display: block;
    left: 5px;
  }
}
.about__items--bottom .about__item {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .about__items--bottom .about__item {
    padding: 0;
    padding-left: 25px;
  }
}
.about__items--bottom .about__item::after {
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .about__items--bottom .about__item::after {
    left: 0;
    transform: translateY(-50%);
    top: 50%;
    right: auto;
  }
}
@media screen and (max-width: 768px) {
  .about__items--bottom .about__item:last-child::after {
    bottom: 0;
    transform: none;
    top: auto;
  }
}
.about__item {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  position: relative;
}
.about__item::after {
  content: "";
  position: absolute;
  min-width: 12px;
  max-width: 12px;
  height: 12px;
  border-radius: 100%;
  background: black;
}
.about__item-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about__item-img {
  min-width: 38px;
  max-width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about__item-title {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 16px;
  max-width: 143px;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .about__item-title {
    max-width: 100%;
  }
}
.about__item-desc {
  font-weight: 500;
  font-size: 12px;
  max-width: 293px;
}
@media screen and (max-width: 768px) {
  .about__item-desc {
    max-width: 100%;
  }
}

.learn {
  padding-bottom: 109px;
  background: var(--grey-bg);
}
@media screen and (max-width: 768px) {
  .learn {
    padding-bottom: 60px;
  }
}
.learn__body {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 992px) {
  .learn__body {
    flex-direction: column;
  }
}
.learn__left {
  width: 43%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .learn__left {
    width: 100%;
    display: contents;
  }
  .learn__left .title {
    order: 1;
  }
  .learn__left .learn__desc {
    order: 2;
  }
  .learn__right {
    order: 3;
  }
  .learn__left .learn__total {
    order: 4;
  }
}
.learn .title {
  max-width: 431px;
}
.learn__desc {
  margin-top: 16px;
  max-width: 359px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .learn__desc {
    margin-bottom: 25px;
  }
}
.learn__total {
  background: white;
  border-radius: 9px;
  padding: 47px 58px 58px;
  margin-top: auto;
}
@media screen and (max-width: 1200px) {
  .learn__total {
    padding: 45px;
  }
}
@media screen and (max-width: 768px) {
  .learn__total {
    padding: 25px;
  }
}
.learn__label {
  margin-bottom: 18px;
  font-weight: 600;
  opacity: 0.5;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .learn__label {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
.learn__norma {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 31px;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .learn__norma {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
.learn__norma.active {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .learn__norma.active {
    font-size: 24px;
  }
}
.learn__result-wrap {
  display: none;
}
.learn__result-wrap.active {
  display: block;
}
.learn__result {
  background: var(--grey-bg);
  border-radius: 16px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media screen and (max-width: 768px) {
  .learn__result {
    padding: 20px;
  }
}
.learn__result-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.learn__result-icon {
  display: flex;
  align-items: center;
  border-radius: 100%;
  min-width: 35px;
  max-width: 35px;
  height: 35px;
  justify-content: center;
  background: white;
  opacity: 0.5;
}
.learn__result-title {
  font-weight: 600;
  opacity: 0.5;
}
.learn__result-text {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.5;
}
.learn__total-btn {
  margin-top: 38px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: white;
  background: var(--primary);
  font-weight: 600;
  padding: 16.5px;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .learn__total-btn {
    margin-top: 25px;
  }
}
@media screen and (max-width: 480px) {
  .learn__total-btn {
    font-size: 14px;
    padding: 16.5px 10px;
  }
}
.learn__total-btn:hover {
  color: white;
}
.learn__total-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
  background: var(--grey-bg);
  color: black;
}
.learn__right {
  width: 57%;
  padding: 58px;
  background: white;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .learn__right {
    padding: 45px;
  }
}
@media screen and (max-width: 992px) {
  .learn__right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .learn__right {
    padding: 25px;
  }
}
.learn__genders {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 9px;
       column-gap: 9px;
  row-gap: 9px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .learn__genders {
    margin-bottom: 25px;
  }
}
.learn__genders.error {
  outline: 2px solid #e53e3e;
  border-radius: 9px;
}
.learn__gender {
  grid-column: 6 span;
}
@media screen and (max-width: 480px) {
  .learn__gender {
    grid-column: 12 span;
  }
}
.learn__gender input {
  display: none;
}
.learn__gender input:checked + .learn__gender-wrap {
  background: var(--primary);
  color: white;
}
.learn__gender input:checked + .learn__gender-wrap .learn__gender-icon {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.learn__gender-wrap {
  background: var(--grey-bg);
  border-radius: 9px;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  gap: 14.58px;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .learn__gender-wrap {
    padding: 14px 22px;
  }
}
.learn__gender-icon {
  display: flex;
  align-items: center;
  opacity: 0.5;
}
.learn__gender-text {
  font-weight: 600;
  font-size: 12px;
}
.learn__params {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 9px;
       column-gap: 9px;
  row-gap: 9px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .learn__params {
    margin-bottom: 25px;
  }
}
.learn__param {
  grid-column: 4 span;
  display: flex;
  align-items: center;
  background: var(--grey-bg);
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .learn__param {
    grid-column: 12 span;
  }
}
.learn__param input {
  padding: 22px 5px 22px 29px;
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .learn__param input {
    padding: 22px 5px 22px 22px;
  }
}
.learn__param.error {
  outline: 2px solid #e53e3e;
}
.learn__param-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-right: 15px;
}
.learn__param-control {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.learn__param-control:hover {
  opacity: 0.6;
}
.learn__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 8px;
  margin-bottom: 41px;
}
@media screen and (max-width: 768px) {
  .learn__items {
    margin-bottom: 25px;
  }
}
.learn__item {
  grid-column: 6 span;
}
@media screen and (max-width: 480px) {
  .learn__item {
    grid-column: 12 span;
  }
}
.learn__select {
  background: var(--grey-bg);
  border: none;
  width: 100%;
  padding: 21px 29px;
  font-weight: 600;
  font-size: 12px;
  border-radius: 9px;
  appearance: none;
  -webkit-appearance: none; /* Safari/Chrome */
  -moz-appearance: none;
  background-image: url("../img/learn-dropdown.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 23px;
  padding-right: 33px;
  color: var(--color-body);
}
@media screen and (max-width: 768px) {
  .learn__select {
    padding-left: 22px;
  }
}
.learn__right-btns {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.learn__right-btn {
  background: var(--primary);
  border: none;
  border-radius: 16px;
  color: white;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
  line-height: 100%;
  transition: 0.3s ease;
}
.learn__right-btn:hover {
  opacity: 0.6;
}
.learn__right-btn--reset {
  border: 0.73px solid #000000;
  padding: 19px;
  font-size: 12px;
  opacity: 0.5;
  background: transparent;
  color: black;
}

.choose {
  border-radius: 30px 30px 0 0;
  background: white;
  margin-top: -30px;
  padding: 76px 0 72px;
}
@media screen and (max-width: 768px) {
  .choose {
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    padding: 40px 0;
  }
}
.choose__desc {
  max-width: 297px;
  margin-top: 16px;
}
.choose__items {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 12px;
}
@media screen and (max-width: 768px) {
  .choose__items {
    margin-top: 25px;
    gap: 6px;
  }
}
.choose__item {
  grid-column: 2 span;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .choose__item {
    grid-column: 3 span;
  }
}
@media screen and (max-width: 768px) {
  .choose__item {
    grid-column: 4 span;
  }
}
@media (max-width: 576px) {
  .choose__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 480px) {
  .choose__item-wrap {
    padding: 10px !important;
  }
  .choose__item-title {
    font-size: 12px !important;
  }
}
.choose__item input {
  display: none;
}
.choose__item input:checked + .choose__item-wrap {
  background: var(--primary);
  color: white;
}
.choose__item input:checked + .choose__item-wrap .choose__item-icon {
  opacity: 1;
}
.choose__item input:checked + .choose__item-wrap .choose__item-icon svg {
  color: var(--primary);
}
.choose__item-wrap {
  background: var(--grey-bg);
  padding: 20px;
  border-radius: 9px;
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .choose__item-wrap {
    padding: 15px;
  }
}
.choose__item-top {
  display: flex;
  align-items: center;
  gap: 11px;
}
.choose__item-icon {
  min-width: 35px;
  max-width: 35px;
  height: 35px;
  border-radius: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.choose__item-icon svg {
  color: black;
}
.choose__item-title {
  font-weight: 600;
  font-size: 14.58px;
  line-height: 100%;
}
.choose__item-desc {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.progmenu {
  padding-bottom: 71px;
  display: none;
}
.progmenu.active {
  display: block;
}
@media screen and (max-width: 768px) {
  .progmenu {
    padding-bottom: 40px;
  }
}
.progmenu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .progmenu__top {
    margin-bottom: 25px;
  }
}
@media (max-width: 650px) {
  .progmenu__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.progmenu__els {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .progmenu__els {
    gap: 20px;
  }
}
.progmenu__el {
  position: relative;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media screen and (max-width: 768px) {
  .progmenu__el {
    gap: 6px;
  }
}
.progmenu__el:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background: black;
  opacity: 0.5;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
}
@media screen and (max-width: 768px) {
  .progmenu__el:not(:last-child)::after {
    right: -10px;
  }
}
.progmenu__el span {
  opacity: 0.5;
}
.progmenu__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}
.progmenu__menu-item {
  flex: 1 1 calc((100% - 6 * 12px) / 7);
}
@media screen and (max-width: 992px) {
  .progmenu__menu-item {
    flex: 1 1 calc((100% - 3 * 12px) / 4);
  }
}
@media screen and (max-width: 768px) {
  .progmenu__menu {
    gap: 8px;
  }
  .progmenu__menu-item {
    flex: 1 1 calc((100% - 2 * 8px) / 3);
  }
}
@media screen and (max-width: 480px) {
  .progmenu__menu-item {
    flex: 1 1 calc((100% - 8px) / 2);
  }
}
.progmenu__menu-item {
  cursor: pointer;
}
.progmenu__menu-item input {
  display: none;
}
.progmenu__menu-item span {
  display: block;
  padding: 19px;
  border-radius: 100px;
  background: var(--grey-bg);
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .progmenu__menu-item span {
    padding: 19px 30px;
  }
}
@media screen and (max-width: 768px) {
  .progmenu__menu-item span {
    padding: 10px 15px;
  }
}
.progmenu__menu-item input:checked + span {
  background: var(--primary);
  color: white;
}
.progmenu__items-slider {
  position: relative;
}
.progmenu__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  transition: opacity 0.2s, box-shadow 0.2s;
  padding: 0;
}
.progmenu__arrow svg {
  width: 20px;
  height: 20px;
}
.progmenu__arrow:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
}
.progmenu__arrow.hidden {
  opacity: 0;
  pointer-events: none;
}
.progmenu__arrow--prev {
  left: -53px;
}
.progmenu__arrow--next {
  right: -53px;
}
@media screen and (max-width: 992px) {
  .progmenu__arrow {
    width: 32px;
    height: 32px;
  }
  .progmenu__arrow svg {
    width: 16px;
    height: 16px;
  }
  .progmenu__arrow--prev {
    left: 6px;
  }
  .progmenu__arrow--next {
    right: 6px;
  }
}
.progmenu__items {
  display: none;
  gap: 12px;
}
.progmenu__items.active {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.progmenu__items.active::-webkit-scrollbar { display: none; }
.progmenu__item {
  flex: 0 0 calc(25% - 9px);
  scroll-snap-align: start;
  background: var(--grey-bg);
  border-radius: 9px;
  padding: 21px 21px 26px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .progmenu__item {
    flex: 0 0 220px;
    padding: 15px;
  }
}
@media screen and (max-width: 480px) {
  .progmenu__item {
    flex: 0 0 180px;
  }
}
.progmenu__item .progmenu__els {
  margin-top: auto;
  flex-wrap: nowrap;
  row-gap: 10px;
}
@media screen and (max-width: 992px) {
  .progmenu__item .progmenu__els {
    flex-wrap: wrap;
  }
}
.progmenu__item-img {
  aspect-ratio: 271/171;
  max-height: 171px;
  margin-bottom: 29px;
}
.progmenu__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 271/171;
}
.progmenu__item-sub {
  color: var(--primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  margin-bottom: 11px;
}
.progmenu__item-title {
  font-weight: 600;
  margin-bottom: 19px;
  line-height: 120%;
  font-size: 16px;
}
.progmenu__bottom {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .progmenu__bottom {
    margin-top: 35px;
  }
}
.progmenu__bottom-tabs {
  display: flex;
  gap: 12px;
  width: 62%;
}
@media screen and (max-width: 992px) {
  .progmenu__bottom-tabs {
    margin-bottom: 12px;
    padding-top: 16px;
    width: 100%;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .progmenu__bottom-tabs {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.progmenu__bottom-tab {
  cursor: pointer;
  flex: 1 1 146px;
}
.progmenu__bottom-tab input {
  display: none;
}
.progmenu__bottom-tab input:checked + .progmenu__bottom-tab-wrap {
  background: var(--grey-bg);
}
.progmenu__bottom-tab input:checked + .progmenu__bottom-tab-wrap span {
  background: #DA1C23;
}
.progmenu__bottom-tab input:checked + .progmenu__bottom-tab-wrap div {
  color: black;
}
.progmenu__bottom-tab-wrap {
  padding: 19px 25px;
  border-radius: 16px 16px 0 0;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .progmenu__bottom-tab-wrap {
    border-radius: 16px;
  }
}
@media screen and (max-width: 768px) {
  .progmenu__bottom-tab-wrap {
    padding: 15px;
  }
}
.progmenu__bottom-tab-wrap span {
  position: absolute;
  right: 0;
  top: -12px;
  background: var(--primary);
  border-radius: 100px;
  color: white;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  padding: 6px 11.5px;
}
.progmenu__bottom-tab-wrap div {
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  color: rgba(0, 0, 0, 0.5);
}
.progmenu__bottom-content {
  display: none;
}
.progmenu__bottom-content.active {
  display: flex;
  gap: 11px;
}
@media screen and (max-width: 992px) {
  .progmenu__bottom-content.active {
    flex-direction: column;
  }
}
.progmenu__bottom-items {
  background: var(--grey-bg);
  width: 62%;
  padding: 54px 58px 56px;
  display: flex;
  gap: 60px;
  border-radius: 9px;
}
@media screen and (max-width: 992px) {
  .progmenu__bottom-items {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .progmenu__bottom-items {
    padding: 20px;
    gap: 40px;
  }
}
@media screen and (max-width: 480px) {
  .progmenu__bottom-items {
    flex-direction: column;
    gap: 35px;
  }
}
.progmenu__bottom-items-left {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 23px;
       column-gap: 23px;
  row-gap: 35px;
}
.progmenu__bottom-item {
  grid-column: 6 span;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
@media screen and (max-width: 768px) {
  .progmenu__bottom-item {
    gap: 7px;
  }
}
.progmenu__bottom-item span {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.5;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .progmenu__bottom-item span {
    font-size: 11px;
  }
}
.progmenu__bottom-item div {
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .progmenu__bottom-item div {
    font-size: 15px;
  }
}
.progmenu__bottom-items-right {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
}
.progmenu__bottom-items-right::before {
  content: "";
  position: absolute;
  left: -30px;
  width: 1px;
  height: 95%;
  background: black;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .progmenu__bottom-items-right::before {
    right: -20px;
  }
}
@media screen and (max-width: 480px) {
  .progmenu__bottom-items-right::before {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .progmenu__bottom-items-right {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 23px;
         column-gap: 23px;
    row-gap: 35px;
  }
}
.progmenu__bottom-total {
  width: 38%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 992px) {
  .progmenu__bottom-total {
    width: 100%;
  }
}
.progmenu__total {
  border-radius: 9px;
  background: var(--grey-bg);
  padding: 39px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
@media screen and (max-width: 768px) {
  .progmenu__total {
    padding: 20px;
    gap: 8px;
  }
}
.progmenu__total-label {
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .progmenu__total-label {
    font-size: 11px;
  }
}
.progmenu__total-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .progmenu__total-price {
    font-size: 32px;
  }
}
.progmenu__bottom-btn {
  text-align: center;
  background: var(--primary);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  padding: 18.5px;
  text-decoration: none;
}
.progmenu__bottom-btn:hover {
  color: white;
}

.every {
  background: var(--grey-bg);
  padding: 72px 0 102px;
  border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 768px) {
  .every {
    padding: 40px 0 60px;
    border-radius: 20px 20px 0 0;
  }
}
.every__content {
  margin-top: 40px;
  display: flex;
  gap: 11px;
}
@media screen and (max-width: 992px) {
  .every__content {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .every__content {
    margin-top: 25px;
  }
}
.every__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 12px;
  width: 60%;
}
@media screen and (max-width: 992px) {
  .every__items {
    width: 100%;
  }
}
.every__item {
  grid-column: 6 span;
  color: white;
  background: var(--primary);
  border-radius: 9px;
  padding: 29px 100px 29px 29px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.every__item:nth-child(1) {
  padding-right: 93px;
}
.every__item:nth-child(1) .every__img {
  right: -131px;
  transform: none;
  top: -15px;
}

.every__item:nth-child(2) {
  padding-right: 136px;
}
.every__item:nth-child(2) .every__img {
  right: -50px;
}

.every__item:nth-child(3) {
  padding-right: 134px;
}
.every__item:nth-child(3) .every__img {
  right: -107px;
  transform: none;
  top: -16px;
}

.every__item:nth-child(4) {
  padding-right: 100px;
}
.every__item:nth-child(4) .every__img {
  right: -159px;
  transform: none;
  top: -42px;
}

@media screen and (max-width: 768px) {
  .every__item {
    grid-column: 12 span;
    padding: 20px 100px 20px 20px;
  }
}
.every__title {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  line-height: 120%;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.every__desc {
  font-weight: 500;
  font-size: 12px;
  position: relative;
  z-index: 1;
}
.every__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
}
.every__form {
  border-radius: 9px;
  background: white;
  padding: 44px;
  width: 40%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .every__form {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .every__form {
    padding: 25px;
  }
}
.every__form::after {
  content: "";
  position: absolute;
  background-image: url("../img/every-form-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 120%;
  height: 242px;
  bottom: -130px;
  left: 45%;
  transform: translateX(-50%);
}
.every__form form {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.every__form form input:not([type=submit]) {
  margin-bottom: 12px;
  background: var(--grey-bg);
  border-radius: 16px;
  border: none;
  padding: 21px 29px;
  font-size: 12px;
}
.every__form form input:not([type=submit])::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.every__form form input:not([type=submit])::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.every__form form input[type=submit] {
  background: var(--primary);
  border: none;
  color: white;
  padding: 20px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14.58px;
  cursor: pointer;
  transition: 0.3s ease;
}
.every__form form input[type=submit]:hover {
  opacity: 0.6;
}
.every__form-labels {
  margin: 4px 0 26px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media screen and (max-width: 768px) {
  .every__form-labels {
    margin: 16px 0;
  }
}
.every__form-labels label {
  cursor: pointer;
}
.every__form-labels label input {
  display: none;
}
.every__form-labels label span {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.every__form-labels label span::before {
  content: "";
  min-width: 16px;
  max-width: 16px;
  border: 1px solid black;
  border-radius: 2px;
  height: 16px;
}
.every__form-labels label input:checked + span::before {
  background: var(--primary);
}
.every__form-title {
  font-family: "Comfortaa", sans-serif;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .every__form-title {
    margin-bottom: 24px;
    font-size: 20px;
  }
}

.delivery {
  padding: 72px 0 75px;
  background: white;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .delivery {
    padding: 40px 0;
    border-radius: 20px 20px 0 0;
  }
}
.delivery__body {
  display: flex;
  gap: 114px;
}
@media screen and (max-width: 1200px) {
  .delivery__body {
    gap: 40px;
  }
}
@media screen and (max-width: 992px) {
  .delivery__body {
    flex-direction: column;
    gap: 25px;
  }
}
.delivery__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 35%;
}
@media screen and (max-width: 992px) {
  .delivery__left {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .delivery__left {
    gap: 25px;
  }
}
.delivery__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.delivery__item {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #179E4B 0%, #5B9E2D 100%);
  border-radius: 16px;
  padding: 9px 29px;
  gap: 20px;
  min-height: 98px;
}
@media screen and (max-width: 768px) {
  .delivery__item {
    padding: 9px 20px;
  }
}
.delivery__item-img {
  display: flex;
  align-items: center;
  max-width: 60px;
}
.delivery__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.delivery__item-title {
  color: white;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
}
.delivery__els {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
.delivery__el {
  grid-column: 6 span;
  font-size: 12px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 480px) {
  .delivery__el {
    font-size: 10px;
  }
}
.delivery__el::before {
  content: "";
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  border-radius: 8px;
}
.delivery__el--green::before {
  border: 2px solid #189E4B;
  background: rgba(24, 158, 75, 0.2);
}
.delivery__el--purple::before {
  border: 2px solid #DD2AE6;
  background: rgba(221, 42, 230, 0.2);
}
.delivery__el--salad::before {
  border: 2px solid #5B9E2D;
  background: rgba(91, 158, 45, 0.2);
}
.delivery__el--blue::before {
  border: 2px solid #3861DB;
  background: rgba(56, 97, 219, 0.2);
}
.delivery__map {
  width: 65%;
}

.delivery__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .delivery__map {
    aspect-ratio: 779/441;
    width: 100%;
  }
}

.why {
  padding-bottom: 74px;
}
.why__top {
  margin-top: 40px;
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .why__top {
    flex-direction: column;
    margin-top: 25px;
  }
}
.why__person {
  background: var(--grey-bg);
  border-radius: 9px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 25%;
  min-height: 316px;
}
@media screen and (max-width: 992px) {
  .why__person {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .why__person {
    width: 100%;
    min-height: 0;
    padding: 20px;
  }
}
.why__person-img {
  display: flex;
  align-items: center;
  min-width: 120px;
  max-width: 120px;
  height: 120px;
  border-radius: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .why__person-img {
    margin-bottom: 25px;
  }
}
.why__person-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.why__person-title {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.why__person-desc {
  font-weight: 500;
  font-size: 12px;
  opacity: 0.8;
}
.why__img {
  position: relative;
  width: 50%;
  border-radius: 9px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .why__img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .why__img {
    height: 300px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .why__img {
    height: 200px;
  }
}
.why__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  top: 0;
  position: absolute;
}
.why__items {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 12px;
}
.why__item {
  grid-column: 4 span;
  border: 1px solid var(--grey-bg);
  padding: 29px 29px 34px;
  border-radius: 9px;
}
@media screen and (max-width: 768px) {
  .why__item {
    grid-column: 6 span;
    padding: 20px;
  }
}
@media screen and (max-width: 480px) {
  .why__item {
    grid-column: 12 span;
  }
}
.why__item-img {
  display: inline-block;
  margin-bottom: 18px;
  min-width: 36px;
  max-width: 36px;
  height: 36px;
}
.why__item-title {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .why__item-title {
    line-height: 120%;
    margin-bottom: 15px;
  }
}
.why__item-desc {
  opacity: 0.8;
  font-weight: 500;
  font-size: 12px;
  max-width: 254px;
}

.reviews {
  padding: 72px 0 66px;
  background: var(--grey-bg);
  border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 768px) {
  .reviews {
    padding: 40px 0;
    border-radius: 20px 20px 0 0;
  }
}
.reviews__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    .reviews__title {
        margin-bottom: 25px;
    }
}
.results {
  background: var(--grey-bg);
  padding-bottom: 74px;
}
.results__top {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .results__top {
    margin-bottom: 25px;
  }
}
.results__arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .results__arrows {
    display: none;
  }
}
.results__arrows--mob {
  display: none;
}
@media screen and (max-width: 768px) {
  .results__arrows--mob {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}
.results__arrow {
  display: flex;
  align-items: center;
  border: 1px solid black;
  background: transparent;
  transition: 0.3s ease;
  min-width: 49px;
  max-width: 49px;
  height: 49px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}
.results__arrow svg path {
  stroke: #0F0F0F;
  transition: 0.3s ease;
}
.results__arrow:not(.swiper-button-disabled) {
  cursor: pointer;
  opacity: 1;
}
.results__arrow:not(.swiper-button-disabled):hover {
  background: var(--primary);
  border-color: var(--primary);
}
.results__arrow:not(.swiper-button-disabled):hover svg path {
  stroke: white;
}
.results__arrow--next {
  transform: rotate(180deg);
}
.results__slider {
  overflow: hidden;
}
.results__slider .swiper-slide {
  height: auto;
}
.results__slide {
  height: 100%;
  display: flex;
  background: white;
  border-radius: 9px;
  padding: 28px 58px 28px 28px;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .results__slide {
    flex-direction: column;
    gap: 25px;
    padding-right: 28px;
  }
}
@media screen and (max-width: 480px) {
  .results__slide {
    padding: 20px;
    gap: 20px;
  }
}
.results__imgs {
  display: flex;
  gap: 16px;
  width: 43%;
  min-width: 300px;
}
@media screen and (max-width: 992px) {
  .results__imgs {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .results__imgs {
    width: 100%;
    min-width: 0;
  }
}
@media screen and (max-width: 480px) {
  .results__imgs {
    flex-direction: column;
  }
}
.results__img {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  aspect-ratio: 240/304;
}
@media screen and (max-width: 768px) {
  .results__img {
    flex-grow: 1;
  }
}
.results__img span {
  position: absolute;
  left: 20px;
  top: 20px;
  background: white;
  border-radius: 100px;
  padding: 6px 11.5px;
  font-size: 12px;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .results__img span {
    top: 10px;
    left: 10px;
    padding: 4px 9px;
    font-size: 10px;
  }
}
.results__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.results__content {
  width: 57%;
}
@media screen and (max-width: 992px) {
  .results__content {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .results__content {
    width: 100%;
  }
}
.results__title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .results__title {
    margin-bottom: 15px;
  }
}
.results__els {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .results__els {
    margin-bottom: 20px;
  }
}
.results__el {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}
.results__el h4 {
  font-weight: 600;
  font-size: 12px;
  opacity: 0.5;
}
.results__el div {
  font-weight: 500;
}
.results__desc {
  font-weight: 500;
}

.banner {
  background: var(--grey-bg);
}
.banner__body {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 58px;
  min-height: 360px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .banner__body {
    padding: 30px;
    min-height: 0;
  }
}
.banner__content {
  position: relative;
  z-index: 3;
  max-width: 399px;
}
.banner__desc {
  max-width: 333px;
  margin-top: 17px;
  font-weight: 500;
}
.banner__btn {
  margin-top: 26px;
  display: inline-block;
  color: white;
  padding: 13px 42px;
  border-radius: 100px;
  text-decoration: none;
  background: var(--primary);
  font-size: 12.4px;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .banner__btn {
    display: block;
    text-align: center;
  }
}
.banner__btn:hover {
  color: white;
}
.banner__img {
  position: absolute;
  z-index: 2;
  top: -13px;
  right: 28px;
}
@media screen and (max-width: 992px) {
  .banner__img {
    right: -40px;
  }
}
@media (max-width: 650px) {
  .banner__img {
    display: none;
  }
}
.banner__logo {
  position: absolute;
  z-index: 1;
  top: -33px;
  right: 62px;
}
@media screen and (max-width: 992px) {
  .banner__logo {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .banner__logo {
    display: none;
  }
}
.banner__bg {
  position: absolute;
  z-index: 0;
  top: 10px;
  right: -843px;
}
@media screen and (max-width: 992px) {
  .banner__bg {
    right: -1000px;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .banner__bg {
    right: -1100px;
    opacity: 0.1;
  }
}

.faq {
  background: var(--grey-bg);
  padding: 77px 0 20px;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 40px 0 20px;
  }
}
.faq__items {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 12px;
}
@media screen and (max-width: 768px) {
  .faq__items {
    margin-top: 25px;
  }
}
.faq__items-col {
  grid-column: 6 span;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media screen and (max-width: 768px) {
  .faq__items-col {
    grid-column: 12 span;
  }
}
.faq__item {
  background: white;
  border-radius: 16px;
}
.faq__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 20px 28px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .faq__item-top {
    padding: 15px 20px;
  }
}
.faq__item-top img {
  transition: 0.3s ease;
}
.faq__item-top.active img {
  transform: rotate(45deg);
}
.faq__item-title {
  font-weight: 600;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .faq__item-title {
    font-size: 15px;
  }
}
.faq__item-content {
  font-weight: 500;
  font-size: 12px;
  display: none;
  padding: 0 28px 20px;
}
@media screen and (max-width: 768px) {
  .faq__item-content {
    padding: 0 20px 15px;
  }
}
.faq__item-content * + * {
  margin-top: 16px;
}

.order {
  background: var(--grey-bg);
  padding: 174px 0 36px;
}
@media screen and (max-width: 992px) {
  .order {
    padding-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  .order {
    padding: 130px 0 30px;
  }
}
.order__title {
  margin: 20px 0 40px;
  max-width: 258px;
}
@media screen and (max-width: 768px) {
  .order__title {
    margin: 20px 0 25px;
  }
}
.order__content {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 992px) {
  .order__content {
    flex-direction: column;
  }
}
.order__left {
  width: 42%;
  background: white;
  border-radius: 17.5px;
  padding: 48px 58px;
}
@media screen and (max-width: 1200px) {
  .order__left {
    padding: 25px;
  }
}
@media screen and (max-width: 992px) {
  .order__left {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .order__left {
    padding: 20px;
  }
}
.order__left-top {
  margin-bottom: 49px;
  display: flex;
  justify-content: space-between;
  padding: 21px 29px;
  font-weight: 600;
  font-size: 12px;
  background: var(--primary);
  border-radius: 16px;
  color: var(--grey-bg);
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .order__left-top {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .order__left-top {
    padding: 12px 18px;
  }
}
.order__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 0px;
       column-gap: 0px;
  row-gap: 40px;
  padding-bottom: 48px;
  border-bottom: 2px solid black;
}
@media screen and (max-width: 768px) {
  .order__items {
    row-gap: 25px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 480px) {
  .order__items {
    row-gap: 20px;
  }
}
.order__item {
  grid-column: 6 span;
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}
@media screen and (max-width: 768px) {
  .order__item {
    row-gap: 7px;
  }
}
@media screen and (max-width: 480px) {
  .order__item {
    grid-column: 12 span;
  }
}
.order__item span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-weight: 600;
}
.order__item div {
  font-weight: 600;
  line-height: 120%;
}
.order__bottom {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .order__bottom {
    margin-top: 25px;
    gap: 8px;
  }
}
.order__bottom span {
  font-weight: 600;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}
.order__bottom div {
  color: var(--primary);
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
}
.order__form {
  width: 58%;
  background: white;
  border-radius: 17.5px;
  padding: 48px 58px;
}
@media screen and (max-width: 992px) {
  .order__form {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .order__form {
    padding: 20px;
  }
}
.order__form form {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .order__form {
    padding: 25px;
  }
}
.order__form input[type=submit] {
  background: var(--primary);
  border: none;
  color: white;
  padding: 16px;
  border-radius: 16px;
  font-weight: 600;
  display: block;
  text-align: center;
  width: 100%;
  margin-top: auto;
  cursor: pointer;
  transition: 0.3s ease;
}

.order__form input[type=submit]:hover {
  opacity: 0.6;
}

.order__form .every__form-labels {
  margin-top: 16px;
}
.order__form-sub {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
  line-height: 120%;
}
.order__form-sub:not(:first-child) {
  margin-top: 28px;
}
.order__inputs {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 9px;
       column-gap: 9px;
  row-gap: 10px;
}
.order__inputs input {
  background: var(--grey-bg);
  border-radius: 16px;
  border: none;
  padding: 21px 29px;
  font-size: 12px;
}
.order__inputs input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.order__inputs input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.order__inputs--top input {
  grid-column: 6 span;
}
@media screen and (max-width: 480px) {
  .order__inputs--top input {
    grid-column: 12 span;
  }
}
.order__inputs--center input {
  grid-column: 3 span;
}
@media screen and (max-width: 480px) {
  .order__inputs--center input {
    grid-column: 6 span;
  }
}
.order__inputs--center input:first-child, .order__inputs--center input:last-child {
  grid-column: 12 span;
}

.footer {
  position: relative;
  background: var(--grey-bg);
  padding: 55px 0 98px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0 50px;
  }
}
.footer::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  max-width: 1040px;
  min-width: 1040px;
  height: 638px;
  width: 100%;
  background-image: url("../img/footer-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  display: block;
}
@media screen and (max-width: 480px) {
  .footer::after {
    display: none;
  }
}
.footer__body {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__body {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 25px;
  }
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.footer__col ul li {
  list-style: none;
}
.footer__col ul li a {
  text-decoration: none;
  font-weight: 500;
}
.footer__col ul li a:hover {
  color: var(--primary);
  opacity: 1;
}
.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  max-width: 95px;
}

.footer__logo img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .footer__logo {
    justify-content: center;
  }
}
.footer__soc {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .footer__soc {
    justify-content: center;
  }
}
.footer__soc a {
  display: flex;
  align-items: center;
}
.footer__copyright {
  font-size: 12px;
}
.footer__sub {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 18px;
}
.footer__item {
  margin-top: 12px;
  font-weight: 500;
  max-width: 221px;
}
@media screen and (max-width: 768px) {
  .footer__item {
    margin: 12px auto 0;
  }
}
.footer__item a {
  text-decoration: none;
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.3;
}

.modal {
  display: none;
  border-radius: 29px;
  position: relative;
  overflow: hidden;
}
.modal .fancybox-close-small {
  top: 5px;
  right: 5px;
}
.modal--req {
  padding: 44px;
  max-width: 496px;
}
@media screen and (max-width: 768px) {
  .modal--req {
    padding: 30px;
  }
}
.modal--req::after {
  content: "";
  position: absolute;
  left: 0;
  background-image: url("../img/modal-bg.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  aspect-ratio: 494/241;
  bottom: -109px;
}
@media screen and (max-width: 768px) {
  .modal--req::after {
    display: none;
  }
}
.modal--req .modal__title {
  font-size: 21px;
  position: relative;
  z-index: 1;
}
.modal--req form {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.modal--req form input:not([type=submit]) {
  margin-bottom: 12px;
  background: var(--grey-bg);
  border-radius: 16px;
  border: none;
  padding: 21px 29px;
  font-size: 12px;
}
.modal--req form input:not([type=submit])::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal--req form input:not([type=submit])::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal--req form input[type=submit] {
  background: var(--primary);
  border: none;
  color: white;
  padding: 20px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14.58px;
  cursor: pointer;
  transition: 0.3s ease;
}
.modal--req form input[type=submit]:hover {
  opacity: 0.6;
}
.modal--info {
  padding: 58px;
  max-width: 466px;
  background: #F1F1F1;
}
@media screen and (max-width: 768px) {
  .modal--info {
    padding: 30px;
  }
}
.modal__title {
  margin-bottom: 28px;
  font-weight: 700;
  font-family: "Comfortaa", sans-serif;
  font-size: 28px;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .modal__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.modal__desc {
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
}
.modal__desc strong {
  font-weight: 600;
}
.modal__desc p + p {
  margin-top: 20px;
}

/* New styles */

.wpcf7-acceptance {
  display: flex;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-spinner {
  position: absolute;
  bottom: 0;
  margin: 0;
}

.wpcf7-response-output {
  border: none !important;
  padding: 0 !important;
  order: -1;
  margin: 0 0 26px 0 !important;
}

.pagetemp {
  background: var(--grey-bg);
  padding: 174px 0 36px;
  min-height: 350px;
}
@media screen and (max-width: 992px) {
  .pagetemp {
    padding-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  .pagetemp {
    padding: 130px 0 30px;
  }
}

.pagetemp__content h1, .pagetemp__content h2, .pagetemp__content h3, .pagetemp__content h4, .pagetemp__content h5, .pagetemp__content h6, .pagetemp__content strong {
  font-family: "Comfortaa", sans-serif;
  margin: 0;
}

.pagetemp__content * + * {
  margin-top: 20px !important;
}

.pagetemp__content a {
  color: var(--primary);
  text-decoration: none;
}

.pagetemp__content ul {
  padding-left: 20px;
}

.pagetemp__content ul li {
  margin-top: 0 !important;
}

.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(91, 158, 45, 0.35);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: #4a8724;
}
@media screen and (max-width: 768px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

.header__phone {
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header__phone:hover {
  color: var(--primary);
  opacity: 1;
}

.homeheader__phone {
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text);
  white-space: nowrap;
  margin-left: 20px;
  transition: color 0.3s ease;
}
.homeheader__phone:hover {
  color: var(--primary);
  opacity: 1;
}

.burger-content__phone {
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 28px;
  color: var(--color-text);
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
@media screen and (max-width: 480px) {
  .burger-content__phone {
    font-size: 22px;
  }
}
.burger-content__phone:hover {
  color: var(--primary);
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - 48px);
  max-width: 700px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
.cookie-banner.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner__text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  flex: 1;
}
.cookie-banner__text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.cookie-banner__text a:hover {
  opacity: 0.7;
}
.cookie-banner__btn {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.cookie-banner__btn:hover {
  opacity: 0.75;
}
@media screen and (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 18px 20px;
  }
  .cookie-banner__btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}

/* ===== Анимации появления ===== */

[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-anim]._visible {
  opacity: 1;
  transform: translateY(0);
}
[data-anim="left"] {
  transform: translateX(-30px);
}
[data-anim="left"]._visible {
  transform: translateX(0);
}
[data-anim="right"] {
  transform: translateX(30px);
}
[data-anim="right"]._visible {
  transform: translateX(0);
}
[data-anim-delay="1"] { transition-delay: 0.2s; }
[data-anim-delay="2"] { transition-delay: 0.4s; }
[data-anim-delay="3"] { transition-delay: 0.6s; }
[data-anim-delay="4"] { transition-delay: 0.8s; }
[data-anim-delay="5"] { transition-delay: 1.0s; }

@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Кастомный скроллбар ===== */
.custom-scrollbar__track {
  position: relative;
  height: 4px;
  background: var(--grey-bg);
  border-radius: 100px;
  margin-top: 4px;
  margin-bottom: 20px;
  cursor: pointer;
}
.custom-scrollbar__thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary);
  border-radius: 100px;
  cursor: grab;
  transition: background 0.2s;
}
.custom-scrollbar__thumb:active {
  cursor: grabbing;
}

