@charset "UTF-8";
@font-face {
  font-family: "Akrobat";
  font-display: swap;
  src: url("../fonts/Akrobat-Regular.woff2") format("woff2"), url("../fonts/Akrobat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "YandexSansDisplay";
  font-display: swap;
  src: url("../fonts/YandexSansDisplay-Regular.woff2") format("woff2"), url("../fonts/YandexSansDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "YandexSansDisplay";
  font-display: swap;
  src: url("../fonts/YandexSansDisplay-Bold.woff2") format("woff2"), url("../fonts/YandexSansDisplay-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "YandexSansText";
  font-display: swap;
  src: url("../fonts/YandexSansText-Light.woff2") format("woff2"), url("../fonts/YandexSansText-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "YandexSansText";
  font-display: swap;
  src: url("../fonts/YandexSansText-Regular.woff2") format("woff2"), url("../fonts/YandexSansText-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "YandexSansText";
  font-display: swap;
  src: url("../fonts/YandexSansText-Bold.woff2") format("woff2"), url("../fonts/YandexSansText-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Phenomena";
  font-display: swap;
  src: url("../fonts/Phenomena-ExtraBold.woff2") format("woff2"), url("../fonts/Phenomena-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "YandexSansDisplay";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "YandexSansDisplay";
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  color: #fff;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 1195px;
  margin: 0 auto;
}
@media (max-width: 1207px) {
  ._container {
    max-width: 970px;
  }
}
@media (max-width: 991.98px) {
  ._container {
    max-width: 750px;
  }
}
@media (max-width: 767.98px) {
  ._container {
    max-width: none;
    padding: 0 10px;
  }
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}
@media (max-width: 991.98px) {
  .select__title {
    font-size: 18px;
  }
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  color: #000;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}
ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}
ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}
.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}
._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
._swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
._swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}

.mirror {
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}
._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.header {
  padding: 23px 0px;
  background-color: #222122;
}
.header__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
@media (max-width: 767.98px) {
  .header__wrapper {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 20px;
  }
}
@media (max-width: 479.98px) {
  .header__wrapper {
    grid-template-columns: 1fr;
  }
}

.logo {
  display: flex;
  align-items: center;
  height: 67px;
  color: #fff;
}
@media (max-width: 767.98px) {
  .logo {
    height: 55px;
  }
}
@media (max-width: 374.98px) {
  .logo {
    height: 45px;
  }
}
.logo__img {
  height: 100%;
  margin: 0px 10px 0px 0px;
}
.logo__text {
  font-family: "Gilroy";
  font-size: 36px;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .logo__text {
    font-size: 30px;
  }
}

.text-center {
  font-size: 30px;
  font-weight: 400;
  display: flex;
  padding: 0px 0px 0px 40px;
}
@media (max-width: 991.98px) {
  .text-center {
    font-size: 23px;
  }
}
@media (max-width: 767.98px) {
  .text-center {
    grid-column: 1/2;
    padding: 0px 0px 0px 0px;
  }
  .text-center br {
    display: none;
  }
}
@media (max-width: 479.98px) {
  .text-center {
    grid-column: 1;
  }
}
@media (max-width: 374.98px) {
  .text-center {
    font-size: 18px;
  }
}

.contacts {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .contacts {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
@media (max-width: 479.98px) {
  .contacts {
    grid-column: 1;
    grid-row: 3/3;
    padding: 15px 0px 0px 0px;
  }
}
.contacts a {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .contacts a {
    font-size: 20px;
  }
}
@media (max-width: 374.98px) {
  .contacts a {
    font-size: 18px;
  }
}
.contacts__mail {
  position: relative;
  margin: 0px 0px 5px 0px;
  padding: 0px 0px 0px 40px;
}
.contacts__mail:hover {
  text-decoration: underline;
}
@media (max-width: 991.98px) {
  .contacts__mail {
    margin: 0px 0px 12px 0px;
  }
}
@media (max-width: 767.98px) {
  .contacts__mail {
    margin: 0px 0px 25px 0px;
  }
}
.contacts__mail::before {
  position: absolute;
  content: url("../img/mail.png");
  width: 30px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.contacts__phone {
  position: relative;
  padding: 0px 0px 0px 40px;
}
.contacts__phone:hover {
  text-decoration: underline;
}
.contacts__phone::before {
  position: absolute;
  content: url("../img/whatsapp.png");
  width: 30px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.hero {
  position: relative;
  padding: 115px 0px;
  background-image: url("../img/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% center;
}
@media (max-width: 991.98px) {
  .hero {
    padding: 80px 0px;
  }
}
@media (max-width: 767.98px) {
  .hero {
    padding: 50px 0px;
  }
}
@media (max-width: 374.98px) {
  .hero {
    padding: 35px 0px;
  }
}
.hero__container {
  padding: 0px 10px;
  margin: 0 auto;
  max-width: 1380px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1279.98px) {
  .hero__container {
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .hero__container {
    flex-direction: column;
  }
}
.hero__left {
  margin: 0px 40px 0px 0px;
}
@media (max-width: 767.98px) {
  .hero__left {
    order: 1;
    margin: 0px 0px 0px 0px;
  }
}
.hero__img {
  width: 100%;
}
.hero__right {
  flex: 0 0 500px;
}
@media (max-width: 991.98px) {
  .hero__right {
    flex: 0 0 368px;
  }
}
@media (max-width: 767.98px) {
  .hero__right {
    margin: 0px 0px 60px 0px;
    text-align: center;
  }
}
@media (max-width: 374.98px) {
  .hero__right {
    margin: 0px 0px 30px 0px;
  }
}
.hero__title {
  margin: 0px 0px 50px 0px;
  text-transform: uppercase;
  color: #373737;
  font-family: "Phenomena";
  font-size: 116px;
  font-weight: 800;
  line-height: 90%;
}
.hero__title span {
  color: #ffd800;
}
@media (max-width: 1279.98px) {
  .hero__title {
    font-size: 100px;
  }
}
@media (max-width: 991.98px) {
  .hero__title {
    font-size: 86px;
  }
}
@media (max-width: 767.98px) {
  .hero__title {
    font-size: 75px;
  }
}
@media (max-width: 374.98px) {
  .hero__title {
    font-size: 68px;
    margin: 0px 0px 25px 0px;
  }
}
.hero__text {
  margin: 0px 0px 50px 0px;
  color: #606060;
  font-family: "Akrobat";
  font-size: 42px;
  font-weight: 400;
}
@media (max-width: 1279.98px) {
  .hero__text {
    font-size: 38px;
  }
}
@media (max-width: 991.98px) {
  .hero__text {
    font-size: 30px;
  }
}
@media (max-width: 374.98px) {
  .hero__text {
    font-size: 25px;
    margin: 0px 0px 30px 0px;
  }
}
.hero__btn {
  border-radius: 10px;
  background-color: #ffd800;
  max-width: 345px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  text-transform: uppercase;
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.hero__btn:hover {
  background-color: #ffc400;
}
@media (max-width: 767.98px) {
  .hero__btn {
    margin: 0 auto;
    font-size: 23px;
    max-width: 300px;
    padding: 16px 20px;
  }
}
@media (max-width: 374.98px) {
  .hero__btn {
    max-width: 255px;
  }
}

.features {
  padding: 50px 0px 80px 0px;
  background-color: #e4f8ff;
}
.features__wrapper {
  height: 800px;
  position: relative;
}
@media (max-width: 1207.98px) {
  .features__wrapper {
    height: 660px;
  }
}
@media (max-width: 991.98px) {
  .features__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .features__wrapper {
    grid-template-columns: 1fr;
  }
}
.features__img {
  position: absolute;
  bottom: 115px;
  right: 45px;
  width: 600px;
}
.features__img img {
  width: 100%;
}
@media (max-width: 1207.98px) {
  .features__img {
    bottom: 16px;
    width: 517px;
    right: 23px;
  }
}
@media (max-width: 991.98px) {
  .features__img {
    position: static;
    margin: 0 auto;
    width: 65%;
    grid-column: 1/3;
  }
}
@media (max-width: 767.98px) {
  .features__img {
    grid-column: 1;
  }
}
@media (max-width: 479.98px) {
  .features__img {
    width: 75%;
  }
}

@media (max-width: 991.98px) {
  .item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.item__number {
  position: absolute;
  top: 50%;
  left: 33px;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .item__number {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767.98px) {
  .item__number img {
    height: 100px;
  }
}
@media (max-width: 479.98px) {
  .item__number img {
    height: 80px;
  }
}
.item__text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 33px;
  width: 215px;
  color: #000000;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 991.98px) {
  .item__text {
    position: static;
    top: unset;
    left: unset;
    transform: unset;
    width: 100%;
    z-index: 1;
  }
}

.item--one {
  position: absolute;
  top: 388px;
  left: 38px;
  background: url("../img/border-1.png") center center/cover no-repeat;
  width: 384px;
  height: 295px;
}
.item--one::after {
  z-index: 2;
  position: absolute;
  content: url("../img/Border-1-line-1.png");
  top: 20.6%;
  left: 80%;
}
@media (max-width: 1207.98px) {
  .item--one::after {
    left: 90%;
    content: url("../img/Border-1-line.png");
    top: 47.1%;
  }
}
@media (max-width: 991.98px) {
  .item--one {
    grid-column: 1/2;
  }
}
@media (max-width: 767.98px) {
  .item--one {
    grid-column: 1;
  }
}

.item--two {
  position: absolute;
  top: 0;
  left: 38px;
  background: url("../img/border-2.png") center center/cover no-repeat;
  width: 418px;
  height: 295px;
}
.item--two::after {
  z-index: 2;
  position: absolute;
  content: url("../img/border-2-line.png");
  top: 75%;
  left: 82%;
}
@media (max-width: 1207.98px) {
  .item--two::after {
    content: url("../img/border-2-line-2.png");
  }
}
@media (max-width: 991.98px) {
  .item--two {
    grid-column: 2/3;
  }
}
@media (max-width: 767.98px) {
  .item--two {
    grid-column: 1;
  }
}

.item--three {
  position: absolute;
  top: 0;
  right: 43px;
  background: url("../img/border-3.png") center center/cover no-repeat;
  width: 580px;
  height: 394px;
}
@media (max-width: 1207.98px) {
  .item--three {
    right: -4px;
  }
}
.item--three::after {
  z-index: 2;
  position: absolute;
  content: url("../img/border-3-line.png");
  top: 99%;
  left: 86.9%;
}
@media (max-width: 991.98px) {
  .item--three {
    grid-column: 1/3;
    margin: 0px 0px 40px 0px;
  }
}
@media (max-width: 767.98px) {
  .item--three {
    grid-column: 1;
  }
}

@media (max-width: 991.98px) {
  .item--one, .item--two, .item--three {
    position: relative;
    top: unset;
    left: unset;
    bottom: unset;
    right: unset;
    border: 2px dashed #ffd800;
    border-radius: 30px;
    height: 300px;
    background: none;
    background-color: #f7f7f7;
    padding: 40px;
    box-shadow: 0px 0px 6px 2px #ffd800 inset;
    width: 100%;
  }
  .item--one::after, .item--two::after, .item--three::after {
    display: none;
  }
}
@media (max-width: 991.98px) and (max-width: 767.98px) {
  .item--one, .item--two, .item--three {
    height: auto;
  }
}
@media (max-width: 991.98px) and (max-width: 479.98px) {
  .item--one, .item--two, .item--three {
    padding: 26px;
  }
}

.number--three {
  top: 81px;
  left: 148px;
  transform: unset;
}
@media (max-width: 991.98px) {
  .number--three {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.text--three {
  top: 59px;
  left: 42px;
  width: 426px;
  transform: unset;
}
@media (max-width: 991.98px) {
  .text--three {
    top: unset;
    left: unset;
    width: 100%;
  }
}

.set {
  background-color: #e4f8ff;
  padding: 35px 0px;
}
.set__block {
  border-radius: 22px;
  background-color: #ffd800;
  width: 100%;
  height: 210px;
}
@media (max-width: 767.98px) {
  .set__block {
    height: 170px;
  }
}
.set__cards {
  display: flex;
  justify-content: center;
  margin: -84px 0px 70px 0px;
}
@media (max-width: 767.98px) {
  .set__cards {
    flex-direction: column;
    align-items: center;
    margin: -84px 0px 40px 0px;
  }
}
.set__btn {
  border-radius: 10px;
  background-color: #ffd800;
  max-width: 345px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  text-transform: uppercase;
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.set__btn:hover {
  background-color: #ffc400;
}
@media (max-width: 767.98px) {
  .set__btn {
    font-size: 23px;
    max-width: 300px;
    padding: 16px 20px;
  }
}
@media (max-width: 374.98px) {
  .set__btn {
    max-width: 255px;
  }
}

.card {
  position: relative;
  border-radius: 22px;
  background-color: #ffffff;
  padding: 80px 40px 35px 40px;
  margin: 0px 15px;
  box-shadow: 0px 0px 13px 1px rgba(0, 0, 0, 0.5);
  width: 460px;
}
@media (max-width: 767.98px) {
  .card {
    margin: 0px 0px 84px;
  }
}
@media (max-width: 479.98px) {
  .card {
    width: 100%;
    padding: 80px 30px 35px 30px;
  }
}
.card:nth-child(1)::before {
  position: absolute;
  content: url("../img/icon-1.png");
  top: -66px;
  left: 50%;
  transform: translateX(-50%);
}
.card:nth-child(2)::before {
  position: absolute;
  content: url("../img/icon-2.png");
  top: -66px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .card:nth-child(2) {
    margin: 0px 0px 0px 0px;
  }
}
.card__title {
  text-transform: uppercase;
  text-align: center;
  color: #000000;
  font-size: 22px;
  font-weight: 700;
  margin: 0px 0px 20px 0px;
}
.card__text {
  text-align: start;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  padding-right: 20px;
}
.card__text span {
  display: block;
  margin: 15px 0px 0px 0px;
}

.questions {
  background-color: #e4f8ff;
  padding: 35px 0px 50px;
}
.questions__wrapper {
  padding: 56px 80px 100px;
  box-shadow: 0 0 38px 11px rgba(0, 2, 15, 0.06);
  background-color: #ffffff;
  border-radius: 22px;
}
@media (max-width: 991.98px) {
  .questions__wrapper {
    padding: 56px 30px 70px;
  }
}
@media (max-width: 767.98px) {
  .questions__wrapper {
    margin: 0 auto;
    max-width: 460px;
    padding: 40px 35px 40px;
    text-align: center;
  }
}
@media (max-width: 374.98px) {
  .questions__wrapper {
    padding: 40px 18px 40px;
  }
}
.questions__text {
  color: #000;
  font-family: "YandexSansText";
  font-size: 21px;
  font-weight: 400;
  margin: 0px 0px 20px 0px;
}
@media (max-width: 479.98px) {
  .questions__text {
    font-size: 18px;
  }
}
.questions__title {
  color: #000;
  font-family: "YandexSansText";
  font-size: 47px;
  font-weight: 700;
  margin: 0px 0px 46px 0px;
}
@media (max-width: 767.98px) {
  .questions__title {
    font-size: 35px;
  }
}
@media (max-width: 479.98px) {
  .questions__title {
    margin: 0px 0px 22px 0px;
    font-size: 23px;
  }
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 35px;
  row-gap: 45px;
}
@media (max-width: 767.98px) {
  .form {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}
.form__input {
  border-radius: 15px;
  padding: 13px;
  border: 2px solid #ffd900;
  font-family: "YandexSansText";
  font-size: 14px;
  font-weight: 300;
}
.form__textarea {
  padding: 13px;
  border-radius: 15px;
  border: 2px solid #ffd900;
  font-family: "YandexSansText";
  font-size: 14px;
  font-weight: 300;
  grid-column: 2/4;
  height: 120px;
}
@media (max-width: 767.98px) {
  .form__textarea {
    grid-column: 1;
  }
}
.form__block {
  display: flex;
  flex-direction: column;
  grid-column: 1/2;
  grid-row: 2/3;
}
@media (max-width: 767.98px) {
  .form__block {
    grid-column: 1;
    grid-row: 5/6;
  }
}
.form__btn {
  border-radius: 10px;
  background-color: #ffd800;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  text-transform: uppercase;
  color: #000000;
  font-size: 22px;
  font-weight: 700;
  margin: 0px 0px 26px 0px;
  transition: all 0.3s ease;
}
.form__btn:hover {
  background-color: #ffc400;
}
@media (max-width: 991.98px) {
  .form__btn {
    padding: 15px 15px;
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .form__btn {
    margin: 0 auto 20px;
  }
}
@media (max-width: 479.98px) {
  .form__btn {
    padding: 10px 20px;
  }
}

.checkbox-icon {
  display: none;
}
.checkbox-icon:checked + .checkbox-label::after {
  transform: scale(1);
}

.checkbox-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #000;
  font-family: "Gilroy";
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .checkbox-label {
    max-width: 250px;
  }
}
.checkbox-label::before {
  content: "";
  flex: 0 0 18px;
  height: 18px;
  border-radius: 2px;
  background-color: #ffd800;
  margin: 0px 8px 0px 0px;
}
.checkbox-label::after {
  position: absolute;
  transition: transform 0.3s;
  content: "";
  top: 7px;
  left: 2px;
  width: 14px;
  height: 13px;
  background: url("../img/checkbox.svg") no-repeat;
  transform: scale(0);
}
@media (max-width: 991.98px) {
  .checkbox-label::after {
    top: 13px;
  }
}
@media (max-width: 767.98px) {
  .checkbox-label::after {
    top: 7px;
  }
}

.footer {
  padding: 36px 0px;
  background-color: #222122;
}
.footer__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767.98px) {
  .footer__wrapper {
    flex-direction: column;
  }
}
.footer__link {
  flex-shrink: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: inherit;
  margin: 0px 10px;
}
.footer__link:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .footer__link {
    margin: 20px 0px 0px 0px;
  }
}
.footer__block {
  font-size: 20px;
  font-weight: 400;
  text-align: end;
}
@media (max-width: 991.98px) {
  .footer__block {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .footer__block {
    margin: 20px 0px 0px 0px;
  }
}
.footer__copy {
  margin: 0px 0px 5px 0px;
}
@media (max-width: 767.98px) {
  .footer__copy {
    margin: 0px 0px 15px 0px;
    text-align: center;
  }
}
.footer__address {
  font-style: normal;
}
.footer__address p {
  margin: 0px 0px 5px 0px;
}
@media (max-width: 767.98px) {
  .footer__address {
    text-align: center;
    margin: 0px 0px 20px 0px;
  }
}
.footer__contacts {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .footer__contacts {
    text-align: center;
  }
}
.footer__tel {
  display: block;
  color: inherit;
  margin: 0px 0px 5px 0px;
}
.footer__tel:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .footer__tel {
    margin: 0px 0px 10px 0px;
  }
}
.footer__mail {
  display: block;
  color: inherit;
}
.footer__mail:hover {
  text-decoration: underline;
}

.page {
  flex: 1 1 auto;
}