@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Radomir Tinkov - Gilroy-Regular.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Radomir Tinkov - Gilroy-Bold.otf");
  font-weight: 700;
  font-style: normal;
}
.icon {
  width: 16px;
  height: 16px;
}
.icon use path {
  fill: inherit;
  stroke: inherit;
}
.button {
  padding: 16px 32px;
  border-radius: 24px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  color: #f15a29;
  box-sizing: border-box;
  display: block;
  text-align: center;
  border: none;
}
.button_orange {
  color: #fff;
  background: linear-gradient(90deg, #f64646 0%, #ff7d43 100%);
}
.button_orange:hover {
  background: linear-gradient(90deg, #e73939 0%, #e77c4d 100%);
}
.button_width_content {
  max-width: max-content;
}
.button_white {
  background-color: #fff;
}
.button_outline {
  border: 1px solid #f15a29;
}
.button_outline:hover {
  background-color: #FFEBE4;
}
.button-group {
  display: flex;
  gap: 11px;
}
.header {
  display: flex;
  justify-content: center;
  top: 0;
  position: sticky;
  z-index: 1;
  background-color: #fff;
}
.header__left {
  gap: 42px;
  display: flex;
  align-items: center;
}
.header__left-group {
  display: flex;
  flex-direction: column;
  position: relative;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background-color: #ffffff;
  gap: 32px;
}
.header__nav {
  display: none;
}
.header__nav ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 29px;
}
.header__nav ul li a {
  color: #000000;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.header__nav ul li a:hover {
  color: #f15a29;
}
.header__logotype {
  max-width: 117px;
  max-height: 20px;
  display: flex;
}
.header__logotype svg {
  height: 100%;
  width: 100%;
}
.header__button {
  font-size: 13px;
  padding: 8px 16px;
}
.header__button-sign-up {
  display: none;
}
.header__button-sign-in {
  z-index: 1;
  cursor: default;
  position: relative;
  min-width: 146px;
}
.header__button-sign-in ul {
  position: absolute;
  display: none;
  padding-left: 0;
  right: -1px;
  left: -1px;
  top: calc(100% + 1px);
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
}
.header__button-sign-in ul li a {
  color: #f15a29;
  text-decoration: none;
  padding: 16px;
  display: block;
  font-size: 13px;
  background-color: #ffffff;
  border-right: 1px solid #f15a29;
  border-left: 1px solid #f15a29;
  border-bottom: 1px solid #dbdbdb;
}
.header__button-sign-in ul li a:hover {
  background-color: #ffebe4;
}
.header__button-sign-in ul li:last-of-type a {
  border-radius: 0 0 24px 24px;
  border-bottom: 1px solid #f15a29;
}
.header__button-sign-in:hover {
  border-radius: 24px 24px 0 0;
  background-color: #fff;
  color: #434343;
}
.header__button-sign-in:hover ul {
  display: block;
}
@media screen and (min-width: 768px) {
  .header__content {
    max-width: 1140px;
  }
  .header__logotype {
    max-width: 179px;
    max-height: 30px;
  }
  .header__button {
    font-size: 14px;
    padding: 16px 32px;
  }
  .header__button-sign-up {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .header__nav {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .header__left {
    gap: 65px;
  }
  .header__button-sign-in {
    min-width: 140px;
  }
}
.select-region-container {
  margin-top: 4px;
  width: 138px;
  position: absolute;
  top: 100%;
}
.select-region {
  display: flex;
  align-items: center;
  width: max-content;
  cursor: pointer;
}
.select-region span {
  margin-left: 8px;
  margin-right: 6px;
  font-size: 14px;
}
.select-region img {
  width: 16px;
  height: 12px;
}
.select-region svg:first-of-type {
  width: 16px;
  height: 12px;
}
.select-region svg:last-of-type {
  width: 12.51px;
  height: 6px;
}
.select-region-options {
  border: 1px solid #C4C4C4;
  padding: 12px;
  margin-top: 4px;
  border-radius: 5px;
  position: absolute;
  width: 100%;
}
.select-region-options span {
  margin-left: 9px;
  font-size: 16px;
}
.select-region-options svg {
  width: 22px;
  height: 17.2px;
}
.select-region-options img {
  width: 22px;
  height: 16px;
}
.select-region-options.hidden {
  display: none;
}
.select-region-option {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000000;
}
.select-region-option:last-of-type {
  margin-top: 12px;
}
.hero {
  padding-bottom: 74px;
  padding-top: 82px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hero {
    padding-top: 105px;
    padding-bottom: 80px;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 79px;
  padding-left: 22px;
  padding-right: 22px;
}
@media screen and (min-width: 768px) {
  .hero__content {
    margin-bottom: 99px;
  }
}
.hero__content h1 {
  color: #000000;
  font-weight: 700;
  margin-top: 0;
  font-size: 28px;
  margin-bottom: 0;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero__content h1 {
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 68px;
    color: #444444;
    max-width: 836px;
  }
}
.hero__button {
  font-size: 16px;
  padding: 11px 24px;
}
@media screen and (min-width: 768px) {
  .hero__button {
    padding: 22px 48px;
    font-size: 20px;
    line-height: 24px;
    border-radius: 30px;
  }
}
.hero__caption {
  padding: 3px 10px;
  border-radius: 10px;
  background-color: #ffffff;
  color: #f15a29;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .hero__caption {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 17px;
  }
}
.hero__brushes {
  position: relative;
  width: 1440px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
@media screen and (min-width: 768px) {
  .hero__brushes {
    display: block;
  }
}
.hero__brush {
  position: absolute;
}
.hero__handshake {
  top: 856px;
  left: 17px;
}
.hero__letter {
  top: 660px;
  left: 419px;
}
.hero__message {
  top: 510px;
  right: 217px;
}
.hero__shine {
  top: 168px;
  left: 131px;
}
.hero__strokes {
  top: 81px;
  right: 27.71px;
}
.hero__background {
  z-index: -1;
  background-color: #f3f4f5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .hero__background {
    display: block;
  }
}
.hero__devices {
  position: relative;
  height: 168px;
  width: 503.62px;
}
@media screen and (min-width: 768px) {
  .hero__devices {
    height: 418px;
    width: 1357px;
  }
}
.hero__devices img {
  position: absolute;
  display: block;
}
.hero__macbook {
  width: 230px;
  height: 134px;
  top: 30.82px;
  left: 143.47px;
  right: 131.36px;
}
@media screen and (min-width: 768px) {
  .hero__macbook {
    width: 609px;
    height: 354px;
    top: 53px;
    left: 399px;
    right: 349.52px;
  }
}
.hero__telegram {
  width: 37px;
  height: 77px;
  top: 50.36px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .hero__telegram {
    width: 98px;
    height: 202px;
    top: 105px;
    left: 17px;
  }
}
.hero__iphone {
  width: 41px;
  height: 82px;
  right: 95.83px;
  top: 0;
}
@media screen and (min-width: 768px) {
  .hero__iphone {
    right: 257px;
    width: 106px;
    height: 218px;
  }
}
.hero__stats {
  width: 121px;
  height: 77px;
  left: 51.11px;
  top: 99.97px;
}
@media screen and (min-width: 768px) {
  .hero__stats {
    width: 308px;
    height: 189px;
    top: 237px;
    left: 153px;
  }
}
.hero__order {
  width: 122px;
  height: 77px;
  right: 55.24px;
  top: 95.46px;
}
@media screen and (min-width: 768px) {
  .hero__order {
    width: 308px;
    height: 189px;
    right: 147px;
    top: 255px;
  }
}
.hero__cabinet {
  width: 122px;
  height: 76px;
  right: 0;
  top: 48.85px;
}
@media screen and (min-width: 768px) {
  .hero__cabinet {
    width: 300px;
    height: 178px;
    top: 93px;
  }
}
.hero__buy {
  width: 121px;
  height: 77px;
  top: 13.91px;
  left: 30.07px;
}
@media screen and (min-width: 768px) {
  .hero__buy {
    top: 8px;
    left: 97px;
    width: 308px;
    height: 189px;
  }
}
.accepting-payments {
  display: flex;
  justify-content: center;
}
.accepting-payments input[type="radio"] {
  display: none;
}
.accepting-payments input[type="radio"][value="methods"]:checked ~ .accepting-payments__content .accepting-payments__nav label[for="accepting-payments-1"] {
  background-color: #ffe6df;
}
.accepting-payments input[type="radio"][value="methods"]:checked ~ .accepting-payments__content .accepting-payments__represent .accepting-payments__methods {
  display: block;
}
.accepting-payments input[type="radio"][value="telegram"]:checked ~ .accepting-payments__content .accepting-payments__nav label[for="accepting-payments-2"] {
  background-color: #ffe6df;
}
.accepting-payments input[type="radio"][value="telegram"]:checked ~ .accepting-payments__content .accepting-payments__represent .accepting-payments__telegram {
  display: flex;
  gap: 55px;
  align-items: center;
}
.accepting-payments input[type="radio"][value="periodic"]:checked ~ .accepting-payments__content .accepting-payments__nav label[for="accepting-payments-3"] {
  background-color: #ffe6df;
}
.accepting-payments input[type="radio"][value="periodic"]:checked ~ .accepting-payments__content .accepting-payments__represent .accepting-payments__periodic {
  display: block;
}
.accepting-payments input[type="radio"][value="withdrawal"]:checked ~ .accepting-payments__content .accepting-payments__nav label[for="accepting-payments-4"] {
  background-color: #ffe6df;
}
.accepting-payments input[type="radio"][value="withdrawal"]:checked ~ .accepting-payments__content .accepting-payments__represent .accepting-payments__withdrawal {
  display: block;
}
.accepting-payments__symbol {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.accepting-payments__content {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 32px;
}
@media screen and (min-width: 576px) {
  .accepting-payments__content {
    max-width: 1140px;
    border-radius: 40px;
    width: 100%;
  }
}
.accepting-payments h2 {
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 11px;
  max-width: 356px;
  font-weight: 700;
  padding-left: 7px;
  padding-right: 7px;
}
.accepting-payments__methods-background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 399px;
  z-index: -1;
  background-color: #fff;
}
.accepting-payments__methods {
  overflow: hidden;
  position: relative;
}
.accepting-payments__methods ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  gap: 10px;
  grid-auto-rows: 1fr;
}
@media screen and (min-width: 576px) {
  .accepting-payments__methods ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.accepting-payments__nav {
  overflow-y: scroll;
  margin-bottom: 35px;
}
.accepting-payments__nav::-webkit-scrollbar {
  display: none;
}
.accepting-payments__nav ul {
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  width: max-content;
}
.accepting-payments__nav ul li {
  position: relative;
  display: flex;
  align-items: center;
}
.accepting-payments__nav ul li:first-of-type {
  margin-left: 5px;
}
.accepting-payments__nav ul li:last-of-type {
  margin-right: 5px;
}
.accepting-payments__nav ul li:nth-child(1) label {
  max-width: 134px;
}
@media screen and (min-width: 768px) {
  .accepting-payments__nav ul li:nth-child(1) label {
    max-width: 100%;
  }
}
.accepting-payments__nav ul li:nth-child(2) label {
  max-width: 86px;
}
@media screen and (min-width: 768px) {
  .accepting-payments__nav ul li:nth-child(2) label {
    max-width: 100%;
  }
}
.accepting-payments__nav ul li:nth-child(3) label {
  width: min-content;
}
@media screen and (min-width: 768px) {
  .accepting-payments__nav ul li:nth-child(3) label {
    width: auto;
  }
}
.accepting-payments__nav ul li:nth-child(4) label {
  max-width: 126px;
}
@media screen and (min-width: 768px) {
  .accepting-payments__nav ul li:nth-child(4) label {
    max-width: 100%;
  }
}
.accepting-payments__nav ul li label {
  box-sizing: border-box;
  padding: 5px 8px;
  font-size: 15px;
  line-height: 18px;
  border-radius: 5px;
  cursor: pointer;
}
.accepting-payments__interaction-area {
  width: 100%;
}
.accepting-payments__represent {
  padding-left: 7px;
  padding-right: 7px;
}
.accepting-payments__caption {
  margin-bottom: 30px;
  max-width: 246px;
  text-align: center;
  padding-left: 7px;
  padding-right: 7px;
}
.accepting-payments__withdrawal h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}
.accepting-payments__withdrawal ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style-type: none;
}
.accepting-payments__periodic-payments,
.accepting-payments__withdrawal,
.accepting-payments__methods,
.accepting-payments__telegram,
.accepting-payments__periodic {
  display: none;
}
.accepting-payments__telegram img {
  width: 100%;
  max-width: 125px;
}
@media screen and (min-width: 992px) {
  .accepting-payments {
    background-color: #f3f4f5;
  }
  .accepting-payments__symbol {
    display: block;
  }
  .accepting-payments__content {
    align-items: flex-start;
    max-width: 1140px;
    background-color: #fff;
    padding: 60px 56px;
  }
  .accepting-payments input[type="radio"][value="methods"]:checked ~ .accepting-payments__content {
    background-image: url("/images/hatch.png");
    background-repeat: no-repeat;
    background-position: 97% 100%;
    background-size: 558px;
  }
  .accepting-payments__methods ul {
    gap: 14px;
  }
  .accepting-payments__interaction-area {
    display: flex;
    gap: 143px;
  }
  .accepting-payments__nav {
    overflow-y: unset;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .accepting-payments__nav ul {
    flex-direction: column;
  }
  .accepting-payments__nav ul li:first-of-type {
    margin-left: 0;
  }
  .accepting-payments__nav ul li:last-of-type {
    margin-right: 0;
  }
  .accepting-payments__nav ul li label {
    padding: 17px 29px 17px 93px;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #444444;
    width: 100%;
    align-items: flex-start;
    border-radius: 10px;
  }
  .accepting-payments__represent {
    padding-left: 0;
    padding-right: 0;
  }
  .accepting-payments__caption {
    font-size: 18px;
    line-height: 22px;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    margin-bottom: 64px;
  }
  .accepting-payments h2 {
    max-width: 755px;
    padding-left: 0;
    padding-right: 0;
    font-size: 36px;
    line-height: 45px;
    text-align: left;
    margin-bottom: 9px;
  }
}
.functional {
  background-color: #f3f4f5;
  padding-top: 58px;
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .functional {
    padding-top: 124px;
    padding-bottom: 137px;
  }
}
.functional__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .functional__content {
    max-width: 1140px;
  }
}
.functional__categories {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 576px) {
  .functional__categories {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }
}
.functional h2 {
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 11px;
  max-width: 356px;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .functional h2 {
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  .functional h2 {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 14px;
  }
}
.functional__caption {
  margin-bottom: 30px;
  max-width: 246px;
  text-align: center;
  font-size: 16px;
  line-height: 19px;
}
@media screen and (min-width: 576px) {
  .functional__caption {
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  .functional__caption {
    font-size: 18px;
    line-height: 22px;
  }
}
.functional-block {
  border-radius: 20px;
  background-color: #fff;
}
.functional-block ul {
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 22px 21px 22px;
}
.functional-block_red .functional-block__header {
  background: linear-gradient(90deg, #f64646 0%, #ff7d43 100%);
}
.functional-block_red .functional-block__header ~ .functional-block__paragraph {
  color: #000000;
}
.functional-block_red .functional-block__paragraph {
  color: #000000;
}
.functional-block__question {
  max-width: 21px;
  max-height: 21px;
  display: block;
}
.functional-block__question img {
  width: 100%;
  height: 100%;
  display: block;
}
.functional-block_blue .functional-block__header {
  background: linear-gradient(121.79deg, #07a3cf 0%, #25bfea 100%);
}
.functional-block_blue .functional-block__header ~ .functional-block__paragraph {
  color: #555555;
}
.functional-block_blue .functional-block__paragraph {
  color: #555555;
}
.functional-block__drawing {
  position: absolute;
  left: 0;
  margin-left: 22px;
}
.functional-block__drawing svg {
  display: block;
}
.functional-block__header {
  padding: 16px 22px 16px 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-radius: 20px 20px 0 0;
}
@media screen and (min-width: 768px) {
  .functional-block__header {
    padding-left: 86px;
  }
}
.functional-block__header ~ .functional-block__paragraph {
  padding: 14px 22px 21px 22px;
  margin-top: 0;
  margin-bottom: 0;
}
.functional-block__header h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
}
@media screen and (min-width: 768px) {
  .functional-block__header h3 {
    font-size: 24px;
    line-height: 30px;
  }
}
.functional-block__paragraph {
  font-size: 16px;
  line-height: 19px;
}
.payment-method {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  padding: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
  word-break: break-all;
  box-sizing: border-box;
  flex-direction: column;
  gap: 8px;
}
.payment-method__image {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.payment-method__name {
  font-size: 12px;
  line-height: 14px;
  color: #222222;
  text-align: center;
}
.payment-method__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  justify-items: center;
  align-items: center;
}
.sales {
  position: relative;
  overflow: hidden;
  padding-top: 21px;
  padding-bottom: 33px;
  display: flex;
  justify-content: center;
}
.sales__human,
.sales__smoke {
  display: none;
  position: absolute;
}
.sales__smoke {
  top: 41px;
  left: -162px;
}
.sales__human {
  right: -62px;
  top: 192px;
}
.sales__content {
  padding-left: 19px;
  padding-right: 19px;
  width: 100%;
}
.sales h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #111111;
  margin-top: 0;
  margin-bottom: 22px;
}
.sales__background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sales__background .sales__cat {
  top: 123px;
  right: -15.1%;
  position: absolute;
}
.sales__caption {
  margin-bottom: 29px;
  max-width: 140px;
  font-size: 16px;
  padding-left: 16px;
  line-height: 19px;
}
.sales__step-one {
  max-width: 213px;
}
.sales__step-two {
  max-width: 268px;
}
.sales__step-three {
  max-width: 294px;
}
.sales__button-more {
  display: none;
}
.sales ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  counter-reset: num;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 21px;
}
.sales ol li {
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 34px;
}
.sales ol li::before {
  color: #f15a29;
  position: absolute;
  font-weight: 700;
  font-size: 28px;
  left: 0;
  line-height: 35px;
  content: counter(num);
  counter-increment: num;
}
@media screen and (min-width: 768px) {
  .sales h2 {
    font-size: 36px;
    line-height: 45px;
    text-align: left;
    margin-bottom: 19px;
    max-width: 628px;
  }
  .sales__caption {
    max-width: none;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 48px;
    padding-left: 0;
  }
  .sales__content {
    max-width: 1140px;
    padding-top: 75px;
    padding-bottom: 70px;
  }
  .sales__button-more {
    display: block;
  }
  .sales .button-group {
    gap: 18px;
  }
  .sales__step-one,
  .sales__step-two {
    max-width: 463px;
  }
  .sales__step-three {
    max-width: 441px;
  }
  .sales__human,
  .sales__smoke {
    display: block;
  }
  .sales__background .sales__cat {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: none;
    left: 384px;
  }
  .sales ol {
    padding-left: 12px;
    gap: 12px;
  }
  .sales ol li {
    font-size: 16px;
    line-height: 19px;
  }
  .sales ol li::before {
    font-size: 28px;
    line-height: 35px;
  }
}
.periodic ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.periodic__heading {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 19px;
}
.periodic h4 {
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}
.periodic p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #555555;
  margin-top: 0;
  margin-bottom: 0;
}
.faq {
  display: flex;
  justify-content: center;
}
.faq__content {
  padding-left: 9px;
  padding-top: 24px;
  padding-bottom: 50px;
  padding-right: 9px;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 15px;
  max-width: 970px;
}
.faq details {
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  background-color: #fff;
}
.faq details div {
  padding: 0px 20px 20px 20px;
}
.faq details[open] summary .icon {
  transform: rotate(90deg);
}
.faq details summary {
  cursor: pointer;
  padding: 15px 20px;
  list-style-type: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq details summary::-webkit-details-marker {
  display: none;
}
.faq details summary .icon {
  flex-shrink: 0;
}
.faq details ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 16px;
}
.faq details p {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
}
.tariffs {
  background-color: #f3f4f5;
  display: flex;
  justify-content: center;
}
.tariffs__button-more {
  padding: 0;
  max-width: max-content;
  text-transform: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}
.tariffs__button-start {
  margin-bottom: 12px;
}
.tariffs hr {
  width: 100px;
  border: none;
  border-bottom: 1px solid #d3d3d3;
  margin-top: 32px;
  margin-bottom: 32px;
}
.tariffs__price {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #f15a29;
  margin-bottom: 4px;
}
.tariffs__description {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #333333;
}
.tariffs__content {
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 20px;
  padding: 24px 41px 32px 41px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
}
.tariffs h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 35px;
}
.tariffs__list {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 42px;
}
@media screen and (min-width: 768px) {
  .tariffs__content {
    max-width: 1140px;
    margin-top: 60px;
    margin-bottom: 106px;
  }
  .tariffs hr {
    width: 0px;
    height: 100%;
    border-bottom: none;
    border-right: 1px solid #d3d3d3;
  }
  .tariffs h2 {
    font-size: 36px;
    line-height: 45px;
  }
  .tariffs__list {
    align-items: center;
    flex-direction: row;
    gap: 16px;
  }
  .tariffs__list li {
    flex: calc((100% / 3) - 2px);
  }
}
.prefooter {
  display: flex;
  flex-direction: column;
  background-color: #222222;
}
.prefooter__caption {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 11px;
}
@media screen and (min-width: 768px) {
  .prefooter__caption {
    font-size: 18px;
    line-height: 22px;
  }
}
.prefooter__heading {
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  margin-bottom: 21px;
}
@media screen and (min-width: 768px) {
  .prefooter__heading {
    font-size: 32px;
    line-height: 40px;
  }
}
.prefooter__polygon {
  height: 35px;
  background-color: #ffffff;
  clip-path: polygon(0% -100%, 100% -100%, 100% 50%, 88% 70%, 75% 0%, 60% 75%, 40% 0%, 12% 100%, 0% 50%, 0% 0%);
}
.prefooter__content {
  padding-top: 40px;
  padding-bottom: 18px;
  background-color: #222222;
  display: flex;
  justify-content: center;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 768px) {
  .prefooter__content {
    max-width: 1140px;
    align-self: center;
  }
}
.prefooter__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 35px;
  border-radius: 20px;
  background: linear-gradient(90deg, #f64646 0%, #ff7d43 100%);
}
@media screen and (min-width: 768px) {
  .prefooter__card {
    padding: 32px 52px;
  }
}
.footer {
  color: #ffffff;
  display: flex;
  position: relative;
  justify-content: center;
  overflow: hidden;
}
.footer__payment-systems {
  display: none;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.footer__background {
  background-color: #222222;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.footer__background img {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-bottom: 20px;
  padding-right: 16px;
}
.footer__ad {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.footer__ad p {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  max-width: 290px;
  text-align: center;
}
.footer__edeone-logotype {
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.footer__edeone-logotype span {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.44px;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footer__nav ul li {
  text-align: center;
}
.footer__nav ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
}
.footer__logotype svg path {
  fill: white;
}
.footer__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 41px 16px 20px 16px;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.footer__docs ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.footer__docs ul li {
  text-align: center;
}
.footer__docs ul li a {
  font-weight: 500;
  font-size: 17px;
  line-height: 130%;
}
.footer__requisites {
  font-weight: 500;
  font-size: 17px;
  line-height: 130%;
}
.footer__requisites ul {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-top: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.footer__top {
  margin-bottom: 65px;
}
.footer__top a {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
}
.footer__feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 29px;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .footer__ad {
    align-items: flex-start;
  }
  .footer__ad p {
    text-align: left;
  }
  .footer__nav ul li {
    text-align: left;
  }
  .footer__content {
    flex-direction: row;
    max-width: 1140px;
    padding: 59px 20px 20px 20px;
    gap: 16px;
  }
  .footer__docs {
    flex-grow: 1;
  }
  .footer__docs ul li {
    text-align: right;
  }
  .footer__payment-systems {
    display: flex;
  }
  .footer__requisites ul {
    align-items: flex-end;
  }
  .footer__top {
    order: 2;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .footer__center {
    order: 1;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .footer__bottom {
    order: 3;
    align-items: flex-end;
  }
  .footer__background img {
    padding-bottom: 0;
    padding-right: 13px;
    bottom: -22px;
  }
}
.support {
  display: flex;
  justify-content: center;
  background-color: #f3f4f5;
}
.support__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .support__content {
    max-width: 1140px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.support-block {
  border-radius: 20px;
  padding: 29px 21px 39px 21px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.support-block__left {
  align-self: flex-start;
}
.support-block .icon {
  display: block;
}
.support-block__icon-thinking {
  width: 60px;
  height: 72px;
}
.support-block__icon-idea {
  width: 78px;
  height: 101px;
}
.support-block__button {
  padding: 8px 20px;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
}
.support-block__button_outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.support-block__button_outline:hover {
  background-color: transparent;
}
.support-block__button-group {
  align-items: stretch;
  justify-content: center;
}
.support-block ul {
  list-style-type: none;
  flex-grow: 1;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  align-items: stretch;
  margin-bottom: 42px;
}
.support-block ul li {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  display: flex;
  align-items: center;
}
.support-block ul li:not(:last-of-type):not(:first-of-type) {
  padding-right: 12px;
  padding-left: 12px;
}
.support-block ul li:last-of-type {
  padding-left: 12px;
}
.support-block ul li:first-of-type {
  padding-right: 12px;
}
.support-block ul li:not(:last-of-type) {
  border-right: 1px solid white;
}
.support-block__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 42px;
}
.support-block__heading {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
}
.support-block__description {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  margin-top: 0;
  margin-bottom: 0;
}
.support-block_red {
  background: linear-gradient(90deg, #f64646 0%, #ff7d43 100%);
}
.support-block_blue {
  background: linear-gradient(121.79deg, #07a3cf 0%, #25bfea 100%);
}
.support-block_blue .support-block__button {
  color: #07a3cf;
}
@media screen and (min-width: 992px) {
  .support-block {
    padding: 42px 35px;
    border-radius: 40px;
  }
  .support-block__icon-thinking {
    width: 90px;
    height: 108px;
  }
  .support-block__icon-idea {
    width: 98px;
    height: 123px;
  }
  .support-block__button {
    padding: 16px 32px;
  }
  .support-block ul li {
    font-size: 16px;
    line-height: 19px;
  }
  .support-block ul li:not(:last-of-type):not(:first-of-type) {
    padding-right: 32px;
    padding-left: 32px;
  }
  .support-block ul li:last-of-type {
    padding-left: 32px;
  }
  .support-block ul li:first-of-type {
    padding-right: 32px;
  }
  .support-block__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    max-width: 280px;
  }
  .support-block__heading {
    font-size: 28px;
    margin-bottom: 22px;
  }
}
.cooperation {
  background-color: #f3f4f5;
  padding-top: 47px;
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}
.cooperation h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 11px;
}
.cooperation__button {
  max-width: max-content;
}
.cooperation__nav {
  margin-bottom: 22px;
}
.cooperation__nav ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
}
.cooperation__nav ul li {
  display: flex;
  align-items: center;
  text-align: center;
}
.cooperation__nav ul li label {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  padding: 5px 8px;
  border-radius: 10px;
  cursor: pointer;
}
.cooperation__represent {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 0px 16px 35px 22px;
}
.cooperation__represent img {
  width: 100%;
  display: block;
}
.cooperation__represent p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 19px;
}
.cooperation__interaction-area {
  width: 100%;
}
.cooperation__interaction-area input {
  display: none;
}
.cooperation__interaction-area input[value="1"]:checked ~ .cooperation__nav label[for="cooperation-1"] {
  background-color: #c7f3ff;
}
.cooperation__interaction-area input[value="1"]:checked ~ .cooperation__represent .cooperation__partners {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .cooperation__interaction-area input[value="1"]:checked ~ .cooperation__represent .cooperation__partners {
    gap: 29px;
  }
}
.cooperation__interaction-area input[value="2"]:checked ~ .cooperation__nav label[for="cooperation-2"] {
  background-color: #c7f3ff;
}
.cooperation__interaction-area input[value="2"]:checked ~ .cooperation__represent .cooperation__co-authors {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .cooperation__interaction-area input[value="2"]:checked ~ .cooperation__represent .cooperation__co-authors {
    gap: 29px;
  }
}
.cooperation__interaction-area input[value="3"]:checked ~ .cooperation__nav label[for="cooperation-3"] {
  background-color: #c7f3ff;
}
.cooperation__interaction-area input[value="3"]:checked ~ .cooperation__represent .cooperation__referral {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .cooperation__interaction-area input[value="3"]:checked ~ .cooperation__represent .cooperation__referral {
    gap: 29px;
  }
}
.cooperation__caption {
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #555555;
  margin-bottom: 32px;
  max-width: 552px;
}
.cooperation__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}
.cooperation__partners,
.cooperation__co-authors,
.cooperation__referral {
  display: none;
}
.cooperation__referral-caption {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
.cooperation__referral-description {
  display: grid;
  grid-row-gap: 31px;
  grid-column-gap: 37px;
  align-items: center;
  grid-template-columns: max-content auto;
}
.cooperation__referral-percentage {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #f15a29;
  justify-self: end;
}
@media screen and (min-width: 768px) {
  .cooperation {
    padding-bottom: 60px;
    padding-top: 108px;
  }
  .cooperation__content {
    max-width: 1140px;
  }
  .cooperation__interaction-area {
    display: flex;
    background: #ffffff;
    border-radius: 40px;
    gap: 72px;
    padding: 47px 64px 58px 64px;
    box-sizing: border-box;
  }
  .cooperation__represent {
    order: 1;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .cooperation__represent p {
    font-size: 18px;
    line-height: 22px;
  }
  .cooperation__nav {
    order: 2;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .cooperation__nav ul {
    flex-direction: column;
  }
  .cooperation__nav ul li label {
    font-size: 24px;
    line-height: 29px;
    padding: 18px 35px;
  }
  .cooperation h2 {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 8px;
  }
  .cooperation__caption {
    font-size: 18px;
    line-height: 22px;
  }
}
.evolution {
  display: flex;
  background-color: #f3f4f5;
}
.evolution input[type="number"] {
  display: none;
}
.evolution input[type="number"][data-level="1"] ~ .evolution__interaction .evolution__image img:nth-child(1) {
  visibility: visible;
}
.evolution input[type="number"][data-level="1"] ~ .evolution__interaction #evolution-back {
  visibility: hidden;
}
.evolution input[type="number"][data-level="1"] ~ .skills .skills__item_level_one {
  display: block;
}
.evolution input[type="number"][data-level="2"] ~ .evolution__interaction .evolution__image img:nth-child(2) {
  visibility: visible;
}
.evolution input[type="number"][data-level="2"] ~ .skills .skills__item_level_two {
  display: block;
}
.evolution input[type="number"][data-level="3"] ~ .evolution__interaction .evolution__image img:nth-child(3) {
  visibility: visible;
}
.evolution input[type="number"][data-level="3"] ~ .skills .skills__item_level_three {
  display: block;
}
.evolution input[type="number"][data-level="4"] ~ .evolution__interaction .evolution__image img:nth-child(4) {
  visibility: visible;
}
.evolution input[type="number"][data-level="4"] ~ .skills .skills__item_level_four {
  display: block;
}
.evolution input[type="number"][data-level="5"] ~ .evolution__interaction .evolution__image img:nth-child(5) {
  visibility: visible;
}
.evolution input[type="number"][data-level="5"] ~ .skills .skills__item_level_five {
  display: block;
}
.evolution input[type="number"][data-level="6"] ~ .evolution__interaction .evolution__image img:nth-child(6) {
  visibility: visible;
}
.evolution input[type="number"][data-level="6"] ~ .skills .skills__item_level_six {
  display: block;
}
.evolution input[type="number"][data-level="7"] ~ .evolution__interaction .evolution__image img:nth-child(7) {
  visibility: visible;
}
.evolution input[type="number"][data-level="7"] ~ .evolution__interaction #evolution-next {
  visibility: hidden;
}
.evolution input[type="number"][data-level="7"] ~ .skills .skills__item_level_seven {
  display: block;
}
.evolution .evolution__image {
  max-width: 324px;
  height: 263px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 1;
  width: 100%;
  position: relative;
}
.evolution .evolution__image img {
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.evolution__caption {
  font-size: 16px;
  line-height: 19px;
  color: #555555;
  padding: 5px;
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 4px;
}
.evolution h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 32px;
  text-align: center;
  max-width: 362px;
}
.evolution__button {
  background-color: #ffffff;
  box-shadow: 2px 2px 5px rgba(241, 90, 41, 0.5);
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
  padding: 8px 20px;
  margin-bottom: 20px;
}
.evolution button:not(.evolution__button) {
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.evolution button:not(.evolution__button) span {
  font-weight: 700;
  font-size: 24px;
  line-height: 16px;
  color: #f15a29;
  position: absolute;
  padding-bottom: 4px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.evolution__interaction {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  width: 100%;
  gap: 12px;
  justify-content: space-between;
}
.evolution__content {
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 67px;
}
.evolution__level {
  position: relative;
  max-width: 200px;
  width: 100%;
  margin-bottom: 18px;
}
.evolution__level-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #f64646 0%, #ff7d43 100%);
  border-radius: 20px;
  padding: 3px 15px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  line-height: 25px;
}
.evolution__level-name {
  padding: 41px 16px 8px 16px;
  background-color: #ffffff;
  border: 1px solid #ffc4b0;
  border-radius: 20px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #f15a29;
}
@media screen and (min-width: 768px) {
  .evolution__interaction {
    width: auto;
  }
  .evolution .evolution__image {
    width: 324px;
  }
  .evolution .evolution__image img {
    width: auto;
  }
}
.skills {
  position: relative;
}
.skills__caption {
  padding: 3px 15px;
  position: absolute;
  background: linear-gradient(90deg, #f64646 0%, #ff7d43 100%);
  border-radius: 20px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  bottom: calc(100% - 12.5px);
}
.skills__item {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  display: none;
  transition: all 0.4s ease-out;
}
.skills__content {
  background-color: #ffffff;
  border-radius: 0px 20px 20px 20px;
  padding: 21px 32px 13px 32px;
}
.skills__list {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 376px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.modal-window {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 56px 16px 78px 16px;
  max-width: 651px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.modal-window::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  border: 15px solid transparent;
  border-left: 15px solid #f15a29;
  border-top: 15px solid #f15a29;
}
.modal-window__heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 12px;
}
.modal-window__done-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  margin-top: 29px;
}
.modal-window__done-text ~ .modal-window__button {
  margin-top: 34px;
}
.modal-window__close {
  top: 20px;
  position: absolute;
  border: none;
  right: 18px;
  background-color: transparent;
}
.modal-window__close:focus {
  outline: none;
}
.modal-window__button {
  margin-top: 12px;
}
.modal-window__input-group {
  margin-top: 23px;
}
.modal-window__paragraph {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
@media screen and (min-width: 576px) {
  .modal-window {
    padding: 56px 100px 78px 100px;
  }
}
.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  align-items: center;
  background: rgba(66, 66, 66, 0.5);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1;
  top: 0;
}
.ajax-form * {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Gilroy", sans-serif;
  display: flex;
  flex-direction: column;
}
main {
  display: block;
}
.v-hidden {
  visibility: hidden;
}
.link {
  color: #f15a29;
  text-decoration: none;
}
.custom-field .field {
  font-family: "Gilroy", sans-serif;
}
.custom-field .error-msg {
  padding-left: 0;
}
.custom-field .error-msg,
.custom-field label {
  font-family: "Gilroy", sans-serif;
}
.custom-textarea {
  height: 165px;
}
.custom-textarea .field {
  width: 100%;
  resize: none;
  padding-bottom: 18px;
  padding-top: 21px;
}
.custom-textarea .field:focus {
  outline: none;
}
.custom-textarea label {
  height: max-content;
  padding-top: 19px;
  border-radius: inherit;
  background-color: #ffffff;
  width: calc(100% - 17px);
}
.custom-field.active.custom-textarea label,
.custom-field.filled.custom-textarea label {
  padding-top: 0;
  height: calc(54px * 0.45);
}
.custom-input {
  font-family: "Gilroy", sans-serif;
}
.custom-input .field {
  font-family: inherit;
}
.custom-input label {
  font-family: inherit;
}
.custom-input .error-msg {
  font-family: inherit;
}
.custom-field.active,
.custom-select2.show-options .custom-field {
  border-color: #07a3cf;
}
.subscribe_telegram {
  position: fixed;
  bottom: 32px;
  left: 32px;
  display: flex;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 24px 32px 24px 24px;
  max-width: 425px;
  z-index: 0;
}
@media (max-width: 576px) {
  .subscribe_telegram {
    bottom: 0;
    left: 0;
    max-width: unset;
  }
}
.subscribe_telegram__close {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 8px;
  margin-right: 8px;
  cursor: pointer;
}
.subscribe_telegram__image {
  margin-right: 22px;
}
.subscribe_telegram__body {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.subscribe_telegram__text {
  color: #000000;
  margin-top: 0;
  margin-bottom: 12px;
}
.subscribe_telegram__button {
  border: 1px solid #1099ff;
  border-radius: 20px;
  color: #137ecd;
  padding: 8px 20px;
  display: block;
  text-decoration: none;
}
.d-none {
  display: none;
}
