:root {
  --primary: #1fa2be;
  --bg: #010101;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: #fff;
  background-size: cover;
  background-position: center;
  background-image: url('https://aoharu.xtgem.com/img/poke/bg.jpg');
  background-attachment: scroll;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background: -webkit-linear-gradient(
    0deg,
    rgba(31, 162, 190, 0.3),
    rgba(31, 162, 190, 0)
  );
}

.hero .content {
  padding: 0rem 7%;
  max-width: 50rem;
}

.hero .content .carousel {
  display: flex;
  margin: 0;
  padding: 0;
  max-height: 200px;
  position: relative;
  perspective: 1500px;
}

.hero .content .carousel .carousel-item img {
  max-width: 235px;
  border-radius: 10px;
  transform: translateX(8px) translateY(60px);
  object-fit: cover;
  object-position: center;
}

/* .hero .content h1 {
  font-size: 4em;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  line-height: 1.2;
} */

.hero .content h4 {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
}

.hero .content h4 span {
  padding: 0 10px;
  border-right: 1px solid rgb(31, 162, 190);
}

.hero .content h4 span:first-child {
  padding-left: 0;
}

.hero .content h4 span:last-child {
  border-right: none;
}

.hero .content h4 span i {
  background: var(--primary);
  color: #fff;
  padding: 0 8px;
  display: inline-block;
  border-radius: 2px;
}

.hero .content p {
  color: #fff;
  font-size: 1.6rem;
  text-align: justify;
  margin-top: 1rem;
  line-height: 1.3;
  text-shadow: 2px 2px 15px #000;
}

.hero .content .cta {
  margin-top: 3rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  color: #fff;
  background: var(--primary);
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.hero .content .tra {
  margin-left: 0.5rem;
  margin-top: 3rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  color: #fff;
  background-color: #e30c2e;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
/* Hero Section */

/* Media Queries */
/* Laptop */
@media (max-width: 1366px) {
  html {
    font-size: 75%;
  }
}

/* Tablet */
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }

  body {
    position: fixed;
    background-position: top;
  }

  .hero {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8),
      rgba(31, 162, 190, 0.3)
    );
  }

  .hero .content .title img {
    width: 55%;
  }

  .hero .content h4 {
    color: #fff;
    font-weight: 250;
    font-size: 15px;
  }

  .hero .content p {
    margin-top: 1rem;
  }
}

/* Mobile */

@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
}
