@font-face {
  font-family: "Neue Machina";
  src: url("../fonts/NeueMachina-Ultrabold.woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.anim {
  opacity: 0.001;
  transition: 1s;
}
.anim.animated {
  opacity: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0;
  text-decoration: none;
  list-style: none;
  font-feature-settings: "pnum" on, "lnum" on, "liga" off, "kern" off;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

select,
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
}

select,
button,
input[type=submit] {
  cursor: pointer;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

*:focus {
  outline: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

b, strong {
  font: inherit;
  color: inherit;
  font-weight: 700;
}

table {
  border-collapse: collapse;
}

.fancybox__slide {
  width: 100%;
  padding: 40px !important;
}
@media screen and (max-width: 768px) {
  .fancybox__slide {
    padding: 32px !important;
  }
}
.fancybox__slide .f-html {
  height: auto;
}
.fancybox__slide video {
  display: block;
  height: auto;
}
.fancybox__slide iframe,
.fancybox__slide video {
  width: 960px;
  height: 540px;
}
@media screen and (max-width: 1024px) {
  .fancybox__slide iframe,
  .fancybox__slide video {
    width: 100%;
    height: calc((100vw - 80px) / 16 * 9);
  }
}
@media screen and (max-width: 768px) {
  .fancybox__slide iframe,
  .fancybox__slide video {
    height: calc((100vw - 64px) / 16 * 9);
  }
}

.f-button.is-close-button {
  width: 72px;
  height: 72px;
  background: white !important;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 768px) {
  .f-button.is-close-button {
    width: 44px;
    height: 44px;
  }
}
.f-button.is-close-button svg * {
  stroke: #000;
}

* {
  font-family: "Inter", sans-serif;
}

h1, h2, .h2 {
  font-family: "Neue Machina", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  h1, h2, .h2 {
    font-size: 32px;
  }
}

h3, .h3 {
  font-family: "Neue Machina", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, h5, h6 {
  font-family: "Neue Machina", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  h4, h5, h6 {
    font-size: 16px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 10px;
  background: black;
}
body.overfix {
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.container {
  width: calc(100% - 80px);
  max-width: 1420px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
    width: calc(100% - 32px);
    max-width: 500px;
  }
}

.header {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  padding: 10px 10px 0;
  background: black;
  transition: 0.4s;
  transform: translateY(-105%);
}
.header.open {
  transform: none;
}
.header .container {
  padding: 24px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #FF7E29, #FF761B);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: unset;
  width: 100%;
}

.footer {
  margin-top: 24px;
  padding: 24px 10px;
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-top: 16px;
  }
}
.footer .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .footer .container {
    gap: 16px;
  }
}
.footer__logo img, .footer__logo svg {
  display: block;
  height: 18px;
  width: auto;
}
.footer p {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}
@media screen and (max-width: 1024px) {
  .footer p {
    font-size: 14px;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  background: white;
}
.form__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__title h3 {
  max-width: 418px;
}
.form__title p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.form__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.form .btn {
  width: 100%;
  margin-top: 12px;
}
.form .answer {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .form .answer {
    padding: 24px 16px;
    gap: 8px;
  }
}
.form .answer.open {
  opacity: 1;
  pointer-events: auto;
}
.form .answer.open_always {
  opacity: 1;
  pointer-events: auto;
}
.form .answer__title span {
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1024px) {
  .form .answer__title span {
    display: block;
  }
}
.form .answer__subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #090909;
  font-size: 16px;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .form .answer__subtitle {
    flex-direction: column;
    gap: 16px;
  }
}
.form .answer__subtitle .icon {
  background: rgba(255, 119, 41, 0.15);
  width: 28px;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form .answer__subtitle .icon svg {
  display: block;
  width: 17px;
  height: 17px;
}
.form .answer__description {
  max-width: 312px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  font-weight: 500;
  line-height: 110%;
}
.form .answer .btn {
  width: -moz-max-content;
  width: max-content;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .form .answer .btn {
    margin-top: 24px;
  }
}

.input-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  position: relative;
}
.input-box label {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-weight: 500;
  line-height: 110%;
  text-transform: uppercase;
}
.input-box input {
  display: block;
  width: 100%;
  border-radius: 6px;
  background: #F9F8F8;
  border: 1px solid #F9F8F8;
  padding: 16px;
  color: #201F1B;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  transition: 0.3s;
}
.input-box input:focus {
  border-color: #FF771D;
}
.input-box input::-moz-placeholder {
  color: rgba(32, 31, 27, 0.5);
}
.input-box input::placeholder {
  color: rgba(32, 31, 27, 0.5);
}
.input-box.invalid label {
  color: red;
}
.input-box.invalid input {
  border-color: red;
}

.select-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  position: relative;
}
.select-box.open .select:after {
  transform: translate(0, -50%) rotate(180deg);
}
.select-box.open .select-list {
  opacity: 1;
  pointer-events: auto;
}
.select-box label {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-weight: 500;
  line-height: 110%;
  text-transform: uppercase;
}
.select-box .select {
  position: relative;
}
.select-box .select:after {
  content: "";
  position: absolute;
  right: 22px;
  top: 25px;
  transform: translate(0, -50%);
  width: 12px;
  height: 6px;
  background-image: url("../img/dd.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.select-box .select:before {
  content: "";
  position: absolute;
  right: 1px;
  top: 1px;
  width: 60px;
  height: calc(100% - 2px);
  background: linear-gradient(to left, #F9F8F8, #F9F8F8, rgba(249, 248, 248, 0));
  transition: 0.3s;
  border-radius: 6px;
}
.select-box .select-selected {
  display: block;
  width: 100%;
  border-radius: 6px;
  background: #F9F8F8;
  border: 1px solid #F9F8F8;
  padding: 16px;
  cursor: pointer;
  color: #201F1B;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  transition: 0.3s;
}
.select-box .select-selected:focus {
  border-color: #FF771D;
}
.select-box .select-selected::-moz-placeholder {
  color: rgba(32, 31, 27, 0.5);
}
.select-box .select-selected::placeholder {
  color: rgba(32, 31, 27, 0.5);
}
.select-box .select-list {
  border-radius: 6px;
  background: #F9F8F8;
  box-shadow: 0 4px 9.2px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  width: 100%;
  z-index: 3;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.select-box .select-list-item {
  padding: 5px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 110%;
  transition: 0.3s;
  cursor: pointer;
}
@media not all and (pointer: coarse) {
  .select-box .select-list-item:hover {
    color: #FF771D;
  }
}
.select-box .select-list-item.selected {
  opacity: 0.5;
  pointer-events: none;
}
.select-box .select-list .input-box input:not(:focus) {
  border-color: rgba(66, 64, 64, 0.35);
  background: #FFF;
}
.select-box.invalid label {
  color: red;
}
.select-box.invalid .select-selected {
  border-color: red;
}

.popup {
  position: fixed;
  z-index: 110;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.7);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  transition: 0.4s;
}
.popup:not(.open) {
  opacity: 0;
  pointer-events: none;
}
.popup:not(.open) * {
  pointer-events: none !important;
}
.popup .scroll-container {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 100px 0;
  overflow: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 1025px) and (min-height: 1001px) {
  .popup .scroll-container {
    padding: 160px 0;
  }
}
@media screen and (min-width: 1025px) and (max-height: 1000px) {
  .popup .scroll-container {
    padding: 120px 0;
  }
}
@media screen and (min-width: 1025px) and (max-height: 860px) {
  .popup .scroll-container {
    padding: 100px 0;
  }
}
@media screen and (max-width: 1024px) {
  .popup .scroll-container {
    padding: 40px 0;
  }
}
.popup .popupContainer {
  border-radius: 6px;
  background: #FFF;
  display: flex;
  width: 90%;
  max-width: 916px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .popup .popupContainer {
    flex-direction: column-reverse;
    max-width: 500px;
  }
}
.popup .popupContainer__left {
  width: 44%;
  border-radius: 6px;
  background: url("../img/dot.png"), linear-gradient(180deg, #FFC299 -43.64%, #FE6E10 23.32%, #8F1D00 74.52%, #571E00 98.74%);
  background-repeat: repeat;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .popup .popupContainer__left {
    padding: 24px 16px;
    width: 100%;
  }
}
.popup .popupContainer__left h3 {
  color: #FFF;
}
.popup .popupContainer__left ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.popup .popupContainer__left ul li {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  border-radius: 53px;
  background: #FFF;
  padding: 8px 16px;
}
.popup .popupContainer__left ul li.hl {
  background: black;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.popup .popupContainer__left ul li.hl .dot {
  display: block;
  width: 6px;
  min-width: 6px;
  height: 6px;
  background: #FF771D;
  border-radius: 99px;
}
.popup .popupContainer__left .person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
@media screen and (max-width: 1024px) {
  .popup .popupContainer__left .person {
    margin-top: 8px;
  }
}
.popup .popupContainer__left .person img, .popup .popupContainer__left .person svg {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 99px;
  -o-object-fit: cover;
     object-fit: cover;
}
.popup .popupContainer__left .person__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.popup .popupContainer__left .person__text p {
  color: #FFF;
  font-family: "Neue Machina", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
}
.popup .popupContainer__left .person__text span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
}
.popup .popupContainer__right {
  width: 56%;
}
@media screen and (max-width: 1024px) {
  .popup .popupContainer__right {
    width: 100%;
  }
}
.popup .popupContainer__right .form {
  height: 100%;
  padding: 32px;
}
@media screen and (max-width: 1024px) {
  .popup .popupContainer__right .form {
    padding: 24px 16px;
  }
}
.popup .popupContainer__right .form__title {
  padding-right: 64px;
}
.popup .popupContainer__right .form__title h3 {
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .popup .popupContainer__right .form__title h3 {
    max-width: 200px;
    font-size: 20px;
  }
}
.popup .popupContainer .exit-btn {
  position: absolute;
  z-index: 20;
  right: 24px;
  top: 24px;
  cursor: pointer;
}
.popup .popupContainer .exit-btn svg * {
  transition: 0.3s;
}
@media not all and (pointer: coarse) {
  .popup .popupContainer .exit-btn:hover svg * {
    fill: black;
  }
}
.popup .popupContainer .exit-btn:active svg * {
  fill: black;
}

.btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 99px;
  padding: 16px 35px;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (max-width: 1024px) {
  .btn {
    font-size: 16px;
  }
}
.btn--withDot {
  border: 2px solid #000;
  box-shadow: 2.6px 3.9px 5.2px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  color: white;
}
.btn--withDot:before, .btn--withDot:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
}
.btn--withDot:before {
  background: linear-gradient(180deg, #2C2C2C 0%, #201F1B 100%);
  z-index: -1;
}
.btn--withDot:after {
  background: linear-gradient(180deg, #444 0%, #201F1B 100%);
  z-index: -2;
}
.btn--withDot .dot {
  display: block;
  width: 10px;
  min-width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(180deg, #FF9B59 0%, #FF771D 100%);
  box-shadow: 0 2.5px 6.25px rgba(255, 119, 29, 0.31);
}
.btn--withDot .timer {
  font: inherit;
  color: #F5F1EE;
  opacity: 0.5;
}
@media not all and (pointer: coarse) {
  .btn--withDot:hover:before {
    opacity: 0;
  }
}
.btn--withDot:active:before {
  opacity: 0;
}
.btn--orange {
  color: #FFF;
  background: #FF771D;
  transition: 0.4s;
}
@media not all and (pointer: coarse) {
  .btn--orange:hover {
    background: #FF8839;
  }
}
.btn--orange:active {
  background: #FF7E28;
}
.btn[disabled], .btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.b1 {
  border-radius: 6px;
  background: url("../img/dot.png"), linear-gradient(180deg, #FFAD77 -43.64%, #F60 23.32%, #A81900 74.52%, #571E00 98.74%);
  background-repeat: repeat;
  overflow: hidden;
}
.b1__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/dot.png"), black;
}
.b1 .container {
  height: calc(100svh - 20px);
  min-height: calc(100svh - 20px);
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 150px 0;
}
@media screen and (max-width: 1024px) {
  .b1 .container {
    padding: 100px 0 200px;
  }
}
.b1__topLabel {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #2C2C2C 0%, #201F1B 100%);
  box-shadow: 2.6px 3.9px 5.2px 0 rgba(0, 0, 0, 0.25);
  padding: 14px 28px;
}
@media screen and (max-width: 1024px) {
  .b1__topLabel {
    padding: 10px 22px;
  }
}
.b1__topLabel ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .b1__topLabel ul {
    gap: 8px;
  }
}
.b1__topLabel li {
  --after-bg: #FFF;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .b1__topLabel li {
    font-size: 16px;
    gap: 8px;
  }
}
.b1__topLabel li:not(:last-child):after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--after-bg);
  border-radius: 99px;
}
.b1__topLabel > * {
  position: relative;
  z-index: 2;
}
.b1__topLabel-bg {
  position: absolute !important;
  z-index: 1 !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FF771D;
  border-radius: 0 0 16px 16px;
}
.b1__main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.b1__main-background {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .b1__main-background {
    width: 120%;
    max-width: 759px;
    height: auto;
  }
}
.b1__main-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .b1__main-text {
    gap: 16px;
  }
}
.b1__main-text svg {
  display: block;
  height: 75px;
}
@media screen and (max-width: 1024px) {
  .b1__main-text svg {
    height: 31px;
    width: auto;
    max-width: 100%;
  }
}
.b1__main-text svg .num8 {
  animation-name: svg_ping;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 2s;
  fill: #FF771D;
}
@keyframes svg_ping {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.b1__main-text p {
  color: #FFF;
  text-align: center;
  font-family: "Neue Machina", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .b1__main-text p {
    font-size: 18px;
  }
}
.b1__main .btn {
  opacity: 0;
}
.b1__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .b1__bottom {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-bottom: 32px;
  }
}
.b1__bottom p {
  color: #FFF;
  text-align: center;
  font-family: "Neue Machina", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .b1__bottom p {
    font-size: 20px;
  }
  .b1__bottom p br {
    display: none;
  }
}
.b1__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.b1__scroll svg {
  display: block;
  animation-name: svg_scroll;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  animation-duration: 3s;
}
@keyframes svg_scroll {
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(0, 10px);
  }
  60% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

.b2 {
  border-radius: 6px;
  background: #F9F8F8;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .b2 {
    padding: 24px 0;
  }
}
.b2 .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .b2 .container {
    gap: 24px;
  }
}
.b2__top {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .b2__top {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .b2__top {
    gap: 16px;
  }
}
.b2__top h2 {
  max-width: 630px;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .b2__top h2 {
    max-width: unset;
  }
}
.b2__top .tabs__header {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F9F8F8;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
@media screen and (max-width: 1024px) {
  .b2__top .tabs__header {
    flex-direction: column;
    width: 100%;
    border-radius: 28px;
  }
}
.b2__top .tabs__header .tab {
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  padding: 17px 30px;
  border-radius: 99px;
  white-space: nowrap;
  transition: 0.3s;
  cursor: pointer;
}
@media not all and (pointer: coarse) {
  .b2__top .tabs__header .tab:hover {
    background: rgba(0, 0, 0, 0.05);
  }
}
@media screen and (max-width: 1024px) {
  .b2__top .tabs__header .tab {
    font-size: 16px;
    line-height: 20px;
    padding: 14px;
    text-align: center;
  }
}
.b2__top .tabs__header .tab.active {
  background: #000;
  color: #fff;
}
.b2__top .tabs__header .tab.disabled {
  position: relative;
  pointer-events: none;
}
.b2__top .tabs__header .tab.disabled:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 99px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.b2__top .tabs__header .tab.disabled:after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 20px;
  background-image: url("../img/lock.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.b2__main .tab {
  display: none;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .b2__main .tab {
    gap: 16px;
  }
}
.b2__main .tab.active {
  display: flex;
}
.b2__main .tab.disabled {
  min-height: 500px;
}
@media screen and (max-width: 1024px) {
  .b2__main .tab.disabled {
    min-height: 760px;
  }
  .b2__main .tab.disabled .videoBox:nth-child(n+3) {
    display: none;
  }
}
.b2__main .tab.disabled .disableBox {
  opacity: 1;
  pointer-events: auto;
}
.b2__main .tab--event {
  flex-direction: column;
}
.b2__main .tab--video {
  flex-wrap: wrap;
}
.b2__main .eventBox {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .b2__main .eventBox {
    flex-direction: column;
    gap: 16px;
    background: #FFF;
    border: 4px solid #F0EEEC;
    border-radius: 6px;
    padding: 16px;
  }
}
.b2__main .eventBox__time {
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .b2__main .eventBox__time {
    font-size: 14px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #F9F8F8;
    width: 100%;
    text-align: center;
  }
}
.b2__main .eventBox__main {
  background: #FFF;
  border: 4px solid #F0EEEC;
  border-radius: 6px;
  width: calc(100% - 240px);
  max-width: 880px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 250px;
}
@media screen and (max-width: 1024px) {
  .b2__main .eventBox__main {
    min-height: unset;
    width: 100%;
    gap: 16px;
    padding: 0;
    border: none;
  }
}
.b2__main .eventBox__main-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .b2__main .eventBox__main-text {
    gap: 8px;
  }
}
.b2__main .eventBox__main-text h3 {
  max-width: 680px;
}
@media screen and (max-width: 1024px) {
  .b2__main .eventBox__main-text h3 {
    max-width: unset;
    font-size: 24px;
  }
}
.b2__main .eventBox__main-text p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  max-width: 524px;
}
.b2__main .eventBox__main-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .b2__main .eventBox__main-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.b2__main .eventBox__main-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.b2__main .eventBox__main-person img, .b2__main .eventBox__main-person svg {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 99px;
  -o-object-fit: cover;
     object-fit: cover;
}
.b2__main .eventBox__main-person .text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.b2__main .eventBox__main-person .text p {
  font-family: "Neue Machina", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
}
.b2__main .eventBox__main-person .text span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
}
.b2__main .eventBox__main-reg {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .b2__main .eventBox__main-reg {
    flex-direction: column-reverse;
    gap: 12px;
    align-items: center;
    width: 100%;
  }
}
.b2__main .eventBox__main-reg .btn {
  padding: 16px 20px;
  min-width: 145px;
}
@media screen and (max-width: 1024px) {
  .b2__main .eventBox__main-reg .btn {
    width: 100%;
  }
}
.b2__main .eventBox__main-reg p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (max-width: 1024px) {
  .b2__main .eventBox__main-reg p {
    font-size: 14px;
    text-align: center;
  }
}
.b2__main .videoBox {
  background: #F0EEEC;
  border-radius: 6px;
  padding: 4px;
  position: relative;
  width: calc(50% - 12px);
  color: black;
}
@media screen and (max-width: 1024px) {
  .b2__main .videoBox {
    width: 100%;
  }
}
.b2__main .videoBox__preview {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.b2__main .videoBox__preview img {
  display: block;
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
}
.b2__main .videoBox__preview .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: var(--Brand-Orange, #FF771D);
  transition: 0.3s;
}
@media not all and (pointer: coarse) {
  .b2__main .videoBox__preview .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.b2__main .videoBox__preview .play-btn:active {
  transform: translate(-50%, -50%) scale(1.1);
}
.b2__main .videoBox__preview .play-btn svg {
  display: block;
  width: 21px;
  height: 25px;
  margin-left: 4px;
}
.b2__main .videoBox__person {
  position: absolute;
  left: 28px;
  top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 24px 4px 4px;
  background: white;
  border-radius: 99px;
  max-width: calc(100% - 56px);
}
@media screen and (max-width: 1024px) {
  .b2__main .videoBox__person {
    left: 20px;
    top: 20px;
    max-width: calc(100% - 40px);
  }
}
.b2__main .videoBox__person img, .b2__main .videoBox__person svg {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 99px;
  -o-object-fit: cover;
     object-fit: cover;
}
.b2__main .videoBox__person .text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.b2__main .videoBox__person .text p {
  font-family: "Neue Machina", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
}
.b2__main .videoBox__person .text span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
}
.b2__main .videoBox__title {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: calc(100% - 56px);
}
@media screen and (max-width: 1024px) {
  .b2__main .videoBox__title {
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }
}
.b2__main .videoBox__title h3 {
  font-size: 24px;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .b2__main .videoBox__title h3 {
    font-size: 20px;
  }
}
.b2__main .disableBox {
  position: absolute;
  left: -10px;
  top: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  border-radius: 6px;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .b2__main .disableBox {
    padding: 20px;
  }
}
.b2__main .disableBox__form {
  background: #FFF;
  border-radius: 6px;
  border: 4px solid #F0EEEC;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 702px;
}
.b2__main .disableBox__form .form {
  padding: 32px 24px;
}
@media screen and (max-width: 1024px) {
  .b2__main .disableBox__form .form {
    padding: 24px 16px;
  }
}
.b2__main .disableBox__form .form__fields > .input-box,
.b2__main .disableBox__form .form__fields > .select-box {
  width: calc(50% - 12px);
}
@media screen and (max-width: 1024px) {
  .b2__main .disableBox__form .form__fields > .input-box,
  .b2__main .disableBox__form .form__fields > .select-box {
    width: 100%;
  }
}

.b3 {
  background: black;
  border-radius: 6px;
  padding: 80px 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .b3 {
    padding: 24px 0;
  }
}
.b3 .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .b3 .container {
    gap: 24px;
  }
}
@media screen and (max-width: 1660px) {
  .b3 .container:before {
    content: "";
    position: absolute;
    z-index: 5;
    right: 100%;
    top: 0;
    width: 50vw;
    height: 100%;
    background: black;
  }
}
.b3__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 150px;
}
@media screen and (max-width: 1024px) {
  .b3__text {
    padding-right: 0;
    gap: 8px;
  }
}
.b3__text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
}
.b3__text h2 {
  color: white;
}
.b3 .swiper {
  width: 100%;
  overflow: visible;
}
@media screen and (max-width: 1660px) {
  .b3 .swiper {
    width: calc(100% - 60px);
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .b3 .swiper {
    width: calc(100% - 44px);
  }
}
@media screen and (min-width: 1025px) {
  .b3 .swiper-slide {
    width: auto;
  }
}
.b3 .swiper-buttons {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(calc(-100% - 40px));
}
@media screen and (max-width: 1024px) {
  .b3 .swiper-buttons {
    display: none;
  }
}
.b3 .swiper-button {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #242424;
  transition: 0.4s;
  cursor: pointer;
}
@media not all and (pointer: coarse) {
  .b3 .swiper-button:hover {
    background: #404040;
  }
}
.b3 .swiper-button:active {
  background: #404040;
}
.b3 .swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.b3__slide {
  width: 302px;
  padding: 12px 12px 16px;
}
@media screen and (max-width: 1660px) {
  .b3__slide {
    width: 100%;
  }
}
.b3__slide-image {
  border-radius: 6px;
  background: linear-gradient(180deg, #FFAD77 0%, #F60 46.61%, #A81900 82.26%, #571E00 99.12%);
  padding-bottom: 107.9%;
  position: relative;
}
.b3__slide-image img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.b3__slide-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 8px 0;
}
.b3__slide-text p {
  color: #FFF;
  font-family: "Neue Machina", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
}
.b3__slide-text span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
}