/*!***************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/form/Cell/cell.scss ***!
  \***************************************************************************************************************************/
.cell {
  --cell-text-color: #003140;
  --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;
}
@media screen and (max-width: 480px) {
  .cell__content-text {
    letter-spacing: -4%;
  }
}
.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;
}
@media screen and (max-width: 1200px) {
  .cell__data {
    padding: 20px 18px;
  }
}
.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;
}
@media screen and (max-width: 1200px) {
  .cell-input {
    letter-spacing: -6%;
  }
}
.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/Quiz-popup/popup.scss ***!
  \***********************************************************************************************************************************/
@charset "UTF-8";
.quiz-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
  overflow: scroll;
  scrollbar-width: none;
}
.quiz-popup::-webkit-scrollbar {
  display: none;
}
.quiz-popup.hidden {
  display: none;
}
.quiz-popup__exit {
  display: flex;
  gap: 24px;
}
.quiz-popup__image {
  margin: 16px auto;
  text-align: center;
}
.quiz-popup__image img {
  margin-left: 52px;
  margin-right: 52px;
  max-width: 100%;
  max-height: 396px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 768px) {
  .quiz-popup__image img {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.quiz-popup__image.hidden {
  display: none;
}
.quiz-popup__container {
  background: #fff;
  padding: 24px;
  max-width: 1236px;
  width: 100%;
  border-radius: 10px;
  position: relative;
  animation: slideUp 0.4s ease;
}
.quiz-popup__close {
  background: none;
  border: none;
  font-size: 46px;
  cursor: pointer;
  font-weight: 400;
}
.quiz-popup__head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(6, 10, 12, 0.1215686275);
  padding-bottom: 24px;
  margin-bottom: 24px;
  margin-left: 52px;
  margin-right: 52px;
}
@media screen and (max-width: 768px) {
  .quiz-popup__head {
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 4px;
    margin-bottom: 4px;
  }
}
.quiz-popup__bottom {
  display: flex;
  justify-content: flex-end;
  margin-left: 52px;
  margin-right: 52px;
}
@media screen and (max-width: 768px) {
  .quiz-popup__bottom {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.quiz-popup__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  margin: auto 0;
}
.quiz-popup__progress {
  padding: 17px 26px;
  gap: 10px;
  border-radius: 24px;
  background: #E0D4EA;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -2%;
  vertical-align: middle;
  white-space: nowrap;
}
.quiz-popup__question {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 24px;
  margin-left: 52px;
}
@media screen and (max-width: 768px) {
  .quiz-popup__question {
    margin-left: 0px;
    margin-bottom: 4px;
  }
}
.quiz-popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-popup__form label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid rgba(6, 10, 12, 0.1215686275);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #522A5D;
  vertical-align: middle;
  padding-left: 60px;
  margin-left: 52px;
  margin-right: 52px;
}
@media screen and (max-width: 768px) {
  .quiz-popup__form label {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.quiz-popup__form label input[type=radio] {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  accent-color: #522A5D;
  cursor: pointer;
  display: none;
}
.quiz-popup__form label input[type=radio]:disabled {
  display: none;
}
.quiz-popup__form label.correct {
  color: #D00D62;
}
.quiz-popup__form label.correct::before {
  content: "✔️";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #D00D62;
}
.quiz-popup__form label.wrong {
  color: #e53e3e;
}
.quiz-popup__form label.wrong::before {
  content: "❌";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #e53e3e;
}
.quiz-popup__next {
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
  margin-top: 20px;
  margin-left: auto;
  padding: 10px 20px;
  background-color: #D00D62;
  border: 1px solid #D00D62;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
.quiz-popup__next.shown {
  transform: translateY(0);
  opacity: 1;
}
.quiz-popup__next.hidden {
  display: none;
}
.quiz-popup__final {
  font-size: 18px;
  text-align: center;
  padding: 20px;
}
.quiz-popup__explanation {
  transition: all 0.4s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 16px;
  padding: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -2%;
  border-radius: 4px;
  color: rgba(19, 24, 27, 0.9607843137);
  margin-left: 52px;
  margin-right: 52px;
}
@media screen and (max-width: 768px) {
  .quiz-popup__explanation {
    margin-left: 0px;
    margin-right: 0px;
    font-size: 16px;
    overflow: scroll;
  }
}
.quiz-popup__explanation.shown {
  opacity: 1;
  max-height: 200px;
}
.quiz-popup__explanation.hidden {
  display: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .quiz-popup__container {
    max-width: 960px;
    padding: 20px;
  }
  .quiz-popup__title {
    font-size: 28px;
    line-height: 36px;
  }
  .quiz-popup__progress {
    font-size: 20px;
    padding: 14px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .quiz-popup__container {
    max-width: 768px;
    padding: 20px;
  }
  .quiz-popup__title {
    font-size: 26px;
    line-height: 34px;
  }
  .quiz-popup__question {
    font-size: 22px;
    line-height: 30px;
  }
  .quiz-popup__form label {
    font-size: 18px;
    padding-left: 52px;
  }
  .quiz-popup__form label::before {
    font-size: 18px;
  }
  .quiz-popup__next {
    font-size: 16px;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 768px) {
  .quiz-popup__container {
    max-width: 90%;
    padding: 16px;
  }
  .quiz-popup__title {
    font-size: 24px;
    line-height: 32px;
  }
  .quiz-popup__progress {
    font-size: 18px;
    padding: 12px 16px;
  }
  .quiz-popup__question {
    font-size: 20px;
  }
  .quiz-popup__form label {
    font-size: 16px;
    padding-left: 46px;
  }
  .quiz-popup__image img {
    max-height: 260px;
  }
}
@media screen and (max-width: 480px) {
  .quiz-popup__title {
    font-size: 20px;
    line-height: 28px;
  }
  .quiz-popup__progress {
    font-size: 16px;
    padding: 10px 14px;
    max-height: 55px;
    margin: auto 0;
  }
  .quiz-popup__question {
    font-size: 18px;
    line-height: 24px;
  }
  .quiz-popup__form label {
    font-size: 15px;
    padding-left: 42px;
  }
  .quiz-popup__image img {
    max-height: 200px;
  }
  .quiz-popup__next {
    font-size: 14px;
    padding: 8px 12px;
  }
}

.win {
  background: #E7DBCC;
  background: linear-gradient(90deg, rgb(231, 219, 204) 0%, rgb(224, 212, 234) 100%);
  padding-bottom: 0;
}

.cosmos-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 32px;
  padding-bottom: 0;
  gap: 24px;
}
.cosmos-banner__content {
  max-width: 60%;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .cosmos-banner__content {
    margin-bottom: 4px;
  }
}
.cosmos-banner__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .cosmos-banner__title {
    margin-bottom: 6px;
  }
}
.cosmos-banner__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .cosmos-banner__text {
    margin-bottom: 4px;
  }
}
.cosmos-banner__text .dotted {
  display: inline-block;
  border-bottom: 1px dotted #8e9aa9;
}
.cosmos-banner__link {
  color: #e5005a;
  text-decoration: underline;
  transition: color 0.3s;
}
.cosmos-banner__link:hover {
  color: #b90047;
}
.cosmos-banner__image {
  flex-shrink: 0;
}
.cosmos-banner__image img {
  max-width: 469px;
  height: auto;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .cosmos-banner {
    flex-direction: column;
    text-align: center;
  }
  .cosmos-banner__content {
    max-width: 100%;
  }
  .cosmos-banner__image {
    margin-top: 24px;
  }
  .cosmos-banner__image img {
    max-width: 100%;
  }
}
/*!******************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/other/Tabs1/tabs1.scss ***!
  \******************************************************************************************************************************/
.tabs1 {
  display: flex;
  flex-direction: column;
}
.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: -3px auto 60px;
  padding: 2px;
  background-color: #E8EEF2;
  border-radius: 12px;
}
@media screen and (max-width: 1200px) {
  .tabs1__list {
    margin: -3px auto 47px;
  }
}
@media screen and (max-width: 768px) {
  .tabs1__list {
    margin: -3px auto 40px;
  }
}
@media screen and (max-width: 480px) {
  .tabs1__list {
    margin: -3px auto 24px;
  }
}
.tabs1__name {
  padding: 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 2%;
  color: rgba(19, 24, 27, 0.9607843137);
  border-radius: 12px;
  cursor: pointer;
  transition: 0.5s;
  min-width: 183px;
  text-align: center;
}
.tabs1__name.active {
  color: #a61e61;
  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: 480px) {
  .tabs1__name {
    font-size: 12px;
    line-height: 14px;
    padding: 13px 15px;
    min-width: initial;
  }
}
@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!./pages/main/main.scss ***!
  \*****************************************************************************************************************/
.start {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.start__img-box {
  background: linear-gradient(-10deg, #003140 50%, #ffffff 50%);
}
.start__img {
  margin: 0 auto;
}
.start__block {
  flex-grow: 1;
  width: 100%;
  background-color: #003140;
}

.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;
}

.ns-banner {
  margin-bottom: 0;
}
.ns-banner__content {
  padding: 96px 0 153px;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .ns-banner__content {
    padding: 57px 0 145px;
  }
}
@media screen and (max-width: 1024px) {
  .ns-banner__content {
    padding: 59px 0 155px;
  }
}
@media screen and (max-width: 768px) {
  .ns-banner__content {
    padding: 48px 0 98px;
  }
}
@media screen and (max-width: 480px) {
  .ns-banner__content {
    padding: 24px 0 0;
    flex-direction: column;
    gap: 80px;
  }
}
.ns-banner__box {
  max-width: 518px;
  display: grid;
  gap: 41px;
  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__title {
  font-weight: 600;
  font-size: 64px;
  line-height: 70px;
  height: fit-content;
  z-index: 10;
  max-width: 400px;
}
@media screen and (max-width: 1200px) {
  .ns-banner__title {
    font-size: 48px;
    line-height: 54px;
    max-width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .ns-banner__title {
    font-size: 32px;
    line-height: 40px;
    max-width: 200px;
  }
}
.ns-banner__date {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 2.5%;
  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 {
    line-height: 32px;
  }
}
@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: 32px;
  letter-spacing: 0.6%;
  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;
    max-width: 276px;
  }
}
@media screen and (max-width: 480px) {
  .ns-banner__desc {
    max-width: 100%;
  }
}
.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;
  letter-spacing: 6%;
  max-width: 300px;
  width: 100%;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .ns-banner__link {
    padding: 19px;
    width: 100%;
    text-align: center;
    max-width: 270px;
  }
}
@media screen and (max-width: 768px) {
  .ns-banner__link {
    padding: 13px;
    font-size: 16px;
    line-height: 21px;
    max-width: 200px;
  }
}
@media screen and (max-width: 480px) {
  .ns-banner__link {
    font-size: 14px;
    line-height: 20px;
    max-width: initial;
  }
}

.title {
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  text-align: center;
}
@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;
  }
}

.now-time {
  position: relative;
  margin-bottom: 116px;
}
@media screen and (max-width: 1200px) {
  .now-time {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .now-time {
    margin-bottom: 74px;
  }
}
@media screen and (max-width: 480px) {
  .now-time {
    margin-bottom: 47px;
  }
}
.now-time__planet {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.now-time__planet img {
  position: absolute;
}
.now-time__planet-img1 {
  bottom: -55%;
}
@media screen and (max-width: 1200px) {
  .now-time__planet-img1 {
    height: 860px;
    bottom: -44%;
  }
}
@media screen and (max-width: 1024px) {
  .now-time__planet-img1 {
    bottom: -62%;
    height: 694px;
  }
}
@media screen and (max-width: 768px) {
  .now-time__planet-img1 {
    bottom: -26%;
  }
}
@media screen and (max-width: 480px) {
  .now-time__planet-img1 {
    bottom: -19%;
    height: 416px;
  }
}
.now-time__content {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .now-time__content {
    gap: 39px;
  }
}
@media screen and (max-width: 480px) {
  .now-time__content {
    gap: 24px;
  }
}
.now-time__content--gap40 {
  gap: 45px;
}
@media screen and (max-width: 480px) {
  .now-time__content--gap40 {
    gap: 26px;
  }
}
.now-time__list {
  margin-bottom: 7px;
}
.now-time__item {
  position: relative;
  border-radius: 30px;
  padding: 30px;
  background: linear-gradient(118.82deg, #E0D4EA 1%, #EEF3FF 94.57%);
  min-height: 290px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .now-time__item {
    padding: 35px 30px;
    min-height: 265px;
  }
}
@media screen and (max-width: 1024px) {
  .now-time__item {
    padding: 30px 24px;
    min-height: 231px;
  }
}
@media screen and (max-width: 768px) {
  .now-time__item {
    min-height: 155px;
  }
}
@media screen and (max-width: 480px) {
  .now-time__item {
    min-height: 229px;
  }
}
.now-time__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .now-time__text {
    font-size: 18px;
    line-height: 26px;
    gap: 6px;
  }
}
@media screen and (max-width: 1024px) {
  .now-time__text {
    font-size: 16px;
    line-height: 24px;
    gap: 0;
  }
}
.now-time__text--bold {
  font-weight: 600;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 3%;
}
@media screen and (max-width: 1200px) {
  .now-time__text--bold {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .now-time__text--bold {
    font-size: 18px;
    line-height: 26px;
  }
}
.now-time__img {
  position: absolute;
  bottom: 0;
  right: 0;
  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: 278px;
  }
}
@media screen and (max-width: 480px) {
  .now-time__img {
    width: 261px;
  }
}
.now-time__img img {
  width: 100%;
}
.now-time__desc {
  font-weight: 300;
  font-size: 48px;
  line-height: 54px;
  text-align: center;
}
@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;
}

.list {
  display: grid;
  gap: 24px;
}
.list__col3 {
  grid-template-columns: repeat(3, 1fr);
}
.list__flex3 {
  display: flex;
  flex-wrap: wrap;
}
.list__flex3 li {
  flex: 1 0 30%;
}
@media screen and (max-width: 768px) {
  .list__flex3 li {
    flex: 1 0 45%;
  }
}
@media screen and (max-width: 480px) {
  .list__flex3 li {
    flex: 1 0 100%;
  }
}
@media screen and (max-width: 480px) {
  .list__flex3 {
    gap: 17px;
  }
}
.list__col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .list__col2 {
    gap: 51px;
  }
}
@media screen and (max-width: 768px) {
  .list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.block-info {
  margin-bottom: 144px;
}
@media screen and (max-width: 1200px) {
  .block-info {
    margin-bottom: 127px;
  }
}
@media screen and (max-width: 1024px) {
  .block-info {
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 768px) {
  .block-info {
    margin-bottom: 82px;
  }
}
@media screen and (max-width: 480px) {
  .block-info {
    margin-bottom: 47px;
  }
}
.block-info__content {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .block-info__content {
    gap: 39px;
  }
}
@media screen and (max-width: 480px) {
  .block-info__content {
    gap: 24px;
  }
}
.block-info__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 55px 60px;
  border-radius: 24px;
  background-color: #eef3ff;
  position: relative;
  height: 628px;
}
@media screen and (max-width: 1200px) {
  .block-info__item {
    padding: 30px;
    gap: 21px;
  }
}
@media screen and (max-width: 1024px) {
  .block-info__item {
    padding: 30px;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .block-info__item {
    padding: 55px 60px;
    gap: 24px;
    max-width: 608px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .block-info__item {
    height: 454px;
    padding: 24px;
  }
}
.block-info__item-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .block-info__item-title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .block-info__item-title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (max-width: 768px) {
  .block-info__item-title {
    font-size: 32px;
    line-height: 38px;
  }
}
@media screen and (max-width: 480px) {
  .block-info__item-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.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-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #333f48;
  position: relative;
  z-index: 10;
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .block-info__item-desc {
    margin: 3px 23px;
  }
}
@media screen and (max-width: 1024px) {
  .block-info__item-desc {
    margin: 8px 14px;
  }
}
@media screen and (max-width: 768px) {
  .block-info__item-desc {
    margin: 1px 14px;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .block-info__item-desc {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
  }
}
.block-info__item-list {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
.block-info__item-item {
  padding-left: 33px;
  position: relative;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 1%;
  max-width: 480px;
}
.block-info__item-item::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 11px;
  width: 5px;
  height: 5px;
  background-color: var(--color-black);
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .block-info__item-item::before {
    left: 16px;
    top: 13px;
  }
}
@media screen and (max-width: 1024px) {
  .block-info__item-item::before {
    top: 11px;
    left: 11px;
    width: 4px;
    height: 4px;
  }
}
@media screen and (max-width: 768px) {
  .block-info__item-item::before {
    top: 13px;
    left: 4px;
  }
}
@media screen and (max-width: 480px) {
  .block-info__item-item::before {
    top: 8px;
  }
}
@media screen and (max-width: 1200px) {
  .block-info__item-item {
    padding-left: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .block-info__item-item {
    font-size: 18px;
    line-height: 26px;
    padding-left: 27px;
    letter-spacing: -2%;
  }
}
@media screen and (max-width: 768px) {
  .block-info__item-item {
    padding-left: 21px;
  }
}
@media screen and (max-width: 480px) {
  .block-info__item-item {
    font-size: 16px;
    line-height: 20px;
  }
}
.block-info__item-link {
  text-decoration: none;
  padding: 18px 49px;
  border-radius: 300px;
  background-color: #a61e61;
  width: fit-content;
  margin-top: auto;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-white);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -20px;
  min-width: 300px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .block-info__item-link {
    min-width: initial;
    white-space: nowrap;
    padding: 18px 28px;
    bottom: -43px;
    left: 52%;
    min-width: 252px;
  }
}
@media screen and (max-width: 768px) {
  .block-info__item-link {
    min-width: 300px;
    bottom: -26px;
  }
}
@media screen and (max-width: 480px) {
  .block-info__item-link {
    min-width: 252px;
    font-size: 16px;
    line-height: 20px;
    padding: 15px 10px;
    bottom: -25px;
  }
}
.block-info__img {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  width: 100%;
  justify-content: center;
  transform: translate(-50%, 0);
}
.block-info__img img {
  height: 321px;
  object-fit: cover;
}
@media screen and (max-width: 480px) {
  .block-info__img img {
    height: 191px;
  }
}
.block-info__img--big img {
  height: 358px;
}
@media screen and (max-width: 480px) {
  .block-info__img--big img {
    height: 182px;
  }
}

.programs__content {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .programs__content {
    gap: 40px;
  }
}
.programs__wrap {
  display: flex;
  flex-direction: column;
  gap: 51px;
}
@media screen and (max-width: 1200px) {
  .programs__wrap {
    gap: 54px;
  }
}
@media screen and (max-width: 1024px) {
  .programs__wrap {
    gap: 37px;
  }
}
@media screen and (max-width: 480px) {
  .programs__wrap {
    gap: 22px;
  }
}
.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: 45px 37px;
  }
}
@media screen and (max-width: 768px) {
  .programs__item {
    padding: 45px 40px;
  }
}
@media screen and (max-width: 480px) {
  .programs__item {
    padding: 24px 20px;
  }
}
.programs__item-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 3%;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .programs__item-text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 480px) {
  .programs__item-text {
    max-width: 200px;
  }
}
.programs__item-text b {
  font-weight: 600;
}

.space {
  position: relative;
  margin-bottom: 109px;
}
@media screen and (max-width: 1200px) {
  .space {
    margin-bottom: 95px;
  }
}
@media screen and (max-width: 768px) {
  .space {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 480px) {
  .space {
    margin-bottom: 39px;
  }
}
.space__planet {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.space__planet img {
  position: absolute;
}
.space__planet-img1 {
  top: -91%;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .space__planet-img1 {
    top: -100%;
    height: 1029px;
  }
}
@media screen and (max-width: 1024px) {
  .space__planet-img1 {
    height: 724px;
    top: -15%;
  }
}
@media screen and (max-width: 768px) {
  .space__planet-img1 {
    top: -78%;
  }
}
@media screen and (max-width: 480px) {
  .space__planet-img1 {
    top: -9%;
    height: 446px;
  }
}
.space__planet-img2 {
  top: -28%;
}
@media screen and (max-width: 1200px) {
  .space__planet-img2 {
    height: 917px;
    top: -21%;
  }
}
@media screen and (max-width: 1024px) {
  .space__planet-img2 {
    height: 629px;
    top: 50%;
  }
}
@media screen and (max-width: 768px) {
  .space__planet-img2 {
    height: 643px;
    top: 3%;
  }
}
@media screen and (max-width: 480px) {
  .space__planet-img2 {
    height: 439px;
    top: 117%;
  }
}
.space__content {
  padding: 46.5px 62px;
  border-radius: 30px;
  background: linear-gradient(125.3deg, #E0D4EA 2.18%, #EEF3FF 54.19%, #E7DBCC 98.35%);
  backdrop-filter: blur(22px);
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .space__content {
    padding: 40px 57px;
  }
}
@media screen and (max-width: 1024px) {
  .space__content {
    padding: 51px;
  }
}
@media screen and (max-width: 768px) {
  .space__content {
    padding: 40px;
    display: grid;
    min-height: 592px;
  }
}
@media screen and (max-width: 480px) {
  .space__content {
    padding: 29.5px 0 0;
    gap: 24px;
    min-height: 443px;
  }
}
.space__box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 480px) {
  .space__box {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
.space__nameplate {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -2%;
  color: var(--color-white);
  padding: 15px 38px;
  border-radius: 24px;
  background-color: #d00d62;
  width: fit-content;
}
.space__title {
  text-align: left;
  max-width: 600px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1200px) {
  .space__title {
    font-size: 32px;
    line-height: 40px;
    max-width: 430px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .space__title {
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .space__title {
    max-width: initial;
    margin-bottom: 8px;
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .space__title {
    font-size: 24px;
    line-height: 32px;
    margin: 0;
  }
}
.space__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  max-width: 613px;
  letter-spacing: 3%;
  margin-bottom: 9px;
}
@media screen and (max-width: 1200px) {
  .space__text {
    max-width: 446px;
    letter-spacing: 1%;
    margin-bottom: 1px;
  }
}
@media screen and (max-width: 1024px) {
  .space__text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .space__text {
    max-width: initial;
    margin-bottom: 8px;
  }
}
.space__link {
  padding: 18px 64px;
  border-radius: 110px;
  background-color: var(--color-white);
  width: fit-content;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-black);
  letter-spacing: 6%;
  text-decoration: none;
  border: none;
}
@media screen and (max-width: 768px) {
  .space__link {
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    padding: 21.5px 64px;
  }
}
.space__img {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  .space__img {
    max-width: 485px;
  }
}
@media screen and (max-width: 1024px) {
  .space__img {
    max-width: 562px;
  }
}
@media screen and (max-width: 480px) {
  .space__img {
    position: initial;
  }
}
.space__img img {
  max-height: 422px;
}
@media screen and (max-width: 1200px) {
  .space__img img {
    height: 342px;
  }
}
@media screen and (max-width: 1024px) {
  .space__img img {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .space__img img {
    height: 361px;
  }
}
@media screen and (max-width: 480px) {
  .space__img img {
    height: 203px;
  }
}

.participate {
  position: relative;
  margin-bottom: 0;
}
.participate__fon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(124.17deg, rgba(224, 212, 234, 0.5) -2.63%, rgba(238, 243, 255, 0.5) 95.29%);
  backdrop-filter: blur(3px);
}
.participate__planet {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.participate__planet img {
  position: absolute;
}
.participate__planet-img1 {
  left: 0;
  top: -57%;
}
@media screen and (max-width: 1200px) {
  .participate__planet-img1 {
    height: 1186px;
    top: -36%;
    width: 739px;
  }
}
@media screen and (max-width: 1024px) {
  .participate__planet-img1 {
    height: 912px;
    top: -17%;
    width: 562px;
  }
}
@media screen and (max-width: 768px) {
  .participate__planet-img1 {
    height: 927px;
    top: -25%;
  }
}
@media screen and (max-width: 480px) {
  .participate__planet-img1 {
    height: 655px;
    top: -16%;
  }
}
.participate__planet-img2 {
  right: 0;
  top: -18%;
}
@media screen and (max-width: 1200px) {
  .participate__planet-img2 {
    height: 1147px;
    top: -4%;
  }
}
@media screen and (max-width: 1024px) {
  .participate__planet-img2 {
    height: 936px;
    top: 33.5%;
  }
}
@media screen and (max-width: 768px) {
  .participate__planet-img2 {
    top: 41%;
  }
}
@media screen and (max-width: 480px) {
  .participate__planet-img2 {
    top: 68%;
    height: 474px;
  }
}
.participate__content {
  display: grid;
  grid-template-columns: 0.94fr 1fr;
  gap: 78px;
  padding: 67px 0 39px;
  position: relative;
  max-width: 1196px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .participate__content {
    gap: 65px;
    padding: 63px 0 49px;
    grid-template-columns: 1fr;
    max-width: 941px;
  }
}
@media screen and (max-width: 1024px) {
  .participate__content {
    gap: 66px;
    padding: 60px 0 65px;
    max-width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .participate__content {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 46px 0 67px;
  }
}
@media screen and (max-width: 480px) {
  .participate__content {
    gap: 52px;
    padding: 46px 0 48px;
  }
}
.participate__title {
  font-weight: 300;
  font-size: 48px;
  line-height: 53px;
}
@media screen and (max-width: 1200px) {
  .participate__title {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .participate__title {
    font-size: 32px;
    line-height: 40px;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .participate__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.participate__form {
  display: grid;
  gap: 33px;
}
@media screen and (max-width: 1200px) {
  .participate__form {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    gap: 54px;
  }
}
@media screen and (max-width: 1024px) {
  .participate__form {
    gap: 34px;
  }
}
@media screen and (max-width: 768px) {
  .participate__form {
    gap: 36px;
  }
}
@media screen and (max-width: 480px) {
  .participate__form {
    gap: 20px;
  }
}
.participate__present {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media screen and (max-width: 1200px) {
  .participate__present {
    gap: 58px;
  }
}
@media screen and (max-width: 1024px) {
  .participate__present {
    gap: 38px;
  }
}
@media screen and (max-width: 480px) {
  .participate__present {
    gap: 24px;
  }
}
.participate__wrap {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
@media screen and (max-width: 1200px) {
  .participate__wrap {
    flex-direction: row;
    gap: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .participate__wrap {
    gap: 44px;
  }
}
@media screen and (max-width: 768px) {
  .participate__wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .participate__wrap {
    gap: 23px;
  }
}
.participate__box {
  display: flex;
  flex-direction: column;
  max-width: 482px;
}
@media screen and (max-width: 768px) {
  .participate__box {
    max-width: 585px;
  }
}
.participate__box-number {
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  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: 1200px) {
  .participate__box-number {
    letter-spacing: 2%;
  }
}
@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: 1%;
}
@media screen and (max-width: 1200px) {
  .participate__box-text {
    font-size: 18px;
    line-height: 26px;
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .participate__box-text {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .participate__box-text {
    font-size: 16px;
    line-height: 20px;
  }
}
.participate__btn {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -2%;
}

.cell {
  --cell-text-color: #003140;
  --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;
}
@media screen and (max-width: 480px) {
  .cell__content-text {
    letter-spacing: -4%;
  }
}
.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;
}
@media screen and (max-width: 1200px) {
  .cell__data {
    padding: 20px 18px;
  }
}
.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;
}
@media screen and (max-width: 1200px) {
  .cell-input {
    letter-spacing: -6%;
  }
}
.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 #e0d4ea;
  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: #a61e61;
  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-bottom: 1px solid grey;
  border-right: 1px solid grey;
  background: #a61e61;
  transform: translateY(50%) rotate(135deg);
}
.tooltip:hover .tooltip__content {
  display: block;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 19px 64px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  letter-spacing: 6%;
  background-color: #a61e61;
  border: 1px solid #a61e61;
  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: #003140;
  --checkbox-link-color: #d00d62;
  --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;
    border-radius: 4px;
  }
}
@media screen and (max-width: 768px) {
  .checkbox__window svg {
    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;
  }
}
@media screen and (max-width: 480px) {
  .checkbox__name {
    align-items: baseline;
  }
}
.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 {
  position: relative;
}
@media screen and (max-width: 1200px) {
  .timer {
    margin-bottom: 84px;
  }
}
@media screen and (max-width: 1024px) {
  .timer {
    margin-bottom: 110px;
  }
}
@media screen and (max-width: 768px) {
  .timer {
    margin-bottom: 81px;
  }
}
@media screen and (max-width: 480px) {
  .timer {
    margin-bottom: 54px;
  }
}
.timer__planet {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.timer__planet img {
  position: absolute;
}
.timer__planet-img1 {
  top: -104%;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .timer__planet-img1 {
    top: -96%;
    width: 662px;
    height: 956px;
  }
}
@media screen and (max-width: 1024px) {
  .timer__planet-img1 {
    height: 681px;
    width: auto;
    top: -16%;
  }
}
@media screen and (max-width: 768px) {
  .timer__planet-img1 {
    height: 662px;
    top: -96%;
  }
}
@media screen and (max-width: 480px) {
  .timer__planet-img1 {
    height: 484px;
    top: -114%;
  }
}
.timer__content {
  display: grid;
  gap: 57px;
}
@media screen and (max-width: 1024px) {
  .timer__content {
    gap: 40px;
  }
}
@media screen and (max-width: 480px) {
  .timer__content {
    gap: 24px;
  }
}
.timer__list {
  display: flex;
  justify-content: space-between;
  gap: 21.5px;
}
@media screen and (max-width: 1200px) {
  .timer__list {
    gap: 4px;
  }
}
@media screen and (max-width: 480px) {
  .timer__list {
    gap: 12px;
  }
}
.timer__item {
  display: flex;
  flex-direction: column;
  gap: 2.5px;
}
.timer__item span {
  font-weight: 400;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: 1%;
  text-align: center;
  color: #190a26;
}
@media screen and (max-width: 1200px) {
  .timer__item span {
    font-size: 40px;
    line-height: 48px;
  }
}
@media screen and (max-width: 768px) {
  .timer__item span {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .timer__item span {
    font-size: 14px;
    line-height: 20px;
  }
}
.timer__item .timer__number {
  font-weight: 600;
  font-size: 180px;
  line-height: 190px;
  letter-spacing: -2%;
  min-width: 220px;
}
@media screen and (max-width: 1024px) {
  .timer__item .timer__number {
    font-size: 140px;
    line-height: 150px;
    min-width: 171px;
  }
}
@media screen and (max-width: 768px) {
  .timer__item .timer__number {
    font-size: 100px;
    line-height: 110px;
    min-width: 122px;
  }
}
@media screen and (max-width: 480px) {
  .timer__item .timer__number {
    font-size: 40px;
    line-height: 48px;
    min-width: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .timer__item {
    gap: 0;
  }
}
@media screen and (max-width: 480px) {
  .timer__item {
    gap: 1px;
  }
}
.timer__dotts {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-top: 6.5%;
}
@media screen and (max-width: 1200px) {
  .timer__dotts {
    padding-top: 8.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: #190a26;
}
@media screen and (max-width: 480px) {
  .timer__dott {
    width: 7px;
    height: 7px;
  }
}

.tabs1 {
  display: flex;
  flex-direction: column;
}
.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: -3px auto 60px;
  padding: 2px;
  background-color: #E8EEF2;
  border-radius: 12px;
}
@media screen and (max-width: 1200px) {
  .tabs1__list {
    margin: -3px auto 47px;
  }
}
@media screen and (max-width: 768px) {
  .tabs1__list {
    margin: -3px auto 40px;
  }
}
@media screen and (max-width: 480px) {
  .tabs1__list {
    margin: -3px auto 24px;
  }
}
.tabs1__name {
  padding: 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 2%;
  color: rgba(19, 24, 27, 0.9607843137);
  border-radius: 12px;
  cursor: pointer;
  transition: 0.5s;
  min-width: 183px;
  text-align: center;
}
.tabs1__name.active {
  color: #a61e61;
  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: 480px) {
  .tabs1__name {
    font-size: 12px;
    line-height: 14px;
    padding: 13px 15px;
    min-width: initial;
  }
}
@media screen and (max-width: 1024px) {
  .tabs1__right {
    margin-top: 12px;
  }
}

.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: #a61e61;
  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;
}

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