@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  font-family: "Journal Sans New", Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-width: 490px;
  font-weight: normal;
  font-style: normal;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.green {
  background: #6EA929;
}

.blue {
  background: #2F8FDF;
}

.highlight {
  background: url("../img/highlight.png") center no-repeat;
  background-size: contain;
}

.default {
  color: #ACACAC;
}

.text-center {
  text-align: center;
}

.quotes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
}

@media screen and (max-width: 754px) {
  .quotes {
    display: block;
  }
}

.quotes::before, .quotes::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 754px) {
  .quotes::before, .quotes::after {
    display: inline;
  }
}

.quotes::before {
  content: '«';
}

.quotes::after {
  content: "»";
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.button {
  outline: none;
  border: none;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Journal Sans New";
}

.button-more {
  background: #E9E593;
  border-radius: 4px;
  min-height: 49px;
  padding: 2px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 225px;
  font-weight: bold;
  font-size: 20px;
  line-height: 114%;
  margin: auto 0 0 25px;
  color: #000;
  display: none;
}

@media screen and (max-width: 1184px) {
  .button-more {
    display: none;
  }
}

.button-more_mob {
  display: none;
}

@media screen and (max-width: 1184px) {
  .button-more_mob {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 225px;
    margin: 0 auto;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    display: none;
  }
}

.button-more.mt-40 {
  margin-top: 40px;
}

@media screen and (max-width: 1184px) {
  .button-more.mt-40 {
    margin-top: 30px;
  }
}

.button-more:hover {
  background: #dcd653;
}

.button-subscribe {
  background: #2F8FDF;
  opacity: 0.98;
  border-radius: 82px;
  min-height: 67px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 27px;
  line-height: 114%;
  color: #fff;
  padding: 5px;
  width: 100%;
  max-width: 212px;
  z-index: 20;
  position: fixed;
  bottom: 50px;
  right: 30px;
}

@media screen and (max-width: 754px) {
  .button-subscribe {
    max-width: 155px;
    min-height: 49px;
    font-size: 20px;
    bottom: 30px;
    right: 30px;
  }
}

.button-subscribe:hover {
  background: #1a67a8;
}

.button-send {
  background: #6EA929;
  border-radius: 4px;
  min-height: 53px;
  font-weight: 700;
  font-size: 20px;
  line-height: 114%;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 20px;
  position: relative;
}

.button-send::after {
  position: absolute;
  bottom: -35%;
  right: -19px;
  width: 15px;
  height: 95px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  background: url("../img/arrow_green.png") center no-repeat;
  background-size: 100% 100%;
  content: '';
  opacity: 0;
  -webkit-transition: opacity ease .3s;
  transition: opacity ease .3s;
}

.button-send::before {
  position: absolute;
  background: url("../img/arrow_green2.png") center no-repeat;
  background-size: auto 100%;
  content: '';
  height: 42px;
  width: 15px;
  left: 50%;
  bottom: -53px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity ease .3s;
  transition: opacity ease .3s;
}

.button-send.active::after {
  opacity: 1;
}

@media screen and (max-width: 1184px) {
  .button-send.active::after {
    opacity: 0;
  }
}

@media screen and (max-width: 754px) {
  .button-send.active::after {
    background: url("../img/arrow_green_mob.png") center no-repeat;
    background-size: 100% 100%;
    height: 132px;
    width: 28px;
    right: -36px;
    bottom: -70%;
    opacity: 1;
  }
}

.button-send.active::before {
  opacity: 0;
}

@media screen and (max-width: 1184px) {
  .button-send.active::before {
    opacity: 1;
  }
}

@media screen and (max-width: 754px) {
  .button-send.active::before {
    opacity: 0;
  }
}

.button-send:hover {
  background: #466b1a;
}

.button-group {
  margin-top: 25px;
  border-radius: 4px;
  min-height: 49px;
  padding: 2px;
  min-width: 318px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 114%;
  color: #fff;
}

@media screen and (max-width: 1184px) {
  .button-group {
    min-height: 45px;
    font-size: 18px;
    min-width: 295px;
  }
}

@media screen and (max-width: 754px) {
  .button-group {
    min-height: 66px;
    min-width: 190px;
    font-size: 20px;
    text-align: center;
    margin-top: 12px;
  }
}

.button-group.green:hover {
  background: #466b1a;
}

.button-group.blue:hover {
  background: #1a67a8;
}

.button:active, .button:focus {
  outline: none;
}

@media screen and (max-width: 1344px) {
  .br_1 {
    display: none;
  }
}

.br_2 {
  display: none;
}

@media screen and (max-width: 1344px) {
  .br_2 {
    display: block;
  }
}

@media screen and (max-width: 1184px) {
  .br_2 {
    display: none;
  }
}

.br_3 {
  display: none;
}

@media screen and (max-width: 1184px) {
  .br_3 {
    display: block;
  }
}

@media screen and (max-width: 754px) {
  .br_3 {
    display: none;
  }
}

.br_4 {
  display: none;
}

@media screen and (max-width: 754px) {
  .br_4 {
    display: block;
  }
}

.container {
  padding: 0 10px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 754px) {
  .container {
    max-width: 485px;
    padding: 0 25px;
  }
  .container.v10 {
    padding: 0 10px;
  }
}

@media screen and (min-width: 755px) {
  .container {
    max-width: 745px;
  }
}

@media screen and (min-width: 1185px) {
  .container {
    max-width: 1175px;
  }
}

@media screen and (min-width: 1345px) {
  .container {
    max-width: 1335px;
  }
}

.grid {
  display: -ms-grid;
  display: grid;
}

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

.text-center {
  text-align: center;
}

.title {
  font-weight: bold;
  font-size: 35px;
  line-height: 127%;
}

.footer {
  background: #000;
  padding: 25px 0 30px;
  font-family: "Circe";
}

.footer__row {
  -ms-grid-columns: (max-content)[4];
      grid-template-columns: repeat(4, -webkit-max-content);
      grid-template-columns: repeat(4, max-content);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1344px) {
  .footer__row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (max-width: 1184px) {
  .footer__row {
    -ms-grid-columns: max-content minmax(0, 196px);
        grid-template-columns: -webkit-max-content minmax(0, 196px);
        grid-template-columns: max-content minmax(0, 196px);
    row-gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 754px) {
  .footer__row {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    row-gap: 23px;
  }
}

.footer__item.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  position: relative;
  padding-right: 35px;
}

@media screen and (max-width: 1184px) {
  .footer__item.logo {
    gap: 8px;
  }
}

@media screen and (max-width: 754px) {
  .footer__item.logo {
    grid-column: 4 span / 4;
    padding: 0;
  }
}

.footer__item.logo::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
  width: 1px;
  height: 39px;
  border-right: 1px solid #6C6C6C;
}

@media screen and (max-width: 1184px) {
  .footer__item.logo::after {
    display: none;
  }
}

.footer__item.logo p {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 0;
}

.footer__item.logo img {
  margin-top: -5px;
}

.footer__item.copyrigth {
  font-size: 14px;
  line-height: 19px;
  color: #fff;
  margin-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.footer__item.copyrigth .mob {
  display: none;
}

@media screen and (max-width: 754px) {
  .footer__item.copyrigth .mob {
    display: inline-block;
    position: relative;
    width: 13px;
    height: 13px;
  }
  .footer__item.copyrigth .mob::after {
    position: absolute;
    content: '©';
    width: 100%;
    height: 100%;
    top: -2px;
    left: 0;
  }
}

@media screen and (max-width: 1184px) {
  .footer__item.copyrigth {
    margin-left: 0;
    text-align: right;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 754px) {
  .footer__item.copyrigth {
    grid-column: 1 span / 1;
    text-align: left;
  }
}

.footer__item.copyrigth::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 96px;
  content: '';
  border-left: 1px solid #6C6C6C;
  display: none;
}

@media screen and (max-width: 1184px) {
  .footer__item.copyrigth::before {
    display: block;
  }
}

@media screen and (max-width: 754px) {
  .footer__item.copyrigth::before {
    display: none;
  }
}

.footer__item.copyrigth p {
  position: relative;
  padding-left: 17px;
}

@media screen and (max-width: 754px) {
  .footer__item.copyrigth p {
    padding-left: 0;
  }
}

.footer__item.copyrigth p::before {
  position: absolute;
  content: '©';
  width: 13px;
  height: 100%;
  top: -1px;
  left: 0;
}

@media screen and (max-width: 1184px) {
  .footer__item.copyrigth p::before {
    top: -2px;
    left: 36%;
  }
}

@media screen and (max-width: 754px) {
  .footer__item.copyrigth p::before {
    display: none;
  }
}

.footer__item.copyrigth a {
  color: #64A11C;
  position: relative;
  padding-bottom: 1px;
}

.footer__item.copyrigth a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #64A11C;
  content: '';
}

.footer__item.link_1, .footer__item.link_2 {
  font-size: 14px;
  line-height: 19px;
  color: #8C8C8C;
}

.footer__item.link_1 a, .footer__item.link_2 a {
  position: relative;
}

.footer__item.link_1 a::after, .footer__item.link_2 a::after {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #8C8C8C;
  content: '';
}

.footer__item.link_1 {
  margin-left: 350px;
}

@media screen and (max-width: 1344px) {
  .footer__item.link_1 {
    margin-left: 110px;
  }
}

@media screen and (max-width: 1184px) {
  .footer__item.link_1 {
    margin-left: 0;
    padding-left: 40px;
  }
}

@media screen and (max-width: 754px) {
  .footer__item.link_1 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    grid-column: 4 span / 4;
    padding: 0;
    text-align: center;
    position: relative;
  }
  .footer__item.link_1::before {
    position: absolute;
    top: -8px;
    left: 17px;
    content: '';
    height: 1px;
    width: 90%;
    border-top: 1px solid #6C6C6C;
  }
}

.footer__item.link_2 {
  margin-left: 34px;
  text-align: right;
}

@media screen and (max-width: 1184px) {
  .footer__item.link_2 {
    margin-left: 0;
  }
}

@media screen and (max-width: 754px) {
  .footer__item.link_2 {
    grid-column: 2 span / 4;
  }
}

.questions {
  padding: 40px 0 50px;
}

@media screen and (max-width: 1184px) {
  .questions {
    padding: 40px 0;
  }
}

@media screen and (max-width: 754px) {
  .questions {
    padding: 40px 0 45px;
  }
}

@media screen and (min-width: 750px) {
  .questions .container {
    max-width: 730px;
  }
}

@media screen and (min-width: 1150px) {
  .questions .container {
    max-width: 990px;
  }
}

@media screen and (max-width: 754px) {
  .questions__title {
    font-size: 28px;
  }
}

.questions__wrapper {
  margin-top: 20px;
  border-top: 2px solid #CEE7FF;
}

@media screen and (max-width: 754px) {
  .questions__wrapper {
    margin-top: 25px;
  }
}

.questions__tab {
  border-bottom: 2px solid #CEE7FF;
}

.questions__tab-head {
  font-size: 20px;
  line-height: 127%;
  font-weight: 700;
  cursor: pointer;
  padding: 20px 45px 20px 0;
  position: relative;
}

.questions__tab-head::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  width: 35px;
  height: 35px;
  content: '';
  background: url("../img/tab_close.png") center no-repeat;
  background-size: contain;
  -webkit-transition: all ease .7s;
  transition: all ease .7s;
}

.questions__tab-head.active::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.questions__tab-body {
  display: none;
  font-size: 20px;
  line-height: 26px;
  padding-bottom: 30px;
  padding-right: 45px;
}

@media screen and (max-width: 754px) {
  .questions__tab-body {
    padding-bottom: 25px;
  }
}

.components {
  padding: 70px 0 140px;
  position: relative;
}

@media screen and (max-width: 1344px) {
  .components {
    padding: 50px 0 140px;
  }
}

@media screen and (max-width: 1184px) {
  .components {
    padding: 40px 0 167px;
  }
}

@media screen and (max-width: 754px) {
  .components {
    padding: 30px 0 160px;
  }
}

@media screen and (max-width: 754px) {
  .components__title {
    font-size: 28px;
    line-height: 114%;
  }
}

.components__items {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding-left: 40px;
}

@media screen and (max-width: 1184px) {
  .components__items {
    margin-top: 20px;
    padding-left: 0;
    gap: 35px;
  }
}

@media screen and (max-width: 754px) {
  .components__items {
    margin-top: 15px;
    gap: 25px;
  }
}

.components__row {
  -ms-grid-columns: (minmax(0, 560px))[2];
      grid-template-columns: repeat(2, minmax(0, 560px));
  -webkit-column-gap: 55px;
          column-gap: 55px;
  position: relative;
}

@media screen and (max-width: 1344px) {
  .components__row {
    -ms-grid-columns: 553px minmax(0, 1fr);
        grid-template-columns: 553px minmax(0, 1fr);
    -webkit-column-gap: 25px;
            column-gap: 25px;
  }
}

@media screen and (max-width: 1184px) {
  .components__row {
    -ms-grid-columns: unset;
        grid-template-columns: unset;
  }
}

@media screen and (max-width: 754px) {
  .components__row {
    -ms-grid-columns: minmax(0, 1fr) !important;
        grid-template-columns: minmax(0, 1fr) !important;
    row-gap: 20px;
    padding-left: 32px;
  }
}

.components__row::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 23px;
  height: 23px;
  border-radius: 100%;
  background: #6EA929;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "Kalam", cursive;
  line-height: 135%;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 754px) {
  .components__row::before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1184px) {
  .components__row:first-child {
    -ms-grid-columns: 388px minmax(0, 1fr);
        grid-template-columns: 388px minmax(0, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 754px) {
  .components__row:first-child::before {
    content: '1';
  }
}

.components__row:first-child .components__img {
  margin-top: -100px;
  height: 429px;
  text-align: center;
}

@media screen and (max-width: 1344px) {
  .components__row:first-child .components__img {
    height: 393px;
  }
}

@media screen and (max-width: 1184px) {
  .components__row:first-child .components__img {
    margin-top: 0;
    height: 241px;
  }
}

.components__row:first-child img {
  width: 487px;
  height: auto;
}

@media screen and (max-width: 1344px) {
  .components__row:first-child img {
    width: 447px;
  }
}

@media screen and (max-width: 1184px) {
  .components__row:first-child img {
    width: 251px;
  }
}

@media screen and (max-width: 1184px) {
  .components__row:nth-child(2) {
    -ms-grid-columns: 292px minmax(0, 1fr);
        grid-template-columns: 292px minmax(0, 1fr);
    -webkit-column-gap: 37px;
            column-gap: 37px;
  }
}

@media screen and (max-width: 754px) {
  .components__row:nth-child(2)::before {
    content: '2';
  }
}

@media screen and (max-width: 1184px) {
  .components__row:nth-child(2) .components__img {
    height: 138px;
  }
}

@media screen and (max-width: 754px) {
  .components__row:nth-child(3)::before {
    content: '3';
  }
}

@media screen and (max-width: 1184px) {
  .components__row:nth-child(3) {
    -ms-grid-columns: 372px minmax(0, 1fr);
        grid-template-columns: 372px minmax(0, 1fr);
    -webkit-column-gap: 34px;
            column-gap: 34px;
  }
}

@media screen and (max-width: 1184px) {
  .components__row:nth-child(3) .components__img {
    height: 138px;
  }
}

@media screen and (max-width: 754px) {
  .components__row:nth-child(4)::before {
    content: '4';
  }
}

@media screen and (max-width: 1184px) {
  .components__row:nth-child(4) {
    -ms-grid-columns: 290px minmax(0, 1fr);
        grid-template-columns: 290px minmax(0, 1fr);
    -webkit-column-gap: 44px;
            column-gap: 44px;
  }
}

@media screen and (max-width: 1184px) {
  .components__row:nth-child(4) .components__img {
    height: 144px;
  }
}

@media screen and (max-width: 754px) {
  .components__row:nth-child(5)::before {
    content: '5';
  }
}

@media screen and (max-width: 1184px) {
  .components__row:nth-child(5) {
    -ms-grid-columns: 369px minmax(0, 1fr);
        grid-template-columns: 369px minmax(0, 1fr);
    -webkit-column-gap: 37px;
            column-gap: 37px;
  }
}

@media screen and (max-width: 1184px) {
  .components__row:nth-child(5) .components__img {
    height: 144px;
  }
}

@media screen and (max-width: 754px) {
  .components__row:last-child::before {
    content: '6';
  }
}

@media screen and (max-width: 1184px) {
  .components__row:last-child {
    -ms-grid-columns: 290px minmax(0, 1fr);
        grid-template-columns: 290px minmax(0, 1fr);
    -webkit-column-gap: 44px;
            column-gap: 44px;
  }
}

.components__row:last-child .components__img {
  margin-top: 10px;
  height: 277px;
}

@media screen and (max-width: 1184px) {
  .components__row:last-child .components__img {
    height: 153px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 754px) {
  .components__row:last-child .components__img {
    height: 116px;
    margin-top: 0;
  }
}

@media screen and (max-width: 754px) {
  .components__row:nth-child(even) .components__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.components__info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.components__subtitle {
  font-weight: bold;
  font-size: 25px;
  line-height: 114%;
}

@media screen and (max-width: 1184px) {
  .components__subtitle {
    font-size: 20px;
  }
}

.components__descr {
  font-size: 20px;
  line-height: 114%;
  margin-top: 10px;
}

@media screen and (max-width: 1184px) {
  .components__descr {
    font-size: 17px;
    margin-top: 7px;
  }
}

.components__descr p:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (max-width: 1184px) {
  .components__descr p:not(:last-child) {
    margin-bottom: 15px;
  }
}

.components__img {
  border: 1px solid #6EA929;
  border-radius: 19px;
  overflow: hidden;
}

@media screen and (max-width: 754px) {
  .components__img {
    max-width: 290px;
  }
}

.components__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.access {
  position: absolute;
  background: #fff;
  z-index: 2;
  border: 4px solid #6EA929;
  min-width: 864px;
  left: 50%;
  bottom: -115px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 30px 65px;
}

@media screen and (max-width: 1184px) {
  .access {
    min-width: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    padding: 30px 30px 40px 40px;
    bottom: -125px;
  }
}

@media screen and (max-width: 754px) {
  .access {
    min-width: 430px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0 20px;
    bottom: -134px;
  }
}

.access::after {
  position: absolute;
  bottom: 36px;
  right: 55px;
  content: '';
  background: url("../img/component_arrow.png") center no-repeat;
  background-size: auto 35px;
  height: 35px;
  width: 15px;
}

@media screen and (max-width: 1184px) {
  .access::after {
    bottom: 21px;
    right: 148px;
  }
}

@media screen and (max-width: 754px) {
  .access::after {
    bottom: 27px;
    right: 20px;
  }
}

.access__title {
  font-weight: 700;
  font-size: 25px;
  line-height: 114%;
  text-align: center;
}

@media screen and (max-width: 1184px) {
  .access__title {
    text-align: left;
  }
}

@media screen and (max-width: 754px) {
  .access__title {
    text-align: center;
    font-size: 22px;
  }
}

.access__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

@media screen and (max-width: 1184px) {
  .access__list {
    margin-top: 4px;
  }
}

@media screen and (max-width: 754px) {
  .access__list {
    margin-left: -25px;
  }
}

.access__item {
  font-size: 20px;
  line-height: 114%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

@media screen and (max-width: 754px) {
  .access__item {
    font-size: 17px;
  }
}

.access__num {
  min-width: 31px;
  height: 31px;
  background: #6EA929;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 0;
  border-radius: 100%;
  color: #fff;
  font-size: 18px;
  margin-top: -5px;
  font-family: "Kalam", cursive;
  padding-bottom: 12px;
}

.options {
  background: #E2F1F8;
  padding: 145px 0 30px;
}

@media screen and (max-width: 1344px) {
  .options {
    padding: 140px 0 30px;
  }
}

@media screen and (max-width: 1184px) {
  .options {
    padding: 165px 0 30px;
  }
}

@media screen and (max-width: 754px) {
  .options {
    padding: 155px 0 35px;
  }
}

.options__title {
  text-align: center;
}

@media screen and (max-width: 754px) {
  .options__title {
    font-size: 28px;
  }
}

.options__table {
  margin: 20px auto 0;
  border-spacing: 0;
  line-height: 114%;
}

.options__table td {
  vertical-align: baseline;
}

@media screen and (max-width: 1184px) {
  .options__table {
    font-size: 14px;
  }
}

@media screen and (max-width: 754px) {
  .options__table {
    margin-top: 12px;
  }
}

.options__table thead {
  color: #fff;
  line-height: 157%;
}

.options__table thead td {
  padding: 10px 15px 10px;
}

.options__table thead td:first-child {
  border-right: 12px solid #E2F1F8;
}

@media screen and (max-width: 754px) {
  .options__table thead td:first-child {
    border-right: 5px solid #E2F1F8;
  }
}

@media screen and (max-width: 1184px) {
  .options__table thead td {
    padding: 10px 15px 10px 20px;
  }
}

@media screen and (max-width: 754px) {
  .options__table thead td {
    padding: 12px 12px 18px 8px;
  }
}

.options__table thead .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -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 screen and (max-width: 754px) {
  .options__table thead .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.options__table thead .head {
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 1184px) {
  .options__table thead .head {
    font-size: 19px;
  }
}

.options__table thead .border {
  border: 2px solid #fff;
  min-height: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
}

.options__table tbody tr {
  background: #fff;
}

.options__table tbody td:first-child {
  border-right: 12px solid #E2F1F8;
}

.options__table ul {
  padding-left: 17px;
  margin-top: 10px;
  line-height: 155%;
}

@media screen and (max-width: 754px) {
  .options__table ul {
    line-height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7px;
  }
}

.options__table ul.green, .options__table ul.blue {
  background: unset;
}

.options__table ul.green li::before {
  background: #6EA929;
}

.options__table ul.blue li::before {
  background: #2F8FDF;
}

.options__table li {
  position: relative;
}

.options__table li::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  left: -15px;
  top: 9px;
}

.options__table li.default::before {
  background: #ACACAC !important;
}

.options__table h2 {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 114%;
}

@media screen and (min-width: 755px) {
  .options__table h2 {
    gap: 3px;
  }
}

@media screen and (min-width: 1185px) {
  .options__table h2 {
    gap: 0;
  }
}

.options__table h2 span:first-child {
  font-weight: bold;
  font-size: 31px;
}

@media screen and (max-width: 1184px) {
  .options__table h2 span:first-child {
    font-size: 29px;
  }
}

@media screen and (max-width: 754px) {
  .options__table h2 span:first-child {
    font-size: 25px;
  }
}

.options__table h2 span:last-child {
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 1184px) {
  .options__table h2 span:last-child {
    font-size: 16px;
  }
}

.options__table h2 span.blue, .options__table h2 span.green {
  background: unset;
}

.options__table h2 span.blue {
  color: #2F8FDF;
}

.options__table h2 span.green {
  color: #6EA929;
}

.options__table .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 754px) {
  .options__table .item_img {
    display: none;
  }
}

.options__table .mini {
  border: 0 !important;
  background: #25273B;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding: 7px 0;
  position: relative;
}

.options__table .mini img {
  display: none;
  vertical-align: middle;
  margin-right: 2px;
}

@media screen and (max-width: 754px) {
  .options__table .mini img {
    display: inline-block;
  }
}

.options__table .final {
  border: 0 !important;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  padding: 20px 0;
  background: #E2F1F8;
}

@media screen and (max-width: 1184px) {
  .options__table .final {
    font-size: 18px;
  }
  .options__table .final img {
    height: 15px;
  }
}

@media screen and (max-width: 754px) {
  .options__table .final {
    font-size: 22px;
  }
  .options__table .final img {
    height: 19px;
    vertical-align: middle;
  }
}

.options__table .prices {
  padding: 30px 30px 35px;
}

@media screen and (max-width: 754px) {
  .options__table .prices {
    padding: 15px 10px 10px;
  }
}

.options__table .prices img {
  vertical-align: middle;
}

.options__table .prices p {
  margin: 6px 0;
  font-size: 18px;
}

@media screen and (max-width: 1184px) {
  .options__table .prices p {
    font-size: 16px;
  }
}

.options__table .bg_light {
  background: #ECF9FF;
}

@media screen and (max-width: 754px) {
  .options__table .bg_light {
    background: #fff;
  }
}

.options__table .line_1 {
  padding: 20px 20px 15px 18px;
}

.options__table .line_2 {
  padding: 10px 20px 15px 18px;
}

.options__table .line_3 {
  padding: 15px 20px 20px 18px;
}

.options__table .line_border {
  position: relative;
}

.options__table .line_border::after {
  position: absolute;
  bottom: 0;
  left: 40px;
  width: calc(100% - 40px - 12px - 28px);
  height: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  content: '';
}

@media screen and (max-width: 754px) {
  .options__table .line_border::after {
    left: 18px;
    width: calc(100% - 18px - 12px);
  }
}

.options__table .highlight {
  font-weight: 700;
  padding: 2px 4px;
}

.options__after {
  padding-left: 38px;
  position: relative;
  margin: 25px auto 0;
  font-size: 14px;
  line-height: 114%;
  font-weight: 400;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 1184px) {
  .options__after {
    font-size: 13px;
  }
}

@media screen and (max-width: 754px) {
  .options__after {
    font-size: 12px;
    margin: 10px auto 0;
    padding-left: 27px;
    width: 100%;
  }
}

.options__after::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  content: '';
  height: 28px;
  background: url("../img/logo.svg") center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 754px) {
  .options__after::before {
    width: 23px;
    height: 22px;
  }
}

@media screen and (max-width: 754px) {
  .mob_green {
    color: #5F981C;
  }
}

@media screen and (max-width: 754px) {
  .mob_blue {
    color: #2F8FDF;
  }
}

.reserve {
  padding: 47px 0;
  background: #2F8FDF;
  position: relative;
  z-index: 21;
}

@media screen and (max-width: 1184px) {
  .reserve {
    padding: 47px 0 30px;
  }
}

@media screen and (max-width: 754px) {
  .reserve {
    padding: 20px 0 25px;
  }
}

.reserve__title {
  font-weight: bold;
  font-size: 25px;
  line-height: 114%;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding-right: 38px;
  color: #fff;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 754px) {
  .reserve__title {
    width: 100%;
    text-align: left;
    font-size: 16px;
    max-width: 427px;
  }
}

.reserve__title::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 47px;
  content: '';
  background: url("../img/white_arrow.png") center right no-repeat;
  background-size: contain;
  z-index: -1;
}

@media screen and (max-width: 754px) {
  .reserve__title::after {
    right: 25px;
    height: 31px;
  }
}

.reserve__form {
  background: #fff;
  border-radius: 19px;
  max-width: 795px;
  margin: 22px auto 0;
}

@media screen and (max-width: 754px) {
  .reserve__form {
    margin: 20px auto 0;
    max-width: 427px;
  }
}

.reserve__head {
  padding: 30px 50px 38px 45px;
  -ms-grid-columns: minmax(0, 1fr) minmax(0, 361px);
      grid-template-columns: minmax(0, 1fr) minmax(0, 361px);
  -webkit-column-gap: 10px;
          column-gap: 10px;
  row-gap: 20px;
}

@media screen and (max-width: 1184px) {
  .reserve__head {
    padding: 30px 25px 30px;
    -ms-grid-columns: minmax(0, 1fr) minmax(0, 317px);
        grid-template-columns: minmax(0, 1fr) minmax(0, 317px);
  }
}

@media screen and (max-width: 754px) {
  .reserve__head {
    -ms-grid-columns: minmax(0, 350px);
        grid-template-columns: minmax(0, 350px);
    padding: 25px 37px;
  }
}

.reserve__info {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 754px) {
  .reserve__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.reserve__start {
  font-size: 11px;
  line-height: 153%;
}

@media screen and (max-width: 754px) {
  .reserve__start {
    font-size: 14px;
    text-align: right;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
}

.reserve__start .blue {
  background: unset;
  color: #2F8FDF;
  font-weight: 700;
}

.reserve__rules {
  color: #8A8A8A;
  font-size: 14px;
  font-family: "Circe";
  line-height: 114%;
}

@media screen and (max-width: 754px) {
  .reserve__rules {
    font-size: 10px;
    line-height: 119%;
  }
}

.reserve__rules a {
  position: relative;
}

.reserve__rules a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #8A8A8A;
  content: '';
}

.reserve__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 754px) {
  .reserve__contact {
    max-width: 318px;
    margin: 0 auto;
    width: 100%;
  }
}

.reserve__footer {
  padding: 0 20px 20px;
  display: none;
}

@media screen and (max-width: 1184px) {
  .reserve__footer {
    padding: 0 19px 20px;
  }
}

@media screen and (max-width: 754px) {
  .reserve__footer {
    padding: 0 5px 5px;
  }
}

.reserve__footer-container {
  padding: 25px 25px 20px 20px;
  background: #E2F1F8;
  border-radius: 0px 0px 10px 10px;
}

@media screen and (max-width: 1184px) {
  .reserve__footer-container {
    padding: 25px 25px 15px 25px;
  }
}

@media screen and (max-width: 754px) {
  .reserve__footer-container {
    padding: 25px 20px 20px;
  }
}

.reserve__subtitle {
  font-weight: bold;
  font-size: 20px;
  line-height: 114%;
  text-align: center;
}

@media screen and (max-width: 754px) {
  .reserve__subtitle {
    font-size: 17px;
  }
}

.reserve__blocks {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}

@media screen and (max-width: 754px) {
  .reserve__blocks {
    gap: 11px;
  }
}

.reserve__item {
  background: #fff;
  padding: 12px 75px 12px 24px;
}

@media screen and (max-width: 1184px) {
  .reserve__item {
    padding: 12px 20px 12px 24px;
  }
}

@media screen and (max-width: 754px) {
  .reserve__item {
    padding: 12px 15px 15px;
  }
}

.reserve__item p {
  font-size: 18px;
  line-height: 114%;
}

.reserve__checkboxes {
  margin-top: 9px;
}

.reserve__checkboxes.v1 {
  -ms-grid-columns: (max-content)[2];
      grid-template-columns: repeat(2, -webkit-max-content);
      grid-template-columns: repeat(2, max-content);
  -webkit-column-gap: 25px;
          column-gap: 25px;
}

.reserve__checkboxes.v2 {
  -ms-grid-columns: (max-content)[3];
      grid-template-columns: repeat(3, -webkit-max-content);
      grid-template-columns: repeat(3, max-content);
  -webkit-column-gap: 66px;
          column-gap: 66px;
  row-gap: 8px;
}

@media screen and (max-width: 1184px) {
  .reserve__checkboxes.v2 {
    -webkit-column-gap: 45px;
            column-gap: 45px;
  }
}

@media screen and (max-width: 754px) {
  .reserve__checkboxes.v2 {
    -ms-grid-columns: (max-content)[2];
        grid-template-columns: repeat(2, -webkit-max-content);
        grid-template-columns: repeat(2, max-content);
    -webkit-column-gap: 16px;
            column-gap: 16px;
  }
}

.reserve__checkboxes.v3 {
  -ms-grid-columns: (max-content)[4];
      grid-template-columns: repeat(4, -webkit-max-content);
      grid-template-columns: repeat(4, max-content);
  -webkit-column-gap: 40px;
          column-gap: 40px;
}

@media screen and (max-width: 754px) {
  .reserve__checkboxes.v3 {
    -ms-grid-columns: (max-content)[3];
        grid-template-columns: repeat(3, -webkit-max-content);
        grid-template-columns: repeat(3, max-content);
    -webkit-column-gap: 30px;
            column-gap: 30px;
    row-gap: 8px;
  }
}

@media screen and (max-width: 754px) {
  .reserve__checkboxes.v3 .checkbox:last-child {
    grid-column: 3 span / 4;
  }
}

.reserve__after {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 114%;
}

@media screen and (max-width: 1184px) {
  .reserve__after {
    text-align: center;
    margin-top: 12px;
  }
}

@media screen and (max-width: 754px) {
  .reserve__after {
    margin-top: 15px;
  }
}

.input input {
  width: 100%;
  outline: none;
  border: none;
  height: 30px;
  border-bottom: 1px solid #000;
  font-family: "Circe";
  font-weight: 350;
  font-size: 18px;
  line-height: 27px;
  border-radius: 0;
}

.input input::-webkit-input-placeholder {
  font-family: "Circe";
}

.input input:-ms-input-placeholder {
  font-family: "Circe";
}

.input input::-ms-input-placeholder {
  font-family: "Circe";
}

.input input::placeholder {
  font-family: "Circe";
}

.input input:focus, .input input:active {
  outline: none;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkbox span {
  min-width: 17px;
  height: 17px;
  border: 1px solid #B1D2F7;
  border-radius: 4px;
}

.checkbox p {
  font-size: 17px;
  line-height: 114%;
  color: #436A7A;
}

.checkbox.active span {
  background: url("../img/checked.svg") center no-repeat;
  background-size: 7px auto;
}

.worth {
  background: #E8F7FA;
  padding: 50px 0 60px;
  overflow: hidden;
}

@media screen and (max-width: 1344px) {
  .worth {
    padding: 50px 0 65px;
  }
}

@media screen and (max-width: 1184px) {
  .worth {
    padding: 35px 0 28px;
  }
}

@media screen and (max-width: 754px) {
  .worth {
    padding: 35px 0;
  }
}

@media screen and (max-width: 754px) {
  .worth__title {
    font-size: 28px;
  }
}

.worth__block {
  position: relative;
  margin-left: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 1184px) {
  .worth__block {
    margin-left: 0;
  }
}

@media screen and (max-width: 754px) {
  .worth__block {
    gap: 15px;
  }
}

.worth__block.v1 {
  margin-top: 25px;
}

@media screen and (max-width: 754px) {
  .worth__block.v1 {
    margin-top: 15px;
  }
}

.worth__block.v2 {
  margin-top: 40px;
}

@media screen and (max-width: 1344px) {
  .worth__block.v2 {
    margin-top: 55px;
  }
}

@media screen and (max-width: 1184px) {
  .worth__block.v2 {
    margin-top: 25px;
  }
}

@media screen and (max-width: 754px) {
  .worth__block.v2 {
    gap: 25px;
  }
}

.worth__block.reverse {
  padding-left: 490px;
}

@media screen and (max-width: 1184px) {
  .worth__block.reverse {
    padding-left: calc(100% - 399px - 24px);
  }
}

@media screen and (max-width: 754px) {
  .worth__block.reverse {
    padding-left: 0;
  }
}

.worth__subtitle {
  font-weight: bold;
  font-size: 25px;
  line-height: 114%;
}

@media screen and (max-width: 754px) {
  .worth__subtitle {
    font-size: 22px;
  }
}

.worth__subtitle h3 {
  font-size: inherit;
  line-height: inherit;
}

.worth__subtitle img {
  position: absolute;
  max-height: unset;
}

.worth__subtitle.v1 img {
  top: -90px;
  right: 140px;
}

@media screen and (max-width: 1344px) {
  .worth__subtitle.v1 img {
    right: 0;
  }
}

@media screen and (max-width: 1184px) {
  .worth__subtitle.v1 img {
    width: 271px;
  }
}

@media screen and (max-width: 754px) {
  .worth__subtitle.v1 img {
    width: 178px;
    top: -33px;
    right: 36px;
  }
}

.worth__subtitle.v2 {
  margin-bottom: 10px;
}

.worth__subtitle.v3 img {
  left: -30px;
  top: -37px;
}

@media screen and (max-width: 1344px) {
  .worth__subtitle.v3 img {
    left: -57px;
  }
}

@media screen and (max-width: 1184px) {
  .worth__subtitle.v3 img {
    width: 287px;
    left: 0;
    top: -12px;
  }
}

@media screen and (max-width: 754px) {
  .worth__subtitle.v3 img {
    width: 165px;
    right: 10px;
    left: unset;
    top: -20px;
  }
}

.worth__descr {
  font-size: 20px;
  line-height: 114%;
}

.worth__descr p:not(:last-child) {
  margin-bottom: 25px;
}

.worth__descr.v2 {
  margin-top: 10px;
}

.worth__wrap {
  margin-top: 56px;
  max-width: 1300px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 40px 35px 35px;
}

@media screen and (max-width: 1344px) {
  .worth__wrap {
    padding: 32px 40px 12px 40px;
  }
}

@media screen and (max-width: 1184px) {
  .worth__wrap {
    padding: 32px 40px 22px 35px;
  }
}

@media screen and (max-width: 754px) {
  .worth__wrap {
    border-radius: 0;
    position: relative;
    z-index: 1;
    padding: 22px 0 32px;
  }
  .worth__wrap::after {
    position: absolute;
    width: 1000vw;
    height: 100%;
    left: -500vw;
    top: 0;
    background: #fff;
    z-index: -1;
    content: '';
  }
}

.worth__row {
  margin-top: 30px;
  -ms-grid-columns: (max-content)[3];
      grid-template-columns: repeat(3, -webkit-max-content);
      grid-template-columns: repeat(3, max-content);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1184px) {
  .worth__row {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-column-gap: 15px;
            column-gap: 15px;
  }
}

@media screen and (max-width: 754px) {
  .worth__row {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    row-gap: 30px;
  }
}

.worth__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 1344px) {
  .worth__item {
    gap: 15px;
  }
}

@media screen and (max-width: 754px) {
  .worth__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 1184px) {
  .worth__item .worth__descr {
    font-size: 17px;
  }
}

@media screen and (max-width: 1344px) {
  .worth__img {
    width: 323px;
  }
}

@media screen and (max-width: 1184px) {
  .worth__img {
    width: 200px;
  }
}

@media screen and (max-width: 754px) {
  .worth__img {
    display: none;
  }
}

.worth__img_mob {
  display: none;
}

@media screen and (max-width: 754px) {
  .worth__img_mob {
    display: block;
  }
}

.how {
  padding: 35px 0 50px;
  overflow: hidden;
}

@media screen and (max-width: 1344px) {
  .how {
    padding: 40px 0 50px;
  }
}

@media screen and (max-width: 1184px) {
  .how {
    padding: 27px 0 40px;
  }
}

@media screen and (max-width: 754px) {
  .how {
    padding: 30px 0 40px;
  }
}

@media screen and (max-width: 754px) {
  .how__title {
    font-size: 28px;
    line-height: 114%;
  }
}

.how__margin {
  margin-left: 35px;
}

@media screen and (max-width: 1184px) {
  .how__margin {
    margin-left: 0;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }
}

.how__block {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 1344px) {
  .how__block {
    margin-left: 26px;
  }
}

@media screen and (max-width: 754px) {
  .how__block {
    gap: 15px;
    margin-left: 0;
    border: 5px solid #6EA929;
    padding: 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 419px;
  }
}

.how__highligth {
  font-weight: bold;
  font-size: 22px;
  line-height: 114%;
  color: #6EA929;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 754px) {
  .how__highligth {
    font-size: 20px;
  }
}

.how__highligth::before {
  position: absolute;
  top: 46%;
  left: -62px;
  width: 100%;
  height: 97px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
  z-index: -1;
  background: url("../img/question.png") center left no-repeat;
  background-size: contain;
}

@media screen and (max-width: 1184px) {
  .how__highligth::before {
    top: 26%;
  }
}

@media screen and (max-width: 754px) {
  .how__highligth::before {
    display: none;
  }
}

.how__descr {
  font-size: 20px;
  line-height: 114%;
}

.how__descr p:not(:last-child) {
  margin-bottom: 20px;
}

.how__subtitle {
  margin-top: 30px;
  font-weight: bold;
  font-size: 25px;
  line-height: 114%;
}

@media screen and (max-width: 754px) {
  .how__subtitle {
    margin-top: 27px;
    font-size: 22px;
  }
}

.how__row {
  -ms-grid-columns: (max-content)[3];
      grid-template-columns: repeat(3, -webkit-max-content);
      grid-template-columns: repeat(3, max-content);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

@media screen and (max-width: 754px) {
  .how__row {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    row-gap: 25px;
  }
}

.how__row-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

@media screen and (max-width: 1184px) {
  .how__row-item {
    gap: 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 754px) {
  .how__row-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

@media screen and (max-width: 1184px) {
  .how__row-item .how__descr {
    font-size: 17px;
  }
}

@media screen and (max-width: 1184px) {
  .how__row-img {
    width: 214px;
  }
}

@media screen and (max-width: 754px) {
  .how__row-img {
    display: none;
  }
}

.how__row-mob {
  display: none;
}

@media screen and (max-width: 754px) {
  .how__row-mob {
    display: block;
  }
}

.how__mini {
  background: #6EA929;
  margin: 30px auto 35px;
  padding: 27px 25px 20px 52px;
  -ms-grid-columns: (max-content)[2];
      grid-template-columns: repeat(2, -webkit-max-content);
      grid-template-columns: repeat(2, max-content);
  max-width: 1296px;
  gap: 65px;
}

@media screen and (max-width: 1344px) {
  .how__mini {
    padding: 27px 45px 30px 20px;
    margin: 42px auto 35px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: unset;
  }
}

@media screen and (max-width: 1184px) {
  .how__mini {
    margin: 40px auto 30px;
    padding: 20px 20px 20px 16px;
  }
}

@media screen and (max-width: 754px) {
  .how__mini {
    padding: 20px 0;
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    row-gap: 20px;
    position: relative;
    z-index: 1;
  }
  .how__mini::after {
    position: absolute;
    left: -500vw;
    width: 1000vw;
    top: 0;
    height: 100%;
    content: '';
    background: #6EA929;
    z-index: -1;
  }
}

.how__mini-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  color: #fff;
}

@media screen and (max-width: 1184px) {
  .how__mini-item img {
    width: 24px;
    margin-top: 2px;
  }
}

.how__mini-item p {
  font-size: 20px;
  line-height: 114%;
}

@media screen and (max-width: 754px) {
  .how__mini-item p {
    font-size: 17px;
  }
}

@media screen and (max-width: 754px) {
  .how__big {
    font-size: 28px;
    line-height: 114%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: 34px;
  }
}

.how__info {
  font-size: 25px;
  line-height: 114%;
}

@media screen and (max-width: 1184px) {
  .how__info {
    font-size: 20px;
  }
}

@media screen and (max-width: 754px) {
  .how__info {
    margin-left: 34px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.how__wrap {
  -ms-grid-columns: (max-content)[2];
      grid-template-columns: repeat(2, -webkit-max-content);
      grid-template-columns: repeat(2, max-content);
  -webkit-column-gap: 77px;
          column-gap: 77px;
  margin-top: 32px;
}

@media screen and (max-width: 1184px) {
  .how__wrap {
    margin-top: 20px;
    -webkit-column-gap: 20px;
            column-gap: 20px;
  }
}

@media screen and (max-width: 754px) {
  .how__wrap {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    row-gap: 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: 34px;
  }
}

.how__wrap-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 17px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1184px) {
  .how__wrap-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.how__wrap-item h5 {
  font-weight: bold;
  font-size: 20px;
  line-height: 114%;
}

@media screen and (max-width: 1184px) {
  .how__wrap-item h5 {
    font-size: 17px;
  }
}

.how__wrap-item p {
  font-size: 20px;
  line-height: 114%;
}

@media screen and (max-width: 1184px) {
  .how__wrap-item p {
    font-size: 18px;
  }
}

@media screen and (max-width: 1184px) {
  .how__wrap-item img {
    width: 74px;
  }
}

.how__wrap-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

@media screen and (max-width: 754px) {
  .how__wrap-block {
    gap: 5px;
  }
}

.how__game {
  margin-top: 72px;
  max-width: 1210px;
  -ms-grid-columns: (max-content)[4];
      grid-template-columns: repeat(4, -webkit-max-content);
      grid-template-columns: repeat(4, max-content);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 7px solid #6EA929;
  padding: 35px 0 25px 35px;
}

@media screen and (max-width: 1344px) {
  .how__game {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 1184px) {
  .how__game {
    margin-top: 26px;
    padding: 32px 0 32px 26px;
    row-gap: 22px;
    -ms-grid-columns: (max-content)[3];
        grid-template-columns: repeat(3, -webkit-max-content);
        grid-template-columns: repeat(3, max-content);
    max-width: 640px;
  }
}

@media screen and (max-width: 754px) {
  .how__game {
    padding: 22px 0 15px 30px;
    border: 6px solid #6EA929;
    margin: 26px auto 0;
    max-width: 397px;
  }
}

.how__game-item:not(:first-child) {
  margin-top: -75px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1184px) {
  .how__game-item:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (max-width: 754px) {
  .how__game-item:not(:first-child) {
    gap: 5px;
  }
}

@media screen and (max-width: 1184px) {
  .how__game-item:nth-child(2) img {
    width: 146px;
  }
}

@media screen and (max-width: 754px) {
  .how__game-item:nth-child(2) img {
    width: 85px;
  }
}

@media screen and (max-width: 1184px) {
  .how__game-item:nth-child(3) img {
    width: 223px;
  }
}

@media screen and (max-width: 754px) {
  .how__game-item:nth-child(3) img {
    width: 129px;
  }
}

.how__game-item:last-child {
  margin-top: -95px;
  margin-right: -1px;
}

@media screen and (max-width: 1184px) {
  .how__game-item:last-child {
    margin-top: -20px;
  }
  .how__game-item:last-child img {
    width: 193px;
  }
}

@media screen and (max-width: 754px) {
  .how__game-item:last-child img {
    width: 112px;
  }
}

@media screen and (max-width: 1184px) {
  .how__game-item:first-child {
    grid-column: 3 span / 4;
    text-align: center;
  }
}

.how__game-title {
  font-weight: bold;
  font-size: 25px;
  line-height: 114%;
}

@media screen and (max-width: 754px) {
  .how__game-title {
    font-size: 20px;
    width: calc(100% + 30px);
    margin-left: -30px;
  }
}

.how__game-subtitle {
  font-weight: bold;
  font-size: 22px;
  line-height: 158%;
}

@media screen and (max-width: 1184px) {
  .how__game-subtitle {
    font-size: 20px;
  }
}

@media screen and (max-width: 754px) {
  .how__game-subtitle {
    font-size: 17px;
  }
}

#page {
  overflow: hidden;
}

.header {
  padding: 30px 0 50px;
}

@media screen and (max-width: 1184px) {
  .header {
    padding: 25px 0 40px;
  }
}

@media screen and (max-width: 754px) {
  .header {
    padding: 10px 0 40px;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

@media screen and (max-width: 754px) {
  .header__logo img {
    width: 34px;
  }
}

.header__logo p {
  font-size: 18px;
  line-height: 23px;
}

@media screen and (max-width: 1184px) {
  .header__logo p {
    font-size: 17px;
    line-height: 22px;
  }
}

@media screen and (max-width: 754px) {
  .header__logo p {
    font-size: 12px;
    line-height: 15px;
  }
}

.header__frame {
  border: 3px solid #6EA929;
  border-radius: 15px;
  margin-top: 25px;
  padding: 45px 70px 50px 70px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1344px) {
  .header__frame {
    padding: 55px 40px;
  }
}

@media screen and (max-width: 1184px) {
  .header__frame {
    padding: 55px 0 55px 35px;
  }
}

@media screen and (max-width: 754px) {
  .header__frame {
    margin-top: 10px;
    padding: 30px 0 32px 16px;
  }
}

.header__frame-mini {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 20px;
  line-height: 146%;
  margin-left: 29px;
}

@media screen and (max-width: 1184px) {
  .header__frame-mini {
    font-size: 18px;
  }
}

@media screen and (max-width: 754px) {
  .header__frame-mini {
    font-size: 15px;
    margin-left: 20px;
  }
}

.header__frame-mini span:last-child {
  position: relative;
  z-index: 1;
}

.header__frame-mini span:last-child::after {
  position: absolute;
  content: '';
  background: #D4EABA;
  border-radius: 37px;
  width: 216px;
  height: 29px;
  top: 50%;
  left: -9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

@media screen and (max-width: 1184px) {
  .header__frame-mini span:last-child::after {
    width: 197px;
  }
}

@media screen and (max-width: 754px) {
  .header__frame-mini span:last-child::after {
    width: 165px;
    height: 23px;
  }
}

.header__frame-descr {
  font-size: 26px;
  line-height: 114%;
  margin-left: 27px;
}

@media screen and (max-width: 1344px) {
  .header__frame-descr {
    font-size: 25px;
  }
}

@media screen and (max-width: 1184px) {
  .header__frame-descr {
    font-size: 22px;
    margin-left: 24px;
  }
}

@media screen and (max-width: 754px) {
  .header__frame-descr {
    margin-left: 12px;
  }
}

.header__frame-img {
  position: absolute;
  top: 15px;
  right: 50px;
}

@media screen and (max-width: 1344px) {
  .header__frame-img {
    right: 30px;
  }
}

@media screen and (max-width: 1184px) {
  .header__frame-img {
    display: none;
  }
}

.header__frame-img_md {
  display: none;
}

@media screen and (max-width: 1184px) {
  .header__frame-img_md {
    display: block;
    position: absolute;
    top: -3px;
    right: -4px;
  }
}

@media screen and (max-width: 754px) {
  .header__frame-img_md {
    display: none;
  }
}

.header__frame-img_mob {
  display: none;
}

@media screen and (max-width: 754px) {
  .header__frame-img_mob {
    display: block;
    position: absolute;
    right: -40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.header__title {
  font-weight: bold;
  font-size: 62px;
  line-height: 71px;
  margin: 15px 0 25px;
}

@media screen and (max-width: 1184px) {
  .header__title {
    font-size: 46px;
    line-height: 114%;
    margin: 20px 0 12px;
  }
}

@media screen and (max-width: 754px) {
  .header__title {
    font-size: 30px;
    margin: 20px 0 10px;
  }
}

.header__advantages {
  -ms-grid-columns: (max-content)[3];
      grid-template-columns: repeat(3, -webkit-max-content);
      grid-template-columns: repeat(3, max-content);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 48px;
}

@media screen and (max-width: 1184px) {
  .header__advantages {
    -ms-grid-columns: (max-content)[2];
        grid-template-columns: repeat(2, -webkit-max-content);
        grid-template-columns: repeat(2, max-content);
    row-gap: 30px;
    margin: 40px auto 30px;
    max-width: 640px;
  }
}

@media screen and (max-width: 754px) {
  .header__advantages {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    row-gap: 26px;
    margin: 32px auto 22px;
  }
}

.header__advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding-left: 12px;
  position: relative;
}

.header__advantage::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  content: '';
  background: #6EA929;
}

.header__advantage h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 114%;
}

.header__advantage p {
  font-size: 20px;
  line-height: 114%;
}

@media screen and (max-width: 754px) {
  .header__subtitle {
    font-size: 28px;
  }
}

.header__calc {
  -ms-grid-columns: (max-content)[3];
      grid-template-columns: repeat(3, -webkit-max-content);
      grid-template-columns: repeat(3, max-content);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 45px;
}

@media screen and (max-width: 1184px) {
  .header__calc {
    max-width: 620px;
    margin: 55px 0 35px;
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (max-width: 754px) {
  .header__calc {
    margin: 35px auto 24px;
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
  }
}

.header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 754px) {
  .header__item:first-child {
    margin-left: 70px;
  }
}

.header__item:first-child::before {
  position: absolute;
  content: '';
  left: -21px;
  top: -30px;
  width: 102px;
  height: 100px;
  background: url("../img/kryg.png") center no-repeat;
  background-size: contain;
  z-index: -2;
}

@media screen and (max-width: 1184px) {
  .header__item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: -40px;
  }
}

@media screen and (max-width: 754px) {
  .header__item:nth-child(2) {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    margin-top: 54px;
    margin-left: 70px;
  }
}

.header__item:nth-child(2)::before {
  position: absolute;
  content: '';
  left: -32px;
  top: -22px;
  width: 110px;
  height: 110px;
  background: url("../img/tringle.png") center no-repeat;
  background-size: contain;
  z-index: -2;
}

.header__item:nth-child(2)::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 21px;
  height: 21px;
  background: url("../img/plus.svg") center no-repeat;
  background-size: contain;
  left: -55px;
  top: 41%;
}

@media screen and (max-width: 1344px) {
  .header__item:nth-child(2)::after {
    top: 33%;
    left: -105px;
  }
}

@media screen and (max-width: 1184px) {
  .header__item:nth-child(2)::after {
    background: url("../img/plus_big.svg") center no-repeat;
    background-size: contain;
    top: -88px;
    left: 66px;
    width: 61px;
    height: 61px;
  }
}

@media screen and (max-width: 754px) {
  .header__item:nth-child(2)::after {
    background: url("../img/plus_middle.svg") center no-repeat;
    background-size: contain;
    width: 42px;
    height: 42px;
    left: -70px;
    top: -58px;
  }
}

@media screen and (max-width: 1184px) {
  .header__item:last-child {
    margin-left: auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: -20px;
  }
}

@media screen and (max-width: 754px) {
  .header__item:last-child {
    margin-top: 44px;
    width: 100%;
    margin-left: 70px;
  }
}

.header__item:last-child::after {
  position: absolute;
  content: '';
  z-index: -1;
  background: url("../img/green_ravno.png") center no-repeat;
  background-size: 100%;
  width: 19px;
  height: 10px;
  left: -51px;
  top: 52%;
}

@media screen and (max-width: 1344px) {
  .header__item:last-child::after {
    top: 37%;
    left: -90px;
  }
}

@media screen and (max-width: 1184px) {
  .header__item:last-child::after {
    background: url("../img/ravno_big.svg") center no-repeat;
    background-size: contain;
    width: 53px;
    height: 30px;
    top: 33%;
  }
}

@media screen and (max-width: 754px) {
  .header__item:last-child::after {
    background: url("../img/ravno_middle.svg") center no-repeat;
    background-size: contain;
    width: 42px;
    height: 23px;
    left: -70px;
    top: -40px;
  }
}

.header__item span {
  font-size: 36px;
  line-height: 114%;
  color: #1864A4;
}

.header__item p {
  font-size: 20px;
  line-height: 114%;
}

.header__who {
  -ms-grid-columns: (max-content)[3];
      grid-template-columns: repeat(3, -webkit-max-content);
      grid-template-columns: repeat(3, max-content);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px 0 50px;
}

@media screen and (max-width: 1184px) {
  .header__who {
    margin: 5px auto 32px;
  }
}

@media screen and (max-width: 754px) {
  .header__who {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    margin: 32px auto 42px;
  }
}

.header__who-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 5px;
}

@media screen and (max-width: 1344px) {
  .header__who-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: unset;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

@media screen and (max-width: 1184px) {
  .header__who-item {
    gap: 12px;
  }
}

@media screen and (max-width: 754px) {
  .header__who-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__who-item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.header__who-item img {
  margin-bottom: 20px;
}

@media screen and (max-width: 1344px) {
  .header__who-item img {
    margin-bottom: 0;
    width: 122px;
  }
}

.header__who-item p {
  font-size: 20px;
  line-height: 114%;
}

.header__how {
  -ms-grid-columns: (minmax(0, 416px))[3];
      grid-template-columns: repeat(3, minmax(0, 416px));
  -webkit-column-gap: 24px;
          column-gap: 24px;
  row-gap: 23px;
  margin-top: 20px;
}

@media screen and (max-width: 1184px) {
  .header__how {
    -ms-grid-columns: (minmax(0, 215px))[3];
        grid-template-columns: repeat(3, minmax(0, 215px));
    row-gap: 36px;
  }
}

@media screen and (max-width: 754px) {
  .header__how {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    row-gap: 15px;
    margin-top: 30px;
  }
}

.header__how-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  border: 1px solid #000;
  border-radius: 12px;
  padding: 22px 30px 35px 30px;
  min-height: 347px;
}

@media screen and (max-width: 1184px) {
  .header__how-item {
    padding: 20px 12px 12px;
    min-height: 285px;
  }
}

@media screen and (max-width: 754px) {
  .header__how-item {
    min-height: unset;
    padding: 25px 0 22px 30px;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 17px;
            column-gap: 17px;
    row-gap: 5px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (max-content)[2];
        grid-template-columns: repeat(2, -webkit-max-content);
        grid-template-columns: repeat(2, max-content);
  }
}

.header__how-item img {
  vertical-align: text-bottom;
}

.header__how-item h4 {
  font-weight: bold;
  font-size: 20px;
  line-height: 114%;
}

@media screen and (max-width: 1184px) {
  .header__how-item h4 {
    font-size: 19px;
  }
}

.header__how-item p {
  font-size: 20px;
  line-height: 114%;
  margin-top: 6px;
}

@media screen and (max-width: 1184px) {
  .header__how-item p {
    font-size: 17px;
  }
}

@media screen and (max-width: 754px) {
  .header__how-item p {
    margin-top: 0;
  }
}

.header__how-img {
  margin-top: auto;
  margin-left: 10px;
}

@media screen and (max-width: 1184px) {
  .header__how-img {
    margin-left: 0;
  }
}

@media screen and (max-width: 754px) {
  .header__how-img {
    display: none;
  }
}

.header__how-mob {
  display: none;
}

@media screen and (max-width: 754px) {
  .header__how-mob {
    display: block;
    grid-row: 2 span / 2;
  }
}

.header__num {
  top: 23px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #6EA929;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 0;
  border-radius: 100%;
  color: #fff;
  font-size: 26px;
  font-family: "Kalam", cursive;
  padding-bottom: 19px;
  position: absolute;
}

@media screen and (max-width: 1184px) {
  .header__num {
    width: 43px;
    height: 43px;
    font-size: 25px;
    top: -20px;
    right: 20px;
  }
}

@media screen and (max-width: 754px) {
  .header__num {
    right: unset;
    left: 7px;
    top: 8px;
  }
}

.program {
  padding: 40px 0 55px;
  background: #313131;
}

@media screen and (max-width: 1184px) {
  .program {
    padding: 45px 0 40px;
  }
}

@media screen and (max-width: 754px) {
  .program {
    padding: 30px 0 45px;
  }
}

.program__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 37px;
  max-width: 1300px;
  margin: 0 auto;
}

@media screen and (max-width: 1184px) {
  .program__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}

@media screen and (max-width: 754px) {
  .program__flex {
    max-width: 430px;
  }
}

.program__title {
  font-weight: bold;
  font-size: 35px;
  line-height: 114%;
  color: #fff;
}

@media screen and (max-width: 754px) {
  .program__title {
    font-size: 28px;
  }
}

.program__descr {
  font-size: 20px;
  line-height: 114%;
  color: #FFF;
  padding-top: 9px;
}

@media screen and (max-width: 1184px) {
  .program__descr {
    padding-top: 0;
  }
}

@media screen and (max-width: 754px) {
  .program__descr {
    font-size: 17px;
  }
}

.program__descr p:not(:last-child) {
  margin-bottom: 25px;
}

.program_green {
  background: #6EA929;
}

.program_blue {
  background: #2F8FDF;
}

.program_purple {
  background: #A92FA4;
}

.program__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: 1300px;
  margin: 40px auto 55px;
}

@media screen and (max-width: 1184px) {
  .program__tabs {
    margin: 25px auto 0;
  }
}

.program__tab.active .program__tab-head::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.program__tab.active .program__tab-head::before {
  display: none;
}

.program__tab-head {
  cursor: pointer;
  min-height: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px calc(20px + 24px + 39px + 62px) 3px 20px;
  font-weight: bold;
  font-size: 35px;
  line-height: 114%;
  color: #fff;
  gap: 10px;
  position: relative;
}

@media screen and (max-width: 1184px) {
  .program__tab-head {
    min-height: 66px;
    padding: 3px calc(12px + 24px + 22px + 21px) 3px 20px;
  }
}

@media screen and (max-width: 754px) {
  .program__tab-head {
    min-height: 73px;
    padding: 3px 100px 3px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 1;
  }
  .program__tab-head span:first-child {
    font-size: 27px;
  }
  .program__tab-head span:last-child {
    font-size: 20px;
    font-weight: 400;
    margin-left: 12px;
  }
  .program__tab-head .big {
    font-size: 27px !important;
    font-weight: 700 !important;
    margin: 0 !important;
  }
}

.program__tab-head::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  content: '';
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  background: url("../img/plus_white.svg") center no-repeat;
  background-size: contain;
  -webkit-transition: all ease .7s;
  transition: all ease .7s;
}

@media screen and (max-width: 1184px) {
  .program__tab-head::after {
    right: 25px;
  }
}

.program__tab-head::before {
  position: absolute;
  top: 50%;
  right: 86px;
  content: '';
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/arrow_wheat.png") center no-repeat;
  background-size: contain;
  width: 62px;
  height: 10px;
}

@media screen and (max-width: 1184px) {
  .program__tab-head::before {
    width: 21px;
    right: 65px;
    background: url("../img/white_line_middle.png") center no-repeat;
    background-size: contain;
    height: 20px;
  }
}

.program__tab-body {
  display: none;
}

.program__tab-container.v1 {
  padding: 20px 40px 40px 40px;
}

@media screen and (max-width: 1184px) {
  .program__tab-container.v1 {
    padding: 17px 20px 15px;
  }
}

@media screen and (max-width: 754px) {
  .program__tab-container.v1 {
    padding: 12px 12px 0;
  }
}

.program__tab-container.blue1 {
  background: #E6F7FC;
}

.program__tab-container.v2 {
  padding: 40px 40px 44px;
}

@media screen and (max-width: 1184px) {
  .program__tab-container.v2 {
    padding: 20px 12px 12px;
  }
}

.program__tab-container.black1 {
  background: #1E1E1E;
}

.program__tab-container.v3 {
  padding: 45px 40px 40px;
}

@media screen and (max-width: 1184px) {
  .program__tab-container.v3 {
    padding: 30px 35px 12px;
  }
}

@media screen and (max-width: 754px) {
  .program__tab-container.v3 {
    padding: 0;
  }
}

.program__info {
  font-size: 20px;
  line-height: 114%;
  color: #fff;
  padding: 0 10px 24px 37px;
}

@media screen and (max-width: 754px) {
  .program__info {
    font-size: 17px;
    padding: 0 10px 14px 15px;
  }
}

.program__container-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (max-content)[2];
      grid-template-columns: repeat(2, -webkit-max-content);
      grid-template-columns: repeat(2, max-content);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.program__container-wrap__mob {
  display: none;
}

@media screen and (max-width: 1184px) {
  .program__container-wrap__mob {
    display: -ms-grid;
    display: grid;
    background: #fff;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-column-gap: 40px;
            column-gap: 40px;
    padding: 32px 0 32px 25px;
  }
}

@media screen and (max-width: 754px) {
  .program__container-wrap__mob {
    display: none;
  }
}

.program__container-wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 1184px) {
  .program__container-wrap .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1184px) {
  .program__container-wrap .item__image {
    margin-left: 31px;
    width: 120px;
  }
}

.program__container-wrap .item__block {
  margin-left: 31px;
}

.program__container-wrap .item h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 114%;
  margin-bottom: 12px;
}

@media screen and (max-width: 1184px) {
  .program__container-wrap .item h2 {
    font-size: 18px;
  }
}

.program__container-wrap .item .purple1 p::before {
  background: url("../img/user_have_purple.png") center no-repeat;
  background-size: contain;
}

.program__container-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  line-height: 114%;
  color: #fff;
  padding: 15px;
}

@media screen and (max-width: 1184px) {
  .program__container-title {
    -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: flex-start;
    gap: 12px;
    padding: 15px 15px 17px 15px;
  }
}

@media screen and (max-width: 754px) {
  .program__container-title {
    padding: 17px 20px;
  }
}

.program__container-title.program_green {
  background: #588D19;
}

.program__container-title.program_blue {
  background: #1F79C3;
}

.program__container-title span:first-child {
  border-radius: 6px;
  border: 1px solid #fff;
  min-height: 41px;
  padding: 2px 12px;
  font-size: 22px;
  font-weight: 400;
  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;
}

@media screen and (max-width: 754px) {
  .program__container-title span:first-child {
    font-size: 18px;
    min-height: 32px;
  }
}

.program__container-title span:last-child {
  font-weight: bold;
  font-size: 30px;
  margin-top: 3px;
}

@media screen and (max-width: 754px) {
  .program__container-title span:last-child {
    font-size: 23px;
    margin-top: 0;
  }
}

.program__container-info {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 1184px) {
  .program__container-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 45px;
  }
}

@media screen and (max-width: 754px) {
  .program__container-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.program__container-info.black {
  color: #fff;
}

.program__container-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.program__container-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.program__container-info li span {
  font-weight: bold;
  font-size: 20px;
  line-height: 132%;
}

@media screen and (max-width: 1184px) {
  .program__container-info li span {
    font-size: 17px;
  }
}

.program__container-info li img {
  margin-top: 3px;
}

.program__container-descr {
  font-size: 20px;
  line-height: 114%;
  border-bottom: 1px dashed #626262;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

@media screen and (max-width: 1184px) {
  .program__container-descr {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 754px) {
  .program__container-descr {
    padding-bottom: 20px;
    border-bottom: 1px dashed #626262;
  }
}

.program__container-descr p:not(:last-child) {
  margin-bottom: 25px;
}

.program__container-tabs {
  background: #fff;
  padding: 45px 30px 25px 50px;
}

@media screen and (max-width: 1184px) {
  .program__container-tabs {
    display: none;
  }
}

@media screen and (max-width: 754px) {
  .program__container-tabs.mob {
    display: block;
    background: unset;
    padding: 15px 25px 0;
    margin-left: -10px;
    width: calc(100% + 10px);
  }
}

.program__container-tabs.black3 {
  background: #222;
}

.program__container-tabs__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 55px;
  padding-bottom: 12px;
}

@media screen and (max-width: 1344px) {
  .program__container-tabs__header {
    padding-bottom: 22px;
  }
}

@media screen and (max-width: 754px) {
  .program__container-tabs__header {
    padding-bottom: 0;
    margin-left: -25px;
    width: calc(100% + 50px);
    gap: 0;
  }
}

.program__container-tabs__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

@media screen and (max-width: 754px) {
  .program__container-tabs__tab {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 15px 25px 20px;
    gap: 10px;
  }
}

@media screen and (max-width: 754px) {
  .program__container-tabs__tab.active {
    background: #fff;
  }
}

.program__container-tabs__tab.active h3 {
  color: #000;
}

.program__container-tabs__tab.active img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.program__container-tabs__tab:hover h3 {
  color: #000;
}

.program__container-tabs__tab:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.program__container-tabs__tab h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 114%;
  color: #878787;
  -webkit-transition: all ease .7s;
  transition: all ease .7s;
}

.program__container-tabs__tab h3.black {
  color: #fff;
}

.program__container-tabs__tab img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all ease .7s;
  transition: all ease .7s;
}

@media screen and (max-width: 754px) {
  .program__container-tabs__body {
    background: #fff;
    width: calc(100% + 50px);
    margin-left: -25px;
    padding: 15px 10px 40px 50px;
  }
}

.program__container-tabs__item {
  display: none;
}

.program__container-tabs__item.black {
  color: #fff;
}

.program__container-tabs__item.black p::before {
  background: url("../img/user_have_black.png") center no-repeat;
  background-size: contain;
}

.program__container-tabs__item.active {
  display: block;
}

.program__container-tabs__item.blue_white p::before {
  background: url("../img/user_have_blue.png") center no-repeat;
  background-size: contain;
}

.program__container-tabs__item.blue_black p::before {
  background: url("../img/user_have_blue_black.png") center no-repeat;
  background-size: contain;
}

.program__container-tabs__item p {
  font-size: 17px;
  line-height: 129%;
  position: relative;
}

.program__container-tabs__item p::before {
  position: absolute;
  content: '';
  background: url("../img/user_have.png") center no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  top: 2px;
  left: -25px;
}

.program__container-tabs__item p:not(:last-child) {
  margin-bottom: 15px;
}

.program__container-tabs__item img {
  vertical-align: middle;
}

.program__container-accord {
  margin-top: 40px;
  -ms-grid-columns: minmax(0, 398px) minmax(0, 1fr);
      grid-template-columns: minmax(0, 398px) minmax(0, 1fr);
}

@media screen and (max-width: 1184px) {
  .program__container-accord {
    -ms-grid-columns: max-content minmax(0, 1fr);
        grid-template-columns: -webkit-max-content minmax(0, 1fr);
        grid-template-columns: max-content minmax(0, 1fr);
    margin-top: 12px;
  }
}

@media screen and (max-width: 754px) {
  .program__container-accord {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-top: 0;
  }
}

.program__container-accord.grid_purple {
  -ms-grid-columns: minmax(0, 258px) minmax(0, 1fr);
      grid-template-columns: minmax(0, 258px) minmax(0, 1fr);
  margin-top: 45px;
}

@media screen and (max-width: 1184px) {
  .program__container-accord.grid_purple {
    -ms-grid-columns: max-content minmax(0, 1fr);
        grid-template-columns: -webkit-max-content minmax(0, 1fr);
        grid-template-columns: max-content minmax(0, 1fr);
    margin-top: 30px;
    width: calc(100% + 50px);
    margin-left: -25px;
  }
}

@media screen and (max-width: 754px) {
  .program__container-accord.grid_purple {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin: 0;
  }
}

.program__container-accord.v2 {
  -ms-grid-columns: minmax(0, 257px) minmax(0, 1fr);
      grid-template-columns: minmax(0, 257px) minmax(0, 1fr);
}

@media screen and (max-width: 1184px) {
  .program__container-accord.v2 {
    -ms-grid-columns: max-content minmax(0, 1fr);
        grid-template-columns: -webkit-max-content minmax(0, 1fr);
        grid-template-columns: max-content minmax(0, 1fr);
  }
}

@media screen and (max-width: 754px) {
  .program__container-accord.v2 {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
  }
}

.program__container-accord.v2 .program__container-accord__tabs h2 {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  line-height: 114%;
}

.program__container-accord.v2 .program__container-accord__amount {
  position: relative;
  top: unset;
  right: unset;
  color: #fff;
  margin: 10px 0 0;
}

.p8-b {
  cursor: auto !important;
}

.program__container-accord__flex {
  margin-bottom: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 1344px) {
  .program__container-accord__flex {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    gap: 50px;
  }
}

@media screen and (max-width: 1184px) {
  .program__container-accord__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.program__container-accord__tabs {
  background: #588D19;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 30px 35px;
  gap: 10px;
}

@media screen and (max-width: 1184px) {
  .program__container-accord__tabs {
    padding: 12px 12px;
    gap: 10px;
    background: #6EA929;
  }
}

@media screen and (max-width: 754px) {
  .program__container-accord__tabs {
    display: none;
  }
}

.program__container-accord__tabs .change {
  margin: 25px auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1184px) {
  .program__container-accord__tabs .change img {
    width: 148px;
  }
}

.program__container-accord__tabs .change::before {
  position: absolute;
  left: -9px;
  top: -3px;
  width: 134px;
  height: 187px;
  content: '';
  background: url("../img/change_border.png") center no-repeat;
  background-size: contain;
  z-index: -1;
}

@media screen and (max-width: 1184px) {
  .program__container-accord__tabs .change::before {
    width: 164px;
    height: 222px;
  }
}

.program__container-accord__tabs.purple1 {
  background: #5F235C;
}

.program__container-accord__tabs.purple1 h3:hover {
  background: #762F72 !important;
}

.program__container-accord__tabs.purple1 h3.active {
  background: #762F72;
}

.program__container-accord__tabs.v2 {
  min-height: 261px;
}

.program__container-accord__tabs.program_blue {
  background: #1F79C3;
}

.program__container-accord__tabs h3 {
  font-size: 20px;
  line-height: 114%;
  color: #fff;
  cursor: pointer;
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-thickness: from-font;
  font-weight: 400;
}

@media screen and (max-width: 754px) {
  .program__container-accord__tabs h3 {
    text-underline-position: unset;
  }
}

.program__container-accord__tabs h3:not(.noactive) {
  min-height: 50px;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 20px;
  line-height: 114%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.program__container-accord__tabs h3:not(.noactive):hover {
  background: #64A11C;
}

@media screen and (max-width: 1184px) {
  .program__container-accord__tabs h3:not(.noactive):hover {
    background: #599218;
  }
}

.program__container-accord__tabs h3.noactive {
  padding: 20px 60px 20px 25px;
  background: #3E5C19;
  border-radius: 6px;
  font-size: 17px;
  line-height: 114%;
  position: relative;
}

@media screen and (max-width: 1184px) {
  .program__container-accord__tabs h3.noactive {
    margin-top: 20px;
    padding: 12px 37px 15px 15px;
  }
}

.program__container-accord__tabs h3.noactive.program_blue {
  background: #1A619C;
}

.program__container-accord__tabs h3.noactive.v2 {
  padding: 15px 40px 15px 20px;
  margin-top: auto;
}

@media screen and (max-width: 1184px) {
  .program__container-accord__tabs h3.noactive.v2 {
    padding: 7px 30px 7px 12px;
    margin-top: 30px;
  }
}

.program__container-accord__tabs h3.noactive.v2::after {
  right: 15px;
  top: 18px;
}

@media screen and (max-width: 1184px) {
  .program__container-accord__tabs h3.noactive.v2::after {
    width: 16px;
    height: 8px;
    right: 8px;
    top: 14px;
  }
}

.program__container-accord__tabs h3.noactive::after {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 25px;
  content: '';
  height: 13px;
  background: url("../img/glaz_white.svg") center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 1184px) {
  .program__container-accord__tabs h3.noactive::after {
    top: 17px;
    right: 15px;
  }
}

.program__container-accord__tabs h3.active {
  text-decoration: none;
  background: #64A11C;
}

@media screen and (max-width: 1184px) {
  .program__container-accord__tabs h3.active {
    background: #599218;
  }
}

.program__container-accord__body {
  background: #fff;
  padding: 30px 30px 35px 30px;
  position: relative;
}

@media screen and (max-width: 754px) {
  .program__container-accord__body {
    padding: 20px 30px 30px;
  }
  .program__container-accord__body .program__container-accord__amount {
    display: none;
  }
  .program__container-accord__body.black_mob {
    background: #1E1E1E;
    color: #fff;
  }
}

.program__container-accord__item {
  display: none;
}

.program__container-accord__item h3 {
  font-weight: bold;
  font-size: 25px;
  line-height: 114%;
  margin-bottom: 12px;
  max-width: calc(100% - 100px);
}

@media screen and (max-width: 754px) {
  .program__container-accord__item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    max-width: 100%;
  }
}

.program__container-accord__item p {
  font-size: 20px;
  line-height: 114%;
}

.program__container-accord__item p:not(:last-child) {
  margin-bottom: 25px;
}

.program__container-accord__item div:not(.program__container-list) {
  margin-bottom: 20px;
}

.program__container-accord__amount {
  border: 1px solid #92BE5E;
  border-radius: 5px;
  font-weight: bold;
  font-size: 20px;
  line-height: 114%;
  color: #588D19;
  min-height: 33px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 104px;
  padding: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 25px;
  right: 25px;
}

.program__container-accord__amount.purple1 {
  border: 1px solid #A92FA4;
  color: #A92FA4;
}

.program__container-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

@media screen and (max-width: 1184px) {
  .program__container-list {
    gap: 20px;
  }
}

.program__container-list h4 {
  font-size: 20px;
  line-height: 114%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-underline-position: under;
  text-decoration-thickness: from-font;
  color: #1864A4;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 400;
  max-width: 100%;
}

@media screen and (max-width: 754px) {
  .program__container-list h4 {
    text-underline-position: unset;
  }
}

.program__container-list h4:hover {
  color: #298ce0;
}

.program__container-list h4.active {
  font-weight: bold;
}

.program__container-list p {
  display: none;
  padding-top: 8px;
}

.program__container-list__item {
  margin-bottom: 0 !important;
}

.program__items {
  -ms-grid-columns: max-content minmax(0, 1fr);
      grid-template-columns: -webkit-max-content minmax(0, 1fr);
      grid-template-columns: max-content minmax(0, 1fr);
  -webkit-column-gap: 60px;
          column-gap: 60px;
  row-gap: 20px;
  padding-top: 25px;
  padding: 25px 0 0 10px;
}

@media screen and (max-width: 1184px) {
  .program__items {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    row-gap: 30px;
  }
}

@media screen and (max-width: 754px) {
  .program__items {
    padding: 12px 0 0 10px;
  }
}

.program__items.grid-40 {
  -webkit-column-gap: 40px;
          column-gap: 40px;
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
}

@media screen and (max-width: 1184px) {
  .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 5px;
    gap: 0;
  }
}

.list span {
  font-weight: 400 !important;
  position: relative;
  padding-left: 8px;
}

.list span::before {
  position: absolute;
  width: 4px;
  height: 4px;
  content: '';
  background: #b3bbc2;
  top: 47%;
  left: -1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.alone {
  display: none;
}

@media screen and (max-width: 1184px) {
  .alone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: calc(29px + 25px);
    margin-left: -10px;
    width: calc(100% + 10px);
    background: #252525;
    padding: 30px 10px 30px 15px;
  }
}

@media screen and (max-width: 754px) {
  .alone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 30px 10px 35px 12px;
  }
}

.alone.black {
  color: #000;
  background: #fff;
}

.alone.white {
  color: #fff;
}

.alone__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 114%;
  margin-bottom: 12px;
}

@media screen and (max-width: 754px) {
  .alone__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 754px) {
  .alone__img {
    width: 104px;
    margin-left: 40px;
  }
}

@media screen and (max-width: 754px) {
  .alone__group {
    margin-left: 40px;
  }
}

.alone__btn {
  margin: 20px 0 0 40px;
}

@media screen and (max-width: 1184px) {
  .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.scroll {
  display: none;
  position: relative;
  z-index: 1;
}

.scroll::after {
  position: absolute;
  width: 500vw;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: '';
  z-index: -1;
  height: 100%;
}

.scroll.green1 {
  background: #588D19;
  color: #fff;
}

.scroll.green1::after {
  background: #588D19;
}

.scroll.purple1 {
  background: #5F235C;
  color: #fff;
}

.scroll.purple1::after {
  background: #5F235C;
}

@media screen and (max-width: 754px) {
  .scroll {
    display: block;
  }
  .scroll.v1 {
    margin-top: 17px;
  }
}

.scroll__container {
  overflow-x: auto;
  padding: 30px 0 20px;
  position: relative;
}

.scroll__container::before {
  position: absolute;
  content: '';
  top: 7px;
  left: 0;
  width: 60px;
  height: 20px;
  background: url("../img/scroll_arrow.png") center no-repeat;
  background-size: contain;
}

.scroll__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.scroll__row:not(:last-child) {
  margin-bottom: 24px;
}

.scroll__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  opacity: 0.5;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.scroll__item.active, .scroll__item.highlith {
  opacity: 1;
}

.scroll__item img {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.scroll__item h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 114%;
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-thickness: from-font;
}

@media screen and (max-width: 754px) {
  .scroll__item h3 {
    text-underline-position: unset;
  }
}

.scroll__item-img {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 5px;
}

.scroll__item.active h3 {
  text-decoration: none;
}

.scroll__item.active img {
  position: relative;
  z-index: 1;
}

.scroll__item.active .scroll__item-img::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 114px;
  height: 159px;
  background: url("../img/change_border.png") center no-repeat;
  background-size: contain;
  content: '';
}

.scroll__item.highlith {
  padding: 10px 25px 10px 50px;
  position: relative;
  border-radius: 6px;
}

.scroll__item.highlith h3 {
  font-size: 17px;
}

.scroll__item.highlith::before {
  position: absolute;
  content: '';
  width: 25px;
  height: 13px;
  background: url("../img/glaz_white.svg") center no-repeat;
  background-size: contain;
  left: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.scroll__item.highlith.green1 {
  background: #3E5C19;
}

.scroll__item.highlith.blue1 {
  background: #1A619C;
}

.scroll__amount {
  border: 2px solid #E9E593;
  border-radius: 5px;
  font-weight: bold;
  font-size: 17px;
  line-height: 114%;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 29px;
  min-width: 99px;
}

.one {
  padding: 20px 15px;
  position: relative;
  display: none;
}

@media screen and (max-width: 754px) {
  .one {
    display: block;
  }
}

.one::after {
  position: absolute;
  width: 500vw;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: '';
  z-index: -1;
  height: 100%;
}

.one.green1 {
  background: #588D19;
  color: #fff;
}

.one.green1::after {
  background: #588D19;
}

.one.blue1 {
  background: #1F79C3;
  color: #fff;
}

.one.blue1::after {
  background: #1F79C3;
}

.one__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.one__item h3 {
  font-size: 22px;
  line-height: 114%;
  font-weight: 700;
}

@media screen and (max-width: 754px) {
  .column {
    -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: flex-start;
  }
}

@media screen and (max-width: 754px) {
  .none_mob {
    display: none;
  }
}

@media screen and (max-width: 754px) {
  .mob_pad {
    padding: 20px 15px 22px 35px;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}

.pc_no {
  display: none;
}

@media screen and (max-width: 754px) {
  .pc_no {
    display: block;
    width: 100% !important;
    margin: 0 !important;
  }
}

@media screen and (max-width: 754px) {
  .pad_mob {
    padding: 0 15px !important;
  }
}

.max-382 {
  max-width: 382px;
}

@media screen and (max-width: 1184px) {
  .max-382 {
    max-width: unset;
  }
}

.max-383 {
  max-width: 383px;
}

@media screen and (max-width: 1184px) {
  .max-383 {
    max-width: unset;
  }
}

.max-238 {
  max-width: 238px;
}

@media screen and (max-width: 1184px) {
  .max-238 {
    max-width: unset;
  }
}

.max-350 {
  max-width: 350px;
}

@media screen and (max-width: 1184px) {
  .max-350 {
    max-width: unset;
  }
}

.max-300 {
  max-width: 300px;
}

@media screen and (max-width: 1184px) {
  .max-300 {
    max-width: unset;
  }
}

.max-418 {
  max-width: 418px;
}

@media screen and (max-width: 1184px) {
  .max-418 {
    max-width: unset;
  }
}

.max-557 {
  max-width: 557px;
  margin-left: auto;
  width: 100%;
}

@media screen and (max-width: 1184px) {
  .max-557 {
    max-width: unset;
    margin-left: unset;
  }
}

@media screen and (min-width: 1345px) {
  .gap-100 {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    gap: 100px;
  }
}

.mt3 {
  margin-top: 3px;
}

.mb15 {
  margin-bottom: 15px;
}

.fix_iphone {
  font-size: 7px !important;
}

.mt-10 {
  margin-top: 10px;
}

.dizaynermydak_1 {
  margin-left: 0;
}

@media screen and (min-width: 1345px) {
  .dizaynermydak_1 {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1345px) {
  .dizaynermydak_2 {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    gap: 120px;
  }
}

.xz {
  background-size: 100% 100%;
  padding: 0 4px !important;
}

@media screen and (min-width: 1185px) {
  .mt5 {
    margin-top: 5px;
  }
}

@media screen and (min-width: 1345px) {
  .mt5 {
    margin-top: 0;
  }
}

@media screen and (min-width: 1345px) {
  .xz2 {
    padding: 35px 30px 35px 35px;
  }
}

@media screen and (min-width: 1345px) {
  .xz3 {
    min-height: 240px;
  }
}

@media screen and (min-width: 1345px) {
  .xz4 {
    padding: 30px 30px 30px;
  }
}

@media screen and (min-width: 1345px) {
  .xz5 {
    padding-bottom: 25px;
  }
}

@media screen and (min-width: 1345px) {
  .xz6 {
    margin-top: 25px;
  }
}

.modal-reg {
  border-radius: 12px;
}

.modal-reg__text {
  font-size: 20px;
  color: #000000;
  text-align: center;
}

@media screen and (max-width: 754px) {
  .modal-reg__text {
    font-size: 18px;
  }
}
/*# sourceMappingURL=style.css.map */


/* modal */

.modal-header {
  border: none;
}

@media screen and (max-width: 400px) {
  .modal-backdrop {
    width: 100%;
    height: 100%;
  }
}

.modal-content {
  background: none;
  border: none;
}

@media screen and (max-width: 450px) {
  .modal-body {
    padding: 0;
  }
}

.modal-container {
  font-family: "Journal Sans New", Arial, Helvetica, sans-serif;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #272727;
  padding: 27px 100px 50px 15px;
  border-radius: 0 0 26px 26px;
}

@media screen and (max-width: 1199px) {
  .modal-container {
    padding: 25px 0;
  }
}

@media screen and (max-width: 991px) {
  .modal-container {
    padding: 10px 0 20px;
  }
}

.modal__title {
  font-family: "Journal Sans New", Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #78BE25;
  font-size: 42px;
  max-width: 920px;
  background: #272727;
  margin: 0 auto;
  padding-top: 45px;
  border-radius: 26px 26px 0 0;
}

@media screen and (max-width: 1199px) {
  .modal__title {
    padding-top: 20px;
    font-size: 35px;
  }
}

@media screen and (max-width: 991px) {
  .modal__title {
    padding-top: 20px;
    font-size: 25px;
  }
}

@media screen and (max-width: 575px) {
  .modal__title {
    /* font-size: 20px; */
    font-size: 22px;
  }
}

.modal__row {
  -ms-grid-columns: minmax(0, 1fr) minmax(0, 350px);
      grid-template-columns: minmax(0, 1fr) minmax(0, 350px);
  grid-gap: 40px;
  display: -ms-grid;
  display: grid;
}

@media screen and (max-width: 1199px) {
  .modal__row {
    -ms-grid-columns: minmax(0, 350px);
        grid-template-columns: minmax(0, 350px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            grid-gap: 0;
  }
}
/* 
@media screen and (max-width: 450px) {
  .modal__row {
    -ms-grid-columns: minmax(0, 300px);
        grid-template-columns: minmax(0, 300px);
  }
} */

.modal__img {
  background: url("../img/modal_bg.svg") top center no-repeat;
  background-size: contain;
  height: 180px;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .modal__img {
    display: none;
  }
}

.modal__desc {
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 120%;
  font-size: 24px;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .modal__desc {
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .modal__desc {
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .modal__desc {
    font-size: 14px;
  }
}

.modal__rules {
  font-size: 12px;
  line-height: 125%;
  margin-left: 7px;
  margin-left: 0px;
  color: #fff;
  margin-bottom: 0;
}

@media screen and (max-width: 450px) {
  .modal__rules {
    font-size: 10px;
    margin-left: 5px;
  }
}

.modal__rules a {
  color: #fff;
}

.modal__rules-row {
  margin-top: 14px;
  margin-bottom: 15px;
}

@media screen and (max-width: 575px) {
  .modal__rules-row {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

.modal__actual-row {
  margin-top: 25px;
  border: 2px solid #78BE25;
  padding: 15px 20px 15px 30px;
}
.mb_block{
  display: none;
}
.mb_none{
  display: block;
  margin-left: 36px;
}
@media screen and (max-width: 1199px) {
  .modal__actual-row {
    padding: 10px 15px;
  }
.mb_block{
  display: block;
}
.mb_none{
  display: none;
}
}

@media screen and (max-width: 991px) {
  .modal__actual-row {
    margin-top: 15px;
  }

}

.modal__actual-text {
  color: #78BE25;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 15px;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .modal__actual-text {
    margin-bottom: 10px;
    font-size: 20px;
  }
}

.modal__actual-img {
  background: url("../img/timer_flag.svg") center no-repeat;
  background-size: contain;
  min-width: 30px;
  min-height: 35px;
  margin-right: 15px;
}

.modal__actual-timer {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin-right: 10px;
  margin-left: 10px;
  color: #ffff;
}

.modal__actual-timer span:first-child {
  font-size: 30px;
  font-weight: 700;
}

.modal__actual-timer span:last-child {
  font-size: 13px;
}

.block_input {
  background: #fff;
  padding: 0 12px 0 23px;
  border-radius: 6px;
}

@media screen and (max-width: 991px) {
  .block_input {
    padding: 0 10px;
  }
}

.block_input:not(:last-child) {
  margin-bottom: 10px;
}

.block_input input {
  min-height: 54px;
  width: 100%;
  height: 100%;
  outline: none;
  background: transparent;
  border: none;
  font-size: 22px;
}

@media screen and (max-width: 991px) {
  .block_input input {
    min-height: 45px;
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .block_input input {
    min-height: 40px;
    font-size: 16px;
  }
}

.block_checkbox {
  background: #FFFFFF;
  border-radius: 6px;
  width: 22px;
  height: 22px;
  overflow: hidden;
  position: relative;
  margin-top: -3px;
  display: none;
}

@media screen and (max-width: 991px) {
  .block_checkbox {
    width: 20px;
    height: 20px;
    margin-top: 0;
  }
}

.block_checkbox::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: url("../img/icon_check.png") center no-repeat;
  background-size: contain;
  display: none;
}

.block_checkbox-active::after {
  display: block;
}

.block_checkbox:hover {
  cursor: pointer;
}

.modal-header .close {
  padding: 0;
}

.close {
  font-size: 35px;
  color: #fff;
  opacity: 1 !important;
}

.close:hover {
  opacity: 0.5 !important;
  color: #fff;
}

.link_underline {
  display: inline-block;
  position: relative;
}

.link_underline::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  border-bottom: 1px solid #fff;
}

.button-send {
  min-height: 57px;
  max-width: 100%;
  font-size: 25px;
  font-weight: 700;
  bottom: initial;
  right: initial;
  margin-top: 0;
  background: #78BE25;
}

.button-subscribe:hover {
  background: #5d931d;
}

.button-send::after, .button-send::before {
  display: none;
}

@media screen and (max-width: 1199px) {
  .button-send {
      font-size: 20px;
      padding: 0;
      width: 100%;
      border-radius: 6px;
  }
}

@media screen and (max-width: 991px) {
  .button-send {
    min-height: 45px;
  }
}

@media screen and (max-width: 575px) {
  .button-send {
    min-height: 40px;
  }
}