/*
|--------------------------------------------------------------------------
| IMPORTS
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| ANIMATIONS
|--------------------------------------------------------------------------
*/
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0); }
  100% {
    opacity: 1;
    transform: none; } }
.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0); }
  100% {
    opacity: 1;
    transform: none; } }
.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0); }
  100% {
    opacity: 1;
    transform: none; } }
.fadeInUp {
  animation-name: fadeInUp; }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

.delay-0 {
  animation-delay: 0s !important; }

.delay-100 {
  animation-delay: 100ms !important; }

.delay-200 {
  animation-delay: 200ms !important; }

.delay-300 {
  animation-delay: 300ms !important; }

.delay-400 {
  animation-delay: 400ms !important; }

.delay-500 {
  animation-delay: 500ms !important; }

.delay-600 {
  animation-delay: 600ms !important; }

.delay-700 {
  animation-delay: 800ms !important; }

.delay-800 {
  animation-delay: 800ms !important; }

.delay-900 {
  animation-delay: 900ms !important; }

.delay-1000 {
  animation-delay: 1000ms !important; }

.delay-1100 {
  animation-delay: 1100ms !important; }

.delay-1200 {
  animation-delay: 1200ms !important; }

/*
|--------------------------------------------------------------------------
| Mixins and functions
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| HELPERS
|--------------------------------------------------------------------------
*/
@media screen and (min-width: 769px) {
  .just-mobile {
    display: none !important; } }
@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none !important; } }
/*
|--------------------------------------------------------------------------
| Reset and Base Styles
|--------------------------------------------------------------------------
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

/*html {
	font-size: 16px;
}

@media screen and (max-width: 1920px) {*/
html {
  font-size: calc(16/1920 * 100vw); }

@media screen and (max-width: 768px) {
  html {
    font-size: calc(16/360 * 100vw); } }
body {
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
  background-color: #000; }

/*
|--------------------------------------------------------------------------
| Fonts
|--------------------------------------------------------------------------
*/
@font-face {
  font-family: 'MarkOT-Bold';
  src: url("./fonts/MarkOT-Bold.woff2") format("woff2"), url("./fonts/MarkOT-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }
/*
|--------------------------------------------------------------------------
| Header Section
|--------------------------------------------------------------------------
*/
.header-section {
  background-image: url("../img/header-image_v3.jpg");
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
  height: 62.5rem;
  position: relative; }

.container {
  width: 100%;
  max-width: 75rem;
  position: relative;
  padding: 0 1.25rem; }

/*
|--------------------------------------------------------------------------
| Title Section
|--------------------------------------------------------------------------
*/
.title-section {
  position: absolute;
  top: 7rem;
  left: 6.375rem;
  z-index: 10; }

.count-down-text {
  display: block;
  width: 56.1875rem;
  height: auto;
  margin-bottom: 0.9375rem; }

.fifa-text {
  display: block;
  width: 56.1875rem;
  height: auto;
  margin-bottom: 1.25rem; }

.with-lays-text {
  display: block;
  width: 37rem;
  position: relative;
  left: 10.625rem;
  height: auto;
  margin-bottom: 0.625rem; }

/* Logos Section */
.fifa-logos {
  position: absolute;
  width: 10.125rem;
  top: 22.8125rem;
  left: 29.5rem;
  z-index: 10; }

/*
|--------------------------------------------------------------------------
| Countdown Container
|--------------------------------------------------------------------------
*/
.countdown-container {
  position: absolute;
  top: 45.75rem;
  left: 31.125rem; }
  .countdown-container::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)); }

.countdown-number {
  color: white;
  font-size: 5rem;
  font-family: 'unibody-8-new', monospace; }
  .countdown-number:first-child {
    margin-right: 3.375rem; }
    .countdown-number:first-child + span {
      margin-right: 3.5rem; }

/*
|--------------------------------------------------------------------------
| Field Section
|--------------------------------------------------------------------------
*/
.field-section {
  background-image: url("../img/field_v2.jpg?v=2");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: 92.375rem;
  margin-bottom: 3.125rem;
  position: relative; }
  .field-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25rem;
    background: linear-gradient(to bottom, transparent, black);
    z-index: 0; }
  .privacy-policy-page .field-section {
    padding-top: 5rem;
    text-align: center;
    height: 68.125rem; }
    @media screen and (max-width: 768px) {
      .privacy-policy-page .field-section {
        padding-top: 2.5rem;
        height: 47.5rem;
        background-size: 51.875rem; } }

.field-block {
  background-color: white;
  padding: 2.5rem;
  margin-bottom: 2.5rem; }
  @media screen and (max-width: 768px) {
    .field-block {
      padding: 1.25rem;
      margin-bottom: 1.25rem; } }
  .field-block > div {
    max-height: 37.5rem;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #000 transparent; }
    @media screen and (max-width: 768px) {
      .field-block > div {
        max-height: 25rem; } }
    .field-block > div > div {
      padding-right: 1.25rem; }
      @media screen and (max-width: 768px) {
        .field-block > div > div {
          padding-right: 0.625rem; } }
    .field-block > div::-webkit-scrollbar {
      width: 10px;
      height: 10px; }
    .field-block > div::-webkit-scrollbar-track {
      background: transparent; }
    .field-block > div::-webkit-scrollbar-thumb {
      background-color: #000;
      border-radius: 10px; }
    .field-block > div::-webkit-scrollbar-thumb:hover {
      background-color: black; }
  .field-block p, .field-block li, .field-block th, .field-block td {
    color: black;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif; }
    .field-block p a, .field-block li a, .field-block th a, .field-block td a {
      color: inherit; }
    @media screen and (max-width: 768px) {
      .field-block p, .field-block li, .field-block th, .field-block td {
        font-size: 0.875rem; } }
  .field-block ul, .field-block ol {
    padding-left: 1.25rem; }
  .field-block p, .field-block li, .field-block ul, .field-block ol {
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; }
    .field-block p:first-child, .field-block li:first-child, .field-block ul:first-child, .field-block ol:first-child {
      margin-top: 0; }
    .field-block p:last-child, .field-block li:last-child, .field-block ul:last-child, .field-block ol:last-child {
      margin-bottom: 0; }
  .field-block td, .field-block th {
    padding: 0.3125rem; }

.field-container {
  position: absolute;
  top: 52.125rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "MarkOT-Bold", sans-serif;
  width: 44.6875rem;
  z-index: 10; }
  .privacy-policy-page .field-container {
    margin: 0 auto;
    width: 80rem;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: block; }
    @media screen and (max-width: 768px) {
      .privacy-policy-page .field-container {
        width: 20rem; } }

.field-title {
  color: #FFD700;
  font-size: 4.4375rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  line-height: 1;
  width: 25rem; }
  .privacy-policy-page .field-title {
    width: 100%;
    font-size: 2.5rem;
    color: black;
    margin-bottom: 1.875rem; }
    @media screen and (max-width: 768px) {
      .privacy-policy-page .field-title {
        font-size: 1.875rem;
        margin-bottom: 1.25rem; } }

.field-description {
  color: white;
  font-size: 1.8125rem;
  line-height: 1.2;
  margin-bottom: 5.625rem; }

.field-lays-logo {
  width: 5.5rem;
  height: auto; }
  .privacy-policy-page .field-lays-logo {
    position: relative;
    z-index: 1; }

/*
|--------------------------------------------------------------------------
| Footer Links
|--------------------------------------------------------------------------
*/
.footer-links {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: center; }

.footer-links a,
.footer-links-divider {
  display: inline-block;
  margin: 0.625rem;
  color: white;
  font-family: "MarkOT-Bold", sans-serif;
  text-decoration: none;
  font-size: 1.3125rem;
  font-weight: bold;
  letter-spacing: 0.03125rem;
  transition: color 0.3s ease; }

.footer-links-divider {
  margin: 0 0.125rem 0rem 0.5625rem;
  position: relative;
  top: -0.0625rem; }

.footer-links a:hover {
  color: #FFD700; }

.footer-disclaimer {
  color: white;
  font-size: 12px;
  line-height: 1.2;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  z-index: 10; }

/*
|--------------------------------------------------------------------------
| Responsive Design
|--------------------------------------------------------------------------
*/
@media (max-width: 768px) {
  /*
  |--------------------------------------------------------------------------
  | Header Section
  |--------------------------------------------------------------------------
  */
  .header-section {
    height: 19.6875rem; }

  .container {
    width: 100%; }

  .title-section {
    top: 1.875rem;
    left: 1.25rem; }

  .count-down-text {
    width: 9.375rem;
    margin-bottom: 0.625rem; }

  .fifa-text {
    width: 9.375rem;
    left: 0rem;
    margin-bottom: 0.625rem; }

  .with-lays-text {
    width: 9.375rem;
    left: 0rem; }

  .fifa-logos {
    position: absolute;
    width: 2.5rem;
    top: 8.9375rem;
    left: 4.8125rem; }

  /*
  |--------------------------------------------------------------------------
  | Countdown Container
  |--------------------------------------------------------------------------
  */
  .countdown-container {
    position: absolute;
    top: 14rem;
    left: 2.5625rem; }

  .countdown-number {
    font-size: 1.5625rem; }
    .countdown-number:first-child {
      margin-right: 0.8125rem; }
      .countdown-number:first-child + span {
        margin-right: 0.8125rem; }

  /*
  |--------------------------------------------------------------------------
  | Field Section
  |--------------------------------------------------------------------------
  */
  .field-section {
    height: 30.9375rem;
    margin-bottom: 3.125rem;
    background-size: 45.3125rem;
    background-position: center -11.9375rem; }
    .field-section::after {
      height: 18.75rem; }

  .field-container {
    position: absolute;
    top: 7.9375rem;
    left: 50%;
    transform: translateX(-50%);
    width: 13.75rem; }

  .field-title {
    font-size: 1.5625rem;
    margin-bottom: 0.625rem;
    line-height: 1.2;
    width: 13.75rem; }

  .field-description {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
    line-height: 1.25; }

  .field-lays-logo {
    width: 3.75rem; }

  /*
  |--------------------------------------------------------------------------
  | FOOTER
  |--------------------------------------------------------------------------
  */
  .footer-links a,
  .footer-links-divider {
    font-size: 0.75rem;
    margin: 0; }

  .footer-links-divider {
    margin: 0 0.125rem 0rem 0.5625rem; }

  .footer-disclaimer {
    bottom: -35px; } }

/*# sourceMappingURL=style.css.map */
