:root {
  --font-family: "Roboto", sans-serif;
  --content-width: 1000px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --dark-brown-color: #494132;
  --light-brown-color: #e4cca4;
  --acent-color: #80c059;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/RobotoLight.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/RobotoBlack.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Bender";
  src: url("../fonts/../fonts/BenderRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Bender";
  src: url("../fonts/../fonts/BenderBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Tahoma";
  src: url("../fonts/../fonts/TahomaBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 380px;
  min-height: 100%;
  font-size: 16px;
  background: #494132;
  color: var(--light-color);
  font-weight: 300;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.header {
  background-color: #342e24;
  padding: 15px 0;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo {
  width: 34px;
  height: 34px;
}
@media (max-width: 1024px) {
  .logo {
    position: relative;
    z-index: 99999;
  }
}

@media (max-width: 1024px) {
  .nav {
    opacity: 0;
    visibility: hidden;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.nav__item {
  font-weight: 900;
}
.nav__item--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .nav__item--mobile {
    display: block;
  }
}

.nav__item:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .nav__item:not(:last-child) {
    margin-right: 0;
  }
}
.nav__item:hover .nav__link {
  opacity: 0.8;
}
.nav__link {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--light-color);
  letter-spacing: 0.1em;
  font-weight: 900;
  line-height: 30px;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;

  
}

@media (max-width: 1024px) {
  .nav__link {
    line-height: 40px;
  }
}

.glink  {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--light-color);
  letter-spacing: 0.1em;
  font-weight: 900;
  line-height: 30px;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

a.glink.gt-current-lang {
  font-weight: bold;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .glink {
    position: relative;
    z-index: 99999;
  }
}

.burger {
  --burger-width: 30px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  z-index: 1111;
  display: none;
  margin-left: auto;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .burger {
    display: block;
    margin-left: 10px;
  }
}

@media (max-width: 1024px) {
  .menu--active {
    opacity: 1;
    visibility: visible;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--dark-brown-color);
  }
}
.main-title {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
@media (max-width: 1024px) {
  .main-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .main-title {
    align-items: end;
  }
} 
.main-title--sec {
  margin-bottom: 0;
}
.main-title__name {
  margin: 0;
  font-family: "Bender", sans-serif;
  background: url("../img/title-bg.jpg") no-repeat center/cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 177px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .main-title__name {
    font-size: 120px;
  }
}
@media (max-width: 768px) {
  .main-title__name {
    font-size: 84px;
  }
}
@media (max-width: 576px) {
  .main-title__name {
    font-size: 17vw;
  }
}
.main-title__subtitle {
  margin: 0;
  margin-top: -20px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
}
@media (max-width: 1024px) {
  .main-title__subtitle {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .main-title__subtitle {
    margin-top: 0px;
  }
}
@media (max-width: 576px) {
  .main-title__subtitle {
    font-size: 14px;
  }
}

.pre-order-info {
  margin: 0;
  max-width: 425px;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: var(--light-color);
}

@media (max-width:576px) {
  .pre-order-info {
    font-size: 19px;
  }
}
.pre-order-info__date {
  font-weight: 900;
}

.sec-hero {
  background-color: var(--dark-brown-color);
}
.sec-hero--buy {
  padding-bottom: 150px;
}
.sec-hero--rules {
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .sec-hero--rules {
    padding-bottom: 30px;
  }
}
.sec-hero__title {
  margin: 0;
  font-family: "Bender", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--light-color);
}
.sec-hero__title--mb {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .sec-hero__title--mb {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .sec-hero__title {
    padding-bottom: 50px;
  }
}
.sec-hero__text {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--light-color);
  line-height: 30px;
  letter-spacing: 0.06em;
}
.sec-hero__link {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: var(--acent-color);
  line-height: 30px;
  letter-spacing: 0.06em;
}

.breadcrumbs {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .breadcrumbs {
    margin-top: 15px;
  }
}

.breadcrumbs__link {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--light-color);
  transition: all 0.3s ease-in;
}
.breadcrumbs__item:hover {
  .breadcrumbs__link {
    text-decoration: underline;
  }
}
.breadcrumbs__item:first-of-type::after {
  content: "/";
  margin-left: 3px;
  margin-right: 5px;
}

.sec-page {
  background-color: var(--dark-brown-color);
  padding-bottom: 45px;
}
.sec-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.sec-page__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .sec-page__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
.sec-page__wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .sec-page__wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec-page__title {
  margin: 0;
  margin-bottom: 20px;
  font-family: "Bender", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--light-color);
}
.sec-page__text {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--light-color);
  line-height: 20px;
  letter-spacing: 0.06em;
}
.sec-page__link {
  font-weight: 900;
  color: var(--acent-color);
}
.sec-page__img-wrapper {
  position: relative;
}
@media (max-width: 768px) {
  .sec-page__img-wrapper {
    margin: 0 auto;
  }
}
.sec-page__btn {
  position: absolute;
  top: 47%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 235px;
  border-radius: 6px;
  background: rgba(38, 31, 91, 0.8);
  color: var(--light-color);
  font-weight: 900;
  font-size: 15px;
  padding: 28px 0;
  -webkit-transition: background 0.3s ease-in;
  transition: background 0.3s ease-in;
}
.sec-page__btn:hover {
  background: rgb(38, 31, 91);
}
.sec-page__mobile {
  display: none;
}
@media (max-width: 768px) {
  .sec-page__mobile {
    display: block;
  }
}

.questions__title {
  margin: 0;
  margin-bottom: 20px;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--light-color);
  letter-spacing: 0.05em;
}
.questions__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .questions__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.questions__list {
  width: 49%;
}
@media (max-width: 768px) {
  .questions__list--mb {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .questions__list {
    width: 100%;
  }
}
.questions__item:not(:last-child) {
  margin-bottom: 10px;
}
.questions__text {
  margin: 0;
  margin-bottom: 5px;
  color: var(--light-color);
  font-size: 15px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.06em;
}
.questions__answer {
  margin: 0;
  font-weight: 30;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.06em;
}
.questions__bold {
  font-weight: 900;
}

.hero {
  padding-top: 15px;
  padding-bottom: 40px;
  background-color: var(--dark-brown-color);
}
.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.hero__left {
  max-width: 470px;
}
.hero__special-offer {
  margin: 0;
  margin-bottom: 30px;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: var(--light-color);
}
@media (max-width: 768px) {
  .hero__special-offer {
    margin-bottom: 20px;
  }
}
.hero__text {
  margin: 0;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: var(--light-color);
}
.hero__list {
  margin-top: 40px;
  list-style-type: disc;
  margin-left: 20px;
}
.hero__item {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: var(--light-color);
}
.hero__item:not(:last-child) {
  margin-bottom: 8px;
}
.hero__right {
  margin-right: 100px;
}
@media (max-width: 1024px) {
  .hero__right {
    margin-right: 0;
  }
}

.hero-form {
  margin-top: 40px;
  margin-bottom: 48px;
}
.hero-form__text {
  margin: 0;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: var(--light-color);
}
.hero-form__wrapper  p {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero-form__input {
  max-width: 304px;
  margin-right: 10px;
  padding: 9px 12px;
  border: 1px solid #80c059;
  border-radius: 5px;
}

.hero-form__wrapper {
  max-width: 368px;
}
.hero-form__input::-webkit-input-placeholder {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.5);
}
.hero-form__input::-moz-placeholder {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.5);
}
.hero-form__input:-ms-input-placeholder {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.5);
}
.hero-form__input::-ms-input-placeholder {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.5);
}
.hero-form__input::placeholder {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.5);
}
.hero-form__btn {
  width: 54px;
  background-color: #80c059;
  border: 1px solid #80c059;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 900;
  color: var(--light-color);
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  flex-shrink: 0;
}
.hero-form__btn:hover {
  opacity: 0.8;
}

.cube-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  -webkit-perspective: 600px;
  perspective: 600px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .cube-wrapper {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .cube-wrapper {
    width: 200px;
    height: 200px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.cube-wrapper:hover .cube {
  -webkit-transform: rotateY(405deg) rotateX(360deg);
  transform: rotateY(405deg) rotateX(360deg);
}

.cube {
  width: inherit;
  height: inherit;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 10s;
  transition: -webkit-transform 10s;
  transition: transform 10s;
  transition: transform 10s, -webkit-transform 10s;
  -webkit-transform: rotateY(-44deg) rotateX(56deg);
  transform: rotateY(-44deg) rotateX(56deg);
}
.cube__side {
  position: absolute;
  width: inherit;
  height: inherit;
  border: 5px solid #b9a688;
  border-radius: 20px;
}
.cube__front {
  -webkit-transform: translateZ(125px);
  transform: translateZ(125px);
  background: url("../img/cube-front.jpg");
  background-size: cover;
}
@media (max-width: 576px) {
  .cube__front {
    -webkit-transform: translateZ(100px);
    transform: translateZ(100px);
  }
}
.cube__back {
  -webkit-transform: rotateY(180deg) translateZ(125px);
  transform: rotateY(180deg) translateZ(125px);
  background: url("../img/cube-back.jpg");
  background-size: cover;
}
@media (max-width: 576px) {
  .cube__back {
    -webkit-transform: rotateY(180deg) translateZ(100px);
    transform: rotateY(180deg) translateZ(100px);
  }
}
.cube__right {
  -webkit-transform: rotateY(90deg) translateZ(125px);
  transform: rotateY(90deg) translateZ(125px);
  background: url("../img/cube-right.jpg");
  background-size: cover;
}
@media (max-width: 576px) {
  .cube__right {
    -webkit-transform: rotateY(90deg) translateZ(100px);
    transform: rotateY(90deg) translateZ(100px);
  }
}
.cube__left {
  -webkit-transform: rotateY(-90deg) translateZ(125px);
  transform: rotateY(-90deg) translateZ(125px);
  background: url("../img/cube-left.jpg");
  background-size: cover;
}
@media (max-width: 576px) {
  .cube__left {
    -webkit-transform: rotateY(-90deg) translateZ(100px);
    transform: rotateY(-90deg) translateZ(100px);
  }
}
.cube__top {
  -webkit-transform: rotateX(90deg) translateZ(125px);
  transform: rotateX(90deg) translateZ(125px);
  background: url("../img/cube-top.jpg");
  background-size: cover;
}
@media (max-width: 576px) {
  .cube__top {
    -webkit-transform: rotateX(90deg) translateZ(100px);
    transform: rotateX(90deg) translateZ(100px);
  }
}
.cube__bottom {
  -webkit-transform: rotateX(-90deg) translateZ(125px);
  transform: rotateX(-90deg) translateZ(125px);
  background: url("../img/cube-bottom.jpg");
  background-size: cover;
}
@media (max-width: 576px) {
  .cube__bottom {
    -webkit-transform: rotateX(-90deg) translateZ(100px);
    transform: rotateX(-90deg) translateZ(100px);
  }
}

.about {
  background-color: var(--dark-brown-color);
  padding-bottom: 146px;
}
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.about__slider-wrapper {
  max-width: 470px;
  position: relative;
}
@media (max-width: 1024px) {
  .about__slider-wrapper {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .about__slider-wrapper {
    max-width: 350px;
  }
}
.about__btns {
  position: absolute;
  width: 100%;
  top: 21.5%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about__btn {
  width: 10px;
  height: 21px;
  position: absolute;
  z-index: 11;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.about__btn:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.about__prev {
  background: url("../img/prev-btn.png");
  left: 0;
}
.about__next {
  background: url("../img/next-btn.png");
  right: 0;
}
.about__item:not(:last-child) {
  margin-bottom: 47px;
}
.about__title {
  margin: 0;
  margin-bottom: 26px;
  text-align: center;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: var(--light-color);
}
.about__list {
  list-style-type: disc;
}

@media (max-width: 576px) {
  .about__list {
    padding-left: 10px;
  }
}


.about__list--style {
  list-style-type: ">  ";
}
.about__link {
  color: var(--acent-color);
  font-weight: 900;
}
.about__list-item {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--light-color);
}

.variants {
  background-color: var(--light-brown-color);
}

.calculator {
  position: relative;
  top: -117px;
}

@media (max-width: 576px) {
  .calculator {
    top: -114px;
  }
}
.calculator__title {
  margin: 0;
  margin-bottom: 35px;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .calculator__title {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .calculator__title {
    font-size: 18px;
  }
}
.calculator__size-variants {
  max-width: 468px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .calculator__size-variants {
    margin: 0 auto;
  }
}
.calculator__size-variant {
  width: 222px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 17px 0;
  background-color: #8e7856;
  border: 1px solid #8e7856;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: var(--light-color);
}
@media (max-width: 576px) {
  .calculator__size-variant {
    width: 170px;
  }
}
.calculator__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.calculator__row:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-color);
}
@media (max-width: 1024px) {
  .calculator__row:not(:last-child) {
    margin-top: 15px;
  }
}
@media (max-width: 1024px) {
  .calculator__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.calculator__items {
  max-width: 468px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.calculator__item {
  background-color: #8e7856;
  width: 221px;
  padding: 15px 20px 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .calculator__item {
    width: 48%;
  }
}
.calculator__list-item {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: var(--light-color);
}
.calculator__list-item:not(:last-child) {
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  .calculator__list-item {
    font-size: 12px;
  }
}
.calculator__list-item--big {
  margin: 0;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
}
@media (max-width: 576px) {
  .calculator__list-item--big {
    font-size: 14px;
  }
}
.calculator__btn {
  margin-left: 10px;
  max-width: 444px;
  padding: 31px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--acent-color);
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #27540c;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.calculator__btn:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .calculator__btn {
    margin: 0 auto;
  }
}

.calculator-descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}
@media (max-width: 1024px) {
  .calculator-descr {
    margin-top: 20px;
    max-width: 468px;
    width: 100%;
    justify-content: space-between;
  }
}
.calculator-descr__img-wrapper {
  width: 162px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.calculator-descr__wrapper {
  position: relative;
}
.calculator-descr__text {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Bender", sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: var(--light-color);
}
@media (max-width: 576px) {
  .calculator-descr__text {
    font-size: 12px;
  }
}
.calculator-descr__text--center {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 100%;
}
.calculator-descr__info {
  margin-left: 20px;
}
@media (max-width: 576px) {
  .calculator-descr__info {
    margin-left: 5px;
  }
}
.calculator-descr__title {
  margin: 0;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: #000;
}
@media (max-width: 576px) {
  .calculator-descr__title {
    font-size: 12px;
  }
}
.calculator-descr__item {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: #000;
}
.calculator-descr__item:not(:last-child) {
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  .calculator-descr__item:not(:last-child) {
    margin-bottom: 2px;
  }
}
@media (max-width: 576px) {
  .calculator-descr__item {
    font-size: 9px;
    text-shadow: none;
  }
}


.label__checkbox {
  display: none;
}



.label__check {
  display: inline-block;
  border-radius: 50%;
  background-color: #6f5a34;
  background-image: url("../img/check.png");
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  width: 47px;
  height: 47px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.label__check:hover {
  border: 1px solid #e4cca4;
}

.label__checkbox:checked + .label__text .label__check {
  -webkit-animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
  animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

@-webkit-keyframes icon {
  from {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes icon {
  from {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes check {
  0% {
    border-width: 5px;
  }
  10% {
    opacity: 0.1;
    background-color: rgba(0, 0, 0, 0.2);
    border-width: 15px;
  }
  12% {
    opacity: 0.4;
    background-color: rgba(0, 0, 0, 0.1);
    border-width: 0;
  }
  50% {
    background-color: var(--acent-color);
    border: 0;
    opacity: 0.6;
  }
  100% {
    background-color: var(--acent-color);
    border: 0;
    opacity: 1;
  }
}
@keyframes check {
  0% {
    border-width: 5px;
  }
  10% {
    opacity: 0.1;
    background-color: rgba(0, 0, 0, 0.2);
    border-width: 15px;
  }
  12% {
    opacity: 0.4;
    background-color: rgba(0, 0, 0, 0.1);
    border-width: 0;
  }
  50% {
    background-color: var(--acent-color);
    border: 0;
    opacity: 0.6;
  }
  100% {
    background-color: var(--acent-color);
    border: 0;
    opacity: 1;
  }
}
.calculator-result {
  margin-top: 20px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .calculator-result {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.calculator-result__output {
  max-width: 468px;
  width: 100%;
  padding: 33px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #8e7856;
  border: 1px solid #8e7856;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin: 0;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.28);
  color: var(--light-color);
}
@media (max-width: 576px) {
  .calculator-result__output {
    font-size: 16px;
  }
}
.calculator-result__text {
  margin: 0;
  width: 50%;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--light-color);
}
.calculator-result__text--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .calculator-result__text--mobile {
    display: block;
  }
}
@media (max-width: 1024px) {
  .calculator-result__text {
    display: none;
  }
}
.calculator-result__link {
  margin: 0;
  font-weight: 900;
  color: var(--acent-color);
}

.author {
  margin-top: -297px;
  padding-top: 178px;
  padding-bottom: 55px;
  background-color: var(--dark-brown-color);
}

@media (max-width: 576px) {
  .author {
    margin-top: -290px;
  }
}
.author__container {
  max-width: 1073px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .author__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.author__left {
  max-width: 469px;
}
@media (max-width: 1024px) {
  .author__left {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}


.author__title {
  margin: 0;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  color: var(--light-color);
  font-weight: 400;
}
.author__text {
  margin: 0;
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.06em;
  color: var(--light-color);
}

.author__img {
  max-width: 576px;
}
.author__list {
  margin-top: 25px;
  text-align: center;
}
.author__item {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--light-color);
}
.author__item:not(:last-child) {
  margin-bottom: 5px;
}
.author__item--title {
  margin-bottom: 30px;
}
.where-to-buy {
  padding-bottom: 49px;
  background-color: var(--dark-brown-color);
  background-image: url('../img/gradient.png');
}
.where-to-buy__container {
  padding-top: 33px;
  border-top: 5px solid var(--light-color);
}
.where-to-buy__title {
  margin: 0;
  font-family: "Bender", sans-serif;
  font-weight: 400;
  margin-bottom: 42px;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--light-color);
}
.where-to-buy__slider-wrapper {
  position: relative;
}
.where-to-buy__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.where-to-buy__item {
  max-width: 200px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 188px;
}
.where-to-buy__image {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 86px;
  height: 86px;
  -o-object-fit: contain;
  object-fit: contain;
}
.where-to-buy__name {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 900;
  color: var(--light-color);
}
.where-to-buy__text {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  color: var(--light-color);
}
.where-to-buy__text span {
  font-weight: 900;
}
.where-to-buy__link {
  color: var(--acent-color);
  font-weight: 900;
}
.where-to-buy__phone {
  font-family: "Bender", sans-serif;
  font-size: 20px;
  color: var(--light-color);
}
.where-to-buy__btns {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.where-to-buy__btn {
  width: 10px;
  height: 21px;
  position: absolute;
  z-index: 9999999;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.where-to-buy__btn:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.where-to-buy__prev {
  background: url("../img/prev-btn.png");
  left: -10px;
}
.where-to-buy__next {
  background: url("../img/next-btn.png");
  right: -10px;
}

.footer {
  padding: 40px 0;
  background-color: #342E24;
}
.footer__top {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__column {
  max-width: 180px;
}
.footer__text {
  margin: 0;
  margin-bottom: 15px;
  font-size: 15px;
  color: #e4cca4;
  text-align: center;
}
.footer__btn {
  width: 177px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--acent-color);
  border-radius: 5px;
  padding: 17px 0;
  color: #27540c;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.footer__btn:hover {
  opacity: 0.8;
}
.footer__menu {
  max-width: 445px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__menu {
    display: none;
  }
}
.footer__menu--mobile {
  display: none;
}
@media (max-width: 768px) {
  .footer__menu--mobile {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.footer__item:not(:last-child) {
  margin-bottom: 25px;
}
.footer__link {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  color: #e4cca4;
}
.footer__languages {
  margin-bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__lang {
  color: #e4cca4;
  font-size: 15px;
}
.footer__lang--active {
  margin-left: 5px;
  text-decoration: underline;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__social-link {
  display: block;
  width: 34px;
  height: 34px;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.footer__social-link:not(:last-child) {
  margin-right: 15px;
}
.footer__social-link:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.footer__copy {
  margin: 0;
  font-size: 13px;
  color: var(--light-color);
  line-height: 20px;
}
.footer__copy a {
  color: inherit;
  text-decoration: underline;
}

.modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal-overlay--visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 550px;
  width: 100%;
  padding: 45px 25px 20px 25px;
  border-radius: 29px;
  background-color: #271F5B;
}
@media (max-width: 768px) {
  .modal {
    padding: 10px;
    padding-top: 25px;
    max-width: 360px;
  }
}
.modal--visible {
  display: block;
}
.modal__close {
  position: absolute;
  z-index: 1200;
  display: flex;
  align-items: center;
  top: 10px;
  right: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  color: var(--light-color);
  text-transform: lowercase;
  background-color: none;
}

.modal__close span {
  font-family: "Bender", sans-serif;
  font-size: 20px;
  margin-right: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
}
.modal__title {
  margin: 0;
  margin-bottom: 25px;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--light-color);
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .modal__title {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}



@media (max-width: 768px) {
  .cart-modal {
    overflow-y: scroll;
    max-height: 600px;
    
  }
}
.modal__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal__wrapper p {
  margin: 0;
  display: flex;
  margin-bottom: 10px;
}

.wpcf7-form-control-wrap {
  width: 100% !important;
}
.modal__label {
  margin: 0;
  width: 100%;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modal__label--column {
  flex-direction: column;
  align-items: start;
}

@media (max-width: 768px) {
  .modal__label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
.modal__label:not(:last-child) {
  margin-right: 10px;
}

.modal__select {
  padding: 9px 10px;
  max-width: 350px;
  width: 100%;
  margin-left: 10px;
  background-color: var(--light-color);
  border: 1px solid #9996b1;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .modal__select {
    margin-left: 0;
  }
}

.modal__input-wrapper p {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.modal__input-wrapper--column p {
  margin: 0;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}



.modal__input-wrapper:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .modal__input-wrapper:not(:last-of-type) {
    margin-bottom: 10px;
  }
}

.modal__input-adress {
  margin-bottom: 15px;
}

.modal__input-name {
  margin: 0;
  width: 110px;
  
  font-size: 15px;
  font-weight: 900;
  color: var(--light-color);
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .modal__input-name {
    margin-bottom: 5px;
  }
}

.modal__select--column {
  margin: 0;
  margin-top: 10px;
}

.modal__input-name--column {
  width: 100%;
  margin-bottom: 10px;
}
.modal__input {
  outline: none;
  padding: 10px;
  width: 100%;
  background-color: var(--light-color);
  border: 1px solid #9996b1;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #000;
}
.modal__input::-webkit-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #000;
}
.modal__input::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #000;
}
.modal__input:-ms-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #000;
}
.modal__input::-ms-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #000;
}
.modal__input::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #000;
}

.modal__text {
  margin: 0;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--light-color);
  letter-spacing: 0.1em;
}
.modal__textarea {
  margin-bottom: 25px;
  outline: none;
  padding: 13px 10px;
  resize: none;
  width: 100%;
  height: 223px !important;
  background-color: var(--light-color);
  border: 1px solid #9996b1;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #000;
}
@media (max-width: 768px) {
  .modal__textarea {
    height: 160px !important;
    margin-bottom: 20px;
  }
}
.modal__btn {
  margin: 0 auto;
  margin-top: 15px;
  padding: 23px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--acent-color);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--light-color);
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

@media (max-width: 768px)  {
  .modal__btn {
    padding: 23px 0;
    width: 100%;
  }
}
.modal__btn:hover {
  opacity: 0.8;
}

.modal__size-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__size-left {
  margin-right: 15px;
}

.modal__size-right {
  padding-top: 7px;
}

.modal__checkbox {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #52506c;
  display: inline-block;
  margin-right: 5px;
}

.modal__size-block label {
  position: relative;
  top: -2px;
  display: flex;
  flex-shrink: 0;
  width: 100%;
}

.modal__size-block-row {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .modal__size-block-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
  }
}

.modal__size-block-row div {
  margin-right: 4px;
}

.modal__size-block-row div.modal__checkbox-switch {
  margin-right: 5px;
  float: left;
  width: 40px;
  border: 1px solid #52506c;
  height: 22px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .modal__size-block-row div.modal__checkbox-switch {
    margin-bottom: 3px;
  }
}

.modal__size-block label.modal__label-switch {
  top: 2px;
}

.modal__summ {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 26px;
  text-align: center;
  font-family: "Bender", sans-serif;
}

.modal__weight, .modal__volume {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  text-align: center;
}

.checkbox-size4-row1.active .modal__checkbox-mb, .checkbox-size3-row1.active .modal__checkbox-mb, .modal__checkbox.active, .active .modal__checkbox {
  background: var(--acent-color);
}

.checkbox-size4-row1 .modal__checkbox, .checkbox-size3-row1 .modal__checkbox {
  margin-right: 0px;
  cursor: pointer;
}

.page-contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page-contacts__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
.page-contacts__left {
  max-width: 470px;
}
.page-contacts__title {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Bender", sans-serif;
  font-weight: 400;
  color: var(--light-color);
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-contacts__text {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  color: var(--light-color);
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .page-contacts__text {
    margin-bottom: 20px;
  }
}
.page-contacts__link {
  font-weight: 900;
  color: var(--acent-color);
}

.page-buy {
  background-color: var(--dark-brown-color);
  padding-top: 240px;
  padding-bottom: 80px;
  margin-top: -296px;
}
.page-buy__text {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.06em;
  color: var(--light-color);
}

.tabs {
  width: 100%;
  margin-top: -63px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .tabs {
    margin-top: -57px;
  }
}
@media (max-width: 576px) {
  .tabs {
    display: none;
    margin-top: 0;
    padding-top: 20px;
  }
}
.tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 576px) {
  .tabs__navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.tabs__navigation:hover .tool-tabs__tab.active {
  color: #000;
  font-weight: 400;
  background-color: #c8c8c8;
}
.tabs__navigation:hover .tool-tabs__tab.active:after {
  width: 0;
}
.tabs__navigation:hover .tool-tabs__tab:hover.active {
  color: #000;
  font-weight: 500;
}
.tabs__navigation:hover .tool-tabs__tab:hover.active:after {
  width: 100%;
}
.tabs__btn {
  padding: 20px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #310A41;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--light-color);
  cursor: pointer;
  -webkit-transition: background 0.3s ease-in;
  transition: background 0.3s ease-in;
}
@media (max-width: 1024px) {
  .tabs__btn {
    padding: 20px 5px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .tabs__btn {
    padding: 13px 0;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .tabs__btn {
    border-radius: 10px;
    border: 1px solid #fff;
  }
}
.tabs__btn.active {
  background-color: #342e24;
}
.tabs__btn:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 576px) {
  .tabs__btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.tabs__btn:hover {
  background-color: #342e24;
}
.tabs__content {
  margin-top: 45px;
}
@media (max-width: 576px) {
  .tabs__content {
    margin-top: 20px;
  }
}
.tabs__btns {
  padding-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tabs__nav-btn {
  width: 59px;
  height: 59px;
  background-color: #4f1f63;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.3);
}
.tabs__nav-btn:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.tabs__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .tabs__btn-wrapper {
    display: none;
  }
}
.tabs__text {
  margin: 0;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--light-color);
  margin: 0 25px;
}
@media (max-width: 1024px) {
  .tabs__text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .tabs__top {
    margin: 0 auto;
  }
}
.tabs__body {
  display: none;
  font-size: 18px;
}
.tabs__body.active {
  display: block;
}

.page-rules {
  background-color: #342e24;
}

@media (max-width: 576px) {
  .page-rules {
    background-color: var(--dark-brown-color);
  }
}
.page-rules__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .page-rules__grid {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.page-rules__left {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
}
@media (max-width: 768px) {
  .page-rules__left {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}
.page-rules__right {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
}
@media (max-width: 768px) {
  .page-rules__right {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}
.page-rules__offer {
  margin-bottom: 40px;
}
.page-rules__offer--mb {
  margin-bottom: 0;
}
.page-rules__title {
  margin: 0;
  margin-bottom: 20px;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.05em;
  color: var(--light-color);
}
.page-rules__title--center {
  text-align: center;
}
.page-rules__text {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 20px;
  color: var(--light-color);
}
.page-rules__text--mb {
  margin-bottom: 20px;
}
.page-rules__centred-text {
  margin: 0;
  margin-top: 25px;
  margin-bottom: 25px;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 20px;
  color: var(--light-color);
}
.page-rules__subtitle {
  display: block;
  font-weight: 900;
}
.page-rules__img {
  width: 100%;
}
.page-rules__img--size {
  display: block;
  margin: 0 auto;
  width: 195px;
  height: 195px;
}
.page-rules__green {
  font-weight: 900;
  color: #c1ff9b;
}
.page-rules__yellow {
  font-weight: 900;
  color: #ffdc9b;
}
.page-rules__purple {
  font-weight: 900;
  color: #e2a0ff;
}
.page-rules__video {
  margin-bottom: 40px;
  width: 100%;
  height: 255px;
}
.page-rules__video iframe {
  width: 100%;
  height: 255px;
  border-radius: 45px;
}
.page-rules__list {
  margin-bottom: 40px;
}
.page-rules__item:not(:last-child) {
  margin-bottom: 30px;
}
.page-rules__number {
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--light-color);
}
.page-rules__img-full {
  max-width: 513px;
  display: block;
  margin: 0 auto;
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  .page-rules__img-full {
    max-width: 350px;
  }
}
.page-rules__slider-wrapper {
  max-width: 470px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 50px;
}

.page-rules__slider-wrapper {
  margin-top: 20px;
}

.page-rules__swiper-wrapper {
  align-items: flex-end;
}
.page-rules__btns {
  position: absolute;
  width: 100%;
  top: 28.5%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-rules__btn {
  width: 10px;
  height: 21px;
  position: absolute;
  z-index: 11;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.page-rules__btn:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.page-rules__prev {
  background: url("../img/prev-btn.png");
  left: 0;
}
.page-rules__next {
  background: url("../img/next-btn.png");
  right: 0;
}
.page-rules__bold-text {
  margin: 0;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 900;
  color: var(--light-color);
  letter-spacing: 0.06em;
}
.page-rules__img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .page-rules__img-small {
    width: 48%;
  }
}


.page-question {
  background-color: var(--dark-brown-color);
  padding: 40px 0;
}

.page-rules-zone__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.page-rules-zone__item:not(:last-child) {
  margin-bottom: 15px;
}
.page-rules-zone__img {
  margin-right: 25px;
  width: 39px;
  height: 39px;
}
.page-rules-zone__text {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.06em;
  font-weight: 300;
  color: var(--light-color);
}

.page-rules-bold-list__item:not(:last-child) {
  margin-bottom: 15px;
}
.page-rules-bold-list__text {
  margin: 0;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 900;
  color: var(--light-color);
  letter-spacing: 0.06em;
}

.page-rules-row {
  margin-bottom: 20px;
  width: 100%;
}
.page-rules-row__title {
  margin: 0;
  margin-bottom: 20px;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--light-color);
}
.page-rules-row__text {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 20px;
  color: var(--light-color);
}

.page-rules-card {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .page-rules-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.page-rules-card__item {
  width: 32%;
}
@media (max-width: 768px) {
  .page-rules-card__item {
    width: 100%;
  }
  .page-rules-card__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.page-rules-card__top {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-rules-card__img {
  margin-right: 15px;
  display: block;
  width: 43px;
  height: 43px;
}
.page-rules-card__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-rules-card__name {
  margin: 0;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--light-color);
}
.page-rules-card__small-text {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--light-color);
}
.page-rules-card__text {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.06em;
  color: var(--light-color);
}

.page-rules-btn {
  top: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-rules-img {
  display: block;
  width: 373px;
  margin: 0 auto;
}

.not-found {
  padding: 50px 0;
  background-color: var(--dark-brown-color);
}

.not-found__title {
  margin: 0;
  text-align: center;
  font-family: "Bender", sans-serif;
  background: url("../img/title-bg.jpg") no-repeat center/cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 177px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .not-found__title {
    font-size: 120px;
  }
}

.not-found__subtitle {
  margin: 0;
  margin-bottom: 22px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-color);
}

.not-found__text {
  margin: 0;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 360px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--light-color);
}

.not-found__btn {
  width: 177px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--acent-color);
  border-radius: 5px;
  padding: 17px 0;
  color: #27540c;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.not-found__btn:hover {
  opacity: 0.7;
}

.policy {
  padding: 50px 0;
  background-color: var(--dark-brown-color);
}

.policy__number-list {
  list-style-type: none;
  padding-left: 0;
}


.policy__list {
  list-style-type: disc;
}


.policy__link {
  color: var(--acent-color);
}

.thx-modal {
  padding: 20px;
  max-width: 360px;
  border-radius: 29px;
  background-color: #271F5B;
}

.thx-modal__text {
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--light-color);
}

.thx-modal__img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.thx-modal__btn {
  width: 177px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--acent-color);
  border-radius: 5px;
  padding: 17px 0;
  color: #27540c;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.thx-modal__btn:hover {
  opacity: 0.7;
}


/* accordion */

.accordion__wrapper {
  display: none;
}

@media (max-width:576px) {
  .accordion__wrapper {
    display: block;
  }
}

.accordion{
  display: none;
  justify-content: space-between;
  align-items: center;
  color: var(--light-color);
  cursor: pointer;
  width: 100%;
  transition: all 0.5s;
  outline: none;
  font-family: "Bender", sans-serif;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.05em;
}

@media (max-width:576px) {
  .accordion {
    display: flex;
    margin-bottom: 5px;
  }
}

.accordion__left {
  display: flex;
  align-items: center;
}

.accordion__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 5px;
  margin-right: 15px;
  background-color: #4f1f63;
}

.accordion__name {
	font-size: 16px;
}

.accordion__plus::after {
  content: '+';
  font-size: 42px;
  color: var(--light-color);
}

.panel{
  margin-top: 30px;
  display: none;
  overflow: hidden;
}

.acc-active .accordion__plus::after {
  content: '-';
}

p {
  margin: 0;
}

[type=checkbox], [type=radio] {
-webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    width: 20px;
    height: 20px;
    opacity: 1;
    margin-left: -16px;
    margin-top: 3px;
    opacity: 0;
}

.wpcf7-list-item-label {
	display: none;
}

.wpcf7-response-output {
	display: none;
}

.wpcf7-spinner {
	display: none;
}