@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

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

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body._active {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

a {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.ibg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*--------------------*/


body {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: block;
  color: #000000;
  line-height: normal;
}

.wrapper {
  overflow: hidden;
}

.main-title {
  font-size: 96px;
  font-weight: 600;
  color: #5F5B5B;
}

.button {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  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: 20px;
  border: 2px solid #ffffff;
  background-color: #00e70000;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #ffffff;
  font-weight: 600;
  border-radius: 100px;
  font-size: 16px;
  line-height: 110%;
  cursor: pointer;
  width: fit-content;
}

.button:hover {
  background-color: #ffffff;
  box-shadow: 0 0 40px 40px #ffffff inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #04D2EE;
}

.button_second {
  background-color: #fff;
}

.button_second._active {
  background-color: #00E700;
}


.label {
  font-size: 24px;
  font-weight: 300;
  line-height: 133%;
}

.section__top {
  margin-bottom: 65px;
}

.page {
  padding: 80px 0px 0 0;
}

.page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}

.page__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}

.page__content {

}

.dropdown__content {
  position: relative;
}

.dropdown__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 30px;
  font-size: 20px;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  line-height: 160%;
}

.dropdown__button:after {
  content: "";
  display: block;
  background-image: url(../img/icons/drop-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown__button._active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown__list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: #fff;
}

.dropdown__list._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown__list-item {
  font-size: 20px;
  padding: 14px 30px;
  cursor: pointer;
}

.dropdown__input-hidden {
  display: none;
}

._has-padding {
  padding: 0px 24px;
}

.title {
  font-size: 48px;
  font-weight: 600;
}

.subtitle {
  font-size: 36px;
  font-weight: 600;
  color: #000000;
  padding-bottom: 12px;
  line-height: 110%;
}

.label {
  font-size: 24px;
  color: #00E700;
}

.section {
  padding: 48px 0px;
  position: relative;
}

.checkbox input {
  display: none;
}

.checkbox input:checked ~ label:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  cursor: pointer;
  font-size: 20px;
}

.checkbox label:after,
.checkbox label:before {
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 1px;
}

.checkbox label:before {
  border: 1px solid #ED8282;
}

.checkbox label:after {
  top: 0;
  left: 0;
  background-image: url(../img/icons/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  background-color: #ED8282;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.container {
  margin: 0 auto;
  padding: 0px 48px;
  position: relative;
  z-index: 1;
}

.section-bg {
  background-color: #30323A;
  padding: 24px 0;
  margin: 18px 12px;
  border-radius: 5px;
  color: #fff;
}
.blog__container {
    padding: 0 24px;
}
.black {
  color: #30323A;
}

.modal {
  min-height: 100vh;
  padding: 100px 36px;
}

.header {
  padding: 48px 0;
  z-index: 3;
  position: relative;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 11;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__link {
  padding: 14px;
  font-weight: 600;
  line-height: normal;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  background: #FFF;
  border-radius: 50%;
  border: 2px solid #ffffff;
}
.header__link:hover {
  background-color: #ffffff;
  color: #FFF;
  box-shadow: 0 0 40px 40px #ffffff inset;
}
.header__link span {
  display: none;
}
.header__menu-button {
  cursor: pointer;
  width: 44px;
  height: 44px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 44px;
  position: relative;
  border-radius: 100%;
  background: #FFF;
  display: none;

}.header__link:hover span{
   animation: show-opacity 0.6s ease-in-out forwards;
 }
@keyframes show-opacity {

  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

}
.header__menu-button span,
.header__menu-button:before,
.header__menu-button:after {
  height: 2px;
  width: 18px;
  left: 14px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  border-radius: 5px;
  background-color: #04D2EE;
}

.header__menu-button:after,
.header__menu-button:before {
  content: "";
}

.header__menu-button:before {
  top: 14px;
}

.header__menu-button:after {
  bottom: 14px;
  width: 18px;
}

.header__menu-button span {
  top: 50%;
  width: 18px;
  -webkit-transform: scale(1) translate(0px, -50%);
      -ms-transform: scale(1) translate(0px, -50%);
          transform: scale(1) translate(0px, -50%);
}

.header__menu-button._active span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
  background-color: #292B32;
}

.header__menu-button._active:before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
      -ms-transform: rotate(-45deg) translate(0px, -50%);
          transform: rotate(-45deg) translate(0px, -50%);
}

.header__menu-button._active:after {
  bottom: 50%;
  width: 18px;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
      -ms-transform: rotate(45deg) translate(0px, 50%);
          transform: rotate(45deg) translate(0px, 50%);
}



.menu nav {
  margin: 0 auto;
  padding: 0px 36px;
  max-width: 1440px;
}

.menu._active {
  left: 0;
}

.menu__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: 24px;
  margin-bottom: 24px;
}

.menu__link {
  line-height: 120%;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #30323A;
}

.menu__link:hover {
  color: #00E700;
}


.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 24px;
}


.popup {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
  background: rgba(48, 50, 58, 0.75);
}

.popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 16px;
}

.popup__content {
  max-width: 700px;
  padding: 48px;
  position: relative;
  width: 100%;
  border-radius: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #C2ECF2 100%);
}
.popup__content .button-content {
  margin: auto;
}
.close-popup {
  position: absolute;
  width: 27px;
  height: 23px;
  top: 36px;
  right: 36px;
  transform: rotate(45deg);
  cursor: pointer;
}


@media (max-width: 1024px) {
  .page {
    padding: 50px 0px 0 0px;
  }

  .page_one {
    padding: 50px 0px 36px 0px;
  }

    .subtitle {
        font-size: 34px;
    }


}

@media (max-width: 1110px) {

  .section {
    padding: 36px 0px;
  }
}
@media (max-width: 992px) {

  .section-bg {
    padding: 16px 0;
  }

  .header {
    padding: 24px 0px;
  }

  .header__container {
    padding: 0px 24px;
  }

  .header__items {
    gap: 16px;
  }

  .header__content {
    gap: 16px;
  }

}

@media (max-width: 767px) {
  .menu {
    padding: 120px 0px 30px 0px;
  }

  .menu nav {
    padding: 0px 12px;
  }

  .menu__list {
    margin-bottom: 20px;
    gap: 20px;
  }

  .item {
    padding: 12px;
  }
    .subtitle {
        font-size: 24px;
    }
  .section {
    padding: 36px 0px;
  }

}

@media (max-width: 600px) {
  .header__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .header__icon {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }


  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 12px;
  }

}

@media (max-width: 492px) {

  .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

}
.input-text {
  padding: 12px 12px 12px 0;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-bottom: 2px solid #464954;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 500;
  color: #000;
  font-size: 18px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  column-gap: 77px;
}
.header__menu a:hover {
  color: #E7A300;
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 18px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
a.header__button:after {
  content: '';
  position: absolute;
  background: #0444A5;
  width: 100%;
  height: 6px;
  bottom: 2px;
  z-index: -1;
}
a.header__button:hover:after {
  background: #04D2EE;
}
.header__logo img {
  width: 136px;
}
.header__menu a {
  font-size: 18px;
  font-weight: 600;
}
div.header__button {
  padding: 0;
}
@media (max-width: 1662px) {
  .header__menu {
    column-gap: 38px;
  }
}
@media (max-width: 1506px) {

}
@media (max-width: 1445px) {
  .header__button {
    font-size: 20px;
  }
}
@media (max-width: 1371px) {
  .header__link {
    padding: 15px 15px;
  }
  .header__menu a {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
  .header__menu-button {
    display: block;
  }
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #C2ECF2 100%);
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: auto;
    padding: 120px 0 30px 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .menu._active nav.header__nav {
    display: block;
  }
  .header__logo {
    z-index: 11;
  }
  .header__content {
    z-index: 11;
  }
  .header__menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
  }
  .menu._active nav.header__nav {
    display: block;
    padding-left: 24px;
    margin: 0;
  }
  .header__menu a {
    font-size: 18px;
    font-weight: 600;
  }
}
.header__menu{
  display: none;
}
.header__link:hover {
  padding: 14px;
  border-radius: 100px;
}
.header__link:hover span {
  display: inline;
  color: #000;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-left: 8px;
  transition: display 400ms ease-in-out, color 400ms ease-in-out;
}
@media (max-width: 1110px) {
  .container {
    padding: 0px 36px;
  }
  .header {
    padding: 36px 0;
  }

  .header__link {
    padding: 14px;
    border-radius: 100px;
  }
}
@media (max-width: 959px) {
  .banner__title {
    font-size: 40px;
  }
  .banner__text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0px 24px;
  }
  .header {
    padding: 24px 0;
  }
  .header__items {
    display: none;
    -webkit-transition: all 0.4s ease 0s;
    transition: left 400ms ease-in-out, left 400ms ease-in-out;
    left: -100%;
  }
  .header__content._active .header__items {
    display: flex;
    width: calc(100% - 24px);
    left: 24px;
    animation: show-opacity1 0.6s ease-in-out forwards;
    position: fixed;
    bottom: 50px;
  }
  @keyframes show-opacity1 {

    0% {
      left: -100%;
    }

    100% {
      left: 24px;
    }

  }

  .header__button {
    flex-direction: column;
    column-gap: 20px;
    row-gap: 20px;
    width: calc(100% - 24px);
  }
  .header__link {
    width: 100%;
    font-size: 20px;
  }
  .header__menu{
    display: flex;
  }
  .header__link span {
    font-size: 14px;
    display: inline;
    color: #000;
    padding-left: 8px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  a.header__button:after {
    background: #04D2EE;
  }
  a.header__button {
    max-width: fit-content;
    color: #000;
  }
}
@media (max-width: 767px) and (max-height: 700px){
  .menu{
    padding: 100px 0 30px 0;
  }
  .header__menu {
    row-gap: 15px;
  }
}
.banner {
  margin-top: -146px;
  position: relative;
  top: 0;
  width: auto;
}
.banner__container {
  margin: auto;
}
.banner-img {
  width: 100%;
}
.banner__item {
  position: absolute;
  bottom: 48px;
  max-width: 730px;
  height: 100%;
  display: flex;
  align-items: end;
}
.banner__title {
  color: #FFF;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.banner__text {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  padding-bottom: 24px;
}
.banner__item.container:before {
  content: '';
  border-radius: 510px;
  background: linear-gradient(259deg, #04D2EE 7.02%, #1CB4DC 58.09%);
  filter: blur(100px);
  width: 510px;
  position: absolute;
  height: 407px;
  z-index: 0;
  left: -255px;
  bottom: -48px;
  /*background: url("/img/ellipse.svg");*/
}
.banner__info {
  z-index: 1;
  position: relative;
}
@media (max-width: 1110px) {

  .banner__item{
    bottom: 36px;
  }
}
@media (max-width: 959px) {
  .banner__title {
    font-size: 40px;
  }
  .banner__item {
    max-width: 660px;
    bottom: 36px;
  }
  .banner__text {
    font-size: 18px;
  }
  .banner {
    margin-top: -120px;
  }
}
@media (max-width: 767px) {
  .banner__title {
    font-size: 36px;
  }
  .banner__text {
    font-size: 16px;
  }
  .button {
    width: 100%;
  }
  .banner {
    margin-top: -92px;
  }
}
.sticker{
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  line-height: 110%; /* 16.5px */
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
  display: inline-block;
}
.sticker--black{
  background: #000;
}
.fear {
  position: relative;
  z-index: 2;
}
.text {
  color: #A0A2A6;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%;
  padding-bottom: 48px;
  max-width: 1002px;
}
.fear__slide {
  width: 272px;
  max-width: 272px;
  border-radius: 25px;
  border: 2px solid #000;
  overflow: hidden;
}
.fear__img {
  border-radius: 25px;
}
.fear_info {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  padding: 18px;
}
.fear__slide:nth-child(2n) {
  margin-top: 24px;
}
.fear__slider {
  margin-bottom: 48px;
}
.button-content {
  border: 2px solid #04D2EE;
  padding: 20px;
  color: #000;
  font-size:16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  display: block;
  text-align: center;
}
.fear_a{
  font-size: 20px;
  padding: 20px 40px;
  margin: auto;
}
.button-content:hover{
  background: #04D2EE;
  color: #FFF;
  box-shadow: 0 0 40px 40px #04D2EE inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
@media (max-width: 1024px) {
  .text {
    padding-bottom: 36px;
  }
  .fear__slider {
    margin-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .text {
    font-size: 16px;
    padding-bottom: 24px;
  }
  .fear__slider {
    margin-bottom: 24px;
  }
  .fear_a {
    margin: 0 24px;
    width: calc(100% - 48px);
  }
}
.sticker--blue{
  background: #04D2EE;
}
.bg-blue{
  background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #C2ECF2 100%);
}
.how-much .sticker {
  margin: auto;
  display: block;
  margin-bottom: 12px;
  width: fit-content;
}
.container--content {
  max-width: 1440px;
  padding: 0 48px;
}
.container--text {
  max-width: 1002px;
  padding: 0;
  margin: auto;
}
.center{
  text-align: center;
}

.can-write__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  align-items: center;
}
.sticker--green {
  background: #04A558;
}
.can-write__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.can-write__item--grid .can-write__slide:last-child {
  grid-column: 2/3;
  grid-row: 1/3;
}
.can-write__ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  padding-bottom: 36px;
}
.can-write__ul li:before {
  content: '';
  background: url("/img/can-write/icon.svg");
  width: 28px;
  height: 32px;
  display: inline-block;
}
.can-write__ul li {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.can-write__img {
  max-width: 100%;
}
.can-write {
  padding-bottom: 0;
}
.sticker--red{
  background: #A50E04;
}
.dontcan-write__row .can-write__item {
  order: 2;
}
.dontcan-write__row .can-write__item--grid {
  order: 1;
}
.dontcan-write__row .can-write__item--grid .can-write__slide:first-child {
  grid-column: 1/2;
  grid-row: 1/3;
}
.dontcan-write__row .can-write__item--grid .can-write__slide:last-child {
  grid-column: auto;
  grid-row: auto;
}
.dontcan-write__row .can-write__ul li:before {
  background: url(/img/dontcan-write/icon.svg);
  width: 24px;
  min-width: 24px;
}
@media (max-width: 1024px) {
  .container--content {
    padding: 0 36px;
  }
  .can-write__row {
    display:flex;
    flex-direction: column;
    row-gap: 36px;
  }
  .can-write__img {
    max-width: 100%;
  }
  .dontcan-write__row .can-write__item--grid {
    order: 2;
  }
  #dontcan-write {
    padding-top: 0;
  }
  .dontcan-write__row .can-write__item--grid .can-write__slide:first-child {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
@media (max-width: 767px) {
  .container--content {
    padding: 0 24px;
  }
  .can-write__ul {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
  }
  .can-write__row {
    row-gap: 24px;
  }
  .can-write__slide picture {
    width: 100%;
    height: 100%;
    display: block;
  }
  .can-write__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .can-write__item.can-write__item--grid {
    max-width: calc(100% + 48px);
    margin-left: -24px;
  }
}
.sticker--blues{
  background: #0444A5;
    margin: auto;
    display: block;
    margin-bottom: 12px;
    width: fit-content;
}
.banki__row {
  display: flex;
  align-items: center;
  row-gap: 48px;
  flex-wrap: wrap;
  column-gap: 96px;
  justify-content: center;
}
.banki.section{
  z-index: 1;
}
@media (max-width: 1024px) {
  .banki__row {
    row-gap: 36px;
    column-gap: 72px;
  }
}
@media (max-width: 767px) {
  .banki__row {
    row-gap: 24px;
  }
}
.sticker--blue-2{
  margin: auto;
  display: block;
  margin-bottom: 12px;
  width: fit-content;
  background: #0491CC;s
}
.cost__consultation {
  display: flex;
  column-gap: 24px;
}
.cost__name {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
  padding-bottom: 12px;
}
.cost__price {
  color: #0444A5;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
  padding-bottom: 6px;
}
.cost__period {
  color: #A0A2A6;
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  padding-bottom: 24px;
}
.cost__entrance {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  cursor: pointer;
}
.cost__consult {
  color: #A0A2A6;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  padding-bottom: 20px;
  padding-top: 12px;
}
.cost__list {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.cost__list li:before {
  content: '';
  background: url(/img/cost__list-icon.svg);
  width: 14px;
  height: 16px;
  display: inline-block;
  min-width: 14px;
}
.cost__list li {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.cost__infos {
  border-top: 1px solid #A0A2A6;
  border-bottom: 1px solid #A0A2A6;
  padding: 12px 0;
  margin-bottom: 24px;

}
.cost__margin {
  position: absolute;
  border-radius: 39px 39px 0px 0px;
  background: #04D2EE;
  padding: 18px 0 64px;
  width: 100%;
  margin-top: -50px;
  z-index: 0;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 110%;
  text-align: center;
}
.cost__item {
  width: 33%;
  margin-top: 51px;
  position: relative;
}
.cost__item--white{
  background: #FFF;
  border-radius: 39px;
  padding: 24px;
  height: max-content;
  position: relative;
}
.cost__entrance:before {
  content: '';
  background: url(/img/cost__list-plus.svg);
  width: 14px;
  height: 16px;
  display: inline-block;
  position: absolute;
  right: 24px;
  transition: 0.4s;
}
.cost__entrance-show{
  display: block;
  animation: show-opacity2 0.6s ease-in-out forwards;
}
.cost__info{
  display: none;
  animation: show-opacity2 0.6s ease-in-out forwards;
}
@keyframes show-opacity2 {

  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

}
.cost__infos-show .cost__info{
  display: block;
}
.cost__infos-show .cost__entrance:before {
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .cost__consultation {
    flex-direction: column;
    row-gap: 24px;
  }
  .cost__item {
    width: 100%;
    margin-top: 0;
  }
  .cost__item:nth-child(2) {
    margin-top: 50px;
  }
}
.deadlines-stages__item {
    border-radius: 39px;
    border: 2px solid #DDE0E5;
    padding: 24px;
    row-gap: 18px;
    display: flex;
    flex-direction: column;
    height: fit-content;
}
.deadlines-stages__row {
    gap: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.deadlines-stages__img {
    max-width: 80px;
    height: 64px;
}
.deadlines-stages__stiks {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    border-radius: 100px;
    border: 1px solid #04D2EE;
    padding: 6px 16px;
    width: fit-content;
}
.deadlines-stages_zagolovok {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    line-height: 110%;
}
.deadlines-stages_info {
    color: #A0A2A6;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}
@media (max-width: 1024px) {
    .deadlines-stages__row {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .deadlines-stages__row {
        grid-template-columns: 1fr;
    }
}
.our-team__row {
  gap: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.our-team__img {
  border-radius: 39px;
  max-width: 100%;
}
.our-team_name {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 110%;
  padding-top: 24px;
  padding-bottom: 18px;
}
.our-team_post {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
.our-team p.sticker.sticker--blue {
  margin: auto;
  display: block;
  width: fit-content;
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .our-team__row {
    grid-template-columns: 1fr 1fr;
  }
  .our-team__img {
    border-radius: 49px;
    max-width: 100%;
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
  }

}

@media (max-width: 767px) {
  .our-team__row {
    grid-template-columns:  1fr;
  }
  .our-team__img {
    border-radius: 49px;
    max-width: 100%;
    aspect-ratio: auto;
    width: 100%;
    object-fit: contain;
  }
}
.reviews__row {
  display: flex;
  gap: 36px;
  align-items: center;
}
.reviews__item .sticker {
  margin: 0;
  margin-bottom: 12px;
}
.reviews_info {
  color: #A0A2A6;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  padding-bottom: 36px;
}
.reviews_name {
  width: fit-content;
}
.reviews__item {
  width: 50%;
}
.reviews__img {
   width: 100%;
  border-radius: 39px;
 }
@media (max-width: 1024px) {
  .reviews__row {
    flex-direction: column;
  }

  .reviews__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .reviews_name {
    width: 100%;
    text-align: center;
  }
  .reviews__img {
    width: 100%;
    height: 499px;
    object-fit: cover;
  }
}
.quiz__form--step{
  display: none;
}
.step-active{
  display: block;
}
.quiz-show-step {
  display: block;
}

.quiz__form--button {
  opacity: 0.5;
  pointer-events: none;
  display: none;
}
.quiz__form--button-active {
  opacity: 1;
  pointer-events: all;
  display: flex;
}
.quiz__form {
  max-width: 708px;
  border-radius: 39px 39px 0px 0px;
  background: #FFF;
  margin: auto;
  padding: 24px;
}
.quiz-item__text{
  font-size: 16px;
  padding-bottom: 24px;
}
.quiz-item__label{
  display: flex;
  gap: 12px;
  flex-flow: wrap;
  justify-content: space-between;
}
.quiz__form--select {
  border-radius: 10px;
  width: calc(50% - 6px);
  cursor: pointer;
}
.quiz-item__title {
  font-size: 24px;
  line-height: 120%;
}
.quiz__form--nav {
  display: flex;
  column-gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.quiz__form--button-active {
  opacity: 1;
  pointer-events: all;
  display: flex;
  border-radius: 100px;
  border: 2px solid #04D2EE;
  color: #000;
  padding: 20px 40px;
}
.quiz__form--button-active:hover{
  background: #A0A2A6;
  color: #FFF;
  box-shadow: 0 0 40px 40px #A0A2A6 inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  border: 2px solid #A0A2A6;
}
.quiz__form--name {
  border-radius: 10px;
  border: 1px solid #A0A2A6;
  padding: 18px;
  width: 100%;
  display: block;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
input:checked ~ .quiz__form--name {

  border: 1px solid #0444A5;
  background: #0444A5;
  color: #FFF;
}
.quiz__form--select input {
  display: none;
}
.how-much {
  padding-bottom: 0;
}
.quiz-nav-step {
  display: flex;
  padding: 6px 16px 7px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid #04D2EE;
  width: fit-content;
  margin-bottom: 12px;
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.quiz-nav-hidden {
  display: none;
}
.form-group input {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  padding: 12px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  border-radius: 10px;
  border: 1px solid #A0A2A6;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.quiz__form--submit{
  margin: auto;
}
.form-group input::placeholder{
  color: #000;
}
@media (max-width: 767px) {
  .center {
    text-align: left;
  }
  .quiz-item__title {
    font-size: 20px;
  }
  .quiz-item__label {
    flex-flow: column;
  }
  .quiz__form--select {
    width: 100%;
  }
  .how-much .sticker, .sticker {
    margin-left: 0;
  }
}
@media (max-width: 370px) {
  .quiz__form--name{
    padding: 16px;
    font-size: 16px;
  }
}
.how-much:before, .our-team:before{
  content: '';
  position: absolute;
  background: url(/img/ellipse1.png);
  width: 1280px;
  height: 800px;
  top: -400px;
  z-index: 0;
}
.how-much:after, .our-team:after{
  content: '';
  position: absolute;
  background: url(/img/ellipse2.png);
  width: 1280px;
  height: 1016px;
  right: 0;
  z-index: 0;
  bottom: -508px;
}
.cost:before {
  content: '';
  position: absolute;
  background: url(/img/ellipse2.png);
  width: 1280px;
  height: 1016px;
  right: 0;
  z-index: 0;
  top: -508px;
}
.cost::after{
  content: '';
  position: absolute;
  background: url(/img/ellipse1.png);
  width: 1280px;
  height: 800px;
  bottom: -400px;
  z-index: 0;
}
@media (max-width: 1024px) {
  .how-much:before, .our-team:before, .cost:after {
    background: url(/img/ellipse1-table.png);
    width: 920px;

  }
  .how-much:after, .our-team:after, .cost:before {
    background: url(/img/ellipse2-table.png);
    width: 920px;
  }
}
@media (max-width: 767px) {
  .how-much:before, .our-team:before{
    background: url(/img/ellipse1-mobile.png);
    width: 375px;
    height: 493px;
    top: -246px;
  }
  .how-much:after, .our-team:after {
    background: url(/img/ellipse2-mobile.png);
    width: 920px;
    bottom: -246px;
    left: 24px;
    height: 493px;
  }
  .cost:before {
    background: url(/img/ellipse2-mobile.png);
    width: 920px;
    top: -246px;
    left: 24px;
    height: 493px;
  }
   .cost:after {
    background: url(/img/ellipse1-mobile.png);
    width: 375px;
    height: 493px;
    bottom: -246px;
  }
}
.form-success {
  display: none;
}
.form-input input {
    padding: 12px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  border-radius: 10px;
  border: 1px solid #A0A2A6;
  width: 100%;
}
.form-input {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-success .modal__text{
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .popup__content{
    padding: 24px;
  }
  .close-popup {
    width: 27px;
    height: 23px;
    top: 24px;
    right: 24px;
  }
}
@media (max-width: 370px) {
  .popup__content{
    padding: 24px;
  }
  .close-popup {
    width: 27px;
    height: 23px;
    top: 24px;
    right: 24px;
  }
  .button-content{
    font-size: 15px;
    padding: 15px;
  }
}
.footer__main {
  padding: 48px 0;
}
.footer___row {
  display: flex;
  justify-content: space-between;
}
.footer__menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  row-gap: 12px;
  column-gap: 165px;
}
.footer__menu a {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  display: inline;
}
.copyright__text {
  font-size: 18px;
  font-weight: 600;
}
.footer__menu a:hover:before {
  content: '';
  position: absolute;
  background: #04D2EE;
  width: 100%;
  height: 3px;
  bottom: 1px;
  z-index: -1;
}
@media (max-width: 1360px) {
  .footer__menu {
    column-gap: 55px;
  }
}
@media (max-width: 1024px) {
  .footer___row {
    flex-direction: column;
    row-gap: 24px;
  }
  .footer___menu {
    column-gap: normal;
  }
}
@media (max-width: 767px) {
  .footer__main {
    padding: 24px 0;
  }
  .footer__menu {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 370px) {

}
