@font-face {
  font-family: "Stapel";
  src: url("../fonts/Stapel_Regular.woff") format("woff"), url("../fonts/Stapel_Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Stapel";
  src: url("../fonts/Stapel-Medium.woff") format("woff"), url("../fonts/Stapel-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Stapel";
  src: url("../fonts/Stapel-Bold.woff") format("woff"), url("../fonts/Stapel-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
html {
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  letter-spacing: 0.01rem;
}

body {
  font-family: "Stapel", sans-serif, arial;
  font-size: 16px;
  color: #1A1B1C;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  display: inline-block;
  outline: none;
  text-decoration: none;
  color: currentColor;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

p {
  margin: 0;
}

svg {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  fill: currentColor;
}

img {
  vertical-align: top;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
}
button:not([disabled]):hover, button:not([disabled]):focus, button:not([disabled]):active {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

ul, ul li {
  list-style: none;
}

input, textarea {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

@media (max-width: 575px) {
  body.fixed, html.fixed {
    overflow: hidden;
  }
}

body.mobs, html.mobs {
  overflow: hidden;
}

.btn {
  border-radius: 28px;
  cursor: pointer;
  padding: 16px 32px;
  min-height: 40px;
  position: relative;
  overflow: hidden;
  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;
  border: 2px solid #E5306A;
  font-size: 14px;
  line-height: 1.24;
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  background-color: #1A1B1C;
  border-color: #1A1B1C;
  color: #fff;
}

.btn_colored {
  border-radius: 28px;
  cursor: pointer;
  padding: 16px 32px;
  position: relative;
  overflow: hidden;
  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;
  background: -webkit-gradient(linear, left top, right top, from(#E5306A), to(#F8655A));
  background: -o-linear-gradient(left, #E5306A 0%, #F8655A 100%);
  background: linear-gradient(90deg, #E5306A 0%, #F8655A 100%);
}
.btn_colored::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1A1B1C;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.btn_colored:hover::before {
  opacity: 1;
}
.btn_colored span {
  position: relative;
  color: #fff;
  font-size: 14px;
  line-height: 1.24;
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

header {
  position: fixed;
  top: 16px;
  left: 16px;
  width: calc(100% - 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  border-radius: 28px;
  background: #FFF;
  -webkit-box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
          box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
  z-index: 9;
}

.header_logo {
  padding-left: 24px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .header_logo {
    padding-left: 12px;
  }
}
.header_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media (max-width: 1199px) {
  .header_menu {
    display: none;
  }
}
.header_menu a {
  line-height: 1.48;
  font-weight: 500;
  position: relative;
}
.header_menu a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 1px;
  left: 50%;
  width: 0px;
  background-color: currentColor;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header_menu a:hover::before {
  width: 100%;
  left: 0;
}
.header_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .header_info {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .header_info {
    gap: 8px;
  }
}
.header_info__phone {
  font-size: 18px;
  line-height: 1.36;
  font-weight: 500;
}
.header_info__phone img {
  display: none;
}
@media (max-width: 400px) {
  .header_info__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_info__phone p {
    display: none;
  }
  .header_info__phone img {
    display: block;
  }
}
.header_info .btn_colored {
  padding: 12px 32px;
}
@media (max-width: 767px) {
  .header_info .btn_colored {
    display: none;
  }
}
.header_burger {
  display: none;
}
@media (max-width: 1199px) {
  .header_burger {
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
}
.header_burger span {
  height: 2px;
  width: 20px;
  background-color: #1A1B1C;
  display: block;
  position: absolute;
  left: 3px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header_burger span:nth-of-type(1) {
  top: 10px;
}
.header_burger span:nth-of-type(2), .header_burger span:nth-of-type(3) {
  top: 15px;
}
.header_burger span:nth-of-type(4) {
  top: 20px;
}
.header_burger.opened span:nth-of-type(1), .header_burger.opened span:nth-of-type(4) {
  opacity: 0;
}
.header_burger.opened span:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header_burger.opened span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header_mob {
  display: none;
}
@media (max-width: 1199px) {
  .header_mob {
    display: block;
    position: fixed;
    left: 16px;
    top: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    -webkit-transform: translateY(-150%);
        -ms-transform: translateY(-150%);
            transform: translateY(-150%);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding-top: 100px;
    border-radius: 28px;
    -webkit-box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
            box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
    overflow: auto;
    background-color: #fff;
  }
}
.header_mob.opened {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.header_mob__menu {
  padding: 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: 32px;
}
@media (max-width: 767px) {
  .header_mob__menu {
    gap: 16px;
  }
}
.header_mob__menu a {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.12;
}
.header_mob__menu a::before {
  content: none;
}
@media (max-width: 767px) {
  .header_mob__menu a {
    font-size: 24px;
  }
}

.promo {
  background-image: url("../img/promo_bg2.jpg");
  background-size: cover;
  background-position: 50% 50%;
  padding: 152px 0 64px;
  min-height: 100vh;
}
@media (max-width: 1199px) {
  .promo {
    background-position: 35% 50%;
  }
}
@media (max-width: 767px) {
  .promo {
    padding: 112px 0 40px;
    background-position: 45% 50%;
  }
}
.promo_pretitle {
  border-radius: 16px;
  border: 1px solid #EB5F62;
  background: rgba(251, 100, 101, 0.16);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 32px;
  padding: 4px 16px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.28;
}
@media (max-width: 767px) {
  .promo_pretitle {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.promo_title {
  background: -webkit-gradient(linear, left top, right top, color-stop(2.88%, #6A5CBC), color-stop(50.02%, #F26862), to(#F93B56));
  background: -o-linear-gradient(left, #6A5CBC 2.88%, #F26862 50.02%, #F93B56 100%);
  background: linear-gradient(90deg, #6A5CBC 2.88%, #F26862 50.02%, #F93B56 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  font-size: 80px;
  line-height: 1;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .promo_title {
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .promo_title {
    font-size: 48px;
    margin-bottom: 8px;
  }
}
.promo_subtitle {
  margin-bottom: 32px;
  font-size: 56px;
  line-height: 1;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .promo_subtitle {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .promo_subtitle {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.promo_text {
  font-size: 18px;
  line-height: 1.36;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.promo_text b {
  font-weight: 500;
}
@media (max-width: 767px) {
  .promo_text {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .promo_text br {
    display: none;
  }
}
.promo_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 84px;
}
@media (max-width: 1199px) {
  .promo_btns {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .promo_btns {
    -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;
  }
}
.promo_btns .btn,
.promo_btns .btn_colored {
  min-width: 230px;
}
@media (max-width: 767px) {
  .promo_btns .btn,
.promo_btns .btn_colored {
    width: 100%;
  }
}
.promo > .container {
  position: relative;
}
.promo_video {
  position: absolute;
  right: 0;
  top: 0;
}
.promo_video video {
  width: 100%;
}
@media (max-width: 1199px) {
  .promo_video {
    position: relative;
    margin-bottom: 16px;
  }
}
.promo_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 80px;
  border-radius: 16px;
  border: 1px solid rgba(153, 153, 153, 0.64);
  background: rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}
@media (max-width: 767px) {
  .promo_block {
    padding: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .promo_block__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 4px);
            flex: 0 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
  }
}
.promo_block__item p {
  font-size: 44px;
  line-height: 1.08;
  font-weight: 500;
}
@media (max-width: 767px) {
  .promo_block__item p {
    font-size: 28px;
  }
}
.promo_block__item span {
  font-size: 18px;
  line-height: 1.36;
}
@media (max-width: 767px) {
  .promo_block__item span {
    font-size: 16px;
  }
}

.past {
  background-image: url("../img/past_bg.jpg");
  background-size: cover;
  background-position: 50% 50%;
  padding: 64px 0;
  position: relative;
}
@media (max-width: 767px) {
  .past {
    padding: 40px 0;
  }
}
.past_pretitle {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.36;
  background: -webkit-gradient(linear, left top, right top, from(#E23637), to(#FE803D));
  background: -o-linear-gradient(left, #E23637 0%, #FE803D 100%);
  background: linear-gradient(90deg, #E23637 0%, #FE803D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .past_pretitle {
    margin-bottom: 16px;
  }
}
.past_title {
  color: #fff;
  margin-bottom: 24px;
  font-size: 44px;
  line-height: 1.08;
  font-weight: bold;
}
@media (max-width: 767px) {
  .past_title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.past_subtitle {
  margin-bottom: 248px;
  font-size: 18px;
  line-height: 1.36;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 767px) {
  .past_subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .past_subtitle br {
    display: none;
  }
}
.past_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 1199px) {
  .past_block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .past_block {
    gap: 8px;
  }
}
.past_block__item {
  border-radius: 16px;
  border: 0.831px solid rgba(255, 255, 255, 0.16);
  background: rgba(82, 82, 82, 0.24);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 24px;
}
@media (max-width: 1199px) {
  .past_block__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 8px);
            flex: 0 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}
@media (max-width: 767px) {
  .past_block__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 4px);
            flex: 0 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
    padding: 16px 8px;
  }
  .past_block__item:nth-of-type(3), .past_block__item:nth-of-type(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
  }
}
.past_block__item p {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.12;
}
@media (max-width: 767px) {
  .past_block__item p {
    font-size: 28px;
  }
}
.past_block__item span {
  color: #fff;
  line-height: 1.28;
}
@media (max-width: 767px) {
  .past_block__item span {
    font-size: 14px;
  }
  .past_block__item span br {
    display: none;
  }
}
.past_block__item:nth-of-type(1) p {
  color: #A7BCED;
}
.past_block__item:nth-of-type(2) p {
  color: #F2C6A1;
}
.past_block__item:nth-of-type(3) p {
  color: #EB9CD2;
}
.past_block__item:nth-of-type(4) p {
  color: #9EE2C5;
}
.past_play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
}
@media (max-width: 767px) {
  .past_play {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-bottom: 32px;
    width: 100%;
    text-align: center;
  }
}
.past_play img {
  border-radius: 100%;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.info {
  background-image: url("../img/audience_bg.jpg");
  background-size: cover;
  background-position: 50% 50%;
  padding: 64px 0 128px;
  background-attachment: fixed;
}
@media (max-width: 767px) {
  .info {
    padding: 40px 0 80px;
  }
}
.info_pretitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.36;
  background: -webkit-gradient(linear, left top, right top, from(#E23637), to(#FE803D));
  background: -o-linear-gradient(left, #E23637 0%, #FE803D 100%);
  background: linear-gradient(90deg, #E23637 0%, #FE803D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .info_pretitle {
    margin-bottom: 16px;
  }
}
.info_title {
  font-size: 56px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .info_title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.info_subtitle {
  margin-bottom: 64px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 767px) {
  .info_subtitle {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.info_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 128px;
}
@media (max-width: 767px) {
  .info_block {
    gap: 16px;
    margin-bottom: 80px;
  }
}
.info_block__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333333% - 5.333333px);
          flex: 0 1 calc(33.333333% - 5.333333px);
  max-width: calc(33.333333% - 5.333333px);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(225, 225, 225, 0.64);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}
@media (max-width: 767px) {
  .info_block__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
    padding: 16px;
  }
}
.info_block__item img {
  margin-bottom: 16px;
}
.info_block__item p {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.28;
}
.info_block__item span {
  line-height: 1.28;
}
@media (max-width: 767px) {
  .info_block__item span {
    font-size: 14px;
  }
}
.info_block2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 128px;
}
@media (max-width: 767px) {
  .info_block2 {
    margin-bottom: 80px;
    gap: 8px;
  }
}
.info_block2__item {
  border-radius: 16px;
  border: 1px solid rgba(95, 24, 88, 0.24);
  background: rgba(255, 255, 255, 0.88);
  padding: 24px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .info_block2__item {
    padding: 16px;
    -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: 16px;
  }
}
.info_block2__item:first-of-type {
  background: rgba(95, 24, 88, 0.88);
  color: #fff;
}
.info_block2__item--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 1048px;
}
.info_block2__item--text--title {
  font-size: 20px;
  line-height: 1.28;
  font-weight: 500;
}
.info_block2__item--text--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  line-height: 1.28;
}
@media (max-width: 767px) {
  .info_block2__item--text--text {
    font-size: 14px;
  }
}
.info_block2__item--text--important {
  border-radius: 16px;
  background: -webkit-gradient(linear, left top, right top, from(#EB5F62), to(#FD7741));
  background: -o-linear-gradient(left, #EB5F62 0%, #FD7741 100%);
  background: linear-gradient(90deg, #EB5F62 0%, #FD7741 100%);
  padding: 4px 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .info_block2__item--text--important {
    font-size: 14px;
  }
}
.info_mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 211, 211, 0.64);
  background: rgba(255, 235, 235, 0.88);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  margin-bottom: 64px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.28;
}
@media (max-width: 767px) {
  .info_mark {
    gap: 8px;
    padding: 8px;
    margin-bottom: 40px;
    width: 100%;
  }
}
.info_block3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 1199px) {
  .info_block3 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .info_block3 {
    gap: 8px;
  }
}
.info_block3__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 12px);
          flex: 0 1 calc(25% - 12px);
  max-width: calc(25% - 12px);
  border-radius: 16px;
  background-color: #1A1A2F;
  -webkit-box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
          box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
  padding: 32px 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  color: #fff;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top;
}
@media (max-width: 1199px) {
  .info_block3__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 8px);
            flex: 0 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .info_block3__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
    gap: 4px;
  }
}
.info_block3__item:nth-of-type(1) {
  background-image: url("../img/program_1.png");
}
.info_block3__item:nth-of-type(2) {
  background-image: url("../img/program_2.png");
}
.info_block3__item:nth-of-type(3) {
  background-image: url("../img/program_3.png");
}
.info_block3__item:nth-of-type(4) {
  background-image: url("../img/program_4.png");
}
.info_block3__item--date {
  color: #FF5F5C;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.18;
}
@media (max-width: 767px) {
  .info_block3__item--date {
    font-size: 24px;
  }
}
.info_block3__item--title {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.28;
}
@media (max-width: 767px) {
  .info_block3__item--title {
    margin-bottom: 12px;
  }
}
.info_block3__item--text {
  margin-bottom: 8px;
  line-height: 1.28;
}
@media (max-width: 767px) {
  .info_block3__item--text {
    font-size: 14px;
  }
}
.info_block3__item--bottom {
  margin-top: auto;
}
.info_block3__item--more {
  margin-bottom: 32px;
  line-height: 1.28;
  position: relative;
}
@media (max-width: 767px) {
  .info_block3__item--more {
    margin-bottom: 16px;
    font-size: 14px;
  }
}
.info_block3__item--more p {
  padding: 0 8px;
  background-color: #1A1A2F;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.info_block3__item--more::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: rgba(225, 225, 225, 0.16);
}
.info_block3__item .btn_colored::before {
  background-color: #fff;
}
.info_block3__item .btn_colored:hover span {
  color: #1A1B1C;
}

.speakers {
  background-image: url("../img/speakers_bg.png");
  background-size: cover;
  background-position: 50% 50%;
  padding: 64px 0;
  background-color: #1A1A2F;
  overflow: hidden;
}
@media (max-width: 767px) {
  .speakers {
    padding: 40px 0;
  }
}
.speakers_pretitle {
  margin-bottom: 24px;
  background: -webkit-gradient(linear, left top, right top, from(#E23637), to(#FE803D));
  background: -o-linear-gradient(left, #E23637 0%, #FE803D 100%);
  background: linear-gradient(90deg, #E23637 0%, #FE803D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.36;
}
@media (max-width: 767px) {
  .speakers_pretitle {
    margin-bottom: 16px;
  }
}
.speakers_title {
  margin-bottom: 24px;
  color: #fff;
  font-size: 56px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .speakers_title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.speakers_subtitle {
  margin-bottom: 64px;
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .speakers_subtitle {
    font-size: 22px;
    margin-bottom: 40px;
  }
}
.speakers_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  will-change: transform;
}
@media (max-width: 767px) {
  .speakers_block {
    display: none;
  }
}
.speakers_block__item {
  width: 548px;
  min-width: 548px;
  padding: 24px;
  border-radius: 16px;
  border: 0.831px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 12, 32, 0.8);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  color: #fff;
}
@media (max-width: 767px) {
  .speakers_block__item {
    width: 100%;
    min-width: 320px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px;
  }
}
.speakers_block__item--img img {
  border-radius: 100%;
  overflow: hidden;
}
.speakers_block__item--info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.speakers_block__item--info--name {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .speakers_block__item--info--name {
    font-size: 22px;
  }
}
.speakers_block__item--info--position {
  margin-bottom: 24px;
  line-height: 1.16;
  font-size: 14px;
}
.speakers_block__item--info--text {
  font-size: 14px;
  line-height: 1.16;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .speakers_block__item--info--text {
    gap: 8px;
  }
}
.speakers_slider {
  display: none;
}
@media (max-width: 767px) {
  .speakers_slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: calc(100% - 30px);
  }
}
.speakers_slider__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding-top: 8px;
  width: 100%;
}
.speakers_slider__pagination span {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.speakers_slider__pagination span.swiper-pagination-bullet-active {
  background: -webkit-gradient(linear, left top, right top, from(#E23637), to(#FE803D));
  background: -o-linear-gradient(left, #E23637 0%, #FE803D 100%);
  background: linear-gradient(90deg, #E23637 0%, #FE803D 100%);
}

.faq {
  padding: 64px 0 220px;
}
@media (max-width: 767px) {
  .faq {
    padding: 40px 0 160px;
  }
}
.faq_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
}
@media (max-width: 1199px) {
  .faq_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .faq_block {
    gap: 40px;
  }
}
.faq_block__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 440px;
          flex: 0 1 440px;
  max-width: 440px;
}
@media (max-width: 1199px) {
  .faq_block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
  }
}
.faq_block__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faq_pretitle {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.36;
  background: -webkit-gradient(linear, left top, right top, from(#E23637), to(#FE803D));
  background: -o-linear-gradient(left, #E23637 0%, #FE803D 100%);
  background: linear-gradient(90deg, #E23637 0%, #FE803D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .faq_pretitle {
    margin-bottom: 16px;
  }
}
.faq_title {
  font-weight: bold;
  font-size: 56px;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq_title {
    font-size: 32px;
  }
}
.faq_item {
  border-radius: 16px 16px 0 16px;
  background: #FFF;
  -webkit-box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
          box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
  padding: 16px;
  margin-bottom: 16px;
}
.faq_item__question {
  font-size: 18px;
  line-height: 1.36;
  font-weight: 500;
  position: relative;
  padding-right: 48px;
  cursor: pointer;
}
.faq_item__question::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M3.75 12H20.25M12 3.75L12 20.25" stroke="%231A1B1C" stroke-width="2"/></svg>');
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.faq_item__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-size: 14px;
  line-height: 1.16;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.faq_item__answer a {
  color: #FF5F5C;
}
.faq .faq_item.active .faq_item__answer {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  opacity: 1;
  padding-top: 16px;
}
.faq .faq_item.active .faq_item__question::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M3.75 12L20.25 12" stroke="%231A1B1C" stroke-width="2"/></svg>');
}
.faq_more {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .faq_more {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.faq_more .btn {
  font-size: 18px;
}
@media (max-width: 767px) {
  .faq_more .btn {
    width: 100%;
  }
}

footer {
  background-color: #1A1B1C;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
@media (max-width: 1199px) {
  footer {
    -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;
  }
}
footer p {
  line-height: 1.28;
}
footer > a {
  line-height: 1.28;
  position: relative;
}
footer > a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 1px;
  left: 50%;
  width: 0px;
  background-color: currentColor;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
footer > a:hover::before {
  width: 100%;
  left: 0;
}
footer .footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
footer .footer_links a {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
footer .footer_links a:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  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;
  background: rgba(0, 0, 0, 0.8);
  padding: 16px;
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal_block {
  width: 100%;
  max-width: 940px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 28px;
  background: #FFF;
  -webkit-box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
          box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .modal_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 32px 16px 16px;
  }
}
.modal_block__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 368px;
          flex: 0 1 368px;
  background-image: url("../img/modal_bg.jpg");
  background-size: cover;
  padding: 32px;
}
@media (max-width: 767px) {
  .modal_block__left {
    display: none;
  }
}
.modal_block__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 48px 32px 32px;
}
@media (max-width: 767px) {
  .modal_block__right {
    padding: 0;
  }
}
.modal_block__title {
  font-size: 32px;
  line-height: 1.12;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .modal_block__title {
    font-size: 24px;
  }
}
.modal_block__subtitle {
  font-size: 18px;
  line-height: 1.12;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .modal_block__subtitle {
    font-size: 16px;
  }
}
.modal_close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M4.92969 19.0708L19.0718 4.92871M4.92969 4.92871L19.0718 19.0708" stroke="%231A1B1C" stroke-width="2" stroke-linecap="square"/></svg>');
  cursor: pointer;
}
.modal_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.modal_form input {
  border-radius: 28px;
  border: 1px solid #B3B4B5;
  background-color: #fff;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  width: 100%;
  padding: 16px;
  line-height: 1.28;
}
@media (max-width: 767px) {
  .modal_form input {
    padding: 12px 16px;
  }
}
.modal_form input::-webkit-input-placeholder {
  font-family: "Stapel", sans-serif, arial;
  color: rgba(51, 51, 51, 0.64);
}
.modal_form input::-moz-placeholder {
  font-family: "Stapel", sans-serif, arial;
  color: rgba(51, 51, 51, 0.64);
}
.modal_form input:-ms-input-placeholder {
  font-family: "Stapel", sans-serif, arial;
  color: rgba(51, 51, 51, 0.64);
}
.modal_form input::-ms-input-placeholder {
  font-family: "Stapel", sans-serif, arial;
  color: rgba(51, 51, 51, 0.64);
}
.modal_form input::placeholder {
  font-family: "Stapel", sans-serif, arial;
  color: rgba(51, 51, 51, 0.64);
}
.modal_form input:focus::-webkit-input-placeholder {
  font-size: 0;
}
.modal_form input:focus::-moz-placeholder {
  font-size: 0;
}
.modal_form input:focus:-ms-input-placeholder {
  font-size: 0;
}
.modal_form input:focus::-ms-input-placeholder {
  font-size: 0;
}
.modal_form input:focus::placeholder {
  font-size: 0;
}
.modal_form__need {
  padding-bottom: 16px;
  border-bottom: 1px solid #F6F6F6;
  font-size: 12px;
  line-height: 1.2;
  color: #999;
}
.modal_form__agree input {
  display: none;
}
.modal_form__agree label {
  position: relative;
  padding-left: 38px;
  font-size: 12px;
  line-height: 1.5;
  cursor: pointer;
}
.modal_form__agree label::before {
  content: "";
  left: 0;
  top: -8px;
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><rect x="7" y="7" width="18" height="18" rx="3" stroke="%23101010" stroke-opacity="0.2" stroke-width="2"/></svg>');
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.modal_form__agree label a {
  text-decoration: underline;
}
.modal_form__agree {
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.modal_form__agree.warning {
	color: #ff0000;
}
.modal_form__agree.warning label::before {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><rect x="7" y="7" width="18" height="18" rx="3" stroke="%23ff0000" stroke-opacity="1" stroke-width="2"/></svg>');
}
.modal_form__agree input:checked ~ label::before {
  background-image: url('data:image/svg+xml,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="6" y="6" width="20" height="20" rx="4" fill="%231A1B1C"/><path fill-rule="evenodd" clip-rule="evenodd" d="M23.4041 11.7349L14.2375 20.9015C13.8307 21.3083 13.1711 21.3083 12.7643 20.9015L8.59766 16.7349L10.0708 15.2617L13.5009 18.6918L21.931 10.2617L23.4041 11.7349Z" fill="white"/></svg>');
}

.modal_thanks {
  background-image: url("../img/thanks_bg.png");
  padding: 70px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-size: cover;
  max-width: 570px;
}
.modal_thanks__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 16px;
}
.modal_thanks__subtitle {
  font-size: 18px;
  line-height: 1.36;
}

.modal_video {
  max-width: 1280px;
  width: 90vw;
  aspect-ratio: 16/10;
  position: static;
}
@media (max-width: 767px) {
  .modal_video {
    padding: 0;
  }
}
.modal_video iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.modal_video .modal_close {
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M0.703125 14.5717L14.7045 0.710938M0.703125 0.85004L14.7045 14.7108" stroke="white" stroke-width="2"/></svg>');
}

.reg {
  background-image: url("../img/reg_bg.jpg");
  background-size: cover;
  border-radius: 16px;
  background-color: #1A1B1C;
  -webkit-box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
          box-shadow: 0 30px 40px 0 rgba(155, 143, 159, 0.15);
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1024px;
  width: calc(100% - 32px);
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%, 200px);
      -ms-transform: translate(-50%, 200px);
          transform: translate(-50%, 200px);
  bottom: 16px;
  z-index: 5;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .reg {
    padding: 12px;
  }
}
@media (max-width: 767px) {
  .reg {
    padding: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 8px;
  }
}
.reg.active {
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.reg.locked {
  -webkit-transform: translate(-50%, var(--locked-offset, 0px));
      -ms-transform: translate(-50%, var(--locked-offset, 0px));
          transform: translate(-50%, var(--locked-offset, 0px));
}
.reg_left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.reg_right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 230px;
          flex: 0 1 230px;
}
@media (max-width: 767px) {
  .reg_right {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    width: 100%;
  }
}
.reg_title {
  background: -webkit-gradient(linear, left top, right top, from(#FFF0E6), to(#FA8ACC));
  background: -o-linear-gradient(left, #FFF0E6 0%, #FA8ACC 100%);
  background: linear-gradient(90deg, #FFF0E6 0%, #FA8ACC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .reg_title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .reg_title {
    display: none;
  }
}
.reg_subtitle {
  font-size: 18px;
  color: #fff;
  line-height: 1.36;
}
@media (max-width: 991px) {
  .reg_subtitle {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .reg_subtitle {
    display: none;
  }
}
.reg_subtitle span {
  color: #F5B975;
  font-weight: bold;
}
.reg_subtitle b {
  font-weight: bold;
}
.reg_mob {
  display: none;
  font-size: 16px;
  line-height: 1.28;
  color: #fff;
}
@media (max-width: 767px) {
  .reg_mob {
    display: block;
  }
}
.reg_mob span {
  color: #F5B975;
  font-weight: bold;
}
.reg_mob b {
  font-weight: bold;
}
@media (max-width: 767px) {
  .reg .btn_colored {
    width: 100%;
  }
}
.reg .btn_colored::before {
  background-color: #fff;
}
.reg .btn_colored:hover span {
  color: #1A1B1C;
}

.modal_cookie .modal_block {
  max-width: 570px;
  padding: 0;
}
.modal_cookie .modal_close {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M4.92969 19.0708L19.0718 4.92871M4.92969 4.92871L19.0718 19.0708" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="square"/></svg>');
}
.modal_cookie .modal_block__right {
  padding: 0;
}
.modal_cookie .modal_cookie__top {
  background-image: url("../img/cookie_bg.jpg");
  background-size: cover;
  background-position: 50% 50%;
  padding: 32px;
}
@media (max-width: 767px) {
  .modal_cookie .modal_cookie__top {
    padding: 16px;
  }
}
.modal_cookie .modal_block__title {
  color: #fff;
}
.modal_cookie form {
  padding: 32px;
}
@media (max-width: 767px) {
  .modal_cookie form {
    padding: 16px;
  }
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1370px;
  min-width: 320px;
  padding: 0 15px;
}
@media (max-width: 1280px) {
  .container {
    width: 1170px;
  }
}
@media (max-width: 1199px) {
  .container {
    width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 540px;
  }
}
@media (max-width: 575px) {
  .container {
    width: 100%;
  }
}