/* Color Palette */

:root {
    --color-yellow: #F6B32B;
    --color-blue: #724BFB;
    --color-darkBlue: #4120b3;
    --color-green: #0cc39c;
    --color-white: #fff;
    --color-black: #000;
    --color-orange: #FD8B1F;
    --color-red: #EE4343;

    --color-messageError: #ffc4c4;
    --color-messageSuccess: #00fff5;
    --color-fieldError: #eb5757;

    --font-title: "Dosis", sans-serif;
    --font-text: "Open Sans", monospace;
}

/* Main */

html {
    scroll-behavior: smooth;
    height: 100%;
}

html,
body {
    font-family: var(--font-text);
    font-size: 16px;
    color: var(--color-white);
    margin: 0;
}

body {
    width: 100%;
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-title);
}

h1{
    margin-top: 0;
    font-weight: 700;
}

h1 {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
}


p, ul {
    line-height: 1.5rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--color-white);
}

.bold, strong, b{
    font-weight: 600;
}

/*******************
      HEADER
*******************/
header{
  width: 100%;
  padding: 10px 0;
  position: fixed;
  z-index: 99;
  transition: all .3s;
  border-bottom: 1px solid rgba(255,255,255, .3);
}

header a.logo svg{
  height: 60px;
  display: block;
}

header ul.nav{
  text-align: right;
}
header ul.nav li{
  display: inline-block;
}
header ul.nav li a{
  margin-left: 20px;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}

.scrolled header{
  background: var(--color-yellow);
  border: none;
}

/*******************
      HERO
*******************/
.hero {
    height: 100dvh;
    background: url("../images/hero/desktop/bg.jpg") no-repeat center;
    background-size: cover;
    text-align: center;
}

.hero .container-small{
  z-index: 1;
  position: relative;
}

.hero .logo {
    margin-top: 24dvh;
    position: relative;
    width: 566px;
    height: 315px;
}

.hero-buttons{
    margin-top: 10dvh;
}

.video-trailer{
    width: 60vw;
    height: calc(60vw * 9 / 16);
    border: none;
    display: block;
    max-height: 80dvh;
}

.hero .assets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    z-index: 0;
}

.hero .assets > div {
    width: 100vw;
    height: 100dvh;
    position: absolute;
}

.hero .assets > div img{
    position: absolute;
    animation: animate3D linear infinite;
}

.hero .assets .airplane img {
    top: 0;
    left: 0;
    height: 28dvh;/*299*/
    animation-duration: 12s;
}

.hero .assets .chicken img{
    top: 40%;
    left: -5%;
    height: 22dvh;/*238*/
    animation-duration: 18s;
}


.hero .assets .donut img{
    bottom: -10%;
    left: -2%;
    height: 50dvh;/*542*/
    animation-duration: 15s;
}

.hero .assets .guitar img{
    top: -9%;
    right: -2%;
    height: 34dvh;/*371*/
    animation-duration: 12s;
}

.hero .assets .taxi img{
    top: 40%;
    right: 0;
    height: 28dvh;/*306*/
    animation-duration: 20s;
}

.hero .assets .train img{
    bottom: -15%;
    right: 0;
    height: 53dvh;/*577*/
    animation-duration: 10s;
}



@keyframes animate3D {
    0% {
        transform: matrix3d(
                1, 0, 0, 0,
                0, 1, 0, 0,
                0, 0, 1, 0,
                0, 0, 0, 1);
    }
    1% {
        transform: matrix3d(
                1, 0, 0.1, 0,
                0, 1, 0, 0,
                -0.1, 0, 1, 0,
                0, 0, 0, 1);
    }
    50% {
        transform: matrix3d(
                1, 0.2, 0, 0,
                -0.1, 1, 0, 0,
                0, 0, 1, 0,
                0, 0, 0, 1);
    }
    99% {
        transform: matrix3d(
                1, 0, -0.1, 0,
                0, 1, 0, 0,
                0.1, 0, 1, 0,
                0, 0, 0, 1);
    }
    100% {
        transform: matrix3d(
                1, 0, 0, 0,
                0, 1, 0, 0,
                0, 0, 1, 0,
                0, 0, 0, 1);
    }
}


/*******************
      MISSION
*******************/
.mission {
    padding: 100px 0;
    background: var(--color-yellow);
}


/*******************
    MATCH FEVER
*******************/
.match-fever {
    padding: 100px 0;
    background: var(--color-blue);
}

.game-screenshots{
    padding: 0 30px;
    box-sizing: border-box;
}

.game-screenshots img{
    max-width: 90%;
    height: auto;
}

.game-screenshots .slick-slide{
    text-align: center;
    display: flex!important;
    justify-content: center;
}

.mobile-btn{
    margin-top: 30px;
}

.mobile-btn a{
    display: inline-block;
}


/*******************
    TEXT SECTIONS
*******************/
.text-content{
    background: var(--color-orange);
    padding: 50px 0;
}



/*******************
    CONTACT PAGE
*******************/
.contact-us{
    margin-top: 100px;
}

/*******************
      FOOTER
*******************/
footer {
    background: var(--color-green);
    padding: 100px 0;
    font-size: 14px;
}

footer .social a{
    font-size: 24px;
    transition: all .3s;
}

footer .social .social-twitter-link:hover{
    color: #1C9CEA;
}

footer .social .social-facebook-link:hover{
    color: #395693;
}

footer .social .social-instagram-link:hover{
    color: #ED5D3E;
}

footer ul a{
  display: inline-block;
  font-weight: 600;
  margin-bottom: 5px;
}

footer ul a:hover{
  text-decoration: underline;
}