:root {
  --dark: #374649;

  --green-1: #40A900;
  --green-2: #00884A;

  --blue-1: #029BEB;
  --blue-2: #00AA61;

  --violet-1: #009CEA;
  --violet-2: #4632FF;

  --red-1: #EF6F00;
  --red-2: #ED0000;

  --font-main: "Gotham Rounded", Arial, sans-serif;
}
  body {
  font-family: "Gotham Rounded", Arial, sans-serif !important;
  font-weight: 400 !important;
}
    :root {
  --dark: #374649;
  --blue-1: #029BEB;
  --blue-2: #00AA61;
  --violet-1: #009CEA;
  --violet-2: #4632FF;
  --red-1: #EF6F00;
  --red-2: #ED0000;
  --font-main: "Gotham Rounded", Arial, sans-serif;
}

.form-title {
  margin: 70px 0 42px;
  text-align: center;
  font-family: var(--font-main);
  font-size: 42px;
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: 0.5px;

  background: linear-gradient(90deg, var(--blue-1), var(--violet-1), var(--violet-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.registration-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 50px 34px 64px;
  border: 1px solid var(--dark);
  border-radius: 24px;
  background: #fff;
  font-family: var(--font-main);
}

.custom-form {
  width: 100%;
}

.form-box {
  width: 100%;
  max-width: 570px;
  margin: 0 auto 42px;
  padding: 42px 42px 45px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(55, 70, 73, 0.16);
  font-weight:550;
}

.form-box h3 {
  margin: 0;
  color: var(--dark);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  font-weight:550;  
}

.required {
  margin: 5px 0 18px;
  color: var(--red-2);
  font-size: 15px;
  font-weight: 700;
}

.info-text {
  margin: 6px 0 12px;
  color: var(--dark);
  font-size: 18px;
  line-height: 1.25;
}

.form-control {
  height: 51px;
  margin-bottom: 12px;
  padding: 8px 18px;
  border: 1px solid rgba(55, 70, 73, 0.45);
  border-radius: 10px;
  color: var(--dark);
  font-family: var(--font-main);
  font-size: 18px;
  box-shadow: none !important;
}

.form-control::placeholder {
  color: rgba(55, 70, 73, 0.45);
}

.form-control:focus {
  border-color: var(--violet-1);
  box-shadow: 0 0 0 2px rgba(0, 156, 234, 0.12) !important;
}

.radio-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--dark);
  font-size: 18px;
  font-weight:550;
  cursor: pointer;
}

.radio-item input {
  width: 22px;
  height: 22px;
  margin: 0 15px 0 0;
  accent-color: var(--violet-1);
}

.field-label {
  display: block;
  margin: 24px 0 12px;
  color: var(--dark);
  font-size: 19px;
  font-weight:650;
}

.send-btn {
  min-width: 180px;
  height: 51px;
  padding: 0 38px;
  border: 2px solid var(--red-2);
  border-radius: 30px;
  background: #fff;
  color: var(--red-2);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight:750;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.send-btn:hover {
  background: var(--red-2);
  color: #fff;
}

.thanks-box {
  display: none;
  text-align: center;
  padding: 70px 30px;
}

.registration-page.is-sent {
  max-width: 1000px;
  border: none;
  padding: 0;
}

.registration-page.is-sent .thanks-box {
  display: block;
  width: 100%;
  padding: 70px 40px;
}

.registration-page.is-sent .thanks-box .row {
  align-items: center;
}

.thanks-text {
  max-width: 330px;
  margin: 0 auto;
  text-align: left;
}

.thanks-logo {
  width: 150px;
  margin-bottom: 36px;
}

.thanks-text h2 {
  margin: 0 0 30px;
  color: #40A900;
  font-size: 40px;
  font-weight:600;
  line-height: 1.22;
}

.thanks-img {
  display: block;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 auto;
}
    .form-control.error,
.form-control.errors,
input.error,
select.error,
textarea.error {
  border-color: #ED0000 !important;
  background-image: none !important;
}

.form-control.valid,
input.valid,
select.valid,
textarea.valid {
  border-color: #40A900 !important;
  background-image: none !important;
}

label.error,
.help-block,
.field-validation-error {
  display: block;
  margin: -6px 0 10px;
  color: #ED0000 !important;
  font-size: 12px;
  font-weight: 500;
}
.radio-error label.error {
  display: block;
  margin: 4px 0 10px;
  color: #ED0000 !important;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .registration-page.is-sent .thanks-box {
    padding: 45px 18px;
    text-align: center;
  }

  .thanks-text {
    text-align: center;
    margin-bottom: 35px;
  }

  .thanks-img {
    max-width: 340px;
  }
}
.thanks-box {
  display: none;
}

.registration-page.is-sent .custom-form {
  display: none !important;
}

.registration-page.is-sent .thanks-box {
  display: block !important;
}

.registration-page.is-sent {
  max-width: 1000px;
  border: none;
  padding: 0;
}

@media (max-width: 575.98px) {
  .form-title {
    margin: 48px 0 32px;
    font-size: 30px;
    line-height: 1.2;
  }

  .registration-page {
    max-width: 100%;
    padding: 30px 14px 44px;
    border-radius: 18px;
  }

  .form-box {
    max-width: 100%;
    padding: 28px 22px 30px;
    margin-bottom: 30px;
    border-radius: 20px;
  }

  .form-box h3 {
    font-size: 22px;
  }

  .required {
    font-size: 12px;
  }

  .info-text {
    font-size: 14px;
  }

  .form-control {
    height: 44px;
    font-size: 15px;
    padding: 7px 14px;
  }

  .radio-item {
    font-size: 15px;
    margin-bottom: 13px;
  }

  .radio-item input {
    width: 18px;
    height: 18px;
  }

  .field-label {
    font-size: 16px;
  }

  .send-btn {
    min-width: 150px;
    height: 44px;
    font-size: 14px;
  }

  .thanks-box {
    padding: 50px 18px;
  }

  .thanks-logo {
    width: 130px;
  }

  .thanks-text h2 {
    font-size: 34px;
  }
}
    .event-header {
  padding: 52px 0 64px;
  background: #fff;
  font-family: var(--font-main);
}

.header-text {
  max-width: 430px;
  margin-left: 70px;
}

.event-logo {
  width: 105px;
  margin-bottom: 46px;
}

.header-text h1 {
  margin: 0 0 20px;
  font-size: 38px;
  font-weight: 550;
  line-height: 1.22;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--red-1), var(--red-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-text p {
  margin: 0;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.35;
}

.header-text p strong {
  font-weight: 800;
}

.header-img {
  display: block;
  width: 100%;
  max-width: 415px;
  margin-left: auto;
  border-radius: 18px;
  object-fit: cover;
}
@media (max-width: 1000px) {
  .header-text {
    margin-left: 0;
  }

  .header-text h1 {
    font-size: 34px;
  }

  .header-text p {
    font-size: 20px;
  }
}


@media (max-width: 765px) {
  .event-header {
    padding: 36px 0 42px;
    text-align: center;
  }

  .header-text {
    max-width: 100%;
    margin: 0 auto 28px;
  }

  .event-logo {
    width: 95px;
    margin-bottom: 28px;
  }
  
  .header-text h1 {
    font-size: 30px;
  }

  .header-text p {
    font-size: 18px;
  }
  .event-footer {
  margin-top: 70px;
  background: #fff;
  font-family: var(--font-main);
}

.footer-main {
  min-height: 330px;
}

.footer-logo {
  width: 270px;
  max-width: 100%;
}

.event-footer h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;

  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-bottom {
  padding: 28px 15px;
  background: #f4f7f9;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--dark);
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .footer-main {
    min-height: auto;
    padding: 55px 0;
  }

  .footer-logo {
    width: 220px;
    margin-bottom: 35px;
  }

  .event-footer h2 {
    font-size: 32px;
  }
}