/*!***************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/Cell/cell.scss ***!
  \***************************************************************************************************************************/
.cell {
  --cell-text-color: #13181BF5;
  --cell-error-color: #e64646;
  --cell-border-color: #c4c4c4;
  --cell-disabled-color: #c4c4c4;
  --cell-background-color: #ffffff;
  --cell-border-color-on-focus: #00b2df;
}
.cell--mb24 {
  margin-bottom: 24px;
}
.cell__name {
  position: relative;
  display: block;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 18px;
  color: var(--cell-text);
  background-color: transparent;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .cell__name {
    font-size: 14px;
  }
}
.cell__content {
  position: relative;
  height: 100%;
}
.cell__content-text {
  margin-top: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -2%;
  text-align: center;
}
.cell__data {
  display: flex;
  flex-direction: row;
  position: relative;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 4px 14px -4px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}
.cell__error-message {
  margin-top: 6px;
  font-size: 14px;
  line-height: 140%;
  color: var(--cell-error-color);
  display: none;
}
.cell__identificator {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translate(0, -50%);
}
.cell__icon {
  display: block;
}
.cell.js-focus .cell__data {
  border-color: var(--cell-border-color-on-focus);
}
.cell.js-cell-error .cell__data {
  border-color: var(--cell-error-color);
}
.cell.js-cell-disabled .cell__data {
  background-color: var(--cell-disabled-color);
  pointer-events: none;
  cursor: not-allowed;
}
.cell.js-cell-hidden {
  display: none;
}
/*!*************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/CellInput/cellInput.scss ***!
  \*************************************************************************************************************************************/
.cell-input {
  --cell-input-text-color: #333F48;
  --cell-input-placeholder: rgba(19, 24, 27, 0.56);
  width: 100%;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  color: var(--cell-input-text-color);
  border: none;
  outline: none;
  background-color: transparent;
}
.cell-input::placeholder {
  font-size: 18px;
  line-height: 140%;
  color: var(--cell-input-placeholder);
}
@media screen and (max-width: 768px) {
  .cell-input::placeholder {
    font-size: 16px;
  }
}
/*!***********************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/other/PolisPopup/Popup.scss ***!
  \***********************************************************************************************************************************/
.polis-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 121;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.polis-popup.is-active {
  opacity: 1;
  visibility: visible;
}
.polis-popup__close {
  width: 23px;
  height: 23px;
  cursor: pointer;
}
.polis-popup__container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.polis-popup--title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.polis-popup__text {
  color: var(--color-black);
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  margin-bottom: 29px;
}
.polis-popup__form {
  position: relative;
  border-radius: 24px;
  background: #F2F5F8;
  border: 1px solid hsla(0, 0%, 100%, 0.5);
  backdrop-filter: blur(54px);
  padding: 40px;
  width: 60%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .polis-popup__form {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .polis-popup__form {
    padding: 30px;
    width: 90%;
  }
}
@media screen and (max-width: 580px) {
  .polis-popup__form {
    position: absolute;
    top: 0;
  }
}
@media screen and (max-width: 480px) {
  .polis-popup__form {
    width: 90%;
    padding: 14px;
  }
}
.polis-popup--block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.polis-popup--content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.polis-popup--flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.polis-popup--flex .arrow {
  max-height: 40px;
  width: 14px;
  margin: 0 auto;
}
.polis-popup--flex .certificate {
  max-height: 258px;
  width: 396px;
  object-fit: fill;
  margin: 0 auto;
  border-radius: 24px;
}
/*!******************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/other/Popup/popup.scss ***!
  \******************************************************************************************************************************/
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup.is-active {
  opacity: 1;
  visibility: visible;
}
.popup.is-active .popup__content {
  transform: translate(0, 0);
  opacity: 1;
}
.popup__container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 30px 10px;
}
.popup__content {
  position: relative;
  max-width: 560px;
  width: 100%;
  padding: 50px;
  border-radius: 24px;
  background-color: #e0d4ea;
  transition: 0.5s;
  transform: translate(0, -100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .popup__content {
    padding: 20px 24px 24px;
  }
}
.popup__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -2%;
}
.popup__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.popup__close-icon {
  fill: var(--icon-primery-color);
  transition: 0.5s;
}
.popup__close-icon:hover {
  fill: var(--color-blue);
}
/*!*****************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/tabs/Tabs1/tabs1.scss ***!
  \*****************************************************************************************************************************/
@charset "UTF-8";
.tabs1 {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .tabs1 {
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE и Edge */
  }
}
.tabs1__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .tabs1__flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
.tabs1__list {
  display: flex;
  align-self: flex-start;
  margin: 0 auto;
  margin-bottom: 24px;
  padding: 6px;
  background-color: #E8EEF2;
  border-radius: 8px;
}
.tabs1__name {
  padding: 14px 24px;
  font-size: 16px;
  line-height: 100%;
  color: rgba(19, 24, 27, 0.9607843137);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.5s;
}
.tabs1__name.active {
  color: #21BA72;
  background-color: var(--color-white);
  box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
}
.tabs1__name:hover {
  color: rgba(19, 24, 27, 0.9607843137);
}
@media screen and (max-width: 1024px) {
  .tabs1__right {
    margin-top: 12px;
  }
}
/*!*******************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/dropdowns/dropdowns1/dropdown1.scss ***!
  \*******************************************************************************************************************************************/
.dropdown1__arrow {
  display: flex;
  justify-content: center;
}
.dropdown1__item {
  border-radius: 24px;
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.5019607843);
  width: 100%;
  padding: 44px;
}
@media screen and (max-width: 480px) {
  .dropdown1__item {
    padding: 20px 40px;
  }
}
.dropdown1__item:not(:last-child) {
  margin-bottom: 24px;
}
.dropdown1__item.active .js-dropdown1__rotate {
  transform: rotate(180deg);
}
.dropdown1__item.disabled {
  pointer-events: none;
  opacity: 0.6;
}
.dropdown1__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.dropdown1__name {
  display: flex;
  align-items: center;
}
.dropdown1__number {
  margin-right: 6px;
}
.dropdown1__content {
  display: none;
  margin: 16px 0 0;
}
.dropdown1__card-title {
  flex-grow: 1;
}
.dropdown1 .js-dropdown1__rotate {
  transition: 0.5s;
}

.prize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(530px, 1fr));
  gap: 24px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .prize-grid {
    display: flex;
    flex-direction: column;
  }
}
.prize-grid__item {
  background: #fff;
  border: 1px solid #00c389;
  border-radius: 110px;
  padding: 18px;
  font-weight: 600;
  font-style: Bold;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .prize-grid__item {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 480px) {
  .prize-grid__item {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
.prize-grid__item strong {
  font-weight: 700;
}
/*!*******************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/dropdowns/dropdowns2/dropdown1.scss ***!
  \*******************************************************************************************************************************************/
.dropdown2 {
  margin-bottom: 40px;
}
.dropdown2__item {
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  border-radius: 24px;
  padding: 24px;
}
.dropdown2__item:not(:last-child) {
  margin-bottom: 24px;
}
.dropdown2__item.active .js-dropdown1__rotate {
  transform: rotate(180deg);
}
.dropdown2__item.disabled {
  pointer-events: none;
  opacity: 0.6;
}
.dropdown2__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.dropdown2__name {
  display: flex;
  align-items: center;
}
.dropdown2__number {
  margin-right: 6px;
}
.dropdown2__content {
  display: none;
  margin: 16px 0 0;
}
.dropdown2__card-title {
  flex-grow: 1;
}
.dropdown2 .js-dropdown1__rotate {
  transition: 0.5s;
}
/*!*****************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./pages/main/main.scss ***!
  \*****************************************************************************************************************/
.start {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.start__img-box {
  background: linear-gradient(-10deg, rgba(19, 24, 27, 0.9607843137) 50%, #ffffff 50%);
}
.start__img {
  margin: 0 auto;
}
.start__block {
  flex-grow: 1;
  width: 100%;
  background-color: rgba(19, 24, 27, 0.9607843137);
}

.icon {
  fill: var(--icon-primery-color);
}
.icon--black {
  fill: var(--color-black);
}

.form__flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form__el {
  width: 48%;
}
.form__el:not(:last-child) {
  margin-bottom: 24px;
}
.form__buttons {
  display: flex;
  gap: 24px;
}
.form__group {
  display: flex;
  gap: 12px;
}
.form__error {
  display: none;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 140%;
  color: #e64646;
}
.form.js-form-hidden {
  display: none;
}
.form .checkbox__error-message {
  display: none;
  margin-top: 5px;
  font-size: 16px;
  line-height: 20px;
  color: #e64646;
}

.circles-container {
  position: relative;
  width: 100%;
  height: 786px;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .circles-container {
    height: 462px;
  }
}
@media screen and (max-width: 480px) {
  .circles-container {
    height: 333px;
  }
}

.circle {
  cursor: pointer;
  position: absolute;
  transition: transform 0.6s ease;
}
.circle--1 {
  top: 20%;
  left: 5%;
  width: 666px;
}
@media screen and (max-width: 1200px) {
  .circle--1 {
    top: 35%;
    left: 0%;
    width: 558px;
  }
}
@media screen and (max-width: 768px) {
  .circle--1 {
    top: 25%;
    left: 0%;
    width: 374px;
  }
}
@media screen and (max-width: 480px) {
  .circle--1 {
    top: 0%;
    left: 10%;
    width: 223px;
  }
}
.circle--1:hover {
  transform: translate(10px, -10px);
}
.circle--2 {
  top: 5%;
  left: 45%;
  width: 474px;
}
@media screen and (max-width: 1200px) {
  .circle--2 {
    top: 15%;
    left: 35%;
    width: 413px;
  }
}
@media screen and (max-width: 768px) {
  .circle--2 {
    top: 0%;
    left: 30%;
    width: 288px;
  }
}
@media screen and (max-width: 480px) {
  .circle--2 {
    top: 25%;
    left: 44%;
    width: 160px;
  }
}
.circle--2:hover {
  transform: translate(-12px, -14px);
}
.circle--3 {
  top: 55%;
  left: 50%;
  width: 420px;
}
@media screen and (max-width: 1200px) {
  .circle--3 {
    top: 58%;
    left: 45%;
    width: 365px;
  }
}
@media screen and (max-width: 768px) {
  .circle--3 {
    top: 46%;
    left: 44%;
    width: 252px;
  }
}
@media screen and (max-width: 480px) {
  .circle--3 {
    top: 45%;
    left: 5%;
    width: 130px;
  }
}
.circle--3:hover {
  transform: translate(12px, 6px);
}
.circle--4 {
  top: 35%;
  left: 75%;
  width: 312px;
}
@media screen and (max-width: 1200px) {
  .circle--4 {
    top: 38%;
    left: 65%;
    width: 290px;
  }
}
@media screen and (max-width: 768px) {
  .circle--4 {
    top: 16%;
    left: 65%;
    width: 204px;
  }
}
@media screen and (max-width: 480px) {
  .circle--4 {
    top: 65%;
    left: 25%;
    width: 115px;
  }
}
.circle--4:hover {
  transform: translate(-10px, 12px);
}
.circle--5 {
  top: 60%;
  left: 75%;
  width: 220px;
}
@media screen and (max-width: 1200px) {
  .circle--5 {
    top: 65%;
    left: 74%;
    width: 197px;
  }
}
@media screen and (max-width: 768px) {
  .circle--5 {
    top: 56%;
    left: 75%;
    width: 138px;
  }
}
@media screen and (max-width: 480px) {
  .circle--5 {
    top: 70%;
    left: 56%;
    width: 70px;
  }
}
.circle--5:hover {
  transform: translate(8px, -10px);
}

.slider-container {
  margin: 0 auto;
  padding: 40px 20px;
}
@media screen and (max-width: 1024px) {
  .slider-container {
    padding: 20px 0;
  }
}
.slider-container .swiper {
  border-radius: 20px;
}
.slider-container .swiper-slide {
  border-radius: 20px;
  padding: 24px;
  padding-bottom: 32px;
  transition: transform 0.3s;
}
@media screen and (max-width: 480px) {
  .slider-container .swiper-slide {
    padding: 0;
  }
}
.slider-container .swiper-slide img {
  width: 100%;
  max-height: 341px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;
  background: url(../assets/img/background-slide.png) center/cover no-repeat;
}
.slider-container .swiper-slide h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
}
@media screen and (max-width: 768px) {
  .slider-container .swiper-slide h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
  }
}
.slider-container .swiper-slide p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -2%;
}
@media screen and (max-width: 768px) {
  .slider-container .swiper-slide p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
.slider-container .swiper-button-next,
.slider-container .swiper-button-prev {
  color: #222;
  background: rgba(255, 255, 255, 0.5019607843);
  backdrop-filter: blur(4px);
  width: 60px;
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  top: 45%;
  transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .slider-container .swiper-button-next,
  .slider-container .swiper-button-prev {
    display: none;
  }
}
.slider-container .swiper-button-next::after,
.slider-container .swiper-button-prev::after {
  font-size: 16px;
}

.swiper-pagination {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0px;
  bottom: 0px !important;
}

.swiper-pagination-bullet {
  width: 19px;
  height: 19px;
  background: transparent !important;
  opacity: 1 !important;
}
@media screen and (max-width: 550px) {
  .swiper-pagination-bullet {
    margin: 0 !important;
  }
}

.swiper-pagination-bullet-active .path {
  display: inline-block !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash linear 120s;
  animation-iteration-count: unset;
}

.swiper-pagination-bullet-active .inner-circle {
  fill: var(--color-green2);
}

.path {
  display: none;
}

.path:not(:last-child) {
  margin-right: 12px;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.ns-banner {
  margin-bottom: 0;
}
.ns-banner__content {
  padding: 104px 0 379px;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .ns-banner__content {
    padding: 27px 0 143px;
  }
}
@media screen and (max-width: 1024px) {
  .ns-banner__content {
    padding: 68px 0 165px;
  }
}
@media screen and (max-width: 768px) {
  .ns-banner__content {
    padding: 49px 0 104px;
  }
}
@media screen and (max-width: 680px) {
  .ns-banner__content {
    padding: 24px 0 43px;
  }
}
.ns-banner__box {
  max-width: 518px;
  display: grid;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .ns-banner__box {
    gap: 32px;
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .ns-banner__box {
    gap: 24px;
    max-width: 318px;
  }
}
.ns-banner__box-title {
  display: flex;
  gap: 5px;
}
.ns-banner__title {
  font-weight: 600;
  font-size: 140px;
  line-height: 165px;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(180deg, #333F48 36.06%, #D00E62 100%);
  height: fit-content;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .ns-banner__title {
    font-size: 125px;
    line-height: 148px;
  }
}
@media screen and (max-width: 1024px) {
  .ns-banner__title {
    font-size: 100px;
    line-height: 110px;
  }
}
@media screen and (max-width: 768px) {
  .ns-banner__title {
    font-size: 70px;
    line-height: 80px;
  }
}
@media screen and (max-width: 680px) {
  .ns-banner__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.ns-banner__title-right {
  position: absolute;
  top: 9%;
  right: -125%;
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  .ns-banner__title-right {
    top: 12%;
    right: -100%;
  }
}
@media screen and (max-width: 1024px) {
  .ns-banner__title-right {
    top: 8%;
    right: -125%;
  }
}
@media screen and (max-width: 768px) {
  .ns-banner__title-right {
    top: 5%;
    right: -100%;
  }
}
@media screen and (max-width: 680px) {
  .ns-banner__title-right {
    top: 0;
    right: 17%;
  }
}
@media screen and (max-width: 480px) {
  .ns-banner__title-right {
    position: initial;
  }
}
.ns-banner__date {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .ns-banner__date {
    font-size: 24px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .ns-banner__date {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .ns-banner__date {
    font-size: 16px;
    line-height: 20px;
  }
}
.ns-banner__desc {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .ns-banner__desc {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .ns-banner__desc {
    font-size: 16px;
    line-height: 20px;
  }
}
.ns-banner__link {
  padding: 19px 64px;
  border-radius: 110px;
  background-color: #a61e61;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-white);
  text-decoration: none;
  width: fit-content;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .ns-banner__link {
    padding: 19px;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .ns-banner__link {
    padding: 13px;
    font-size: 16px;
    line-height: 21px;
  }
}
@media screen and (max-width: 480px) {
  .ns-banner__link {
    font-size: 14px;
    line-height: 20px;
  }
}

.title {
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  color: var(--color-black);
}
@media screen and (max-width: 1200px) {
  .title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.title--fs-24 {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
}
.title--fs-90--700 {
  font-weight: 700;
  font-size: 90px;
  line-height: 108%;
  letter-spacing: 0%;
}
@media screen and (max-width: 1200px) {
  .title--fs-90--700 {
    font-weight: 700;
    font-size: 70px;
    line-height: 76px;
    letter-spacing: 0%;
  }
}
@media screen and (max-width: 1024px) {
  .title--fs-90--700 {
    font-weight: 700;
    font-size: 60px;
    line-height: 66px;
    letter-spacing: 0%;
  }
}
@media screen and (max-width: 768px) {
  .title--fs-90--700 {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0%;
  }
}
@media screen and (max-width: 480px) {
  .title--fs-90--700 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
  }
}
.title--fs-70--700 {
  font-weight: 700;
  font-size: 70px;
  line-height: 108%;
  letter-spacing: 0%;
}
@media screen and (max-width: 1200px) {
  .title--fs-70--700 {
    font-weight: 700;
    font-size: 70px;
    line-height: 76px;
    letter-spacing: 0%;
  }
}
@media screen and (max-width: 1024px) {
  .title--fs-70--700 {
    font-weight: 700;
    font-size: 60px;
    line-height: 66px;
    letter-spacing: 0%;
  }
}
@media screen and (max-width: 768px) {
  .title--fs-70--700 {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0%;
  }
}
@media screen and (max-width: 480px) {
  .title--fs-70--700 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
  }
}
.title--fs-48--300 {
  font-weight: 300;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: 0%;
}
.title--fs-32--600 {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
}
.title--center {
  text-align: center;
}

.text {
  line-height: 140%;
}
@media (max-width: 767px) {
  .text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1220);
  }
}
@media (min-width: 767px) {
  .text {
    font-size: calc(16px + 2 * 100vw / 1220);
  }
}
.text--fs-14 {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}
.text--fs-16--600 {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -2%;
}
.text--fs-70--300 {
  font-weight: 300;
  font-size: 70px;
  line-height: 108%;
  letter-spacing: 0%;
}
.text--fs-22 {
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
}
.text--fs-24 {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
}
.text--fs-24--600 {
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -2%;
}
@media screen and (max-width: 480px) {
  .text--fs-24--600 {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}
.text--fs-18 {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -2%;
}
.text--fs-18--300 {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -2%;
  vertical-align: middle;
}
.text--fs-18--700 {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -2%;
}
.text--fs-24--400 {
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: -2%;
}
@media screen and (max-width: 1200px) {
  .text--fs-24--400 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 1024px) {
  .text--fs-24--400 {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 768px) {
  .text--fs-24--400 {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 480px) {
  .text--fs-24--400 {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
.text--fs-32--400 {
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -2%;
}
@media screen and (max-width: 1200px) {
  .text--fs-32--400 {
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 1024px) {
  .text--fs-32--400 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 768px) {
  .text--fs-32--400 {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 480px) {
  .text--fs-32--400 {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
.text--fs-32--600 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -2%;
}
@media screen and (max-width: 1200px) {
  .text--fs-32--600 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 1024px) {
  .text--fs-32--600 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 768px) {
  .text--fs-32--600 {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 480px) {
  .text--fs-32--600 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
.text--center {
  text-align: center;
}
.text--green {
  color: #21BA72;
  text-decoration: underline;
}
.text--green-nound {
  color: #21BA72;
}
.text--white {
  font-weight: 300;
  color: white;
}

.now-time__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .now-time__content {
    gap: 40px;
  }
}
@media screen and (max-width: 480px) {
  .now-time__content {
    gap: 24px;
  }
}
.now-time__text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.now-time__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: 24px;
  border: 1px solid #FFFFFF;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.5019607843);
  min-height: 290px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .now-time__item {
    padding: 24px 26px;
    min-height: 265px;
  }
}
@media screen and (max-width: 1024px) {
  .now-time__item {
    padding: 24px 26px;
    min-height: 231px;
  }
}
@media screen and (max-width: 768px) {
  .now-time__item {
    padding: 24px 26px;
    min-height: 155px;
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .now-time__item {
    min-height: 231px;
  }
}
.now-time__title {
  font-weight: 600;
  font-style: Semibold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .now-time__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}
.now-time__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -2%;
}
@media screen and (max-width: 1024px) {
  .now-time__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
.now-time__img {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .now-time__img {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 1024px) {
  .now-time__img {
    width: calc(100% - 24px);
  }
}
@media screen and (max-width: 768px) {
  .now-time__img {
    width: inherit;
  }
}
.now-time__img img {
  width: 100%;
}
.now-time__desc {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .now-time__desc {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .now-time__desc {
    font-size: 24px;
    line-height: 32px;
  }
}
.now-time__desc-link {
  color: #d00d62;
}
.now-time__desc2 {
  margin-top: 24px;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -2%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .now-time__desc2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.now-time__desc2-link {
  color: #d00d62;
}

.back-color {
  background: linear-gradient(96.88deg, rgba(33, 186, 114, 0.5) -24.25%, rgba(255, 255, 255, 0.5) 121.73%), radial-gradient(36.66% 109.18% at 3.89% 84.97%, #42E3B4 0%, rgba(66, 227, 180, 0) 100%), radial-gradient(56.97% 162.43% at 106.97% 6.22%, rgba(98, 214, 251, 0.5) 2.15%, rgba(98, 214, 251, 0) 100%);
}

.list {
  display: grid;
  gap: 24px;
}
.list__col3 {
  grid-template-columns: repeat(3, 1fr);
}
.list__col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.block-info__content {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .block-info__content {
    gap: 40px;
  }
}
.block-info__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 55px 50px;
  border-radius: 24px;
  background-color: #e0d4ea;
}
@media screen and (max-width: 1024px) {
  .block-info__item {
    padding: 30px 24px;
  }
}
@media screen and (max-width: 768px) {
  .block-info__item {
    gap: 24px;
  }
}
.block-info__item--blue {
  background-color: #eef3ff;
}
.block-info__item-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 53px;
}
@media screen and (max-width: 1200px) {
  .block-info__item-title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .block-info__item-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.block-info__item-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .block-info__item-text {
    font-size: 18px;
    line-height: 26px;
  }
}
.block-info__item-link {
  text-decoration: none;
  padding: 19px 64px;
  border-radius: 110px;
  background-color: var(--color-white);
  width: fit-content;
  margin-top: auto;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .block-info__item-link {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 480px) {
  .block-info__item-link {
    width: 100%;
    text-align: center;
  }
}

.programs__content {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .programs__content {
    gap: 40px;
  }
}
.programs__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 45px 40px;
  border-radius: 24px;
  background-color: #eef3ff;
}
@media screen and (max-width: 1024px) {
  .programs__item {
    padding: 30px 24px;
  }
}
.programs__item-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -2%;
}
@media screen and (max-width: 480px) {
  .programs__item-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.programs__item-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -2%;
}
@media screen and (max-width: 480px) {
  .programs__item-text {
    font-size: 16px;
    line-height: 20px;
  }
}
.programs__item-list {
  display: grid;
  gap: 3px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -2%;
}
.programs__item-list li {
  position: relative;
  padding-left: 27px;
}
.programs__item-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #333f48;
}

.first-ship__content {
  position: relative;
  padding: 50px 0 79px;
}
@media screen and (max-width: 1200px) {
  .first-ship__content {
    display: grid;
    grid-template-columns: 0.76fr 1fr;
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .first-ship__content {
    gap: 74px;
  }
}
@media screen and (max-width: 768px) {
  .first-ship__content {
    gap: 7px;
  }
}
@media screen and (max-width: 680px) {
  .first-ship__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.first-ship__box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 608px;
}
@media screen and (max-width: 1200px) {
  .first-ship__box {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .first-ship__box {
    gap: 32px;
  }
}
.first-ship__year {
  font-weight: 600;
  font-size: 128px;
  line-height: 141px;
}
@media screen and (max-width: 1200px) {
  .first-ship__year {
    font-size: 48px;
    line-height: 53px;
  }
}
@media screen and (max-width: 480px) {
  .first-ship__year {
    text-align: center;
  }
}
.first-ship__title {
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .first-ship__title {
    font-size: 32px;
    line-height: 35px;
  }
}
@media screen and (max-width: 768px) {
  .first-ship__title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (max-width: 480px) {
  .first-ship__title {
    text-align: center;
  }
}
.first-ship__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}
@media screen and (max-width: 1024px) {
  .first-ship__text {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .first-ship__text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 480px) {
  .first-ship__text {
    text-align: center;
  }
}
.first-ship__img {
  position: absolute;
  right: -5%;
  top: -14%;
}
@media screen and (max-width: 1200px) {
  .first-ship__img {
    position: initial;
    display: flex;
    justify-content: end;
  }
}
@media screen and (max-width: 768px) {
  .first-ship__img img {
    max-height: 289px;
  }
}
@media screen and (max-width: 680px) {
  .first-ship__img img {
    max-height: initial;
  }
}

.space__content {
  padding: 108px 63px 107px;
  border-radius: 30px;
  background: linear-gradient(125.3deg, #E0D4EA 2.18%, #EEF3FF 54.19%, #E7DBCC 98.35%);
  position: relative;
}
@media screen and (max-width: 1200px) {
  .space__content {
    padding: 67px 54px;
  }
}
@media screen and (max-width: 1024px) {
  .space__content {
    padding: 67px 50px;
  }
}
@media screen and (max-width: 768px) {
  .space__content {
    padding: 40px 0 0;
    display: grid;
    gap: 25px;
  }
}
@media screen and (max-width: 480px) {
  .space__content {
    padding: 24px 0 0;
    gap: 22px;
  }
}
.space__box {
  display: grid;
  gap: 40px;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 768px) {
  .space__box {
    width: calc(100% - 80px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .space__box {
    width: calc(100% - 40px);
    gap: 24px;
  }
}
.space__title {
  text-align: left;
  max-width: 626px;
}
@media screen and (max-width: 1200px) {
  .space__title {
    font-size: 32px;
    line-height: 40px;
    max-width: 395px;
  }
}
@media screen and (max-width: 768px) {
  .space__title {
    max-width: initial;
  }
}
@media screen and (max-width: 480px) {
  .space__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.space__link {
  padding: 19px 64px;
  border-radius: 110px;
  background-color: var(--color-white);
  width: fit-content;
  margin-top: auto;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-black);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .space__link {
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
  }
}
.space__img {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  .space__img {
    max-width: 485px;
  }
}
@media screen and (max-width: 768px) {
  .space__img {
    position: initial;
    max-width: 534px;
    margin-left: auto;
  }
}

.participate {
  background: #F2F5F8;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.participate__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 1200px) {
  .participate__title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media screen and (max-width: 768px) {
  .participate__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .participate__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.participate__content {
  max-width: 840px;
  margin: 40px auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .participate__content {
    gap: 40px;
    padding: 60px 0 49px;
  }
}
@media screen and (max-width: 1024px) {
  .participate__content {
    gap: 66px;
    padding: 60px 0 65px;
  }
}
@media screen and (max-width: 768px) {
  .participate__content {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 45px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .participate__content {
    gap: 48px;
  }
}
.participate__form {
  display: grid;
  gap: 40px;
}
.participate__present {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .participate__present {
    gap: 24px;
  }
}
.participate__box {
  display: grid;
  gap: 10px;
  max-width: 482px;
}
.participate__box-number {
  font-weight: 700;
  font-size: 40px;
  line-height: 32px;
  letter-spacing: -2%;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(265.53deg, #D00E62 -3.82%, #ED5295 105.48%);
}
@media screen and (max-width: 480px) {
  .participate__box-number {
    font-size: 24px;
  }
}
.participate__box-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -2%;
}
@media screen and (max-width: 1024px) {
  .participate__box-text {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 480px) {
  .participate__box-text {
    font-size: 16px;
    line-height: 20px;
  }
}
.participate__img {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .participate__img {
    position: initial;
    display: flex;
    justify-content: center;
  }
}
.participate__btn {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
  color: #21BA72;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -2%;
}

.cell {
  --cell-text-color: #13181BF5;
  --cell-error-color: #e64646;
  --cell-border-color: #c4c4c4;
  --cell-disabled-color: #c4c4c4;
  --cell-background-color: #ffffff;
  --cell-border-color-on-focus: #00b2df;
}
.cell--mb24 {
  margin-bottom: 24px;
}
.cell__name {
  position: relative;
  display: block;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 18px;
  color: var(--cell-text);
  background-color: transparent;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .cell__name {
    font-size: 14px;
  }
}
.cell__content {
  position: relative;
  height: 100%;
}
.cell__content-text {
  margin-top: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -2%;
  text-align: center;
}
.cell__data {
  display: flex;
  flex-direction: row;
  position: relative;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 4px 14px -4px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}
.cell__error-message {
  margin-top: 6px;
  font-size: 14px;
  line-height: 140%;
  color: var(--cell-error-color);
  display: none;
}
.cell__identificator {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translate(0, -50%);
}
.cell__icon {
  display: block;
}
.cell.js-focus .cell__data {
  border-color: var(--cell-border-color-on-focus);
}
.cell.js-cell-error .cell__data {
  border-color: var(--cell-error-color);
}
.cell.js-cell-disabled .cell__data {
  background-color: var(--cell-disabled-color);
  pointer-events: none;
  cursor: not-allowed;
}
.cell.js-cell-hidden {
  display: none;
}

.cell-input {
  --cell-input-text-color: #333F48;
  --cell-input-placeholder: rgba(19, 24, 27, 0.56);
  width: 100%;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  color: var(--cell-input-text-color);
  border: none;
  outline: none;
  background-color: transparent;
}
.cell-input::placeholder {
  font-size: 18px;
  line-height: 140%;
  color: var(--cell-input-placeholder);
}
@media screen and (max-width: 768px) {
  .cell-input::placeholder {
    font-size: 16px;
  }
}

.tooltip {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  outline: 1px solid #21BA72;
  outline-offset: -1px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.tooltip__content {
  display: none;
  position: absolute;
  z-index: 222;
  top: -20px;
  right: -20px;
  transform: translateY(-100%);
  font-size: 16px;
  font-family: "SBSansDisplay Text";
  line-height: 1.2 !important;
  font-weight: 300;
  color: white;
  background: #21BA72;
  border-radius: 10px;
  border: 1px solid grey;
  padding: 20px 10px 20px 20px;
  width: auto;
}
.tooltip__content::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 25px;
  width: 20px;
  height: 20px;
  border-top: 1px solid grey;
  border-right: 1px solid grey;
  background: #21BA72;
  transform: translateY(50%) rotate(135deg);
}
.tooltip:hover .tooltip__content {
  display: block;
}

.ticket {
  border-radius: 1rem;
  color: #222;
}
.ticket__title {
  font-weight: 300;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #21BA72;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .ticket__title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
  }
}
@media screen and (max-width: 768px) {
  .ticket__title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
  }
}
.ticket__image {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 277px;
  border-bottom-right-radius: 24px;
}
.ticket__image img {
  border-bottom-right-radius: 24px;
}
.ticket__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .ticket__features {
    grid-template-columns: 1fr;
  }
}
.ticket__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 38px;
  max-width: 310px;
}
.ticket__feature {
  background: #F2F5F8;
  box-shadow: 4px 15px 24px -8px rgba(73, 75, 89, 0.0392156863);
  backdrop-filter: blur(26px);
  border-radius: 24px;
  padding: 38px 0 0 28px;
  display: flex;
  justify-content: space-between;
}
.ticket__feature h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  vertical-align: middle;
}
@media screen and (max-width: 1200px) {
  .ticket__feature h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 1024px) {
  .ticket__feature h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 768px) {
  .ticket__feature h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 480px) {
  .ticket__feature h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
.ticket__feature p {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -2%;
  vertical-align: middle;
}
@media screen and (max-width: 1200px) {
  .ticket__feature p {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 1024px) {
  .ticket__feature p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 768px) {
  .ticket__feature p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 480px) {
  .ticket__feature p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
.ticket__footer {
  background: linear-gradient(96.88deg, rgba(33, 186, 114, 0.5) -24.25%, rgba(255, 255, 255, 0.5) 121.73%), radial-gradient(36.66% 109.18% at 3.89% 84.97%, #42E3B4 0%, rgba(66, 227, 180, 0) 100%), radial-gradient(56.97% 162.43% at 106.97% 6.22%, rgba(98, 214, 251, 0.5) 2.15%, rgba(98, 214, 251, 0) 100%);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -2%;
  text-align: center;
}
.ticket__footer strong {
  font-weight: 700;
}

.button1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 23px 38px;
  text-align: center;
  vertical-align: middle;
  background-color: white;
  color: var(--color-black);
  border-radius: 12px;
  border: none;
  max-width: 352px;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
  transition: 0.5s;
  -webkit-appearance: none;
}
@media screen and (max-width: 480px) {
  .button1 {
    width: 100%;
  }
}
.button1--mt-40 {
  margin-top: 40px;
}
.button1--mw-40 {
  max-width: 238px;
  width: 100%;
}
.button1--green {
  background-color: #21BA72;
  color: #FFFFFF !important;
}
.button1--black {
  background-color: #333F48;
  color: #FFFFFF !important;
}
.button1--full {
  width: 100%;
  max-width: unset;
}
.button1--center {
  margin: 0 auto;
}
.button1__flex {
  display: flex;
  align-items: center;
}
.button1__el:not(:last-child) {
  margin-right: 8px;
}
.button1__icon {
  fill: #ffffff;
  transition: 0.5s;
}
.button1:hover {
  background-color: #eeeeee;
  color: #21BA72 !important;
}
.button1:hover .button1__icon {
  fill: #00b2df;
}
.button1:active {
  opacity: 0.5;
  transition: 0.1s;
}
.button1:focus {
  opacity: 0.9;
  transition: 0.1s;
}
.button1.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.button2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #00b2df;
  text-decoration: none;
  background-color: transparent;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
  transition: 0.5s;
  -webkit-appearance: none;
}
.button2__flex {
  display: flex;
  align-items: center;
}
.button2__el:not(:last-child) {
  margin-right: 8px;
}
.button2__icon {
  fill: #00b2df;
  transition: 0.5s;
}
.button2:hover {
  opacity: 0.7;
}
.button2:active {
  opacity: 0.5;
  transition: 0.1s;
}
.button2:focus {
  opacity: 0.9;
  transition: 0.1s;
}
.button2.disabled {
  opacity: 0.8;
  pointer-events: none;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 21px 64px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  background-color: #657179;
  border: 1px solid #657179;
  border-radius: 110px;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
  transition: 0.5s;
  -webkit-appearance: none;
}
.button__flex {
  display: flex;
  align-items: center;
}
.button__el:not(:last-child) {
  margin-right: 8px;
}
.button__icon {
  fill: #ffffff;
  transition: 0.5s;
}
.button:hover {
  color: var(--color-black);
  background-color: #ffffff;
}
.button:hover .button1__icon {
  fill: #00b2df;
}
.button:active {
  opacity: 0.5;
  transition: 0.1s;
}
.button:focus {
  opacity: 0.9;
  transition: 0.1s;
}
.button.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.checkbox {
  --checkbox-text-color: #13181BF5;
  --checkbox-link-color: #21BA72;
  --checkbo-window-color: #333F48;
}
.checkbox--margin {
  margin-bottom: 24px;
}
.checkbox__item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.checkbox__item--half {
  width: 50%;
  margin-bottom: 30px;
}
.checkbox__window {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 14px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid var(--checkbo-window-color);
}
@media screen and (max-width: 768px) {
  .checkbox__window {
    width: 14px;
    height: 14px;
  }
}
.checkbox__icon-mark {
  fill: var(--checkbox-link-color);
  opacity: 0;
  transition: 0.5s;
}
.checkbox__name {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -2%;
  color: var(--checkbox-text-color);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .checkbox__name {
    font-size: 14px;
    line-height: 18px;
    align-items: center;
  }
}
.checkbox__name a {
  color: var(--checkbox-link-color);
}
.checkbox__name--info {
  margin-right: 12px;
  min-width: 126px;
}
.checkbox__input:checked + .checkbox__name .checkbox__icon-mark {
  opacity: 1;
}
.checkbox__link {
  color: var(--checkbox-link-color);
  text-decoration: none;
  border-bottom: 1px solid var(--checkbox-link-color);
  transition: 0.5s;
}
.checkbox__link:hover {
  border-bottom: 1px solid transparent;
}
.checkbox__text--margin {
  margin-right: 5px;
}
.checkbox.js-checkbox-hidden {
  display: none;
}

.timer__content {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .timer__content {
    gap: 40px;
  }
}
.timer__list {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  .timer__list {
    gap: 17px;
  }
}
@media screen and (max-width: 768px) {
  .timer__list {
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .timer__list {
    gap: 4px;
  }
}
.timer__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.timer__item span {
  font-weight: 400;
  font-size: 32px;
  line-height: 52px;
  letter-spacing: -2%;
  text-align: center;
  color: #657179;
}
@media screen and (max-width: 1024px) {
  .timer__item span {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -2%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .timer__item span {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -2%;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .timer__item span {
    font-size: 14px;
    line-height: 19px;
  }
}
.timer__item .timer__number {
  display: flex;
  gap: 14px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .timer__item .timer__number {
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .timer__item .timer__number {
    gap: 4px;
  }
}
.timer__item .timer__number .digit {
  display: inline-block;
  font-weight: 600;
  font-size: 96px;
  line-height: 106px;
  letter-spacing: -2%;
  text-align: center;
  color: white;
  padding: 23px 30px;
  border-radius: 16px;
  background: #657179;
}
@media screen and (max-width: 1200px) {
  .timer__item .timer__number .digit {
    padding: 23px 20px;
    min-width: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .timer__item .timer__number .digit {
    padding: 23px 20px;
    min-width: 90px;
    font-weight: 600;
    font-size: 80px;
    line-height: 106px;
    letter-spacing: -2%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .timer__item .timer__number .digit {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    letter-spacing: -2%;
    text-align: center;
    min-width: 70px;
  }
}
@media screen and (max-width: 480px) {
  .timer__item .timer__number .digit {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
    text-align: center;
    padding: 8px 10px;
    min-width: 26px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .timer__item {
    gap: 16px;
  }
}
.timer__dotts {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-top: 4.5%;
}
@media screen and (max-width: 1200px) {
  .timer__dotts {
    padding-top: 5.5%;
  }
}
@media screen and (max-width: 768px) {
  .timer__dotts {
    padding-top: 5%;
  }
}
@media screen and (max-width: 480px) {
  .timer__dotts {
    gap: 6px;
  }
}
.timer__dott {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #657179;
}
@media screen and (max-width: 480px) {
  .timer__dott {
    width: 4px;
    height: 4px;
  }
}

.promo2 {
  background-color: #f5f8fa;
  border-radius: 24px;
  padding: 0 81px;
  max-width: 1241px;
  max-height: 380px;
  margin-bottom: 120px;
}
.promo2__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 91px;
}
.promo2__image-box {
  text-align: center;
}
.promo2__image-box img {
  max-width: 468px;
  height: auto;
}
.promo2__content {
  display: flex;
  flex-direction: column;
  max-width: 490px;
  width: 100%;
}
.promo2__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 32px;
}
.promo2__buttons {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 16px;
}
.promo2__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}
.promo2__btn--primary {
  background-color: #00b341;
  color: #fff;
  border: none;
}
.promo2__btn--ghost {
  background-color: transparent;
  color: #00b341;
  border: none;
}
.promo2__btn-icon {
  width: 20px;
  height: 20px;
}

.promo-steps {
  margin-top: 60px;
}
.promo-steps__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.promo-steps__left, .promo-steps__right {
  background-color: #fff;
  border-radius: 16px;
  padding: 31px 38px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  flex: 1 1 480px;
}
@media screen and (max-width: 768px) {
  .promo-steps__left, .promo-steps__right {
    padding: 30px;
  }
}
@media screen and (max-width: 480px) {
  .promo-steps__left, .promo-steps__right {
    padding: 30px 20px;
  }
}
.promo-steps__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.promo-steps__list {
  list-style: decimal inside;
  padding-left: 0;
  margin: 0;
}
.promo-steps__list li {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -2%;
}
@media screen and (max-width: 768px) {
  .promo-steps__list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
.promo-steps__list li a {
  color: #21BA72;
  text-decoration: underline;
}
.promo-steps__list li {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -2%;
}
.promo-steps__list li a {
  color: #21BA72;
  text-decoration: underline;
}
.promo-steps--block {
  list-style: decimal inside;
  padding-left: 0;
  margin: 0;
}
.promo-steps--block p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -2%;
}
@media screen and (max-width: 768px) {
  .promo-steps--block p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
  }
}
.promo-steps--block p a {
  color: #21BA72;
  text-decoration: underline;
}
.promo-steps--block li {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -2%;
}
.promo-steps--block li a {
  color: #21BA72;
  text-decoration: underline;
}
.promo-steps__title {
  color: #21BA72;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -2%;
  margin-bottom: 16px;
}
.promo-steps__link {
  display: inline-block;
  margin-top: 16px;
  color: #21BA72;
  text-decoration: underline;
  font-weight: 400;
}

.bonus-prize {
  width: 100%;
  align-items: center;
  display: flex;
  justify-items: center;
  margin: 40px 0;
}
.bonus-prize__content {
  align-self: center;
  margin: 0 auto;
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #FFFFFF;
  border-radius: 12px;
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -2%;
  text-align: center;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.5019607843);
}
@media screen and (max-width: 480px) {
  .bonus-prize__content {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
    text-align: center;
  }
}

/*# sourceMappingURL=main.css.map*/