@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.kickoff-blue {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: #00132b;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.kickoff-blue--page {
  background-image: url("../archive/kickoff-blue-page-bg.png");
  background-repeat: no-repeat;
  background-position-x: right;
  background-size: 1440px 1745px;
}

.kickoff-blue h1,
.kickoff-blue h2,
.kickoff-blue h3,
.kickoff-blue h4,
.kickoff-blue h5,
.kickoff-blue h6 {
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 0;
  line-height: 1;
}

.kickoff-blue p {
  margin-top: 0;
  margin-bottom: 0;
}

.kickoff-blue a {
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  transition: 125ms ease;
}

.kickoff-blue__main {
  margin-bottom: 72px;
}

.container {
  padding: 0 24px;
  width: 100vw;
}

.kickoff-blue-header {
  position: absolute;
  padding: 16px 0;
  top: 0;
  left: 0;
  right: 0;
}

.kickoff-blue-header__body {
  text-align: center;
}

.kickoff-blue-header__logo {
  display: inline-block;
  width: 94px;
  height: 48px;
  margin-bottom: 13px;
}

.kickoff-blue-header__logo img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  display: block;
}

.kickoff-blue-header__auth {
  text-align: center;
}

.kickoff-blue-header__button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  border: none;
  outline: none;
  font-family: inherit;
  text-decoration: none;
  transition: 125ms ease;
  justify-content: center;
  font-weight: 800;
  color: #040106;
  line-height: 1.2;
  padding: 12px;
  min-width: 115px;
  clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
}

.kickoff-blue-header__button + .kickoff-blue-header__button {
  margin-left: 8px;
}

.kickoff-blue-header__button--yellow {
  background-color: #eacd57;
}

.kickoff-blue-header__button--yellow:hover {
  background-color: #ffcc00;
}

.kickoff-blue-header__button--white {
  background-color: #fff;
}

.kickoff-blue-header__button--white:hover {
  background-color: #ffeba4;
}

.kickoff-blue-footer {
  position: relative;
  z-index: 1;
  padding-top: 32px;
  padding-bottom: 32px;
}

.kickoff-blue-footer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.kickoff-blue-footer__logo {
  width: 126px;
  height: 64px;
}

.kickoff-blue-footer__age {
  width: 115px;
  height: 40px;
}

.kickoff-blue-footer__content {
  margin-bottom: 32px;
}

.kickoff-blue-footer__content p + p {
  margin-top: 20px;
}

.kickoff-blue-footer__partners {
  overflow: hidden;
  width: calc(100% + 48px);
  margin-right: -24px;
  margin-bottom: 32px;
  margin-left: -24px;
}

.kickoff-blue-footer__loop {
  list-style: none;
  padding: 0;
  margin: 0;
  animation: marquee 8s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 24px;
  align-items: center;
}

.kickoff-blue-footer__loop li {
  flex-shrink: 0;
}

.kickoff-blue-footer__link {
  display: block;
}

.kickoff-blue-footer__link[href]:hover {
  transform: scale(1.1);
}

.kickoff-blue-footer__link img {
  -o-object-fit: contain;
  object-fit: contain;
  overflow: hidden;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
}

.kickoff-blue-footer__loop li:nth-child(1) .kickoff-blue-footer__link img {
  width: 185px;
  height: 24px;
}

.kickoff-blue-footer__loop li:nth-child(2) .kickoff-blue-footer__link img {
  width: 159px;
  height: 64px;
}

.kickoff-blue-footer__loop li:nth-child(3) .kickoff-blue-footer__link img {
  width: 123px;
  height: 24px;
}

.kickoff-blue-footer__nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.kickoff-blue-footer__nav > ul > li > a {
  color: #fff;
}

@keyframes marquee {
  0% {
    transform: translateX(40px);
  }

  100% {
    transform: translateX(-120%);
  }
}

.kickoff-blue-modal {
  z-index: 999;
  overflow-y: auto;
  width: 327px;
  border: none;
  padding: 0;
  box-shadow: 0px 0px 200px 0px rgba(157, 212, 239, 0.5019607843);
}

.kickoff-blue-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.kickoff-blue-modal[open] {
  animation: popup-zoom-in 75ms linear;
}

.kickoff-blue-modal__close {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  transition: transform 75ms linear;
  padding: 0;
}

.kickoff-blue-modal__close:hover {
  transform: scale(1.2);
}

.kickoff-blue-modal__close > img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  display: block;
}

.kickoff-blue-modal__content {
  background-color: #fff;
  padding: 48px 32px;
}

.kickoff-blue-modal--message {
  text-align: center;
}

.kickoff-blue-modal--message .kickoff-blue-modal__content {
  padding: 24px 60px;
}

.kickoff-blue-modal-age::backdrop {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.1);
}

.kickoff-blue-modal-age__content {
  padding: 32px 24px;
}

.kickoff-blue-modal-age__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.kickoff-blue-modal-age__question {
  margin-bottom: 24px !important;
  text-align: center;
}

.kickoff-blue-modal-age__action {
  text-align: center;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.kickoff-blue-modal-age__button-wrapper {
  position: relative;
  display: block;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  background-color: #ddd;
  padding: 1px;
}

.kickoff-blue-modal-age__button-wrapper:hover {
  background-color: #eacd57;
}

.kickoff-blue-modal-age__yes,
.kickoff-blue-modal-age__no {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  border: none;
  outline: none;
  font-family: inherit;
  text-decoration: none;
  transition: 125ms ease;
  justify-content: center;
  font-weight: 800;
  color: #040106;
  line-height: 1.2;
  display: block;
  padding: 12px 35px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.kickoff-blue-modal-age__yes {
  background-color: #eacd57;
}

.kickoff-blue-modal-age__yes:hover {
  background-color: #ffcc00;
}

.kickoff-blue-modal-age__no {
  background-color: #fff;
}

.kickoff-blue-modal-age__no:hover {
  background-color: #eacd57;
}

.kickoff-blue-modal-form__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 32px;
  font-weight: 700;
}

.kickoff-blue-modal-form__group {
  position: relative;
}

.kickoff-blue-modal-form__group + .kickoff-blue-modal-form__group {
  margin-top: 16px;
}

.kickoff-blue-modal-form__input {
  width: 100%;
  min-height: 59px;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  padding: 20px 16px;
  transition: 75ms ease;
  font-family: inherit;
}

.kickoff-blue-modal-form__input::-moz-placeholder {
  font-size: 14px;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.6);
}

.kickoff-blue-modal-form__input::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.6);
}

.kickoff-blue-modal-form__input:focus::-moz-placeholder {
  opacity: 0;
}

.kickoff-blue-modal-form__input:focus::placeholder {
  opacity: 0;
}

.kickoff-blue-modal-form__input:focus-visible {
  outline: none;
}

.kickoff-blue-modal-form__input:focus {
  border: 1px solid #040106;
}

.kickoff-blue-modal-form__input:not(:-moz-placeholder-shown) {
  border: 1px solid #040106;
}

.kickoff-blue-modal-form__input:not(:placeholder-shown) {
  border: 1px solid #040106;
}

.kickoff-blue-modal-form__input[data-invalid]:not(:-moz-placeholder-shown):not(:focus) {
  border: 1px solid #d7153a;
}

.kickoff-blue-modal-form__input[data-invalid]:not(:placeholder-shown):not(:focus) {
  border: 1px solid #d7153a;
}

.kickoff-blue-modal-form__error {
  position: absolute;
  top: calc(100% - 1px);
  font-size: 10px;
  line-height: 1;
  color: #d7153a;
}

.kickoff-blue-modal-form__button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  border: none;
  outline: none;
  font-family: inherit;
  text-decoration: none;
  transition: 125ms ease;
  justify-content: center;
  font-weight: 800;
  color: #040106;
  line-height: 1.2;
  display: block;
  padding: 12px 35px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  background-color: #eacd57;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.kickoff-blue-modal-form__button:hover {
  background-color: #ffcc00;
}

.kickoff-blue-modal-form__question {
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  text-align: center;
  display: block;
}

@keyframes popup-zoom-in {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.kickoff-blue-shadow-wrapper {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.kickoff-blue-page {
  padding-top: 194px;
}

.kickoff-blue-page h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.kickoff-blue-page section + section {
  margin-top: 27px;
}

.kickoff-blue-page h2 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 40px;
}

.kickoff-blue-page ul {
  padding-left: 22px;
  margin-top: 20px;
  margin-bottom: 16px;
}

.kickoff-blue-index__intro {
  margin-bottom: 40px;
}

.kickoff-blue-index__choose {
  margin-bottom: 40px;
}

.kickoff-blue-index__start {
  position: relative;
  z-index: 1;
}

.kickoff-blue-index__events {
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
}

.kickoff-blue-watch {
  position: relative;
}

.kickoff-blue-watch::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 863px;
  background-image: url("../archive/kickoff-blue-watch-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: -73%;
}

.kickoff-blue-watch__text {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #ca9613 0%, #e8cf8e 38.46%, #c89c2d 72.6%, #c5bd75 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 64px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: transparent;
  padding: 100px 24px;
}

.kickoff-blue-intro {
  min-height: 732px;
  background: linear-gradient(180deg, rgba(0, 19, 43, 0) 0%, #00132b 100%), url("../archive/kickoff-blue-intro-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: 0, 73%;
}

.kickoff-blue-intro__body {
  padding-top: 354px;
}

.kickoff-blue-intro__uptitle {
  font-style: italic;
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 16px;
}

.kickoff-blue-intro__title {
  font-size: 40px;
  margin-bottom: 24px;
  max-width: 227px;
}

.kickoff-blue-intro__descr {
  margin-bottom: 40px;
  max-width: 277px;
}

.kickoff-blue-intro__button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  border: none;
  outline: none;
  font-family: inherit;
  text-decoration: none;
  transition: 125ms ease;
  justify-content: center;
  font-weight: 800;
  color: #040106;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 16px;
  padding: 18px 66px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  background-color: #eacd57;
}

.kickoff-blue-intro__button:hover {
  background-color: #ffcc00;
}

.kickoff-blue-choose__image {
  margin-left: -24px;
  margin-right: -24px;
  overflow: hidden;
  min-height: 410px;
}

.kickoff-blue-choose__image > img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  display: block;
  transform: scale(1.2);
  transform-origin: top left;
}

.kickoff-blue-choose-card {
  background-color: #fff;
  box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.3019607843) inset, 0px 4px 30px 0px #000a16;
  color: #040106;
  padding: 24px;
}

.kickoff-blue-choose-card__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.kickoff-blue-choose-card__descr {
  margin-bottom: 24px;
}

.kickoff-blue-choose-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kickoff-blue-choose-card__features > li {
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 24px;
  line-height: 1;
  font-size: 14px;
}

.kickoff-blue-choose-card__features > li > img {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kickoff-blue-choose-card__features > li + li {
  margin-top: 16px;
}

.kickoff-blue-choose-extra {
  padding: 24px 40px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 300px;
  margin-left: auto;
  text-align: center;
  font-size: 18px;
}

.kickoff-blue-start__header {
  position: relative;
  margin-bottom: 44px;
}

.kickoff-blue-start__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 0;
}

.kickoff-blue-start__arrow {
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00132b;
  border-radius: 50%;
}

.kickoff-blue-start__arrow > img {
  width: 40px;
  height: 40px;
}

.kickoff-blue-start__body {
  background-color: #0d2849;
  padding: 64px 24px;
  box-shadow: 0px 4px 30px 0px #000a16, 0px 4px 100px 0px rgba(0, 10, 22, 0.3019607843) inset;
  margin-right: -24px;
  margin-left: -24px;
}

.kickoff-blue-start__steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kickoff-blue-start__step + .kickoff-blue-start__step {
  margin-top: 64px;
}

.kickoff-blue-start-step {
  position: relative;
  min-height: 169px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
}

.kickoff-blue-start-step:nth-child(1) {
  padding: 25px 41px 60px;
}

.kickoff-blue-start-step:nth-child(2) {
  padding: 16px 18px 60px;
}

.kickoff-blue-start-step:nth-child(3) {
  padding: 25px 20px 60px;
}

.kickoff-blue-start-step:nth-child(4) {
  padding: 25px 16px 60px;
}

.kickoff-blue-start-step__info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.kickoff-blue-start-step__number {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
}

.kickoff-blue-start-step__title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}

.kickoff-blue-start-step__button-wrapper {
  transform: translate(-50%, 20%);
  position: absolute;
  bottom: 0;
  left: 50%;
  min-width: 203px;
}

.kickoff-blue-start-step__button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  border: none;
  outline: none;
  font-family: inherit;
  text-decoration: none;
  transition: 125ms ease;
  justify-content: center;
  font-weight: 800;
  color: #040106;
  line-height: 1.2;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  background-color: #eacd57;
  font-size: 16px;
  text-transform: uppercase;
  padding: 18px 66px;
}

.kickoff-blue-start-step__button:hover {
  background-color: #ffcc00;
}

.kickoff-blue-start-step__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 121px;
  height: 121px;
}

.kickoff-blue-start-step:nth-child(2) .kickoff-blue-start-step__image {
  transform: translate(-50%, 31%);
}

.kickoff-blue-start-step:nth-child(3) .kickoff-blue-start-step__image {
  transform: translate(-50%, 49%);
}

.kickoff-blue-start-step:nth-child(4) .kickoff-blue-start-step__image {
  transform: translate(-50%, 60%);
}

.kickoff-blue-start-step__image > img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  display: block;
}

.kickoff-blue-events__title {
  font-size: 32px;
  margin-bottom: 32px;
  text-align: center;
}

.kickoff-blue-events__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kickoff-blue-events-item {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  font-family: inherit;
  transition: 125ms ease;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  padding: 24px;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kickoff-blue-events-item:hover {
  box-shadow: 0px 0px 40px 0px #637f9d;
}

.kickoff-blue-events-item__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: auto;
}

.kickoff-blue-events-item__game {
  background-color: #49623a;
  border-radius: 100px;
  padding: 4px 6px;
  font-weight: 500;
  font-size: 12px;
}

.kickoff-blue-events-item__country {
  font-size: 12px;
}

.kickoff-blue-events-item__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.kickoff-blue-events-item__team {
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.kickoff-blue-events-item__team > img {
  height: 56px;
  width: auto;
  margin-bottom: 8px;
}

.kickoff-blue-events-item__clock {
  font-weight: 800;
  line-height: 1;
  font-size: 16px;
  margin-bottom: 8px;
}

.kickoff-blue-events-item__odds {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.kickoff-blue-events-item__odd {
  background-color: #637f9d;
  font-size: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 14px;
}

.kickoff-blue-events-item__value {
  font-weight: 800;
  font-size: 16px;
}

.kickoff-blue-stories {
  position: relative;
}

.kickoff-blue-stories::before {
  position: absolute;
  content: "";
  background-image: url("../archive/kickoff-blue-stories-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  top: 35%;
  height: 592px;
  background-position: center;
}

.kickoff-blue-stories__body {
  position: relative;
  z-index: 1;
}

.kickoff-blue-stories__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
}

.kickoff-blue-stories__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}

.kickoff-blue-stories__list:-webkit-scrollbar {
  display: none;
}

.kickoff-blue-stories__item:nth-child(1) {
  position: relative;
}

.kickoff-blue-stories__item:nth-child(1)::before {
  content: "“";
  position: absolute;
  top: -41px;
  left: -28px;
  font-size: 100px;
  font-style: italic;
  color: #4d7fbb;
}

.kickoff-blue-stories-item {
  height: 100%;
  display: flex;
  gap: 40px;
  flex-direction: column;
  background-color: #fff;
  color: #040106;
  padding: 24px;
  box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.3019607843) inset, 0px 4px 30px 0px #000a16;
}

.kickoff-blue-stories-item__quote {
  font-style: italic;
}

.kickoff-blue-stories-item__author {
  text-align: right;
  margin-top: auto;
}

.kickoff-blue-stories-item__author::before {
  content: "— ";
}

@media (min-width: 425px) {
  .kickoff-blue-events-item__teams {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 576px) {
  .kickoff-blue-footer__partners {
    width: auto;
    margin-right: 0;
    margin-bottom: 48px;
    margin-left: 0;
    overflow: visible;
  }

  .kickoff-blue-footer__loop {
    animation: none;
  }

  .kickoff-blue-modal {
    width: 420px;
  }
}

@media (min-width: 768px) {
  .kickoff-blue-modal {
    width: 752px;
  }

  .kickoff-blue-events__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .kickoff-blue-events__item {
    height: 100%;
  }

  .kickoff-blue-events-item {
    gap: 16px;
  }

  .kickoff-blue-events-item__team > img {
    height: 64px;
  }

  .kickoff-blue-events-item__time {
    font-size: 18px;
  }

  .kickoff-blue-events-item__clock {
    font-size: 24px;
  }

  .kickoff-blue-events-item__odds {
    margin-top: auto;
  }
}

@media (min-width: 992px) {
  .kickoff-blue {
    font-size: 18px;
  }

  .kickoff-blue__main {
    margin-bottom: 100px;
  }

  .kickoff-blue-header__body {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .kickoff-blue-header__logo {
    width: 163px;
    height: 83px;
    margin-bottom: 0;
  }

  .kickoff-blue-footer {
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .kickoff-blue-footer__header {
    margin-bottom: 48px;
  }

  .kickoff-blue-footer__logo {
    width: 163px;
    height: 83px;
  }

  .kickoff-blue-footer__age {
    width: 200px;
    height: 69px;
  }

  .kickoff-blue-footer__content {
    margin-bottom: 48px;
  }

  .kickoff-blue-footer__content p + p {
    margin-top: 23px;
  }

  .kickoff-blue-footer__loop {
    gap: 48px;
  }

  .kickoff-blue-footer__loop li:nth-child(1) .kickoff-blue-footer__link img {
    width: 300px;
    height: 39px;
  }

  .kickoff-blue-footer__loop li:nth-child(2) .kickoff-blue-footer__link img {
    width: 206px;
    height: 83px;
  }

  .kickoff-blue-footer__loop li:nth-child(3) .kickoff-blue-footer__link img {
    width: 200px;
    height: 39px;
  }

  .kickoff-blue-footer__nav > ul {
    gap: 48px;
  }

  .kickoff-blue-modal__close {
    width: 24px;
    height: 24px;
  }

  .kickoff-blue-modal--message .kickoff-blue-modal__content {
    padding: 48px 32px;
  }

  .kickoff-blue-modal-age__content {
    padding: 48px 32px;
  }

  .kickoff-blue-modal-age__title {
    margin-bottom: 32px;
  }

  .kickoff-blue-modal-age__question {
    margin-bottom: 32px !important;
  }

  .kickoff-blue-modal-age__button-wrapper {
    order: -1;
  }

  .kickoff-blue-modal-form__title {
    margin-bottom: 40px;
  }

  .kickoff-blue-page {
    padding-top: 162px;
  }

  .kickoff-blue-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .kickoff-blue-page section + section {
    margin-top: 40px;
  }

  .kickoff-blue-page h2 {
    font-size: 32px;
    margin-top: 56px;
    margin-bottom: 24px;
  }

  .kickoff-blue-page ul {
    padding-left: 26px;
    margin-top: 24px;
    margin-bottom: 20px;
  }

  .kickoff-blue-index__events {
    margin-bottom: 100px;
  }

  .kickoff-blue-watch::before {
    top: -108%;
  }

  .kickoff-blue-watch__text {
    font-size: 120px;
    padding: 105px 30px 94px;
  }

  .kickoff-blue-intro {
    min-height: 792px;
  }

  .kickoff-blue-intro__body {
    padding-top: 286px;
  }

  .kickoff-blue-intro__title {
    font-size: 90px;
    max-width: none;
  }

  .kickoff-blue-intro__descr {
    font-size: 18px;
    max-width: 573px;
  }

  .kickoff-blue-choose__body {
    display: flex;
  }

  .kickoff-blue-choose__content {
    flex-shrink: 0;
    flex-basis: 461px;
    z-index: 1;
  }

  .kickoff-blue-choose__image {
    order: -1;
    margin-right: -60px;
  }

  .kickoff-blue-choose__image > img {
    transform: none;
  }

  .kickoff-blue-choose-card {
    padding: 40px;
  }

  .kickoff-blue-choose-card__title {
    font-size: 48px;
    text-align: left;
    margin-bottom: 40px;
  }

  .kickoff-blue-start__title {
    font-size: 48px;
  }

  .kickoff-blue-start__body {
    margin-right: 0;
    margin-left: 0;
  }

  .kickoff-blue-start__body {
    padding: 58px 38px 90px 96px;
  }

  .kickoff-blue-start__step + .kickoff-blue-start__step {
    margin-top: 60px;
  }

  .kickoff-blue-start__step:nth-child(2),
  .kickoff-blue-start__step:nth-child(4) {
    margin-left: auto;
  }

  .kickoff-blue-start__step:nth-child(4) {
    margin-right: 60px;
  }

  .kickoff-blue-start-step:nth-child(1) {
    padding: 25px 41px 25px;
  }

  .kickoff-blue-start-step:nth-child(2) {
    padding: 16px 185px 32px 40px;
  }

  .kickoff-blue-start-step:nth-child(3) {
    padding: 25px 198px 20px 40px;
  }

  .kickoff-blue-start-step:nth-child(4) {
    width: 558px;
    padding: 25px 170px 20px 40px;
  }

  .kickoff-blue-start-step {
    width: 617px;
  }

  .kickoff-blue-start-step__info {
    gap: 0;
    align-items: stretch;
  }

  .kickoff-blue-start-step__number {
    font-size: 120px;
  }

  .kickoff-blue-start-step__text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 0px 17px;
    margin-left: -15px;
  }

  .kickoff-blue-start-step__title {
    font-size: 22px;
    margin-bottom: 0;
  }

  .kickoff-blue-start-step__button-wrapper {
    transform: translateY(-50%);
    top: 50%;
    right: 38px;
    bottom: unset;
    left: unset;
  }

  .kickoff-blue-start-step__image {
    bottom: unset;
    left: unset;
  }

  .kickoff-blue-start-step:nth-child(2) .kickoff-blue-start-step__image {
    transform: none;
    top: -51px;
    right: -29px;
    width: 227px;
    height: 226px;
  }

  .kickoff-blue-start-step:nth-child(3) .kickoff-blue-start-step__image {
    transform: none;
    top: -42px;
    right: -13px;
    width: 211px;
    height: 272px;
  }

  .kickoff-blue-start-step:nth-child(4) .kickoff-blue-start-step__image {
    transform: none;
    top: 0;
    right: -60px;
    width: 207px;
    height: 169px;
  }

  .kickoff-blue-events__title {
    font-size: 48px;
  }

  .kickoff-blue-stories::before {
    height: 810px;
    top: -10%;
  }

  .kickoff-blue-stories__title {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .kickoff-blue-stories__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .kickoff-blue-stories__item:nth-child(1)::before {
    top: -77px;
    left: -51px;
    font-size: 200px;
  }

  .kickoff-blue-stories-item {
    padding: 32px;
  }
}

@media (min-width: 1140px) {
  .kickoff-blue--page {
    background-position-x: center;
    background-size: contain;
  }

  .container {
    box-sizing: content-box;
    margin: 0 auto;
    width: auto;
    max-width: 1140px;
  }

  .kickoff-blue-modal-form__input {
    min-height: 80px;
    font-size: 16px;
    padding: 30px;
  }

  .kickoff-blue-modal-form__input::-moz-placeholder {
    font-size: 16px;
  }

  .kickoff-blue-modal-form__input::placeholder {
    font-size: 16px;
  }

  .kickoff-blue-modal-form__error {
    top: calc(100% - 2px);
    font-size: 18px;
  }

  .kickoff-blue-index__intro {
    margin-bottom: 0;
  }

  .kickoff-blue-index__choose {
    margin-bottom: 0;
  }

  .kickoff-blue-index__start {
    margin-top: -58px;
  }

  .kickoff-blue-choose__content {
    margin-top: 121px;
  }

  .kickoff-blue-choose__image {
    order: -1;
    margin-left: calc((1044px - 100vw) / 2);
    margin-right: -167px;
  }

  .kickoff-blue-start-step:nth-child(1) {
    position: relative;
  }

  .kickoff-blue-start-step:nth-child(1)::before {
    position: absolute;
    content: "";
    background-image: url("../archive/kickoff-blue-start-dotline.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 136px;
    height: 118px;
    right: -172px;
    top: 39%;
  }

  .kickoff-blue-start-step:nth-child(2) {
    position: relative;
  }

  .kickoff-blue-start-step:nth-child(2)::before {
    position: absolute;
    content: "";
    background-image: url("../archive/kickoff-blue-start-dotline.png");
    transform: rotate(90deg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 136px;
    height: 118px;
    right: 34%;
    top: unset;
    bottom: -160px;
  }

  .kickoff-blue-start-step:nth-child(3) {
    position: relative;
  }

  .kickoff-blue-start-step:nth-child(3)::before {
    position: absolute;
    content: "";
    background-image: url("../archive/kickoff-blue-start-dotline.png");
    transform: rotate(180deg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 136px;
    height: 118px;
    right: 44%;
    top: unset;
    bottom: -165px;
  }

  .kickoff-blue-events__body {
    display: flex;
    gap: 24px;
  }

  .kickoff-blue-events__list {
    flex-basis: 752px;
    margin-left: auto;
  }
}

@media (min-width: 1700px) {
  .kickoff-blue--page {
    background-size: cover;
  }
}

@media (max-width: 991.98px) {
  .kickoff-blue-watch__text span {
    display: block;
  }

  .kickoff-blue-stories__list {
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    padding-top: 20px;
    margin-right: -24px;
    margin-left: -24px;
  }

  .kickoff-blue-stories__item {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    flex-basis: 239px;
    flex-grow: 0;
    flex-shrink: 0;
  }

  .kickoff-blue-stories__item:first-of-type {
    margin-left: 24px;
  }

  .kickoff-blue-stories__item:last-of-type {
    margin-right: 24px;
  }
}

@media (max-width: 767.98px) {
  .kickoff-blue-events__item + .kickoff-blue-events__item {
    margin-top: 24px;
  }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .kickoff-blue-stories__item {
    flex-basis: 298px;
  }
}

@media (any-hover: hover) {
  .kickoff-blue a:hover {
    text-decoration: none;
  }

  .kickoff-blue-modal-form__question:hover {
    text-decoration: none;
  }
}
.kickoff-blue-header__nav {
  margin-top: 12px;
  text-align: center;
}

.kickoff-blue-header__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 24px;
  flex-wrap: wrap;
}

.kickoff-blue-header__menu li a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.kickoff-blue-header__menu li a:hover {
  color: #eacd57;
}
.kickoff-blue-stats {
  background-color: #061a30;
  padding: 60px 0;
  color: #fff;
  text-align: center;
}

.kickoff-blue-stats__title {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.kickoff-blue-stats__text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

.kickoff-blue-stats__chart img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  margin: 0 auto;
}
/* —————— Top Sports by Province —————— */
.kickoff-blue-province {
  background: #061a30;
  padding: 60px 0;
  color: #fff;
  text-align: center;
}
.kickoff-blue-province__title {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.kickoff-blue-province__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.province-card {
  background: #0d2849;
  padding: 20px;
  border-radius: 8px;
}
.province-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}
.province-card ul {
  list-style: none;
  padding: 0;
}
.province-card ul li {
  margin: 8px 0;
}

/* —————— Why Canadians Love These Sports —————— */
.kickoff-blue-why {
  padding: 60px 0;
}
.kickoff-blue-why__title {
  font-size: 32px;
  font-weight: 800;
  color: #eacd57;
  text-align: center;
  margin-bottom: 16px;
}
.kickoff-blue-why__text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* —————— Interesting Facts & Stats —————— */
.kickoff-blue-facts {
  background: #061a30;
  padding: 60px 0;
  text-align: center;
}
.kickoff-blue-facts__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
}
.kickoff-blue-facts__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.fact-card {
  background: #0d2849;
  padding: 20px;
  border-radius: 8px;
  width: 200px;
}
.fact-card strong {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

/* —————— Major Annual Sporting Events —————— */
.kickoff-blue-events-list {
  padding: 60px 0;
}
.kickoff-blue-events-list__title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}
.kickoff-blue-events-list__items {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}
.kickoff-blue-events-list__items li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* —————— Youth & Amateur Sports Development —————— */
.kickoff-blue-youth {
  background: #061a30;
  padding: 60px 0;
}
.kickoff-blue-youth__title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}
.kickoff-blue-youth__text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* —————— Watch Canadian Sports Live —————— */
.kickoff-blue-watch-live {
  padding: 60px 0;
  text-align: center;
}
.kickoff-blue-watch-live__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #eacd57;
}
.watch-live-icons img {
  max-width: 120px;
  margin: 0 16px;
  vertical-align: middle;
}

/* —————— Top Canadian Athletes —————— */
.kickoff-blue-athletes {
  background: #061a30;
  padding: 60px 0;
}
.kickoff-blue-athletes__title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
}
.kickoff-blue-athletes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  justify-items: center;
}
.athlete-card {
  text-align: center;
}
.athlete-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}
.athlete-card h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

/* Адаптив */
@media (min-width: 768px) {
  .kickoff-blue-events-list__items li {
    font-size: 18px;
  }
}
