
.description {
  padding-bottom: 60px;
}
@media screen and (min-width: 570px) {
  .description {
    padding-bottom: 100px;
  }
}
.description__heading {
  margin-bottom: 25px;
}
@media screen and (min-width: 570px) {
  .description__heading {
    margin-bottom: 40px;
  }
}
.description__intro {
  margin: 0 auto 30px auto;
  max-width: 540px;
  font-size: 14px;
}
@media screen and (min-width: 570px) {
  .description__intro {
    margin-bottom: 75px;
    font-size: 18px;
  }
}
.description__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 30px;
  text-align: center;
  list-style: none;
}
@media screen and (min-width: 820px) {
  .description__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (calc(33.3333333% - 50px))[3];
        grid-template-columns: repeat(3, calc(33.3333333% - 50px));
    grid-gap: 55px 75px;
  }
}
.description__item {
  width: calc(50% - 15px);
}
.description__item:nth-child(odd) {
  margin-right: 30px;
}
.description__item:last-child {
  margin-right: 0;
}
.description__item span {
  word-break: break-all;
}
@media screen and (min-width: 820px) {
  .description__item span {
    word-break: normal;
  }
}
.description__item img {
  margin-bottom: 10px;
}
@media screen and (min-width: 570px) {
  .description__item img {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 820px) {
  .description__item {
    width: 100%;
  }
}

.faq {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 50px;
}
@media screen and (min-width: 570px) {
  .faq {
    padding-bottom: 100px;
  }
}
.faq__heading {
  margin-bottom: 45px;
}
@media screen and (min-width: 570px) {
  .faq__heading {
    margin-bottom: 110px;
  }
}
.faq__list {
  list-style: none;
  text-align: left;
}
.faq__item {
  position: relative;
  padding-left: 55px;
  margin-bottom: 25px;
}
.faq__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 570px) {
  .faq__item {
    padding-left: 80px;
  }
}
.faq__item::before {
  position: absolute;
  left: 0;
  top: 0;
  content: url("../assets/images/chevron.svg");
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 42px;
  height: 42px;
  line-height: 1;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #d31027 0%, #ea384d 100%);
  transform: translateY(-25%);
}
@media screen and (min-width: 570px) {
  .faq__item::before {
    width: 50px;
    height: 50px;
    transform: none;
  }
}
.faq__toggler {
  min-height: 55px;
  font-size: 16px;
  font-family: 'Bitter', serif;
  border-bottom: 0.842581px dashed rgba(212,166,122,0.75);
  cursor: pointer;
}
.faq__toggler.active + .faq__expand {
  display: block;
}
@media screen and (min-width: 570px) {
  .faq__toggler {
    font-size: 24px;
    min-height: auto;
    padding-bottom: 30px;
    padding-top: 5px;
  }
}
.faq__expand {
  display: none;
  padding: 20px;
  min-height: 130px;
  background-color: #110c08;
}
@media screen and (min-width: 570px) {
  .faq__expand {
    padding: 30px;
  }
}

.footer {
  padding: 80px 0 150px 0;
  background-color: #110c08;
}
.footer__heading {
  margin-bottom: 55px;
}
@media screen and (min-width: 570px) {
  .footer__heading {
    margin-bottom: 90px;
  }
}
@media screen and (min-width: 570px) {
  .footer {
    padding: 80px 0 50px 0;
  }
}
.footer address {
  font-style: normal;
  font-size: 16px;
}
.footer__phone {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 16px;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 570px) {
  .footer__phone {
    font-size: 24px;
  }
}
.footer__messengers {
  margin-bottom: 20px;
}
@media screen and (min-width: 570px) {
  .footer__messengers {
    margin-bottom: 50px;
  }
}

.form form {
  max-width: 570px;
  margin: 0 auto;
}
.form__heading {
  margin-bottom: 25px;
}
.form__block {
  position: relative;
}
.form__block + .form__block {
  margin-top: 30px;
}
.form__intro {
  margin-bottom: 70px;
  font-size: 14px;
}
@media screen and (min-width: 570px) {
  .form__intro {
    font-size: 18px;
  }
}
.form input {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 60px;
  width: 100%;
  padding: 15px 20px;
}
.form input + span {
  position: absolute;
  top: -25px;
  left: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s linear;
}
.form input:not(:placeholder-shown) + span {
  visibility: visible;
  opacity: 1;
}
.form textarea {
  width: 100%;
  height: 140px;
  padding: 15px 20px;
  font: inherit;
  resize: none;
}
.form textarea + span {
  position: absolute;
  top: -25px;
  left: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s linear;
}
.form textarea:not(:placeholder-shown) + span {
  visibility: visible;
  opacity: 1;
}
.form__submit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 70px;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  background: linear-gradient(90deg, #d31027 0%, #ea384d 100%);
  border: none;
  border-radius: 80px;
  cursor: pointer;
}
.form__submit:hover {
  background-image: linear-gradient(90deg, #e8011c 0%, #ff203a 100%);
}
@media screen and (min-width: 570px) {
  .form__submit {
    font-size: 18px;
  }
}
.form__notice {
  margin-top: 100px;
  padding: 20px 0 12px 0;
  border-top: 1px solid rgba(212,166,122,0.3);
}
@media screen and (min-width: 570px) {
  .form__notice {
    margin-top: 30px;
    margin-bottom: 80px;
    font-size: 14px;
    border-bottom: 1px solid rgba(212,166,122,0.3);
  }
}

.header {
  padding-top: 25px;
  margin-bottom: 65px;
}
@media screen and (min-width: 570px) {
  .header {
    padding-top: 90px;
    margin-bottom: 80px;
  }
}
.header__layout {
  display: inline-block;
}
@media screen and (min-width: 570px) {
  .header__layout {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.header__messengers {
  margin-bottom: 20px;
}
.header__phone {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 50px;
  width: 100%;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(90deg, #d31027 0%, #ea384d 100%);
  border: none;
  border-radius: 80px;
  padding: 0 30px;
  font-size:20px;
}
@media screen and (min-width: 570px) {
  .header__phone {
    width: 250px;
    margin-left: 30px;
  }
}

.heading {
  position: relative;
  display: inline-block;
  font-size: 35px;
  text-align: center;
  font-family: 'Bitter', serif;
  font-weight: 400;
  line-height: 1.3;
  color:#50d550;
}
@media screen and (min-width: 570px) {
  .heading {
    display: block;
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
    font-size: 40px;
  }
}
@media screen and (min-width: 820px) {
  .heading {
    font-size: 52px;
    font-size: 60px;
  }
}
.heading::before,
.heading::after {
  position: absolute;
  bottom: 0;
  content: '';
  width: 90px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 820px) {
  .heading::before,
  .heading::after {
    width: 150px;
    height: 50px;
  }
}
.heading::before {
  left: 0;
  transform: translate(-100%, 0);
}
@media screen and (min-width: 570px) {
  .heading::before {
    transform: none;
  }
}
.heading::after {
  right: 0;
  transform: translate(100%, 0);
}
@media screen and (min-width: 570px) {
  .heading::after {
    transform: none;
  }
}
/*.heading--main::before {
  background-image: url("../assets/images/decor-left-2.svg");
}
.heading--main::after {
  background-image: url("../assets/images/decor-right-2.svg");
}*/
.heading--secondary::before {
  bottom: 50%;
  transform: translate(-100%, 50%);
  background-image: url("../assets/images/decor-left-1.svg");
}
@media screen and (min-width: 570px) {
  .heading--secondary::before {
    transform: translate(0, 50%);
  }
}
.heading--secondary::after {
  bottom: 50%;
  transform: translate(100%, 50%);
  background-image: url("../assets/images/decor-right-1.svg");
}
@media screen and (min-width: 570px) {
  .heading--secondary::after {
    transform: translate(0, 50%);
  }
}

.hero {
  padding-bottom: 80px;
}
.hero .heading {
  margin-bottom: 40px;
}
.hero .heading::before {
  transform: translateX(-50%);
}
.hero .heading::after {
  transform: translateX(50%);
}
@media screen and (min-width: 570px) {
  .hero .heading::before {
    bottom: 50%;
    transform: translateY(50%);
  }
  .hero .heading::after {
    bottom: 50%;
    transform: translateY(50%);
  }
}
@media screen and (min-width: 1100px) {
  .hero .heading::before {
    transform: translate(-100%, 50%);
  }
  .hero .heading::after {
    transform: translate(100%, 50%);
  }
}
.hero__intro {
  margin: 0 auto 5px auto;
  max-width: 500px;
  font-size: 18px;
}
@media screen and (min-width: 570px) {
  .hero__intro {
    font-size: 18px;
  }
}
.hero__button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 60px;
  width: 100%;
  max-width: 212px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: #bc936c;
  border-radius: 80px;
  border: 1px solid #bc936c;
}
.hero__button:hover {
  color: var(--text);
  background-color: #d4a67a;
}
@media screen and (min-width: 570px) {
  .hero__button {
    font-size: 18px;
  }
}

.messengers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  list-style: none;
}
.messengers__item {
  width: 50px;
  height: 50px;
  font-size: 0;
  border-radius: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.messengers__item + .messengers__item {
  margin-left: 25px;
}
.messengers__item--whatsapp {
  background-color: #64b161;
  background-image: url("../assets/images/whatsapp.svg");
}
.messengers__item--viber {
  background-color: #6c3ea6;
  background-image: url("../assets/images/viber.svg");
}
.messengers__item--telegram {
  background-color: #039be5;
  background-image: url("../assets/images/telegram.svg");
}
.messengers__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.requirements {
  padding-bottom: 70px;
}
@media screen and (min-width: 570px) {
  .requirements {
    padding-bottom: 120px;
  }
}
.requirements__heading {
  margin-bottom: 60px;
}
@media screen and (min-width: 570px) {
  .requirements__heading {
    margin-bottom: 70px;
  }
}
.requirements .heading {
  max-width: 100%;
}
.requirements__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  row-gap: 30px;
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
}
@media screen and (min-width: 570px) {
  .requirements__list {
    row-gap: 50;
  }
}
@media screen and (min-width: 820px) {
  .requirements__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (calc(33.3333333% - 50px))[3];
        grid-template-columns: repeat(3, calc(33.3333333% - 50px));
    grid-gap: 55px 75px;
  }
}
.requirements__list span {
  word-break: break-all;
}
@media screen and (min-width: 820px) {
  .requirements__list span {
    word-break: normal;
  }
}
.requirements__list li {
  width: calc(50% - 5px);
  padding-top: 45px;
  background-image: url("../assets/images/check.svg");
  background-size: 35px 35px;
  background-position: center top;
  background-repeat: no-repeat;
}
.requirements__list li:nth-child(odd) {
  margin-right: 10px;
}
@media screen and (min-width: 820px) {
  .requirements__list li {
    width: 100%;
  }
  .requirements__list li:nth-child(odd) {
    margin-right: 0;
  }
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
  color: var(--text);
  background-color: var(--body-bg);
}
@media screen and (min-width: 570px) {
  body {
    font-size: 16px;
  }
}
section {
  margin-bottom: 100px;
  border-bottom: 1px solid rgba(212,166,122,0.3);
}
h3 {
  margin-bottom: 15px;
  font-family: 'Bitter', serif;
  font-size: 16px;
}
@media screen and (min-width: 570px) {
  h3 {
    font-size: 24px;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
strong,
b {
  font-weight: 700;
}

@font-face {
  font-family: 'Roboto';
  src: url("../assets/fonts/Roboto-Regular.woff2") format('woff2'), url("../assets/fonts/Roboto-Regular.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url("../assets/fonts/Roboto-Bold.woff2") format('woff2'), url("../assets/fonts/Roboto-Bold.woff") format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bitter';
  src: url("../assets/fonts/Bitter-Regular.woff2") format('woff2'), url("../assets/fonts/Bitter-Regular.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

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


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: inherit;
}

:root {
  --black: #000;
  --white: #fff;
  --night-rider: #1a120c;
  --body-bg: var(--night-rider);
  --text: var(--white);
}

.ssilki a {
 margin-left:10px;
 color:#fff;
 text-decoration:none;
}

.color {
    color:#50d550;
}

