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

html {
  max-width: 100vw;
  height: 100%;
  font-family: "Lato", sans-serif;
  overflow: hidden auto;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  outline: none;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  line-height: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.content-wrapper.row {
  flex-direction: row;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

.device-mobile .desktop-only,
.device-tablet .desktop-only {
  display: none !important;
}

@font-face {
  font-weight: 100 900;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-display: block;
  src: local("Montserrat"), url("../fonts/montserrat/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
}
@font-face {
  font-weight: 400;
  font-family: Lato;
  font-style: normal;
  font-display: block;
  src: local("Lato Regular"), local("Lato-Regular"), url("../fonts/lato/Lato-Regular.ttf") format("truetype");
}
@font-face {
  font-weight: 700;
  font-family: Lato;
  font-style: normal;
  font-display: block;
  src: local("Lato Bold"), local("Lato-Bold"), url("../fonts/lato/Lato-Bold.ttf") format("truetype");
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

p {
  color: #dfdfdf;
  font-family: "Lato", sans-serif;
}

.heading-first {
  z-index: 1;
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  line-height: 40px;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width: 1025px) {
  .heading-first {
    font-size: 64px;
    line-height: 72px;
  }
}

.heading-first .text-pink {
  color: #e41157;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.heading-second {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 52px;
  letter-spacing: 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .heading-second {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    font-family: Montserrat, sans-serif;
    line-height: 40px;
    letter-spacing: 0;
    text-align: center;
  }
}

.text-main {
  color: #DFDFDF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  font-family: Montserrat, sans-serif;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width: 1025px) {
  .text-main {
    font-size: 22px;
    line-height: 30px;
  }
}

.text-mid {
  color: #dfdfdf;
  font-size: 18px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  line-height: 1.5556;
  letter-spacing: 0;
  text-align: center;
}

.text-small {
  color: #9f9f9f;
  font-size: 14px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  line-height: 1.4286;
  letter-spacing: 0;
}

.text-center {
  text-align: center;
}

.text-lead {
  color: #fff;
  font-size: 18px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #e6004d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  transition: top 0.2s ease-in-out;
  text-decoration: none;
  white-space: nowrap;
}
.skip-link:focus-visible {
  top: 16px;
}

:focus-visible {
  outline: 2px solid #e6004d;
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  width: 100%;
  max-width: 1720px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.content-wrapper {
  width: 100%;
  max-width: 1720px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}

.content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.content-inner--left {
  align-items: flex-start;
  text-align: left;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 1024px) {
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.section-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
}

.grid {
  display: grid;
  gap: 24px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 27;
  width: 100%;
  height: 80px;
  padding: 0;
}
@media (max-width: 1100px) {
  .header {
    height: unset;
  }
}
@media (max-width: 1024px) {
  .header {
    display: none;
  }
}
.header .header-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.header .header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 20px 15px 16px;
}
.header .header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header-logo svg {
  width: 172px;
  max-width: 172px;
  height: auto;
}
.header .header-logo img {
  width: auto;
  max-width: 275px;
  height: 50px;
  margin-right: 12px;
}
@media (max-width: 1100px) {
  .header .header-logo img {
    width: auto;
    margin-right: 0;
    margin-left: 9px;
  }
}
.header .header-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header .header-menu {
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header .header-menu li {
  display: flex;
}
.header .header-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
  padding: 7px 12px;
  border-radius: 9999px;
  color: #bfbfbf;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  font-family: Montserrat, sans-serif;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  white-space: nowrap;
}
@media (min-width: 1025px) {
  .header .header-link:hover {
    color: #fff;
  }
}
.header .btn-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 96px;
  padding: 8px 24px;
  border: 1px solid #9f9f9f;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: Montserrat, sans-serif;
  line-height: 24px;
  word-wrap: break-word;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
}
@media (min-width: 1025px) {
  .header .btn-secondary:hover {
    border: 1px solid #e6004d;
    background: #e6004d;
  }
}

.outplayed {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #000;
  overflow: hidden;
  height: 100vh;
}

body.outplayed {
  min-height: 100vh;
  background: #000;
}

.opening-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: url("../images/solid.webp") no-repeat 50% 30%;
  background-size: cover;
  overflow: hidden;
}

.opening-section .layer-img {
  position: relative;
  top: 0px;
  left: 0;
  z-index: 1;
  width: 100%;
  min-width: 1920px;
  height: auto;
}
@media only screen and (height >= 855px) and (width = 768px) {
  .opening-section .layer-img {
    top: 390px;
  }
}
@media only screen and (height >= 600px) and (width >= 912px) {
  .opening-section .layer-img {
    top: 620px;
    display: flex;
  }
}
@media only screen and (height >= 600px) and (width >= 912px) {
  .opening-section .layer-img {
    top: 720px;
    display: flex;
  }
}
@media only screen and (width >= 1150px) and (height >= 740px) {
  .opening-section .layer-img {
    top: 775px;
  }
}

.opening-section .content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 49px 20px 0;
}

.opening-section .logo {
  width: 100%;
  height: auto;
  margin-top: -20%;
}
@media only screen and (width >= 912px) {
  .opening-section .logo {
    width: auto;
    max-width: 100%;
    height: 1118px;
    margin-top: -368px;
    transform: translateX(22px);
  }
}
@media only screen and (width >= 912px) and (height <= 913px) {
  .opening-section .logo {
    width: auto;
    height: 130vh;
    margin-top: -338px;
  }
}

.opening-section .heading-first {
  position: relative;
  margin: 0 auto 12px;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  line-height: 1.125;
  letter-spacing: 0;
  text-align: center;
  z-index: 2;
}
@media only screen and (width >= 912px) {
  .opening-section .heading-first {
    margin: -216px auto 4px;
  }
}
@media only screen and (width <= 900px) {
  .opening-section .heading-first {
    font-size: 36px;
  }
}
@media only screen and (width <= 435px) {
  .opening-section .heading-first {
    font-size: 24px;
  }
}
@media only screen and (width >= 912px) and (height <= 913px) {
  .opening-section .heading-first {
    margin: -23vh auto 4px;
  }
}

.opening-section .opening-text {
  position: relative;
  margin: 11px auto 14px;
  color: #dfdfdf;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  z-index: 2;
}

.opening-section .opening-text a {
  color: #dfdfdf;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  text-decoration: underline;
}

@media only screen and (width <= 900px) {
  .opening-section .content-wrapper {
    padding: 0 20px;
  }
  .opening-section .opening-text {
    font-size: 18px;
  }
  .opening-section .opening-text a {
    font-size: 18px;
  }
}
/*# sourceMappingURL=main.css.map */
