/*
 =========================================================
 * Filo's dark theme - Hero
 =========================================================
 * Page: https://filo.gg
 * Copyright 2023 iLxlo_ (https://github.com/ilxlodev)
 * Designed by CSDIT Coded by iLxlo_
 =========================================================
 * Not allowed to copy substantial portions of the software without prior authorization.
 */
 
.hero {
  height: 65vh;
  display: flex;
  align-items: center;
  flex-direction: row;
  vertical-align: middle;
  justify-content: flex-start;
  padding: 100px 100px 100px 0px;
}

.hero .filo {
  width: 50%;
  margin-left: -25px;
}

.hero .playcloud {
  width: 20%;
  z-index: 1;
  margin-top: -300px;
  margin-left: -250px;
  margin-right: 100px;
}

.hero .description {
  margin-left: 50px;
}

.hero .filo, .hero .description {
  margin-right: 50px;
}

.hero .description {
  width: 30%;
  max-width: 500px;
  text-align: center;
}

.hero .description .slogan h1 {
  font-weight: 900;
  font-size: 40px !important;
  color: var(--filogg-color-primary);
  font-family: var(--filogg-font-family-alt);
}

.hero .description .slogan h1 + p {
  padding: 0px 20px 0px 20px;
}

/*
 =========================================================
 * Media queries
 =========================================================
 * Responsive is the future \ ✪ ω ✪ /
 */

@media (max-width: 1366px) { /* Laptop resolution */
 
  .hero {
    padding-top: 50px;
    padding-right: 25px;
  }

  .hero .description .slogan h1 {
    padding: 0px;
    font-size: 35px !important;
  }

}

@media (max-width: 1024px) { /* Tablet resolution */
 
  .hero {
    padding-right: 20px;
  }

  .hero .description .slogan h1 {
    font-size: 30px !important;
  }

  .hero .description .slogan h1 + p {
    font-size: 16px !important;
    padding: 0px;
  }

}

@media (max-width: 881px) { /* Mobile horizontal resolution */

  .hero .description .slogan h1 {
    font-size: 25px !important;
  }

}

@media (max-width: 768px) { /* Mobile vertical resolution */

  .hero {
    height: 100%;
    padding: 50px 25px;
    flex-direction: column-reverse;
  }

  .hero .filo {
    width: 100%;
  }

  .hero .playcloud {
    width: 100%;
    margin: 50px 0px -75px 0px;
    text-align: end;
  }

  .hero .playcloud img {
    width: 50%;
  }

  .hero .description {
    width: 100%;
  }

}