/* FONTS */
@font-face {
  font-family: "ph";
  src: url("../fonts/ph-regular.woff2") format("woff2"),
    url("../fonts/ph-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/roboto-100.woff") format("woff");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto-300.woff") format("woff");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-400.woff") format("woff");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-500.woff") format("woff");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-700.woff") format("woff");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/roboto-900.woff") format("woff");
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans/nunito-sans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
/* /FONTS
----------------------*/

/* LAYOUT AND COMMON */
html,
body {
  margin: 0;
  background: white;
}

a {
  text-decoration: none;
}
p {
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
}

.layout {
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 70px;
}

@media screen and (min-width: 768px) {
  .layout {
    padding-top: 80px;
  }
}

.button {
  display: block;
  height: 50px;
  box-sizing: border-box;
  text-align: center;
  background: #333333;
  color: white;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 550;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.03em;
  cursor: pointer;
  padding: 0 16px;
  border: 0;
  border-radius: 2px;
  width: 100%;
  transition: background-color 0.15s ease;
}
.button--white{
  background: #FFF;
  border: #000 solid 1px;
  border-radius: 4px;
  color: #222;
  font-size: 20px;
  line-height: 48px;
  max-width: 280px;
  transition: all 0.15s ease;
}
.button--white:not([disabled]):hover{
  border-color: #27ae60;
  color: #FFF;
}
.button--black{
  background: #222;
  border: #222 solid 1px;
  border-radius: 4px;
  color: #FFF;
  font-size: 20px;
  line-height: 48px;
  max-width: 280px;
  transition: all 0.15s ease;
}
.button--black:not([disabled]):hover{
  border-color: #27ae60;
  color: #FFF;
}
.button--show-mobile {
  display: block;
}
.button--show-desktop {
  display: none;
}
.button--back {
  margin-top: 10px;
}
.button--link {
  text-decoration: none;
  padding-top: 15px;
  padding-bottom: 15px;
}
.button:disabled {
  background-color: #5f5f5f;
  cursor: auto;
}
.button:not([disabled]):hover {
  background-color: #27ae60;
}
.button:not([disabled]):active {
  background-color: #6fcf97;
}
.input {
  display: block;
  border: 0;
  border-bottom: 1px solid #bdbdbd;
  box-sizing: border-box;
  height: 46px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #222222;
  padding: 0;
  width: 100%;
  outline: none;
}
.label {
  display: block;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #5f5f5f;
  position: absolute;
  top: 0;
  transition: all 0.3s ease;
}
.input:placeholder-shown:not(:focus) + .label {
  top: 31px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.03em;
}
._important {
  color: #eb5757;
}
.input__eye {
  display: block;
  position: absolute;
  bottom: 13px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.input__eye:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/eye.svg) 50% 50% no-repeat;
  background-size: contain;
  opacity: 1;
  transition: opacity 0.15s ease;
}
.input__eye:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/eye-cross.svg) 50% 50% no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.input__eye._active:before {
  opacity: 0;
}
.input__eye._active:after {
  opacity: 1;
}
.input--password {
  padding-right: 44px;
}
.select {
  display: block;
  position: relative;
}
.select__label {
  display: block;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #5f5f5f;
}
.select__value {
  display: block;
  border: 0;
  border-bottom: 1px solid #bdbdbd;
  box-sizing: border-box;
  height: 46px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #222222;
  padding: 0 44px 0 0;
  cursor: pointer;
  width: 100%;
  background: transparent;
  text-align: left;
}
.select__value:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 13px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: url(../img/arrow.svg) 50% 50% no-repeat;
  background-size: contain;
  transition: transform 0.15s ease;
}
.select__value._active:before {
  transform: rotateX(180deg);
}
.select__list {
  display: none;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #bdbdbd;
  padding: 0 19px;
  box-sizing: border-box;
  background: white;
  margin-top: -1px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 300px;
}
.select__list._active {
  display: block;
}
.select__item {
  display: block;
  width: 100%;
  height: 48px;
  border: 0;
  border-top: 1px solid #bdbdbd;
  border-radius: 0;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.03em;
  color: #5f5f5f;
  text-align: left;
  box-sizing: border-box;
  padding: 12px 0 12px;
  cursor: pointer;
  background: white;
}
.select__item:first-child {
  border-top: 0;
}
.checkbox {
  display: block;
  position: relative;
}
.checkbox__label {
  display: block;
  position: relative;
  padding: 0 0 0 32px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.03em;
  color: #999999;
  cursor: pointer;
}
.checkbox__label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 2px;
  width: 18px;
  height: 18px;
  background: white;
  border: 1px solid #999999;
  border-radius: 1px;
  transition: background-color 0.15s ease;
}
.checkbox__label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 6px;
  width: 13px;
  height: 10px;
  background: url(../img/checkbox.svg) 50% 50% no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.checkbox__label a {
  color: #1967cf;
  text-decoration: none;
}
.checkbox__input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__input:checked + .checkbox__label:before {
  background-color: #999999;
}
.checkbox__input:checked + .checkbox__label:after {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
    font-weight: 400;
  }
  .button--white,
  .button--black{
    font-size: 20px;
    line-height: 48px;
  }
  .button--link {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .checkbox__label {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.03em;
  }
}
@media screen and (min-width: 1024px) {
  .button--show-mobile {
    display: none;
  }
  .button--show-desktop {
    display: block;
  }
  .button--back {
    margin-top: 0;
    margin-right: 20px;
  }
}
/* /LAYOUT AND COMMON
----------------------*/

/* HEADER */
.header {
  display: block;
  width: 100%;
  height: 70px;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.header__wrapper {
  padding: 20px 16px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 20px 136px 1fr 64px;
  gap: 18px;
  align-items: center;
}
.header-menu {
  display: none;
  justify-content: space-between;
  align-items: center;
}
.header-menu__item {
  display: block;
}
.header-menu__link {
  display: inline-block;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.04em;
  color: #5f5f5f;
  text-decoration: none;
}
.header__right-helper {
  display: none;
}
.header-contacts {
  display: none;
}
.header-contacts__phone {
  display: block;
}
.header__phone {
  display: inline-block;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #5f5f5f;
  text-decoration: none;
  white-space: nowrap;
}
.header-contacts__email {
  display: block;
  margin: 2px 0 0;
}
.header__email {
  display: inline-block;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #5f5f5f;
  text-decoration: none;
}
.header-catalog {
  display: none;
}
.header-mobile-button {
  display: block;
  width: 20px;
  height: 20px;
}
.header-mobile-button__image {
  display: block;
  width: 100%;
  height: 100%;
}
.header__mobile-button {
  display: block;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 0;
  padding: 0;
}
.header-logo {
  display: block;
}
.header-logo__link {
  display: block;
  width: 100%;
  height: auto;
  text-decoration: none;
  cursor: pointer;
}
.header-logo__image {
  display: block;
  width: 100px;
  height: 22px;
  text-decoration: none;
}
.header-socials {
  display: flex;
  justify-content: space-between;
}
.header-socials__item {
  display: block;
  width: 24px;
  height: 24px;
}
.header-socials__link {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  text-decoration: none;
}
.header-socials__image {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
  }
  .header__wrapper {
    /*grid-template-columns: 24px 136px 1fr 64px 282px;*/
    grid-template-columns: 24px 136px 1fr 64px auto;
    padding: 15px 16px 15px;
  }
  .header-catalog {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .header__wrapper {
    /*grid-template-columns: 136px 1fr 374px 1fr 64px 282px;*/
    grid-template-columns: 136px 1fr 374px 1fr 64px auto;
    padding: 15px 32px 15px;
  }
  .header-logo {
    padding-left: 0;
  }
  .header-mobile-button {
    display: none;
  }
  .header-menu {
    display: flex;
  }
  .header__right-helper {
    display: block;
  }
  .header-contacts {
    display: none;
  }
}
@media screen and (min-width: 1366px) {
  .header__wrapper {
    /*grid-template-columns: 136px 1fr 440px 1fr 147px 64px 282px;*/
    grid-template-columns: 136px 1fr 440px 1fr 147px 64px auto;
  }
  .header-contacts {
    display: block;
  }
}
@media screen and (min-width: 1600px) {
  .header-logo {
    padding-left: 146px;
  }
}
/* /HEADER
----------------------*/

/* MOBILE MENU */
.mobile-menu {
  display: block;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: white;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 40px 16px;
  transform: translateX(-110%);
  transition: transform 0.3s ease;
}
.mobile-menu._opened {
  transform: translateX(0%);
}
.mobile-menu__list {
  display: block;
}
.mobile-menu__item {
  display: block;
  margin: 20px 0 0;
}
.mobile-menu__item:first-child {
  margin: 0;
}
.mobile-menu__link {
  display: inline-block;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #222222;
  text-decoration: none;
}
.mobile-menu-contacts {
  display: block;
  margin: 80px 0 0;
}
.mobile-menu-contacts-phone {
  display: block;
}
.mobile-menu-contacts__phone {
  display: inline-block;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 550;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: #5f5f5f;
  text-decoration: none;
}
.mobile-menu-contacts-mail {
  display: block;
  margin: 2px 0 0;
}
.mobile-menu-contacts__mail {
  display: inline-block;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  color: #5f5f5f;
  text-decoration: none;
}
.mobile-menu__catalog {
  margin: 24px 0 0;
}
@media screen and (min-width: 768px) {
  .mobile-menu {
    top: 80px;
  }
  .mobile-menu__catalog {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
/* /MOBILE MENU
----------------------*/

.footer-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 27px;
}

.footer-form__title {
  font-weight: 800;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: 0.06em;
  display: none;
  margin: 0;
}

.footer-form__sub-title,
.footer-form__title {
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

.footer-form__sub-title {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.03em;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  margin: 0 0 16px;
}

.footer-form__action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-form__input {
  margin-bottom: 3px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 11px 8px;
  font-weight: 400;
  font-size: 14px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  line-height: 100%;
  letter-spacing: 0.03em;
  line-height: 20px;
  letter-spacing: 0;
}

.footer-form__error-message {
  font-size: 12px;
  line-height: 120%;
  color: #eb5757;
}

.footer-form__button,
.footer-form__error-message {
  font-weight: 500;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  letter-spacing: 0.03em;
}

.footer-form__button {
  font-size: 14px;
  line-height: 140%;
  line-height: 20px;
  letter-spacing: 0;
  min-height: 44px;
  height: 44px;
  border-radius: 4px;
  margin-top: 5px;
}

.footer-form__text {
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  line-height: 120%;
  letter-spacing: 0.03em;
  color: #999;
  line-height: 16px;
  margin: 0 0 16px;
}

.footer-form__url {
  color: #222;
  cursor: pointer;
}

.footer-form--icon-mail {
  display: inline-block;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuNSAxLjE2N2w3LjkxNyA1IDcuMDgzLTVtLTE1IDBoMTVtLTE1IDBjLS40MTcgMC0uNDE3LjQxNy0uNDE3LjQxN3YxMC4yNWExIDEgMCAwMDEgMWgxMy44MzRjLjU1MiAwIDEtLjQ0NSAxLS45OTdWMS41ODRzMC0uNDE3LS40MTctLjQxNyIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 13px;
  margin-left: 4px;
  position: relative;
  top: 2px;
}

.footer-form__input-field {
  display: flex;
  flex-direction: column;
}

.footer {
  background: #f5f5f5;
}

.footer__content {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.footer__show--desktop {
  display: none;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
  color: #222;
  letter-spacing: 0;
  box-sizing: border-box;
}

.hide-footer .footer {
  display: none;
}

.footer.additional-padding {
  padding-bottom: 200px;
}

.footer__copy-text {
  font-weight: 500;
  font-size: 10px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  line-height: 100%;
  letter-spacing: 0.06em;
  color: #949494;
  margin-bottom: 12px;
  text-align: center;
}

.footer-logo,
.footer__information {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 40px;
  align-items: center;
  width: 100%;
}

.footer-logo__picture {
  width: 172px;
  height: 38px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNzZtbSIgaGVpZ2h0PSI0MG1tIiB2aWV3Qm94PSIwIDAgMTc2MDAgNDAwMCIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIHRleHQtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIGltYWdlLXJlbmRlcmluZz0ib3B0aW1pemVRdWFsaXR5IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCI+PGRlZnM+PHN0eWxlPi5maWwwLC5maWwye2ZpbGw6Izc0Yjg0NDtmaWxsLXJ1bGU6bm9uemVyb30uZmlsMHtmaWxsOiMyZTJlMmZ9PC9zdHlsZT48L2RlZnM+PGcgaWQ9ItCh0LvQvtC5X3gwMDIwXzEiPjxwYXRoIGNsYXNzPSJmaWwwIiBkPSJNMzk0Mi42NiAxNDA3LjI1Yy0xMC4wOS0zMzEuNzEgMjMwLjQtMjIyLjAxIDI5My43OS0xMDQuMDQgMTEwLjQ5IDIwNS42MyA2MzMuODYgMTQxMy41NSA2MzQuOTcgMTQwOS4zOCA0NS4xOC0xNjEuNzkgNTM2LjI4LTEzNjguNDIgNTkwLjUyLTE0OTQuMDQgNTIuODYtMTIyLjU5IDEyOC4xMS0yMTMuNSAyMjUuNDYtMTk1LjkzIDEyNS4xOCAyMi42MSAxMjAuMzEgMjE3LjU3IDExNC43OCAzMjcuNDctMTEuOTYgMjM4LjczLTg3LjU5IDE4NjIuMzMtMTIwLjc1IDIxNTMuNjYtMzMuMTEgMjE4LjY0LTI2Ni4yNCAxNjIuNTgtMjU4LjI0LTY2LjEzIDguMzEtMjM4LjY2IDk0LjI5LTE1NDQuMzMgMTAwLjkyLTE3MzYuNDMtOTYuOTYgMjc1LjMzLTQzMS45OSAxMDA5Ljg1LTU1MS4yIDEyNjguMTUtNzcuNyAxMzcuNi0yMDguNjcgMTAyLjM2LTI4NS42Ny01MS45Ny0xMzUuMTMtMjcwLjg0LTM4MS44NS04NzEuOTEtNDIxLjQ2LTk0Ni4xOCAyOS40IDY1My4yOSA3Ni4yOCAxMDcyLjg2IDg2Ljg4IDE1NzIuMjIuOTcgNDUuNjYgMy4xOSA5Ni4zOC0yNi4yNyAxMzAuNjYtNDAuMjQgNDYuODgtMTMyLjQ3IDQxLjYxLTE3NC43My0yLjc0LTQyLjMzLTQ0LjM2LTQ5LjQyLTczLjk0LTU1Ljk5LTEzNS45Mi00Mi4zOS0zOTkuMDgtMTMyLjkyLTE1MjUuMDEtMTUzLjAxLTIxMjguMTZ6TTc2OTkuNDUgMTA0NC4zMWMxMzUuNzgtMzcuOTcgMTgzLjE5IDY2LjQgMjM2LjA2IDIwOC4zIDMyLjkgODguMzcgNzEyLjUzIDE4MDkuMDYgNzI5LjUxIDE4MzMuMzIgMTQuMjMtMTAzLjkxIDIxOC4wMy0xOTE2LjM2IDIyNS42NC0xOTU4Ljk2IDUxLjM4LTI4NiAyNzYuODQtMjUyLjA0IDI3Ni4yNS00NC44LTEwLjkzIDIzMS4xOC0yNzYuODQgMjI3OS42Mi0zMzQuOSAyMzkwLjQyLTEwNy4zIDE0OS44My0yMTkuMDkgODQuODctMzEyLjY1LTg5LjY4LTEyOS45NC0yMDUuMTYtNTQ5Ljk3LTEzNjIuNTYtNjY1LjY2LTE2NTUuNzgtNi4yMyAyMS41MyA2OS44NCAxNzk1LjkzLTEuMTEgMTg2Ny43MS0xNDEuNzUgMTA0LjMyLTIxOC4wMyAxOC43My0yMjIuOTEtMTUzLjMzLTUuNjYtMTIwNy42Ni0xMDkuOTYtMjMzNy4yMyA2OS43Ny0yMzk3LjJ6TTY3NjguOSAxMTIxLjI5YzEzLjAxIDMyLjU3IDIwLjM1IDc2LjIxIDIwLjk0IDEwMy4zNC0xNS44NyA4NzkuMTQgMjMuMjggMjA1NS4xOCAxOC4yMSAyMTg0LjIyIDAgMTIzLjc0LTQyLjIxIDIwMC43NC0xMzAuMzggMjAxLjk4LTE1OC4yMi0xNC4zOC0xODkuMDQtNzQuMzMtMTkwLjIyLTI0OS4wMSAxNy4xMS0yOTIuMy0yLjI2LTE5MTYuNDgtMi4yNi0yMTkxLjExIDAtMTk2LjMyIDI0NC41Ny0xNjAuMjIgMjgzLjcxLTQ5LjQyek0xMDE1NS40NyAxMTI0Ljk4YzEyLjE3IDMyLjkgMTguNCA3Ni43NCAxOC4yNyAxMDMuODUtMS40MiAzMTcuMzQtNDAuNzggMjAyMy00OS4xNyAyMTUxLjgzLTMuMTEgMTIzLjc1LTUwLjk2IDIyMS42OS0xMjQuMzkgMjMwLjY2LTEzNS0yLjk4LTE4Ny4wMi03OS4xMy0xODMuNzEtMjUzLjgxIDMuNDUtMTgwLjM5IDU1LjA4LTE4MjMuMDUgNTUuMTQtMjA5Ny42NS4xMy0yODYuMjggMjQ3LjY0LTI0Ni42NiAyODMuODYtMTM0Ljg4ek0xNDE3My4zNCA4ODUuMzZjMTcwLjk3LTEwLjg2IDIyNC45NCAyMTAuMTggMzEzLjgzIDQzMC45NiAxMTEuMTMgMjYzLjA1IDY5Ni45OSAxNzU4Ljk5IDc2My40NSAxODkxLjEyIDIuMDgtMjIuNDMgODQuNzMtMTg4NS45OCA5My41OC0yMDEyLjg2IDEyLjMtMTk4LjUzIDI1Ni4yOS0xNzcuNDYgMjYxLjg3LTYuMyAxLjQ5IDQyLjczLTIuMjEgNjUuMTYuMzMgODMuOTUgMS41IDk1LjQ2LTEyNC4yIDIyMDguOTMtMTMxLjEgMjI0Mi4zNS00LjgxIDIzLjQxLTkuNTYgNjguMS00NS4yIDkxLjc3LTExMi42MyA4MS4wOS0yNjQuMjgtMjkuNTktMzU0LjA5LTE5NC4zMS0xMjQuNzktMjI0LjU2LTYwOS4xMi0xNDU3LjQ2LTcyMy41Ny0xNzY2LjQtMTAuOTMgNDAuNzcgNy4zMyAxNjk3LjY2IDEuNDkgMTkwNi4wMS0uOTIgMzIuNzgtMjEuODYgODIuNTktNDUuNDYgOTQuMjktNTMuMzMgMjYuMjctMTE1LjIzIDQxLjc1LTE2OC4wNC03LjU0LTU1LjcyLTUyLjA5LTgyLjg0LTk5LjEtNzguNDktMTg2Ljc3IDcuMDItMTM4Ljk3IDEwLjM0LTE3OTcuNjggNy4wMi0yMDk3LjM5LS45LTc2LjU0LTIyLjk1LTQ2MS41OCAxMDQuMzgtNDY4Ljg4ek0xMTI5OC41OCAxMjEyLjNjMi4xMyAxODUuNTEgNDQuNDggMTg3MS4zNiA0Ni42OSAyMDQzLjg4IDAgMjQyLjY4IDM0OS4xMyAzNC4wMSA1MzYuNDktMTk1Ljg3IDMyOS4wNC00MDMuOSAzNDAuNjItMTM5Mi40My01NS4zNC0xNjk0Ljc0LTE3MC4yNS0xNDMuOTgtNTM2LjY0LTI5OS40Ny01MjcuODQtMTUzLjI3em0tMjk0LjkyIDc4LjhjLTUuMTUtNzEuNzItMTguMzUtMzM0LjkgNTkuNy0zNzkuMTggNzUuMDUtNjIuNjIgNDM2LjA5LTI4LjYxIDYwMi4xIDU0LjQ0IDYwMS4wMSAzMDcuMDYgNjcwLjAxIDYzOC40NSA3MTEuNDMgMTE2My4xOCA2Mi4xNyAxMzI1LjY5LTEwMDIuNjMgMTU3MS4zMi0xMDYzLjg4IDE1NzIuNzQtMTMyLjI4IDMuMTMtMjAzLjQ5LTU4LjU5LTIyOC4yNi0xOTEuNjQtNjMuMjctMzM5Ljg0LTgxLjA5LTE5ODcuNzctODEuMDktMjIxOS41NHpNMTY3OTMuMiAxMzI1LjQ2Yy0xNTcuNjMtMTIuMDktNDkxLjk0IDIyMi45OS00ODYuMzYgMTIwNC4yMiAxMy40NiA1NzkuNjggMjQ5LjI2IDg4NC4yMiA0MTUuMDkgODcxLjY3IDU4NC43NS4wNSA2OTUuMTctMjA2My4wOCA3MS4yNy0yMDc1Ljg5em0xNzEuMTcgMjI4Ny4zYy0xOTguMDMgODkuMTUtNDA5Ljc2IDg0LjU0LTU4NC42Mi04Mi45MS0xMjkuODEtMTQyLjE2LTQ2Ny44My01NDAuMDItMzMwLjg5LTE1NzEuOTEgODAuMDEtNDQwLjQ0IDI1OC42My02NTYuOTkgNDA3LjA0LTc3OC43OSA3OC44OC02MC4yOSA1MTAuMTUtMjkyLjE5IDgyMy42NyAxOTEuMzEgNDA4LjcxIDYzOC4yMSAxNjguNDggMTk5Mi4xMi0zMTUuMiAyMjQyLjN6TTEzMzMzLjk4IDExNDcuOTZjNDIuODYgMzUuMDUgNTUuMDggODAuMTIgNTYuNTkgMTEzLjI4IDEzLjUxIDM1NC4wOS0zMi4zMyAyMTc0LjM0LTI5LjMzIDIzMjAuNzkuODMgMzguMzYgMy4zOCAxMTIuNDMtNDQuOTQgMTIyLjE4LTQ2LjUxIDkuMzEtMTEzLjczIDExLjI2LTE0My45MS0xNS4yOC02NC4zMS00MC43LTc5Ljg1LTk1LjI3LTg3LjY3LTI0My4yMS00Ljg3LTQzNC4zNCAxLjktMTgxNi4wOCAzLjk4LTIwODcuNDUgMTEuNjMtMjg4LjE1IDE0MC4xMy0yNTMuMDkgMjQ1LjI4LTIxMC4zMXoiLz48cGF0aCBkPSJNMzI0MS4zNSAxMTc3LjQyYy00LjgxIDIyMy44NC0zNS4yNCA1MTMuOC00MC4yIDU0Ni4wMS0xMDYuMTIgNjkyLjAzLTI1NC43NyAxNTI2Ljk0LTc3OS4xMiAxOTY2LjI5LTU1Ni45MSA0NjYuNTktMTMyNS41NiAyMTMuMzctMTcyOC4zNS0zNzQuMzctMTUyLjQzLTIyMi4zNC0yNTkuNDctNDgyLjY2LTM0NS45Ni03NDkuMDhDMzA0LjY3IDI0MzMuNjctMzMuMSAxMTM2IDE1NC4yNSAxMTQ0LjM5YzEzIC41OSAyNC41OCA5LjIzIDM1LjMyIDE3LjY5IDk4Ljc3IDc4LjE2IDkzMC4zNyA5NTAuMzUgOTQ0LjU0IDc5MS45MyA0MS4xOC00NjAuNzMgMjg3LjEyLTE2OTcuMTUgMzU0LjQzLTE4NDcuMzYgMTIuOTktMjguODEgMjkuNTgtNTkuMyA1Ni4zNy02OC42NyAzMy42Mi0xMS45IDY4Ljk0IDEzLjIgOTIuOTkgNDIuNzEgMjA4LjE3IDI1NS45IDYxNy45OSAxNjc4LjE2IDY0Ny41IDE3MDMuNDcgOC4yMSA3LjAzIDE4LjM0IDEyLjY5IDI4LjM1IDEwLjA3IDguNTQtMi4xNCA1NDIuMjMtNzY4Ljg1IDc5Ny43OS04NjUuMzUgMTUzLjU0LTU4LjA3IDEzMi43MyAxMTAuMSAxMjkuODEgMjQ4LjU0eiIgZmlsbD0iIzI3YTg0MiIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggY2xhc3M9ImZpbDIiIGQ9Ik03MTUuNyAyMDcxLjU4YzIwLjU2IDEyLjE3IDM4LjI1IDI4LjUgNTAuODYgNDkuMDMgMzUuNzYgNTguMjIgMjEuNTMgMTM4Ljk4LTI0LjU3IDE4OS4zNy01NC42OSA1OS43Ny0xNTAuMzYgNzcuMjYtMjIyLjc0IDQwLjcyLTE4MC4wNy05MC45OS05NC44Ny0yOTUuMzggODMuNzctMzA1LjMxIDM4LjgyLTIuMjEgNzkuNDYgNi41NiAxMTIuNjggMjYuMTl6TTEyMTIuNjcgMjM1NC43NmM4OC42MyA4My41IDQ4LjMyIDIxMS42Ny0zNi4yMiAyNDMuNDctNzcuODQgMjkuMzMtMTY1LjQ0IDUuOTktMjA4LjQ4LTY1LjYxLTkuMDQtMTUuMDItMTYtMzguNDMtMTAuODYtNTMuNjYgMTUuMjgtNDUuMzIgMjkuNzEtOTQuNDEgNTguODQtMTMwLjUxIDE5LjctMjQuMzggNjIuNTYtMzMuNjIgOTYuOTYtNDEuOCA1NC40My0xMi44OSA4MC43OCAzNC4zOSA5OS43NiA0OC4xMXpNNjY0Ljc3IDI4MjkuODVjLTQyLjg0LTU3LjM3LTM3LjQ2LTk1LjkxIDExLjE5LTEzNy41MyAyNC44NS0yMS4yOCA5Ny41NS0xNi42NSAxMjMuMSA3Ljc5IDMyLjQ2IDMxLjA4IDIwLjA5IDg1LjU5LTE2LjUyIDExNS44Mi0yNi45MSAyMi4zMS01MC43MSAzOC44Mi04NS4zMSAyOS0xNC41MS00LjA5LTI3LjctMTIuODEtMzIuNDYtMTUuMDh6TTE4MzUuNzcgMjg1Mi44NGMtMTIuODktMjAuNzQtMjAuODItNDQuMzYtMjEuNzQtNjkuMDYtMy41LTkwLjE5IDg3LjAzLTE3MS44NyAxNzYuNDMtMTU5LjA2IDUyLjMgNy40MSA5Ni44MyA0MC43NyAxMzYuNjMgNzUuMzYgNTEuNSA0NC43My0zMi4yNiAxNjQuMDctNzAuMSAyMDAuODktMTQuOSAxNC40OC0zNC42IDIzLjQxLTU0Ljg4IDI3Ljg5LTYzLjkzIDE0LjI0LTEzMi4zMy0yMS4wNy0xNjYuMzQtNzYuMDJ6TTIxNzYuNyAzMTc3Ljk5YzYuMyA4LjMxIDExLjc2IDE3LjM2IDE2LjI1IDI2LjcyIDM0Ljg2IDcyLjc2IDIyLjU3IDIyMy45LTkyLjE1IDIwMS45OC0zNS40NC02LjgyLTY1LjI5LTMwLjQzLTkwLjkxLTU1Ljg1LTM2LjY4LTM2LjM1LTY5Ljg1LTgzLjg5LTY0LjExLTEzNS4yNyA2LjA0LTU1LjE1IDYwLjQtOTguMjUgMTE1Ljk1LTk4LjQ1IDQ1LjA1LS4xMyA4Ny43MiAyNC42NCAxMTQuOTcgNjAuODd6Ii8+PHBhdGggY2xhc3M9ImZpbDIiIGQ9Ik0yMzMzLjMzIDM0OTQuMzFjNC40MiA0OC43LTEyLjQzIDc2LjAyLTYwLjIzIDg1LjktMzIuMzggNi43Ni02OC4yMiAxMS40NS05OS42OSA0LjQyLTUwLjYtMTEuMjQtNzYuNjEtNTkuNDUtNjQuNDQtMTAyLjM2IDE1LjI4LTUzLjUxIDYwLjE1LTc4LjQyIDExNi45OC02NC4zMSAxNS4zNiAzLjgzIDMwLjI1IDEyLjA5IDQ1LjUzIDEyLjYyIDEyLjQzLjM5IDMwLjA1LTMuOTEgMzYuODEtMTIuNjggMjEuNjQtMjguMDQgNTEuNzYtMzguNzcgODEuMjItMjMuNjEgMjYuNTMgMTMuNzEgMzguMTggNDUuOTEgMjMuMDggNzQuNzEtMTQuNTEgMjcuODMtMzcuNjQgMzkuNTQtNjguNzQgMjIuOTctMS43NS0uOTgtNC45OS45Ny0xMC41MiAyLjM0ek0yOTgzLjk4IDE4MzguMjdjNDMuMTEtOS41IDY0LjM3IDEuNjkgNzEuNjUgMzcuNzEgNy45NCAzOS42Ny0xMS45NiA3Mi45MS00Ny44NSA3OS43My0zMC4zMSA1LjczLTY3LjE4LTE3LjYyLTcyLjcxLTQ2LjAzLTYuODQtMzQuODYgMTIuODEtNjMuNTQgNDguOTEtNzEuNDF6TTI1MTYuNjMgMzI3OC4yN2MtNC40OC0yMiA4LjcyLTQ0LjIzIDM1LjI1LTU0Ljc3IDMwLjE3LTEyLjAyIDc3LjY0IDUuODYgODMuODMgMjcuMzIgNy40NyAyNi4wMS0xNS4xIDcyLjgzLTM4LjE3IDc5LjEzLTMwLjMxIDguMzMtNzEuMzQtMTQuMjMtODAuOTEtNTEuNjh6TTI3MzIuMyAxMzEzLjk2Yy03LjU0LTMxLjU0IDYuMTgtNTMuODUgMzcuMDctNjIuMSAyNi41OC03LjE2IDM5LjQgNi4zNyA0NS45IDI5LjQgOC4yNiAyOS4zOC02Ljc2IDU1LjEzLTM3LjY0IDYyLjU2LTI0LjkgNS45Ny0zOS44LTUuNDctNDUuMzMtMjkuODZ6TTI3MTAuMTEgMjk0NS4zYzE3LjI5LTIyLjk1IDI4LjgxLTQ4LjI2IDM3LjA3LTQ3LjIxIDE3LjA5IDIuMTQgMzIuMzcgMTguMzQgNDguMzcgMjguNjYtMTAuMzQgMTIuNzYtMTguNDcgMzItMzEuNTQgMzYuMjMtMTEuNzYgMy45LTI4Ljk0LTguNjUtNTMuOS0xNy42OHpNMjg4MC43NyAyMTA5Ljc2YzEyLjU1LTExLjc4IDIzLjQ4LTI4LjU2IDM4LjMtMzMuMzcgOC4zOS0yLjczIDMzLjQ0IDE0LjkgMzIuOTEgMjIuMjUtLjkxIDE0LjU2LTExLjMyIDM1LjE3LTIzLjM0IDQwLjMyLTEwLjk5IDQuNjgtMjkuMjctNy45NS00NC4zLTEyLjk0LTEuMTYtNS40MS0yLjM0LTEwLjg2LTMuNTctMTYuMjZ6Ii8+PC9nPjwvc3ZnPg==)
    0 no-repeat;
  background-size: contain;
  margin-bottom: 10px;
}

.footer-logo__text {
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.03em;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: default;
  text-align: center;
}

.footer-menu__items {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  column-gap: 40px;
  row-gap: 36px;
}

.footer-menu-column__title {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  margin-top: 0;
  letter-spacing: 0;
}

.footer-menu-column__link,
.footer-menu-column__title {
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  line-height: 120%;
  text-transform: uppercase;
}

.footer-menu-column__link {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 18px;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.footer-menu-column__link img {
  margin-right: 4px;
}

@media (hover: hover) {
  .footer-menu-column__link:hover {
    color: #5f5f5f;
  }
}

.footer-documents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.footer-documents__item {
  font-weight: 500;
  font-size: 10px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  line-height: 100%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #949494;
  margin-bottom: 12px;
}

.footer-documents__item:last-child {
  margin-bottom: 0;
}

.footer-documents__item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}

.footer-store__sup-text {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 10px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  line-height: 100%;
  letter-spacing: 0.06em;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: default;
  text-align: center;
}

.footer-store__links-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  width: 100%;
}

.footer-store__link {
  display: block;
  font-size: 0;
  line-height: 0;
  width: 100px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-store__link--app-store {
  background-image: url('../img/app-store-badge.svg');
}

.footer-store__link--google-play {
  background-image: url('../img/google-play-badge.svg');
}

@media (min-width: 640px) {
  .footer__wrapper {
    padding: 40px 20px;
    align-items: normal;
  }

  .footer__copy-text {
    margin-top: 24px;
    grid-row: 4;
    text-align: left;
  }

  .footer__information {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }

  .footer-logo {
    margin-bottom: 42px;
  }

  .footer-logo__text {
    margin-bottom: 0;
  }

  .footer-menu {
    flex-grow: 1;
  }

  .footer-menu__items {
    justify-content: space-between;
  }

  .footer-menu-column {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .footer-menu-column__title {
    margin-bottom: 24px;
  }

  .footer-menu-column__link {
    font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI,
      Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.03em;
    line-height: 18px;
    letter-spacing: 0;
  }

  .footer-menu-column__link img {
    margin-right: 10px;
  }

  .footer-documents {
    align-content: end;
  }

  .footer-documents__item {
    text-align: left;
  }

  .footer-documents__item-wrapper,
  .footer-store {
    margin-bottom: 0;
  }

  .footer-store__links-list {
    margin-bottom: 0;
    justify-content: end;
    gap: 8px;
  }

  .footer-store__link {
    height: 28px;
  }
}

@media (min-width: 1024px) {
  .footer-form {
    max-width: 315px;
  }

  .footer-form__title {
    display: block;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0;
    line-height: 18px;
  }

  .footer-form__sub-title {
    text-align: left;
    margin-bottom: 16px;
    line-height: 20px;
  }

  .footer-form__text {
    text-align: left;
  }

  .footer-form__input {
    margin-bottom: 3px;
  }

  .footer-form__button {
    margin-top: 10px;
  }

  .main-top-btn {
    display: block;
  }

  .footer__wrapper {
    padding: 40px 20px 20px;
    justify-content: flex-start;
    flex-direction: column;
  }

  .footer__content {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer__copy-text {
    margin-top: 0;
  }

  .footer.additional-padding {
    padding-bottom: 15px;
  }

  .footer-store__links-list {
    justify-content: start;
  }

  .footer-logo {
    align-items: flex-start;
    margin-bottom: 45px;
  }

  .footer-logo__picture {
    width: 209px;
    height: 46px;
    margin-bottom: 6px;
  }

  .footer-menu {
    margin-right: 100px;
  }

  .footer-menu__items {
    justify-content: normal;
    gap: 26px;
    width: auto;
  }

  .footer-menu__column:last-child {
    padding-left: 50px;
  }

  .footer-menu-column__title {
    font-weight: 800;
    font-size: 13px;
    font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI,
      Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    line-height: 120%;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
  }

  .footer-menu-column__link,
  .footer-menu-column__title {
    letter-spacing: 0;
    line-height: 18px;
  }

  .footer-documents__item-wrapper {
    gap: 42px;
    flex-direction: row;
  }
}

@media (min-width: 1360px) {
  .footer-form {
    margin-bottom: 0;
  }

  .footer-form__title {
    margin-bottom: 27px;
  }

  .footer-form__text {
    margin-bottom: 0;
  }

  .footer__show--desktop {
    display: block;
  }

  .footer__show--mobile {
    display: none;
  }

  .footer__container {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    column-gap: 125px;
  }

  .footer-logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0;
    margin-left: 15px;
    justify-content: space-between;
  }

  .footer-logo__text {
    font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI,
      Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.03em;
    text-align: left;
    min-width: 190px;
  }

  .footer-logo__picture {
    width: 178px;
    height: 40px;
  }

  .footer-store {
    padding-left: 57px;
  }

  .footer-store__sup-text {
    font-weight: 500;
    font-size: 12px;
    font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI,
      Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    line-height: 120%;
    letter-spacing: 0.03em;
  }

  .footer-menu {
    margin-right: 48px;
  }

  .footer-menu__items {
    flex-wrap: nowrap;
    gap: 69px;
  }

  .footer-menu__information {
    display: flex;
    gap: 35px;
  }

  .footer-store {
    padding-left: 0;
    margin-top: 28px;
  }

  .footer-store__links-list {
    gap: 8px;
  }

  .footer-store__link {
    width: 85px;
    height: 24px;
  }

  .footer-menu-column__link {
    font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI,
      Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.03em;
    letter-spacing: 0;
    line-height: 20px;
  }
}

@media (min-width: 1920px) {
  .footer__wrapper {
    max-width: 1880px;
    margin: 0 auto;
    column-gap: 183px;
  }

  .footer__container {
    column-gap: 300px;
  }

  .footer-menu {
    margin-right: 73px;
  }

  .footer-menu__items {
    max-width: 1125px;
    gap: 87px;
  }

  .footer-menu__column:last-child {
    padding-left: 38px;
  }

  .footer-menu__information {
    gap: 55px;
  }

  .footer-menu-column__title {
    margin-bottom: 27px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: 0.06em;
    letter-spacing: 0;
  }

  .footer-menu-column__link,
  .footer-menu-column__title {
    font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI,
      Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 14px;
  }

  .footer-menu-column__link {
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.03em;
    letter-spacing: 0;
  }

  .footer-logo {
    padding-left: 100px;
  }

  .footer-logo__picture {
    width: 209px;
    height: 47px;
    margin-bottom: 10px;
  }

  .footer-logo__text {
    font-weight: 400;
    font-size: 16px;
    font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI,
      Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    line-height: 140%;
    letter-spacing: 0.03em;
    letter-spacing: 0;
    line-height: 24px;
  }

  .footer-documents__item-wrapper {
    gap: 130px;
  }

  .footer-form {
    max-width: 435px;
  }
}

/* /FOOTER
----------------------*/

.header-main-menu-toggle {
  display: block;
  position: relative;
  overflow: hidden;
  width: 27px;
  height: 27px;
  transform: scale(1.15);
}
.header-main-menu-toggle__inner {
  display: block;
  position: absolute;
  top: 13px;
  left: 5px;
  right: 5px;
  height: 1px;
  background: #000;
  transition: background 0s 0.15s;
}
.header-main-menu-toggle__inner:before,
.header-main-menu-toggle__inner:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  content: "";
  transition-duration: 0.15s, 0.15s;
  transition-delay: 0.15s, 0s;
}
.header-main-menu-toggle__inner:before {
  top: -5px;
  transition-property: top, transform;
}
.header-main-menu-toggle__inner:after {
  bottom: -5px;
  transition-property: bottom, transform;
}
.header-main-menu-toggle:focus {
  outline: none;
}
.header-main-menu-toggle.is-active .header-main-menu-toggle__inner {
  background: none;
}
.header-main-menu-toggle.is-active .header-main-menu-toggle__inner:before {
  top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.15s;
}
.header-main-menu-toggle.is-active .header-main-menu-toggle__inner:after {
  bottom: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.15s;
}

@media screen and (min-width: 1024px) {
  .header-main-menu-toggle {
    display: none;
  }
}

._hide {
  display: none;
}

.show-mobile {
  display: block;
}

.show-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .show-mobile {
    display: none;
  }

  .show-desktop {
    display: block;
  }
}

.pform-results {
  display: none;
  position: fixed;
  z-index: 99;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  box-sizing: border-box;
  padding: 30px 16px;
  overflow-x: hidden;
  overflow-y: auto;
}
.pform-results__columns {
  max-width: 440px;
  margin: 0 auto;
}
.pform-results__title {
  display: block;
  text-align: center;
  font-family: Ph, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 38.4px;
  letter-spacing: 0.06em;
  color: #222222;
}
.pform-results__text {
  display: block;
  text-align: center;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.03em;
  color: #222222;
  margin: 40px 0 0;
}
.pform-results-image {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 99.08536585365854%;
  position: relative;
  margin: 40px 0 0;
}
.pform-results__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pform-results__catalog {
  margin: 40px 0 0;
}
.pform-results._active {
  display: block;
}
.pform-results._active body {
  overflow: hidden;
}
.pform-results__column--desk {
  display: none;
}
.pform-results__close {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  background: transparent;
  background: url(../img/close.svg) 50% 50% no-repeat;
  background-size: contain;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

@media screen and (min-width: 1024px) {
  .pform-results {
    top: 0;
    background: rgba(51, 51, 51, 0.78);
    padding: 30px 16px;
  }
  .pform-results__columns {
    display: flex;
    background: white;
    width: 100%;
    align-items: center;
    max-width: 1326px;
    position: relative;
  }
  .pform-results__column {
    display: block;
    width: 50%;
  }
  .pform-results__column--desk {
    height: 940px;
    max-height: calc(100vh - 60px);
    min-height: 300px;
  }
  .pform-results-image {
    height: 100%;
    padding: 0;
    margin: 0;
  }
  .pform-results-image--mobile {
    display: none;
  }
  .pform-results__title {
    width: 440px;
    margin: 0 auto;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.02em;
  }
  .pform-results__text {
    width: 440px;
    margin: 30px auto 0;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
  }
  .pform-results__catalog {
    width: 440px;
    margin: 30px auto 0;
  }
}
@media screen and (min-width: 1024px) and (min-height: 420px) {
  .pform-results._active {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pform-results__text {
    margin: 60px auto 0;
  }
  .pform-results__catalog {
    margin: 60px auto 0;
  }
}

/* COMMON */
.wrapper {
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 16px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

@media screen and (min-width: 1024px) {
  .wrapper {
    padding: 0 40px;
  }
}
/* /COMMON
----------------------*/

/* TEXT-BLOCK */
.text-block{
  color: #222;
  font-size: 16px;
  line-height: 22px;
}
.text-block h3{
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.text-block p{
  margin: 15px 0 0;
}
p._action{
  font-size: 12px;
  font-weight: 500;
  color: #318472;
}
.text-block p:first-child{
  margin: 0;
}
.text-block ul{
  margin: 15px 0 0;
  list-style-type: none;
}
.text-block ol{
  margin: 15px 0 0;
  padding-left: 20px;
}
.text-block ul:first-child,
.text-block ol:first-child,
.text-block ul ol,
.text-block ol ul,
.text-block ul ul,
.text-block ol ol{
  margin: 0;
}
.text-block ul li{
  margin: 5px 0 0;
  position: relative;
  padding-left: 20px;
}
.text-block ul li:before{
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 4px;
  top: 9px;
  background-color: #222;
}

.text-block ol li{
  margin: 5px 0 0;
}
.text-block ul li:first-child,
.text-block ol li:first-child{
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .text-block{
    font-size: 18px;
    line-height: 24px;
  }
  .text-block h3{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .text-block p{
    margin: 20px 0 0;
  }
  .text-block p:first-child{
    margin: 0;
  }
  .text-block ul{
    margin: 20px 0 0;
    list-style-type: none;
  }
  .text-block ol{
    margin: 20px 0 0;
    padding-left: 20px;
  }
  .text-block ul:first-child,
  .text-block ol:first-child,
  .text-block ul ol,
  .text-block ol ul,
  .text-block ul ul,
  .text-block ol ol{
    margin: 0;
  }
  .text-block ul li{
    margin: 10px 0 0;
    padding-left: 20px;
  }
  .text-block ul li:before{
    left: 4px;
    top: 9px;
  }

  .text-block ol li{
    margin: 10px 0 0;
  }
  .text-block ul li:first-child,
  .text-block ol li:first-child{
    margin: 0;
  }
}
/* /TEXT-BLOCK */

/* PATHFINDERS */
.pathfinders{
  background: #80C3B4;
  padding: 40px 0;
}

.pathfinders__head{
  color: #230E09;
  text-align: center;
  margin-bottom: 20px;
}
  .pathfinders__title{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .pathfinders__description{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
  }
.pathfinders__body{
  background: #FFF;
  border-radius: 4px;
  padding: 40px 20px 200px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
  .pathfinders__body:before{
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 100px;
    width: 200%;
    height: 200px;
    background: url(../img/pathfinders/forest.svg) 100% 0 no-repeat;
    background-size: contain;
  }
  .pathfinders__body:after{
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 200px;
    background: url(../img/pathfinders/camp.svg) 100% 50% no-repeat;
    background-size: contain;
  }
.pathfinders__text{
  position: relative;
  z-index: 5;
  color: #222;
  font-size: 16px;
  line-height: 22px;
}
  .pathfinders__text p{
    margin: 15px 0 0;
  }
  .pathfinders__text p:first-child{
    margin: 0;
  }
.pathfinders__action{
  position: relative;
  z-index: 5;
  margin-top: 40px;
}
  .pathfinders__action .button{
    margin: 0 auto;
  }

@media screen and (min-width: 768px) {
  .pathfinders__body{
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .pathfinders{
    padding-bottom: 160px;
  }
  .pathfinders__body::before{
    height: 340px;
  }
  .pathfinders__body::after{
    height: 330px;
  }
  .pathfinders__text,
  .pathfinders__action{
    width: 50%;
    padding: 0 50px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1280px) {
  .pathfinders{
    padding-top: 80px;
  }

  .pathfinders__head{
    margin-bottom: 40px;
  }
    .pathfinders__title{
      font-size: 36px;
      line-height: 44px;
      margin-bottom: 15px;
    }
    .pathfinders__description{
      font-size: 24px;
      line-height: 30px;
    }
  .pathfinders__text{
    font-size: 18px;
    line-height: 24px;
  }
}
/* /PATHFINDERS */

/* COLLECTION */
.collection{
  background: #FEF8E4 url(../img/collection/bg.png) 50% 50% repeat;
  /*background-size: 3633px 1137.5px;*/
  background-size: 1816.5px 568.75px;
  padding: 40px 0;
}
.collection-grid{}
  .collection-grid__element{
    margin-top: 20px; 
  }
  .collection-grid__element:first-child{
    margin-top: 0; 
  }
    .collection-grid__element img{
      display: block;
      width: 100%;
      border-radius: 4px;
    }
.collection__block{
  background: #FFF;
  text-align: center;
  border-radius: 4px;
  padding: 40px 20px;
  color: #222;
}
  .collection__title{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .collection__text{
    font-size: 16px;
    line-height: 22px;
  }
    .collection__text p{
      margin: 15px 0 0;
    }
    .collection__text p:first-child{
      margin: 0;
    }

@media screen and (min-width: 768px) {
  .collection-grid{
    display: grid;
    grid-template-columns: calc(50% - 20px) 50%;
    grid-template-rows: auto auto auto auto;
    grid-auto-flow: row;
    gap: 20px;
  }
    .collection-grid__element{
      margin-top: 0; 
    }
    .collection-grid__element:nth-child(3){
      grid-column: span 2;
    }
      .collection__block{
        height: 100%;
        box-sizing: border-box;
      }
      .collection-grid__element img{
        display: block;
        width: 100%;
        border-radius: 4px;
        object-fit: cover;
        height: 100%;
      }
}
@media screen and (min-width: 1024px) {

  .collection-grid{
    display: flex;
    flex-wrap: wrap;
    margin-top: -120px;
  }
    .collection-grid__element:nth-child(1),
    .collection-grid__element:nth-child(2){
      width: calc(50% - 10px);
    }

    .collection-grid__element:nth-child(3){
      width: calc(40% - 13.33px);
    }

    .collection-grid__element:nth-child(4),
    .collection-grid__element:nth-child(5){
      width: calc(30% - 13.33px);
    }
      .collection__block{
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 60px;
        padding-right: 60px;
      }
      .collection__block h3{
        margin-bottom: 10px;
      }
}
@media screen and (min-width: 1280px) {
  .collection{
    padding-bottom: 80px;
  }
}
/* /COLLECTION */

/* ACTIONS */
.actions{
  background: #80C3B4;
  padding: 40px 0;
}

.actions__head{
  color: #230E09;
  text-align: center;
  margin-bottom: 20px;
}
  .actions__title{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .actions__description{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
  }
.actions-grid{

}
  .actions-grid__item{
    background-color: #FFF;
    border-radius: 4px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
  }
  .actions-grid__item:first-child{
    padding-bottom: 200px;
    margin-top: 0;
  }
  .actions-grid__item:first-child:before{
    content: "";
    display: block;
    width: 200%;
    height: 250px;
    position: absolute;
    bottom: -63px;
    right: -1px;
    background: url(../img/actions/van.svg) 100% 50% no-repeat;
    background-size: contain;
    pointer-events: none;;
  }
.actions-head{
  position: relative;
  margin-bottom: 40px;
}
  .actions-head__img{
    display: block;
    width: 132px;
    position: relative;
    z-index: 1;
  }
  .actions-head__stage{
    position: absolute;
    height: 40px;
    border-radius: 20px;
    color: #FFF;
    font-size: 18px;
    line-height: 40px;
    padding: 0 20px;
    top: 0;
    right: 0;
    z-index: 2;
  }
  .actions-head__stage--1{
    background-color: #FFC501;
  }
  .actions-head__stage--2{
    background-color: #EC801E;
  }
  .actions-head__stage--3{
    background-color: #E74A21;
  }
.actions-counter{
  margin-bottom: 30px;
}
  .actions-counter__block{
    width: 300px;
    height: 100px;
    background: url(../img/actions/counter.png) 50% 50% no-repeat;
    background-size: 300px 100px;
    position: relative;
    margin-bottom: 12px;
    box-sizing: border-box;
    padding: 10px 18px 10px 10px
  }
    .actions-counter__num{
      display: flex;
      height: 80px
    }
    .actions-counter__digit{
      text-align: center;
      color: #222;
      height: 80px;
      font-size: 50px;
      line-height: 80px;
      font-weight: 700;
      width: 25%;
    }
  .actions-counter__label{
    color: #999;
    font-size: 12px;
    line-height: 18px;
  }
@media screen and (min-width: 768px) {
  .actions-grid__item:first-child::before{
    bottom: 0;
  }
  .actions-grid__item:first-child {
    padding-bottom: 40px;
  }
  .actions-grid__body{
    padding-right: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .actions-grid{
    display: grid;
    grid-template-columns: calc(30% - 20px) 40% calc(30% - 20px);
    grid-template-rows: auto auto;
    grid-auto-flow: row;
    gap: 20px;
  }
    .actions-grid__item{
      margin-top: 0; 
    }
    .actions-grid__item:first-child{
      grid-column: span 3;
    }
}
@media screen and (min-width: 1280px) {
  .actions{
    padding: 80px 0;
  }

  .actions__head{
    margin-bottom: 40px;
  }

  .actions-head:before{
    content: "";
    display: block;
    position: absolute;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .actions-grid__item:nth-child(2) .actions-head:before{
    background-image: url(../img/actions/line-1.svg);
    width: 100%;
    height: 51px;
    left: 0;
    top: 90px;
  }
  .actions-grid__item:nth-child(3) .actions-head:before{
    background-image: url(../img/actions/line-2.svg);
    width: 100%;
    height: 24px;
    left: 0;
    top: 100px;
  }
  .actions-grid__item:nth-child(4) .actions-head:before{
    background-image: url(../img/actions/line-3.svg);
    width: 100%;
    height: 70px;
    left: 0;
    top: 90px;
  }
    .actions__title{
      font-size: 36px;
      line-height: 44px;
      margin-bottom: 15px;
    }
    .actions__description{
      font-size: 24px;
      line-height: 30px;
    }
  .actions__text{
    font-size: 18px;
    line-height: 24px;
  }

  .actions-grid__item:first-child:before{
    height: 90%;
  }
  .actions-grid__body{
    width: 40%;
  }
}
/* /ACTIONS */

/* CHECK-LIST */
.check-list{
  background: #FEF8E4;
  padding: 40px 0;
}

.check-list__head{
  color: #230E09;
  text-align: center;
  margin-bottom: 20px;
}
  .check-list__title{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .check-list__description{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
  }

.check-list__body{
  background: #FFF;
  border-radius: 4px;
  padding: 40px 20px 40px;
  position: relative;
  overflow: hidden;
}
  .check-list__body:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 110%;
    height: 100%;
    background: url(../img/check-list/forest.svg) 100% 0 no-repeat;
    background-size: cover;
    opacity: 0.1;
  }
.check-list__text{
  position: relative;
  z-index: 5;
  color: #222;
  font-size: 16px;
  line-height: 22px;
}
.check-list__action{
  position: relative;
  z-index: 5;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .check-list__body:after{
    background-position: 0 0;
    width: 50%;
    opacity: 1;
  }
  .check-list__text{
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
  .check-list{
    padding: 80px 0;
  }

  .check-list__head{
    margin-bottom: 40px;
  }
    .check-list__title{
      font-size: 36px;
      line-height: 44px;
      margin-bottom: 15px;
    }
    .check-list__description{
      font-size: 24px;
      line-height: 30px;
    }
  .check-list__text{
    font-size: 18px;
    line-height: 24px;
  }
}
/* /CHECK-LIST */

/* PRIZE */
.prize{
  background: #FEF8E4;
  padding: 40px 0;
}

.prize__head{
  color: #230E09;
  text-align: center;
  margin-bottom: 20px;
}
  .prize__title{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .prize__description{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
  }

.prize__body{
  overflow: hidden;
  border-radius: 4px;
}
  .prize__block{
    background: #FFF;
    padding: 40px 20px;
  }
  .prize__body ._action{
    margin-top: 15px;
  }
  .prize__img{
    display: block;
    width: 100%;
  }

.prize-steps{
  padding: 0;
  margin: 0;
  list-style-type: none;
  counter-reset: numeric;
}
  .prize-steps li{
    margin-top: 20px;
  }
  .prize-steps li:first-child{
    margin-top: 0;
  }
  .prize-steps li:before{
    content: counters(numeric, ".") " "; 
    counter-increment: numeric;
    display: block;
    margin-bottom: 15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FFC501;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 48px;
  }
  .prize-steps li:last-child:before{
    display: none;
  }  
@media screen and (min-width: 1280px) {
  .prize{
    padding: 20px 0 80px;
  }

  .prize__head{
    margin-bottom: 40px;
  }
    .prize__title{
      font-size: 36px;
      line-height: 44px;
      margin-bottom: 15px;
    }
    .prize__description{
      font-size: 24px;
      line-height: 30px;
    }


  .prize__body{
    display: flex;
  }
    .prize__block{
      box-sizing: border-box;
      width: calc(30% - 14px);
      margin: 0 7px;
      position: relative;
      padding-bottom: 20px;
    }
    .prize__block:before{
      content: "";
      display: block;
      position: absolute;
      width: 7px;
      height: 100%;
      top: 0;
      left: -7px;
      background: url(../img/prize/back-left.png) 0 -2px repeat-y;
      background-size: 7.1px auto;
    }
    .prize__block:after{
      content: "";
      display: block;
      position: absolute;
      width: 7px;
      height: 100%;
      top: 0;
      right: -7px;
      background: url(../img/prize/back-right.png) 0 -2px repeat-y;
      background-size: 7.1px auto;
    }
    .prize__img{
      width: 70%;
    }

  .prize-steps{}
    .prize-steps li{
      font-size: 14px;
      line-height: 18px;
    }
    .prize-steps li:before{
      margin-bottom: 10px;
      width: 36px;
      height: 36px;
      font-size: 16px;
      line-height: 36px;
    }
}
/* /PRIZE */

/* WORKSHOP */
.workshop {
  display: block;
  background: transparent;
}

.workshop__columns {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
  align-items: center;
  padding: 0 0 24px;
}

.workshop__column {
  width: 100%;
}

.workshop__title {
  display: block;
  color: #27ae60;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 600;
  margin-top: 24px;
}

.workshop__text {
  display: block;
  margin-top: 16px;
  color: #5f5f5f;
  font-size: 18px;
  line-height: 22px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 500;
  position: relative;
}

.workshop__image {
  display: block;
  height: 68.6%;
  width: calc(100% + 32px);
  margin: 0 -16px;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .workshop__columns {
    flex-direction: row;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
  }

  .workshop__column {
    width: auto;
  }

  .workshop__title {
    margin-top: 0;
    max-width: 300px;
  }

  .workshop__text {
    margin-top: 16px;
    margin-bottom: 4px;
    max-width: 420px;
  }

  .workshop__image {
    width: 440px;
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  .workshop__columns {
    gap: 40px;
    padding: 40px 0;
  }

  .workshop__title {
    font-size: 40px;
    line-height: 55px;
  }

  .workshop__text {
    font-size: 22px;
    line-height: 30px;
  }

  .workshop__image {
    width: 550px;
  }
}

@media screen and (min-width: 1280px) {
  .workshop__image {
    width: 660px;
  }

  .workshop__text {
    max-width: none;
  }

  .workshop__text::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -12px;
    right: 33px;
    width: 268px;
    height: 14px;
    background: url("../img/underline.svg") 100% 100% no-repeat;
    background-size: contain;
  }
}
/* /WORKSHOP
----------------------*/

/* SCRIPT-BLOCK */
.script-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3eb;
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.script-block__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 816px;
  height: 272px;
  z-index: 0;
  pointer-events: none;
}

.script-block__content {
  position: relative;
  z-index: 2;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

.script-block__content--center {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .script-block {
    padding: 80px 0;
  }

  .script-block__bg {
    width: 1632px;
    height: 544px;
  }

  .script-block__content {
    padding: 0 40px;
  }
}
/* /SCRIPT-BLOCK
----------------------*/

/* COUNTER */
.counter__title {
  display: block;
  color: #222222;
  font-size: 24px;
  line-height: 32px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.counter__text {
  display: block;
  color: #222222;
  margin-top: 8px;
  font-size: 18px;
  line-height: 26px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 500;
  text-align: center;
}

.counter__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 0;
  margin: 20px auto 0;
  max-width: 380px;
}

.counter__item {
  display: block;
  color: #222222;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  padding: 2px 0 2px 32px;
  min-width: 380px;
  box-sizing: border-box;
}

.counter__item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  height: 24px;
  margin-top: -12px;
  width: 20px;
  background: url("../img/dot.svg") 50% 50% no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .counter__list {
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    max-width: 760px;
  }

  .counter__item {
    min-width: 280px;
  }
}

@media screen and (min-width: 1024px) {
  .counter__title {
    font-size: 28px;
    line-height: 38px;
  }

  .counter__text {
    margin-top: 8px;
    font-size: 26px;
    line-height: 35px;
  }

  .counter__list {
    margin: 40px auto 0;
  }

  .counter__item {
    font-size: 18px;
    line-height: 26px;
    padding: 3px 0 3px 42px;
    min-width: 380px;
  }

  .counter__item::before {
    top: 16px;
    height: 32px;
    width: 26px;
    margin-top: -16px;
  }
}
/* /COUNTER
----------------------*/

/* FACTORY */
.factory {
  margin-top: 20px;
}

.factory:first-child {
  margin-top: 0;
}

.factory__columns {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.factory__list {
  display: grid;
  gap: 16px;
}

.factory__item {
  display: block;
  color: #222222;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 400;
  padding: 0 0 0 32px;
  box-sizing: border-box;
}

.factory__item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  height: 24px;
  margin-top: -12px;
  width: 20px;
  background: url("../img/dot.svg") 50% 50% no-repeat;
  background-size: contain;
}

.factory__image {
  margin: 0 -16px;
  width: calc(100% + 32px);
}

@media screen and (min-width: 768px) {
  .factory {
    margin-top: 40px;
  }

  .factory__columns {
    display: grid;
    grid-template-columns: 1fr 345px;
    gap: 20px;
    align-items: center;
  }

  .factory__image {
    margin: 0;
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .factory {
    margin-top: 60px;
  }

  .factory:first-child {
    margin-top: 0;
  }

  .factory__columns {
    grid-template-columns: 1fr 460px;
    gap: 40px;
  }

  .factory__list {
    gap: 24px;
  }

  .factory__item {
    font-size: 20px;
    line-height: 28px;
    padding: 0 0 0 42px;
  }

  .factory__item::before {
    top: 16px;
    height: 32px;
    width: 26px;
    margin-top: -16px;
  }
}
/* /FACTORY
----------------------*/

/* CARDS */
.cards {
  padding: 40px 0;
  margin: 0 auto;
  max-width: 370px;
}

.cards__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  background: #57cd65;
  border-radius: 0;
  position: relative;
  height: 0;
  padding-top: 100%;
}

.card:nth-child(2n) {
  background: #f3f3eb;
}

.card__content {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  box-sizing: border-box;
}

.card__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f3eb;
  width: 80px;
  height: 80px;
}

.card:nth-child(2n) .card-icon {
  background: #57cd65;
}

.card__text {
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 28px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 500;
  color: #ffffff;
}

.card__text:first-child {
  margin-top: 0;
}

.card:nth-child(2n) .card__text {
  color: #5f5f5f;
}

.card__script {
  position: absolute;
  z-index: 2;
  right: -47px;
  bottom: 20px;
}

@media screen and (max-width: 359px) {
  .card__script {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .cards {
    max-width: 796px;
  }

  .cards__list {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media screen and (min-width: 1280px) {
  .cards {
    padding: 80px 0;
    max-width: none;
  }

  .cards__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}

/* /CARDS
----------------------*/

/* DISCOUNT */
.discount__title {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 60px;
  background: #57cd65;
  font-size: 18px;
  line-height: 22px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  align-items: center;
}

.discount__text {
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 22px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 500;
  color: #222222;
  max-width: 800px;
}

.discount__form {
  margin: 24px auto 0;
  max-width: 864px;
}

.discount-form {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.discount-form__field {
  position: relative;
}

.discount-form__submit {
  background: #57cd65;
  font-size: 16px;
  line-height: 24px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 500;
  color: #ffffff;
  border: 0;
  border-radius: 60px;
  width: 100%;
  padding: 13px 16px;
  cursor: pointer;
}

.discount-form__input {
  background: #ffffff;
  border: 1px solid #57cd65;
  font-size: 16px;
  line-height: 24px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-weight: 500;
  color: #222222;
  border-radius: 60px;
  width: 100%;
  padding: 13px 16px;
  box-sizing: border-box;
  outline: none !important;
  transition: border-color 0.15s ease;
}

.discount-form__input:focus {
  border-color: #27ae60;
}

.discount-form__input::placeholder {
  color: #bdbdbd;
  opacity: 1;
}

.pform-field__error {
  position: absolute;
  left: 16px;
  right: 16px;
  text-align: left;
  color: #eb5757;
  top: 100%;
  font-size: 10px;
  line-height: 12px;
  font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

@media screen and (min-width: 768px) {
  .discount__title {
    padding: 8px 32px;
    font-size: 24px;
    line-height: 32px;
  }

  .discount__text {
    max-width: 400px;
  }

  .discount-form {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .pform-field__error {
    top: calc(100% + 4px);
    font-size: 12px;
    line-height: 16px;
  }

  .discount-form__submit {
    transition: background-color 0.15s ease;
  }

  .discount-form__submit:hover {
    background-color: #27ae60;
  }

  .discount-form__input:hover {
    border-color: #27ae60;
  }
}

@media screen and (min-width: 1024px) {
  .discount__title {
    padding: 8px 32px;
    font-size: 30px;
    line-height: 40px;
  }

  .discount__text {
    margin: 24px auto 0;
    font-size: 26px;
    line-height: 35px;
    max-width: 800px;
  }

  .discount__form {
    margin: 48px auto 0;
  }

  .discount-form {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* /DISCOUNT
----------------------*/
.accept-checkbox {
  position: relative;
  margin: 30px auto 0;
  max-width: 850px;
}

.accept-checkbox__text {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 14px;
  color: #222;
  padding-left: 33px;
  text-align: left;
}

.accept-checkbox__text a {
  text-decoration: none;
  color: #5f5f5f;
}

.checkbox__label {
  user-select: none;
  text-align: left;
}

.checkbox__label span {
  color: #eb5757;
}
