/* Start Landing */
.landing {
  height: fit-content;
  padding-top: 6rem;
  /* padding-bottom: 6rem; */
}
.landing .text h1 {
  font-family: var(--heading-font);
  font-size: 72px;
}
.landing .text p {
  font-family: var(--sharp-bold-15);
  font-size: 32px;
  width: 592px;
}
.landing .text h1 span, .landing .text p span {
  color: var(--secondary-color);
}
@media (max-width: 1199px) {
  .landing .text h1 {
    font-size: 40px;
  }
  .landing .text p {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .landing {
    padding-top: 5rem;
  }
  .landing .text h1 {
    font-size: 29px;
  }
  .landing .text p {
    font-size: 14px;
  }
}
/* End Landing */

/* Start Swiper & Heading Style */
.games .head h1,
.last-orders .head h1 {
  font-family: var(--heading-font);
  font-size: 64px;
}
.games .head .navigation-buttons,
.last-orders .head .navigation-buttons {
  width: 128px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.games .head .navigation-buttons .games-swiper-button-prev,
.games .head .navigation-buttons .games-swiper-button-next,
.last-orders .head .navigation-buttons .last-orders-swiper-button-prev,
.last-orders .head .navigation-buttons .last-orders-swiper-button-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffffff;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .games .head h1,
  .last-orders .head h1 {
    font-size: 24px;
  }
  .games .head .navigation-buttons,
  .last-orders .head .navigation-buttons {
    width: 75px;
  }
  .games .head .navigation-buttons .games-swiper-button-prev,
  .games .head .navigation-buttons .games-swiper-button-next,
  .last-orders .head .navigation-buttons .last-orders-swiper-button-prev,
  .last-orders .head .navigation-buttons .last-orders-swiper-button-next {
    width: 35px;
    height: 35px;
  }
}
/* End Swiper & Heading Style */

/* Start Games */
.games .game .game-logo {
  width: 100%;
  height: 180px !important;
  border-radius: 24px;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.games .game .game-logo img {
  width: 80%;
  height: 80%;
}
.games .game p {
  font-size: 24px;
  font-family: var(--sharp-semibold-15);
}
@media (max-width: 1199px) {
  .games .game .game-logo {
    height: 96px !important;
    border-radius: 8px;
  }
  .games .game p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  
}
/* Start Games */

/* Start Last Orders */
.order {
  background-color: var(--main-color);
  height: 550px;
  border-radius: 1.5rem;
  padding: 1.5rem;
}
.order .banner {
  width: 100%;
  height: 360px;
}
.order .banner img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
}

.order .title h1 {
  font-family: var(--sharp-semibold-15);
  font-size: 1.3rem;
}
.order .information .booster .image img {
  width: 75px !important;
  height: 75px !important;
  border-radius: calc(var(--main-radius) * 2);
}
.order .information .booster .name p:first-child,
.order .information .reached-info-container p:first-child {
  color: #FFFFFF80;
  font-family: var(--sharp-semibold-15);
}
.order .information .booster .name p:last-child,
.order .information .reached-info-container p:last-child {
  color: #ffffff;
  font-family: var(--sharp-semibold-15);
}
/* @media (max-width: 1199px) {
  .order .information .booster .name p,
  .order .information .reached-info-container p {
    font-size: 10px;
  }
} */
#duo-or-solo {
  margin-left: 18px;
  padding: 4px 8px 6px;
  border-radius: var(--main-radius);
  background-color: var(--secondary-color);
  font-weight: 300;
  font-size: 1rem;
  font-family: var(--sharp-semibold-15);
}
#duo-or-solo.duo {
  background-color: #06A5B0 !important;
}
#duo-or-solo.solo {
  background-color: var(--secondary-color) !important;
}
/* .swiper-slide.game {
  flex-shrink: 1 !important;
} */
/* End Last Orders */