:root {
  --color-primary: #2C346B;
  --color-primary-light: #7895BC;
  --color-primary-extra-light: #E0F3FF;
  --color-secondary: #DAA56A;
  --color-tertiary: #A2F97A;
  --font-size-small: clamp(0.75rem, 0.5625rem + 0.8333vw, 1.5625rem);
  --font-size-normal: clamp(1.375rem, 0.9712rem + 1.7949vw, 3.125rem);
  --font-size-title: clamp(3.125rem, 2.4038rem + 3.2051vw, 6.25rem);
  --regular:400;
  --bold:700;
}

html {
  overscroll-behavior: none;
  scroll-behavior: smooth;
  font-family: Lalezar, sans-serif;
}

html, body {
  background-color: var(--color-primary);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, div, span {
  margin: 0;
  padding: 0;
}

body {
  max-width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
}

span {
  color: var(--color-tertiary);
}

main {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  background-color: var(--color-secondary);
  z-index: 1000;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 15px 5px;
}

@media (max-width: 870px) {
  .scroll-header {
    padding: 12px 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 480px) {
  .scroll-header {
    padding: 10px 5px;
  }
}

.scroll-header__nav {
  width: 100%;
}

.scroll-header__links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-inline: 5px;
  padding: 0;
  max-width: 100%;
}

.scroll-header__links li {
  border-radius: 10px;
  width: 100%;
  height: 50px;
  list-style: none;
  background-color: var(--color-primary);
  -webkit-box-shadow: 5px 7px 7px 0px #00000040;
          box-shadow: 5px 7px 7px 0px #00000040;
}

@media (max-width: 1024px) {
  .scroll-header__links li {
    height: 45px;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .scroll-header__links li {
    height: 40px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .scroll-header__links li {
    height: 35px;
    border-radius: 5px;
    -webkit-box-shadow: 3px 4px 4px 0px #00000040;
            box-shadow: 3px 4px 4px 0px #00000040;
  }
}

.scroll-header__links li a {
  color: var(--color-secondary);
  font-size: var(--font-size-small);
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.scroll-header--visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.main-header {
  margin-bottom: 85px;
}

.main-header .header__ticket {
  margin: 25px 0 50px;
  max-width: 100vw;
  padding: 0 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 1fr;
      grid-template-columns: 3fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .main-header .header__ticket {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .main-header .header__ticket {
    margin: 10px 0 20px;
    padding: 0 10px;
  }
}

.main-header .header__ticket__large {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  height: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 70px 50px 30px 50px;
  border-radius: 50px 20px 20px 50px;
  background-color: var(--color-primary-extra-light);
  overflow: hidden;
  -webkit-box-shadow: 14px 15px 23.8px 0px #00000040;
          box-shadow: 14px 15px 23.8px 0px #00000040;
}

@media (max-width: 1024px) {
  .main-header .header__ticket__large {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px;
    padding: 50px 30px 20px 30px;
    height: 90px;
    border-radius: 30px 15px 15px 30px;
  }
}

@media (max-width: 768px) {
  .main-header .header__ticket__large {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 50px 20px 20px 20px;
    border-radius: 20px;
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.main-header .header__ticket__large h1 {
  max-width: 554px;
  display: inline-block;
}

.main-header .header__ticket__large h1 img {
  max-width: 554px;
  height: auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .main-header .header__ticket__large h1 img {
    width: 80%;
  }
}

.main-header .header__ticket__large::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  background-color: var(--color-primary-light);
  left: 0;
  top: 0;
}

@media (max-width: 480px) {
  .main-header .header__ticket__large::before {
    height: 20px;
  }
}

.main-header .header__ticket__large::after {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 40px);
  background: url(images/dash.png) repeat-y;
  right: 0;
  top: 20px;
  z-index: 1;
  -webkit-transform: translate(1px);
          transform: translate(1px);
}

@media (max-width: 768px) {
  .main-header .header__ticket__large::after {
    display: none;
  }
}

.main-header .header__ticket__small {
  position: relative;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-primary-extra-light);
  border-radius: 20px 50px 50px 20px;
  -webkit-box-shadow: 14px 15px 23.8px 0px #00000040;
          box-shadow: 14px 15px 23.8px 0px #00000040;
}

@media (max-width: 1024px) {
  .main-header .header__ticket__small {
    height: 160px;
    border-radius: 15px 40px 40px 15px;
  }
}

@media (max-width: 768px) {
  .main-header .header__ticket__small {
    display: none;
  }
}

.main-header .header__ticket__small::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  background-color: var(--color-primary-light);
  left: 0;
  top: 0;
}

@media (max-width: 480px) {
  .main-header .header__ticket__small::before {
    height: 20px;
  }
}

.main-header .header__ticket__small::after {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 40px);
  background: url(images/dash.png) repeat-y;
  left: 0;
  top: 20px;
  z-index: 1;
  -webkit-transform: translate(-1px);
          transform: translate(-1px);
}

@media (max-width: 768px) {
  .main-header .header__ticket__small::after {
    display: none;
  }
}

.main-header .header__ticket__small__:last-child {
  grid-column: span 2;
}

.main-header .header__ticket__plane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: inter;
  font-weight: var(--bold);
  font-size: var(--font-size-small);
  gap: 10px;
}

@media (max-width: 1024px) {
  .main-header .header__ticket__plane {
    display: none;
  }
}

.main-header .header__ticket__plane > div {
  color: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-header .header__ticket__plane > div > div {
  color: var(--color-primary-light);
}

.main-header .header__ticket__sign {
  position: relative;
  display: -ms-grid;
  display: grid;
  padding-left: 3vw;
}

@media (max-width: 768px) {
  .main-header .header__ticket__sign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 30px;
    width: 100%;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .main-header .header__ticket__sign {
    padding-left: 20px;
    width: 100%;
    gap: 5px;
  }
}

.main-header .header__ticket__sign--by {
  position: absolute;
  left: 20px;
  top: 40px;
  color: var(--color-primary-light);
  font-family: inter;
  font-weight: var(--bold);
  font-size: var(--font-size-small);
}

@media (max-width: 1024px) {
  .main-header .header__ticket__sign--by {
    top: 20px;
    left: 10px;
  }
}

.main-header .header__ticket__sign--responsive {
  position: relative;
  display: none;
}

.main-header .header__ticket__sign--responsive .header__ticket__sign--by {
  position: static;
  font-size: var(--font-size-normal);
}

@media (max-width: 768px) {
  .main-header .header__ticket__sign--responsive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .main-header .header__ticket__sign--responsive {
    gap: 5px;
  }
}

.main-header .header__ticket__sign img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .main-header .header__ticket__sign img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .main-header .header__ticket__sign img {
    width: 100%;
  }
}

.main-header__links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-inline: 5px;
  padding: 0;
}

.main-header__links li {
  border-radius: 10px;
  width: 100%;
  height: 60px;
  list-style: none;
  background-color: var(--color-secondary);
  -webkit-box-shadow: 5px 7px 7px 0px #00000040;
          box-shadow: 5px 7px 7px 0px #00000040;
}

@media (max-width: 1024px) {
  .main-header__links li {
    height: 50px;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .main-header__links li {
    height: 45px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .main-header__links li {
    height: 40px;
    border-radius: 5px;
    -webkit-box-shadow: 3px 4px 4px 0px #00000040;
            box-shadow: 3px 4px 4px 0px #00000040;
  }
}

.main-header__links li a {
  color: var(--color-primary);
  font-size: var(--font-size-small);
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.game {
  display: -ms-grid;
  display: grid;
  gap: 25px;
  justify-items: center;
}

@media (max-width: 1024px) {
  .game {
    gap: 20px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .game {
    gap: 15px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .game {
    gap: 12px;
    padding: 0 10px;
  }
}

.game__subtitle {
  color: var(--color-secondary);
  font-size: var(--font-size-normal);
}

.game__title {
  color: var(--color-secondary);
  font-size: var(--font-size-title);
  font-weight: var(--regular);
}

.game p {
  font-size: var(--font-size-normal);
  text-align: center;
  color: var(--color-secondary);
  max-width: 1200px;
}

.game__video {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 75px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media (max-width: 1024px) {
  .game__video {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .game__video {
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {
  .game__video {
    margin-bottom: 25px;
  }
}

.game__video iframe {
  z-index: 1;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
  .game__video iframe {
    max-width: 100%;
  }
}

.game__video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 62%;
  background-color: var(--color-secondary);
  z-index: 0;
}

@media (max-width: 1024px) {
  .game__video::before {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .game__video::before {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .game__video::before {
    height: 150px;
  }
}

.game__image-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 1600px) {
  .game__image-carousel {
    display: -ms-grid;
    display: grid;
    width: auto;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
  }
}

@media (max-width: 1024px) {
  .game__image-carousel {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .game__image-carousel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .game__image-carousel {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.game__image-carousel img {
  height: auto;
}

.game__image-carousel img:nth-child(odd) {
  aspect-ratio: 380/507;
}

@media (max-width: 1600px) {
  .game__image-carousel img:nth-child(even) {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .game__image-carousel img {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
}

.game__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-block: 100px;
  width: 100%;
}

@media (max-width: 1024px) {
  .game__banner {
    margin-block: 60px;
  }
}

@media (max-width: 768px) {
  .game__banner {
    margin-block: 40px;
  }
}

@media (max-width: 480px) {
  .game__banner {
    margin-block: 25px;
  }
}

.game__banner img {
  max-width: 100%;
  height: auto;
}

.team {
  width: 100%;
}

.team__banner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team__banner img {
  max-width: 100%;
  height: auto;
  width: 100%;
}
/*# sourceMappingURL=styles.css.map */