@font-face {
  font-family: "Mardotto-Regular";
  src: url("../fonts/Mardoto-Regular.ttf");
}
@font-face {
  font-family: "Mardoto-Medium";
  src: url("../fonts/Mardoto-Medium.ttf");
}
@font-face {
  font-family: "Mardoto-Black";
  src: url("../fonts/Mardoto-Black.ttf");
}
.loader-content {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
}
.loader-content.active {
  display: flex;
}

.loader {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid lightblue;
  border-right-color: orange;
  animation: l2 1s infinite linear;
}

@keyframes l2 {
  to {
    transform: rotate(1turn);
  }
}
.wrapper {
  max-width: 1920px;
}

.page-content {
  margin-top: 120px;
}

.error-input {
  border: 1px solid red !important;
  box-shadow: 0 0 2px 0 red;
}

.error-checkbox {
  color: red !important;
}

.slider-body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.slider-body::-webkit-scrollbar {
  height: 3px;
}
.slider-body::-webkit-scrollbar-track {
  background: #FFF;
  border-radius: 10px;
}
.slider-body::-webkit-scrollbar-thumb {
  background: #808080;
  border-radius: 10px;
}
.slider-body .slider-swiper {
  display: flex;
  align-items: center;
  transition: all 500ms;
  height: 100%;
  cursor: pointer;
}
.slider-body .slider__item-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-shrink: 0;
  flex-grow: 1;
}
.slider-body .slider__item-box .slider__image-box {
  height: 100%;
  width: 100%;
}
.slider-body .slider__item-box .slider__image-box .slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.page-banner {
  background-image: url("/assets/img/about-page-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 584px;
}

.contacts-banner {
  background-color: #122849;
  padding: 70px;
}
.contacts-banner .contacts-banner__title {
  display: flex;
  justify-content: center;
  text-align: center;
}
.contacts-banner .contacts-banner__title p {
  font-family: "Mardotto-Regular";
  color: #FFF;
  font-size: 48px;
  line-height: 150%;
  font-weight: 400;
}
.contacts-banner .contacts-banner__information {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
  grid-column-gap: 25px;
}
.contacts-banner .contacts-banner__information .contacts-banner__description {
  font-family: "Mardotto-Regular";
  color: rgba(250, 250, 250, 0.8);
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
}
.contacts-banner .contacts-banner__information .contacts-banner__contacts {
  display: flex;
  flex-direction: column;
  grid-row-gap: 25px;
  padding-left: 30px;
  border-left: 1px solid #FFF;
}
.contacts-banner .contacts-banner__information .contacts-banner__contacts p {
  font-family: "Mardotto-Regular";
  color: #FFF;
  font-size: 30px;
  line-height: 150%;
  font-weight: 500;
  display: flex;
  align-items: center;
  grid-column-gap: 15px;
}

@media (max-width: 1440px) {
  .page-content {
    margin-top: 60px;
  }
  .contacts-banner {
    padding: 40px;
  }
  .contacts-banner .contacts-banner__title p {
    font-size: 36px;
  }
  .contacts-banner .contacts-banner__information {
    width: 90%;
  }
  .contacts-banner .contacts-banner__information .contacts-banner__contacts p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .page-content {
    margin-top: 70px;
  }
  .page-banner {
    height: 420px;
  }
  .contacts-banner .contacts-banner__title p {
    font-size: 26px;
  }
  .contacts-banner .contacts-banner__information {
    flex-direction: column;
    align-items: center;
    width: 100%;
    grid-row-gap: 20px;
  }
  .contacts-banner .contacts-banner__information .contacts-banner__description {
    text-align: center;
  }
  .contacts-banner .contacts-banner__information .contacts-banner__contacts {
    border-left: none;
    border-top: 1px solid #FFF;
    padding-left: 0;
    padding-top: 15px;
  }
  .contacts-banner .contacts-banner__information .contacts-banner__contacts p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contacts-banner .contacts-banner__information {
    flex-direction: column;
    width: 100%;
    grid-row-gap: 20px;
  }
}
@media (max-width: 528px) {
  .page-banner {
    height: 300px;
  }
}
.register-page {
  padding: 40px 20px 80px;
}
.register-page .register-page__content {
  max-width: 1120px;
  margin: 0 auto;
}
.register-page .register-page__title-block {
  text-align: center;
  margin-bottom: 26px;
}
.register-page .register-page__title-block h1 {
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 36px;
  line-height: 130%;
  font-weight: 500;
  margin: 0;
}
.register-page .register-page__title-block p {
  margin: 10px 0 0;
  font-family: "Mardotto-Regular";
  color: #5F6D82;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
}

.register-form {
  background: #FFFFFF;
  border: 1px solid rgba(2, 26, 61, 0.12);
  border-radius: 14px;
  padding: 24px;
}
.register-form .register-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.register-form .register-form__field {
  display: flex;
  flex-direction: column;
}
.register-form .register-form__field.register-form__field--full {
  grid-column: 1/-1;
}
.register-form .register-form__field label {
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
  margin-bottom: 6px;
}
.register-form .register-form__field label span {
  color: #d32f2f;
}
.register-form .register-form__field input,
.register-form .register-form__field textarea,
.register-form .register-form__field select {
  border: 1px solid rgba(2, 26, 61, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 15px;
  line-height: 140%;
  font-weight: 400;
  outline: none;
  background: #fff;
}
.register-form .register-form__field input:focus,
.register-form .register-form__field textarea:focus,
.register-form .register-form__field select:focus {
  border-color: #021A3D;
}
.register-form .register-form__field textarea {
  min-height: 110px;
  resize: vertical;
}
.register-form .register-form__fixed-conference {
  margin-bottom: 16px;
}
.register-form .register-form__fixed-conference .register-form__conference-image {
  display: block;
  width: 100%;
  max-width: 420px;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}
.register-form .register-form__fixed-conference label {
  display: block;
  font-family: "Mardotto-Regular";
  color: #5F6D82;
  font-size: 13px;
  line-height: 140%;
  font-weight: 400;
  margin-bottom: 4px;
}
.register-form .register-form__fixed-conference .register-form__fixed-conference-title {
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 18px;
  line-height: 140%;
  font-weight: 500;
}
.register-form .register-form__fixed-conference .register-form__fixed-conference-date {
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  margin-top: 2px;
}
.register-form .register-form__pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.register-form .register-form__price-card {
  border: 1px solid rgba(2, 26, 61, 0.12);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.register-form .register-form__price-card.is-active {
  border-color: rgba(15, 76, 154, 0.45);
  box-shadow: 0 4px 14px rgba(2, 26, 61, 0.08);
}
.register-form .register-form__price-card.is-inactive {
  opacity: 0.62;
  background: #f8f9fb;
}
.register-form .register-form__price-card .register-form__price-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.register-form .register-form__price-card .register-form__price-card-head strong {
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 18px;
  line-height: 140%;
  font-weight: 500;
}
.register-form .register-form__price-card .register-form__price-card-head span {
  font-family: "Mardotto-Regular";
  color: #5F6D82;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
}
.register-form .register-form__price-card .register-form__price-card-amount {
  font-family: "Mardoto-Black";
  color: #021A3D;
  font-size: 28px;
  line-height: 120%;
  font-weight: 700;
}
.register-form .register-form__price-card .register-form__price-card-status {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
  background: rgba(2, 26, 61, 0.06);
}
.register-form .register-form__price-card.is-active .register-form__price-card-status {
  color: #0f4c9a;
  background: rgba(15, 76, 154, 0.1);
}
.register-form .register-form__price-card.is-inactive .register-form__price-card-status {
  color: #5F6D82;
  background: rgba(2, 26, 61, 0.08);
}
.register-form .register-form__conference-files {
  margin-bottom: 16px;
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
}
.register-form .register-form__conference-files a {
  text-decoration: none;
}
.register-form .register-form__conference-files .content-file {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: min(320px, 100%);
  max-width: 100%;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(2, 26, 61, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.register-form .register-form__conference-files a:hover .content-file {
  border-color: #d8dde6;
  box-shadow: 0 4px 14px rgba(2, 26, 61, 0.08);
}
.register-form .register-form__conference-files .content-file-icon {
  position: relative;
  width: 30px;
  min-width: 30px;
  height: 36px;
  color: #E4252A;
}
.register-form .register-form__conference-files .content-file-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.register-form .register-form__conference-files .content-file-icon .file-extension {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  font-family: "Mardoto-Medium";
  color: #FFFFFF;
  font-size: 7px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.register-form .register-form__checkboxes {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.register-form .register-form__checkboxes label {
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.register-form .register-form__services {
  margin-top: 18px;
}
.register-form .register-form__services.is-hidden {
  display: none;
}
.register-form .register-form__services .register-form__services-head h2 {
  margin: 0;
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 28px;
  line-height: 130%;
  font-weight: 500;
}
.register-form .register-form__services .register-form__services-head p {
  margin: 8px 0 0;
  font-family: "Mardotto-Regular";
  color: #5F6D82;
  font-size: 15px;
  line-height: 150%;
  font-weight: 400;
}
.register-form .register-form__services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 16px;
}
.register-form .register-form__service-card {
  border: 1px solid rgba(2, 26, 61, 0.12);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 336px 1fr;
  gap: 14px;
  align-items: center;
  background: #fff;
  cursor: pointer;
}
.register-form .register-form__service-card input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0f4c9a;
  align-self: center;
}
.register-form .register-form__service-image,
.register-form .register-form__service-image-placeholder {
  width: 336px;
  min-width: 336px;
  max-width: 336px;
  height: 168px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  justify-self: start;
}
.register-form .register-form__service-image-placeholder {
  background: #eef1f6;
}
.register-form .register-form__service-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.register-form .register-form__service-info strong {
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 18px;
  line-height: 145%;
  font-weight: 500;
}
.register-form .register-form__service-info span {
  font-family: "Mardoto-Medium";
  color: #0f4c9a;
  font-size: 15px;
  line-height: 145%;
  font-weight: 500;
}
.register-form .register-form__invoice-block {
  margin-top: 24px;
  border-top: 1px solid rgba(2, 26, 61, 0.12);
  padding-top: 20px;
}
.register-form .register-form__invoice-block h2 {
  margin: 0 0 16px;
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 22px;
  line-height: 130%;
  font-weight: 500;
}
.register-form .register-form__terms {
  margin-top: 20px;
}
.register-form .register-form__terms label {
  font-family: "Mardotto-Regular";
  color: #021A3D;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.register-form .register-form__terms label span {
  color: #d32f2f;
}
.register-form .register-form__terms a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.register-form .register-form__terms a:hover {
  color: #0f4c9a;
  text-decoration-color: #0f4c9a;
}
.register-form .register-form__error {
  margin: 4px 0 0;
  color: #d32f2f;
  font-family: "Mardotto-Regular";
  color: #d32f2f;
  font-size: 13px;
  line-height: 140%;
  font-weight: 400;
}
.register-form .register-form__error.is-hidden {
  display: none;
}
.register-form .register-form__submit-error,
.register-form .register-form__submit-success {
  margin: 16px 0 0;
  font-family: "Mardotto-Regular";
  color: #d32f2f;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
}
.register-form .register-form__submit-error.is-hidden,
.register-form .register-form__submit-success.is-hidden {
  display: none;
}
.register-form .register-form__submit-success {
  font-family: "Mardotto-Regular";
  color: #1a7f37;
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
}
.register-form .register-form__actions {
  margin-top: 20px;
}
.register-form .register-form__actions .register-form__total {
  margin-bottom: 10px;
}
.register-form .register-form__actions .register-form__total span {
  display: block;
  font-family: "Mardotto-Regular";
  color: #5F6D82;
  font-size: 18px;
  line-height: 140%;
  font-weight: 500;
  margin-bottom: 4px;
}
.register-form .register-form__actions .register-form__total strong {
  display: block;
  font-family: "Mardoto-Black";
  color: #021A3D;
  font-size: 34px;
  line-height: 120%;
  font-weight: 700;
}
.register-form .register-form__actions button {
  background: linear-gradient(89.62deg, #FFC600 33.53%, #FFEDAD 112.41%);
  color: #FFF;
  border-radius: 8px;
  font-size: 18px;
  font-family: "Mardotto-Regular";
  width: 184px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}
.register-form .register-form__actions button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .register-form .register-form__grid {
    grid-template-columns: 1fr;
  }
  .register-form .register-form__pricing {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .register-form .register-form__conference-files .content-file {
    display: flex;
    min-width: 0;
    padding: 14px 16px;
  }
  .register-form .register-form__services .register-form__services-head h2 {
    font-size: 22px;
  }
  .register-form .register-form__service-card {
    grid-template-columns: 1fr;
  }
  .register-form .register-form__service-image,
  .register-form .register-form__service-image-placeholder {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .register-form .register-form__actions .register-form__total span {
    font-size: 16px;
  }
  .register-form .register-form__actions .register-form__total strong {
    font-size: 28px;
  }
}

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