/* ==========================================================================
   Responsive styles
   ========================================================================== */

/* Wide Screens */

@media (min-width: 1920px) and (max-width: 2560px) {

}

/* Desktop */

@media (max-width: 1600px) {

}

/* Desktop Small */

@media (max-width: 1400px) {
  .video-trailer {
    width: 80vw;
    height: calc(80vw * 9 / 16);
  }
}

@media (max-width: 1280px) {
  .contact-us .w-50{
    width: 100%!important;
  }
}

/* Laptop */

@media screen and (min-device-width: 768px) and (max-device-width: 1600px) {

}

/* Tablet Landscape */

@media (max-width: 1024px) {

}

/* Tablet Portrait */

@media (max-width: 980px) {
}

@media (max-width: 1080px){
  .hero {
    background-image: url("../images/hero/mobile/bg.jpg");
  }

  .hero .logo{
    margin-top: 30vh;
    width: 50vw;
    height: auto;
  }

  .hero .hero-buttons{
    margin-top: 45px;
  }

  .hero .assets .airplane img {
    top: 90px;
    left: -2%;
    height: auto;
    width: 35vw;
    animation-duration: 12s;
  }

  .hero .assets .chicken img{
    top: 60%;
    left: -7%;
    height: auto;
    width: 35vw;
    animation-duration: 18s;
  }


  .hero .assets .donut img{
    top: 80vh;
    left: -10vw;
    height: auto;
    width: 50vw;
    animation-duration: 15s;
  }

  .hero .assets .guitar img{
    top: 50px;
    right: -10%;
    height: auto;
    width: 35vw;
    animation-duration: 12s;
  }

  .hero .assets .taxi img{
    top: 55%;
    right: -10%;
    height: auto;
    width: 35vw;
    animation-duration: 20s;
  }

  .hero .assets .train img{
    top: 75vh;
    right: -10vw;
    height: auto;
    width: 50vw;
    animation-duration: 10s;
  }
}

@media screen and (max-width: 1080px) and (orientation: landscape) {
  .hero .assets .airplane img {
    top: 90px;
    left: -2%;
    height: auto;
    width: 22vw;
    animation-duration: 12s;
  }

  .hero .assets .chicken img{
    top: 60%;
    left: -7%;
    height: auto;
    width: 22vw;
    animation-duration: 18s;
  }


  .hero .assets .donut img{
    display: none;
  }

  .hero .assets .guitar img{
    top: 0;
    right: -5%;
    height: auto;
    width: 22vw;
    animation-duration: 12s;
  }

  .hero .assets .taxi img{
    top: 55%;
    right: -5%;
    height: auto;
    width: 22vw;
    animation-duration: 20s;
  }

  .hero .assets .train img{
    display: none;
  }
}

/* Mobile portrait */
@media (max-width: 768px) {
  header {
    background: var(--color-yellow);
  }

  header #nav-icon {
    display: block;
    z-index: 9999;
  }

  header .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    background: var(--color-blue);
    transition: width 0.4s;
    z-index: 9;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    display: flex;
  }

  header .nav.open {
    width: 100vw;
  }

  header .nav li {
    display: block;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    width: 70vw;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
  }

  header .nav li:last-child {
    border: none;
  }

  header ul.nav li a {
    display: flex;
    justify-content: center;
    font-size: 24px;
    z-index: 9999;
    padding: 20px 0;
    margin: 0;
  }

  header a.logo svg{
    height: 40px;
    padding: 10px 0;
  }

  .btn {
    height: 46px;
    line-height: 46px;
    font-size: 20px;
    border-radius: 20px;
    padding: 0 25px;
  }

  .w-50 {
    width: 100%;
  }

  footer {
    text-align: center;
    padding: 50px 0;
  }

  footer .social {
    margin-top: 20px;
    text-align: center;
  }

  /*.hero .assets .donut {*/
  /*  top: 80%;*/
  /*}*/
  /*.hero .assets .train {*/
  /*  top: 80%;*/
  /*}*/
  .mission {
    text-align: center;
  }

  .match-fever {
    text-align: center;
    padding-bottom: 50px;
  }

  .match-fever .game-screenshots{
    margin: 30px 0 180px 0;
  }

  .match-fever .mobile-btn{
    position: absolute;
    bottom: 0;
  }


  .game-screenshots {
    padding: 0;
  }
}

/* Mobile Landscape */
@media (max-height: 700px) and (orientation: landscape){
  .hero .logo{
    margin-top: 20vh;
    height: 30vh;
    width: auto;
  }

  .hero-buttons{
    margin-top: 6vh;
  }
}