/* Fonts */

@import url(../fonts/fonts.css);

/* Base */

@import url(../css/base/reset.css);
@import url(../css/base/normalize.css);

/* Utils */

@import url(../css/utils/variables.css);
@import url(../css/utils/common.css);

html,
body {
  width: 100%;
  max-width: 479px;
  margin: 0 auto;
  font-size: calc(16vw / 4.02);
}

@media screen and (min-width: 480px) {
  html,
  body {
    font-size: 18px;
  }
}

.container {
  margin: 0 auto;
  width: 100%;
  padding: 0 1.3125rem;
  max-width: 25.125rem;
}

.video-training {
  width: 100%;
  background: #1f1f1f;
  font-family: 'Inter Tight', Arial, sans-serif;
  color: #ffffff;
  background-image: url('../img/bg-hero-1x.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

/* Retina support for background image */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .video-training {
    background-image: url('../img/bg-hero-2x.png');
  }
}

.video-training__inner {
  position: relative;
  width: 100%;
  max-width: 26.875rem;
  min-height: 46.5625rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1.75rem;
  overflow: hidden;
}

.video-training__top {
  position: relative;
  z-index: 1;
}

/* Step label */

.video-training__step {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  margin: 0 0 1.5rem;
  padding: 0.5rem;
  border: 0.0625rem solid #ebc671;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.15;
  font-weight: 600;
  text-transform: uppercase;
}

.video-training__step-accent {
  color: #ebc671;
  font-weight: 700;
  white-space: nowrap;
}

/* Header */

.video-training__header {
  position: relative;
  z-index: 4;
  max-width: 17.5rem;
}

.video-training__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 1.8125rem;
  line-height: 1;
  font-weight: 600;
}

.video-training__title {
  margin: 0;
  padding-top: 0.4rem;
  color: #d9b883;
  font-family: 'Bebas Neue Cyrillic';
  font-size: 3.9375rem;
  line-height: 0.86;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;

  background: linear-gradient(
    234deg,
    #d9b883 24.64%,
    #d5a54e 56.3%,
    #94682b 87.37%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.video-training__subtitle {
  max-width: 13.75rem;
  margin: -0.5rem 0 0;
  font-size: 1.375rem;
  line-height: 1.2;
  font-weight: 500;
}

/* Background words */

.video-training__background-words {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.video-training__background-word {
  position: absolute;
  color: #d9b883;
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 600;
  opacity: 0.18;
  filter: blur(0.2125rem);
  white-space: nowrap;
}

.video-training__background-word--first {
  top: 7.625rem;
  right: 1.125rem;
  transform: rotate(-5deg);
}

.video-training__background-word--second {
  top: 10.5rem;
  right: 3.5rem;
  opacity: 0.26;
  transform: rotate(6deg);
}

.video-training__background-word--third {
  top: 13.375rem;
  right: 2.125rem;
  transform: rotate(-5deg);
}

/* List */

.video-training__list {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 15.9375rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;

  margin-bottom: 1.25rem;
}
.item-divider {
  width: 7.5rem;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    rgba(217, 184, 131, 0) 0%,
    #d9b883 50%,
    rgba(217, 184, 131, 0) 100%
  );
}

.video-training__item {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
}

.video-training__item-icon {
  flex: 0 0 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  object-fit: contain;
}

.video-training__item-content {
  flex: 1;
}

.video-training__item-title {
  margin: 0 0 0.375rem;
  font-size: 0.875rem;
  line-height: 1.18;
  font-weight: 500;
}

.video-training__item-title strong {
  color: #ebc671;
  font-weight: 500;
  text-transform: uppercase;
}

.video-training__item-text {
  max-width: 13.5rem;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.22;
  font-weight: 400;
}

.video-training__item-text.width {
  max-width: 11.5rem;
}

.video-training__item-text strong {
  color: #b59a5d;
  font-weight: 400;
}

/* Video placeholder */

.video-training__video {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 11.875rem;
  margin-top: 0;
  overflow: hidden;
  border-radius: 0.625rem;
  background: #d9d9d9;
}

.video-training__video-placeholder {
  margin: 0;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
}

.video-training__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Bottom note */

.video-training__note {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  width: 100%;
  margin: 0.5rem 0 0;
  padding: 1rem 0.625rem;
  border: 0.0625rem solid rgba(235, 198, 113, 0.6);
  border-radius: 0.625rem;
  background: linear-gradient(
    92deg,
    rgba(235, 198, 113, 0.15) 0.26%,
    rgba(235, 198, 113, 0) 99.74%
  );
}

.video-training__note-icon {
  flex: 0 0 2.8125rem;
  width: 2.8125rem;
  height: 2.875rem;
  object-fit: contain;
  flex-shrink: 0;
}

.video-training__note-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.04em;
  max-width: 17.375rem;
}

.video-training__note-text strong {
  color: #ebc671;
  font-weight: 700;
}

/* ---------------------------------------------------------------- */

.booking-step {
  width: 100%;
  background: #1f1f1f;
  font-family: 'Inter Tight', Arial, sans-serif;
  color: #ffffff;
  background-image: url('../img/bg-btn-section-1x.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

/* Retina support for background image */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .booking-step {
    background-image: url('../img/bg-btn-section-2x.jpg');
  }
}

.booking-step__inner {
  position: relative;
  width: 100%;
  max-width: 26.875rem;
  min-height: 23rem;
  margin: 0 auto;
  overflow: hidden;
}

.booking-step__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 23rem;
  padding: 1.5rem 1.3125rem 1.75rem;
}

.booking-step__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: calc(100% - 1.3125rem);
  margin: 0;
  padding: 0.5rem;
  border: 0.0625rem solid #ebc671;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.15;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.booking-step__label-accent {
  color: #ebc671;
  font-weight: 700;
  white-space: nowrap;
}

.booking-step__header {
  width: 100%;
  margin: 0 0 1.5rem;
}

.booking-step__intro {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  line-height: 1.12;
  font-style: italic;
  font-weight: 400;
}

.booking-step__intro span,
.booking-step__intro strong {
  display: block;
}

.booking-step__intro strong {
  font-weight: 700;
}

.booking-step__title {
  margin: 0;
  color: #b59a5d;
  font-family: 'Bebas Neue Cyrillic', 'Bebas Neue', Impact, sans-serif;
  font-size: 3.1875rem;
  line-height: 0.84;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;

  /* background: linear-gradient(
    234deg,
    #d9b883 24.64%,
    #d5a54e 56.3%,
    #94682b 87.37%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.booking-step__subtitle {
  margin: 0.25rem 0 0;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 500;
}

.booking-step__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.booking-step__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4rem;
  padding: 1.25rem 1rem;
  border-radius: 0.625rem;
  border-radius: 10px;
  background: var(
    --Linear,
    linear-gradient(234deg, #d9b883 24.64%, #d5a54e 56.3%, #94682b 87.37%)
  );
  color: #050505;
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

.booking-step__button:hover {
  filter: brightness(1.06);
}

.booking-step__button:focus-visible {
  outline: 0.125rem solid #ffffff;
  outline-offset: 0.1875rem;
}

.booking-step__note {
  margin: 0;
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}

.booking-step__note::before {
  content: '(';
}

.booking-step__note::after {
  content: ')';
}

.booking-step__arrow {
  position: static;
  z-index: 4;
  width: 1.75rem;
  height: auto;
  margin: 0 auto;
  display: block;
  pointer-events: none;
  margin-bottom: 26px;
}

/* Pulse animation for button */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
