*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
}

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

html {
  font-size: 0.039vw;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 2560px) {
  html {
    font-size: 0.039vw;
  }
}
@media only screen and (max-width: 1920px) {
  html {
    font-size: 0.0695vw;
  }
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 0.057vw;
  }
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 0.261vw;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 0.2667vw;
  }
}
@media only screen and (max-width: 391px) {
  html {
    font-size: 0.2665vw;
  }
}
html.menu-open {
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-family: "Lato", sans-serif;
}
@media only screen and (max-width: 1024px) {
  body.menu-open {
    overflow: hidden;
  }
}

.container {
  width: 100%;
  max-width: 1232rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .container {
    padding: 0 16rem;
  }
}

.h1-title {
  font-family: "Titan One", sans-serif;
  font-size: 52rem;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-text-stroke: 2px #141414;
  text-shadow: 2rem 7rem 0 #141414;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .h1-title {
    font-size: 40rem;
    line-height: 120%;
  }
}
.h1-title.--sm {
  font-size: 34rem;
  text-shadow: 2rem 5rem 0 #141414;
}
@media only screen and (max-width: 1024px) {
  .h1-title.--sm {
    font-size: 28rem;
  }
}
.h1-title.--md {
  font-size: 44rem;
}
@media only screen and (max-width: 1024px) {
  .h1-title.--md {
    font-size: 24rem;
    text-shadow: 2rem 4rem 0 #141414;
  }
}

.h2-title {
  font-family: "Wix Madefor Display", sans-serif;
  font-weight: 700;
  font-size: 36rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .h2-title {
    font-weight: 800;
    font-size: 27rem;
  }
}

.hero__img {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  background: #DFFF7D;
  border-radius: 16rem;
}
.hero__img .img {
  position: absolute;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  padding: 0;
  background: transparent;
  border: none;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16rem;
  line-height: 140%;
  color: #FFFFFF;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: capitalize;
}
.btn.--header {
  width: 192rem;
  height: 40rem;
  border: 2px solid #DFFF7D;
  border-radius: 10rem;
  font-style: normal;
  color: #FFFFFF;
}
.btn.--header:hover {
  background: #DFFF7D;
  color: #141414;
}
.btn.--primary {
  padding: 9rem 24rem;
  background: #141414;
  border-radius: 10rem;
  font-weight: 500;
  font-size: 15rem;
  line-height: 140%;
  color: #FFFFFF;
}
.btn.--primary:hover {
  box-shadow: 0 4rem 8rem rgba(0, 0, 0, 0.2);
  color: #DFFF7D;
}
.btn.--secondary {
  padding: 9rem 34rem;
  background: #FFFFFF;
  border-radius: 10rem;
  border: 1px solid #141414;
  font-weight: 500;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}
.btn.--secondary:hover {
  background: #141414;
  box-shadow: 0 4rem 8rem rgba(0, 0, 0, 0.2);
  color: #DFFF7D;
}
.btn.--red {
  padding: 13rem 0;
  background: #B04E32;
  box-shadow: 0 4rem 1rem #9F2915, inset 2rem 8rem 10rem rgba(246, 143, 84, 0.75);
  border-radius: 12rem;
}
.btn.--red:hover {
  background: #FFFFFF;
  box-shadow: 0 4rem 1rem #DEDEDE, inset 2rem 8rem 10rem #F0F0F0;
  color: #B04E32;
}
.btn.--arrow {
  display: flex;
  align-items: center;
  gap: 10rem;
  font-weight: 500;
  font-size: 15rem;
  line-height: 140%;
  text-transform: capitalize;
  color: #141414;
  transition: 0.3s ease;
}
.btn.--arrow svg {
  width: 24rem;
  height: 24rem;
  transition: 0.3s ease;
}
.btn.--arrow:hover {
  font-weight: bold;
}
.btn.--arrow:hover svg {
  transform: translateX(14rem);
}

header {
  position: relative;
  background: #141414;
  padding: 16rem;
  z-index: 4;
}
@media only screen and (max-width: 1024px) {
  header {
    min-height: 80rem;
    z-index: 5;
  }
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  header .container {
    padding: 0;
  }
}
header .container .logo {
  display: flex;
}
header .container .logo img {
  width: 79rem;
}
header .container .menu {
  display: flex;
  align-items: center;
  gap: 40rem;
}
@media only screen and (max-width: 1024px) {
  header .container .menu {
    flex-direction: column;
    position: fixed;
    top: 80rem;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80rem);
    padding-top: 79rem;
    background: #141414;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }
  header .container .menu.active {
    left: 0;
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
  }
}
header .container .menu ul {
  display: flex;
  align-items: center;
  gap: 16rem;
}
@media only screen and (max-width: 1024px) {
  header .container .menu ul {
    flex-direction: column;
    gap: 24rem;
  }
}
header .container .menu ul li a {
  font-family: "Poppins", sans-serif;
  font-size: 15rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #FFFFFF;
}
header .container .menu ul.menu-terms {
  display: none;
}
@media only screen and (max-width: 1024px) {
  header .container .menu ul.menu-terms {
    display: flex;
  }
  header .container .menu ul.menu-terms li a {
    color: #AFAFAF;
  }
}
header .container .menu-btn {
  display: none;
}
@media only screen and (max-width: 1024px) {
  header .container .menu-btn {
    display: flex;
    width: 40rem;
    height: 40rem;
    background: url(../img/icons/menu-closed.svg) center center/100% no-repeat;
  }
  header .container .menu-btn.active {
    background-image: url(../img/icons/menu-opened.svg);
  }
}

.main__hero {
  margin-bottom: 148rem;
}
@media only screen and (max-width: 1024px) {
  .main__hero {
    margin-bottom: 72rem;
    overflow-x: clip;
  }
}
.main__hero .h1-title {
  margin: 88rem 0 198rem;
}
@media only screen and (max-width: 1024px) {
  .main__hero .h1-title {
    margin: 88rem 0 56rem;
  }
}
.main__hero .hero__img {
  height: 388rem;
}
@media only screen and (max-width: 1024px) {
  .main__hero .hero__img {
    height: 214rem;
  }
}
.main__hero .hero__img .img {
  top: -119rem;
  width: 1065rem;
  height: 588rem;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .main__hero .hero__img .img {
    top: -37rem;
    width: 460rem;
    height: 265rem;
  }
}

.about__hero .h1-title {
  margin: 48rem 0 104rem;
}
@media only screen and (max-width: 1024px) {
  .about__hero .h1-title {
    margin: 48rem 0 96rem;
  }
}

.games__hero .h1-title,
.blog__hero .h1-title {
  margin: 48rem 0 80rem;
}
@media only screen and (max-width: 1024px) {
  .games__hero .h1-title,
  .blog__hero .h1-title {
    margin: 48rem 0 56rem;
  }
}

.main__slider {
  margin-bottom: 108rem;
}
@media only screen and (max-width: 1024px) {
  .main__slider {
    position: relative;
    margin-bottom: 72rem;
  }
}
.main__slider .swiper-slide {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .main__slider .swiper-slide {
    flex-direction: column;
  }
}
.main__slider .swiper-slide .text {
  display: flex;
  flex-direction: column;
  max-width: 501rem;
}
@media only screen and (max-width: 1024px) {
  .main__slider .swiper-slide .text {
    width: 100%;
  }
}
.main__slider .swiper-slide .text .title {
  margin-bottom: 24rem;
  font-family: "Wix Madefor Display", sans-serif;
  font-weight: 700;
  font-size: 36rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .main__slider .swiper-slide .text .title {
    margin-bottom: 352rem;
    font-size: 28rem;
    line-height: 120%;
  }
}
.main__slider .swiper-slide .text .description {
  margin-bottom: 40rem;
  font-weight: 300;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .main__slider .swiper-slide .text .description {
    order: 1;
    margin-bottom: 24rem;
  }
}
.main__slider .swiper-slide .text .group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16rem;
}
@media only screen and (max-width: 1024px) {
  .main__slider .swiper-slide .text .group {
    flex-direction: column;
    order: 3;
    width: 100%;
  }
  .main__slider .swiper-slide .text .group .btn {
    width: 100%;
  }
}
.main__slider .swiper-slide .text .info {
  display: flex;
  align-items: center;
  margin-top: auto;
}
@media only screen and (max-width: 1024px) {
  .main__slider .swiper-slide .text .info {
    order: 2;
    margin-bottom: 24rem;
  }
}
.main__slider .swiper-slide .text .info .item {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 2rem;
  font-size: 14rem;
  line-height: 140%;
  text-transform: capitalize;
  color: #141414;
}
.main__slider .swiper-slide .text .info .item span {
  font-weight: 600;
  font-size: 13rem;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #706F6F;
  text-transform: uppercase;
}
.main__slider .swiper-slide .text .info .item + .item {
  margin-left: 32rem;
  padding-left: 32rem;
}
.main__slider .swiper-slide .text .info .item + .item:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 28rem;
  background: #706F6F;
  content: "";
}
.main__slider .swiper-slide .img {
  width: 608rem;
  height: 342rem;
  border-radius: 16rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .main__slider .swiper-slide .img {
    position: absolute;
    top: 58rem;
    width: 100%;
    height: 240rem;
  }
}
.main__slider .main__slider-navigation {
  display: flex;
  align-items: center;
  position: relative;
  gap: 24rem;
  margin-top: 32rem;
}
@media only screen and (max-width: 1024px) {
  .main__slider .main__slider-navigation {
    position: absolute;
    top: 322rem;
    width: calc(100% - 32rem);
    margin: 0;
    z-index: 1;
  }
}
.main__slider .main__slider-navigation .main-nav {
  display: flex;
  align-items: center;
  gap: 16rem;
}
.main__slider .main__slider-navigation .main-nav .swiper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 40rem;
}
.main__slider .main__slider-navigation .main-nav .swiper-btn svg {
  width: 100%;
  height: 100%;
  fill: transparent;
  transition: 0.3s ease;
}
.main__slider .main__slider-navigation .main-nav .swiper-btn:hover svg {
  fill: #DFFF7D;
}
.main__slider .main__slider-navigation .main-pagination,
.main__slider .main__slider-navigation .main-pagination-2 {
  position: relative;
  height: 6rem;
  background: #706F6F;
  border-radius: 2rem;
  overflow: hidden;
}
.main__slider .main__slider-navigation .main-pagination .swiper-pagination-progressbar-fill,
.main__slider .main__slider-navigation .main-pagination-2 .swiper-pagination-progressbar-fill {
  background: #DFFF7D;
  border-radius: 2rem;
}

@media only screen and (max-width: 1024px) {
  .swiper-main-2 .img {
    top: 96rem !important;
    height: 200rem !important;
  }
}
.swiper-main-2 .text {
  align-items: flex-start;
  width: 608rem;
  max-width: none !important;
}
@media only screen and (max-width: 1024px) {
  .swiper-main-2 .text .title {
    margin-bottom: 312rem !important;
  }
}
.swiper-main-2 .text .sticker {
  margin-bottom: 24rem;
  padding: 4rem 12rem;
  background: rgba(189, 251, 0, 0.4);
  border-radius: 4px;
  font-weight: 500;
  font-size: 10rem;
  line-height: 140%;
  text-transform: capitalize;
  color: #141414;
}
.swiper-main-2 .text .description {
  margin-bottom: 32rem !important;
}
.swiper-main-2 .text .group {
  margin-bottom: 24rem;
}
@media only screen and (max-width: 1024px) {
  .swiper-main-2 .text .group {
    margin-bottom: 0;
  }
}
.swiper-main-2 .text .info .item span {
  color: #AFAFAF !important;
}

.games__wrapper {
  margin-bottom: 108rem;
}
.games__wrapper .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40rem 16rem;
}
@media only screen and (max-width: 1024px) {
  .games__wrapper .list {
    gap: 16rem;
  }
}
.games__wrapper .list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 815rem;
  height: 280rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16rem;
}
@media only screen and (max-width: 1024px) {
  .games__wrapper .list .item {
    width: 100%;
    height: 240rem;
  }
}
.games__wrapper .list .item .backdrop {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  width: calc(100% - 16rem);
  height: calc(100% - 16rem);
  padding: 56rem 16rem;
  background: rgba(20, 20, 20, 0.76);
  border-radius: 14rem;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.3s ease;
}
.games__wrapper .list .item .backdrop .name {
  font-weight: 600;
  font-size: 20rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #FFFFFF;
  text-align: center;
}
.games__wrapper .list .item .backdrop .group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13rem;
}
.games__wrapper .list .item .backdrop .group .btn {
  flex: 1;
}
.games__wrapper .list .item .backdrop .group .btn.--play {
  height: 40rem;
  background: #DFFF7D;
  border-radius: 10rem;
  color: #141414;
}
.games__wrapper .list .item .backdrop .group .btn.--details {
  height: 40rem;
  background: transparent;
  border-radius: 10rem;
  border: 1px solid #DFFF7D;
  color: #FFFFFF;
}
.games__wrapper .list .item:hover .backdrop {
  opacity: 1;
  transform: scale(1);
}
.games__wrapper .list .item:nth-child(1), .games__wrapper .list .item:nth-child(4), .games__wrapper .list .item:nth-child(5) {
  width: 400rem;
}
@media only screen and (max-width: 1024px) {
  .games__wrapper .list .item:nth-child(1), .games__wrapper .list .item:nth-child(4), .games__wrapper .list .item:nth-child(5) {
    width: 100%;
  }
}

.gallery__slider {
  margin-bottom: 108rem;
}
@media only screen and (max-width: 1024px) {
  .gallery__slider {
    margin-bottom: 72rem;
  }
}
.gallery__slider .h2-title {
  margin-bottom: 40rem;
}
.gallery__slider .swiper-slide .img {
  height: 352rem;
  border-radius: 16rem;
}
@media only screen and (max-width: 1024px) {
  .gallery__slider .swiper-slide .img {
    height: 240rem;
  }
}
.gallery__slider .gallery__slider-navigation {
  display: flex;
  align-items: center;
  position: relative;
  gap: 24rem;
  margin-top: 32rem;
}
.gallery__slider .gallery__slider-navigation .gallery-nav {
  display: flex;
  align-items: center;
  gap: 16rem;
}
.gallery__slider .gallery__slider-navigation .gallery-nav .swiper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 40rem;
}
.gallery__slider .gallery__slider-navigation .gallery-nav .swiper-btn svg {
  width: 100%;
  height: 100%;
  fill: transparent;
  transition: 0.3s ease;
}
.gallery__slider .gallery__slider-navigation .gallery-nav .swiper-btn:hover svg {
  fill: #DFFF7D;
}
.gallery__slider .gallery__slider-navigation .gallery-pagination {
  position: relative;
  height: 6rem;
  background: #706F6F;
  border-radius: 2rem;
  overflow: hidden;
}
.gallery__slider .gallery__slider-navigation .gallery-pagination .swiper-pagination-progressbar-fill {
  background: #DFFF7D;
  border-radius: 2rem;
}

.main__info {
  margin-bottom: 108rem;
  padding: 8rem 0 24rem;
}
@media only screen and (max-width: 1024px) {
  .main__info {
    margin-bottom: 72rem;
    padding: 0 0 24rem;
  }
}
.main__info .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main__info .container .img {
  width: 172rem;
  height: 72rem;
  margin-bottom: 24rem;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .main__info .container .img {
    width: 134rem;
    height: 54rem;
    margin-bottom: 16rem;
  }
}
.main__info .container .h1-title {
  margin-bottom: 56rem;
}
@media only screen and (max-width: 1024px) {
  .main__info .container .h1-title {
    margin-bottom: 40rem;
  }
}
.main__info .container .list {
  display: flex;
  align-items: center;
  gap: 48rem;
}
@media only screen and (max-width: 1024px) {
  .main__info .container .list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16rem;
  }
}
.main__info .container .list .item {
  display: flex;
  align-items: center;
  height: 48rem;
  padding-left: 12rem;
  border-left: 1px solid #706F6F;
  font-weight: 600;
  font-size: 18rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #141414;
}

.game__info {
  margin-bottom: 56rem;
}
@media only screen and (max-width: 1024px) {
  .game__info {
    margin-bottom: 24rem;
  }
}
.game__info .container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .game__info .container {
    flex-direction: column-reverse;
  }
}
.game__info .container .text {
  display: flex;
  flex-direction: column;
  max-width: 501rem;
}
@media only screen and (max-width: 1024px) {
  .game__info .container .text {
    margin-top: 24rem;
  }
}
.game__info .container .text .title {
  margin-bottom: 24rem;
  font-family: "Wix Madefor Display", sans-serif;
  font-weight: 700;
  font-size: 36rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .game__info .container .text .title {
    display: none;
  }
}
.game__info .container .text .description {
  margin-bottom: 40rem;
  font-weight: 300;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .game__info .container .text .description {
    order: 1;
  }
}
.game__info .container .text .group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16rem;
}
@media only screen and (max-width: 1024px) {
  .game__info .container .text .group {
    flex-direction: column;
    order: 3;
    width: 100%;
  }
  .game__info .container .text .group .btn {
    width: 100%;
  }
}
.game__info .container .text .info {
  display: flex;
  align-items: center;
  margin-top: auto;
}
@media only screen and (max-width: 1024px) {
  .game__info .container .text .info {
    order: 2;
    margin-bottom: 24rem;
  }
}
.game__info .container .text .info .item {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 2rem;
  font-size: 14rem;
  line-height: 140%;
  text-transform: capitalize;
  color: #141414;
}
.game__info .container .text .info .item span {
  font-weight: 600;
  font-size: 13rem;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #706F6F;
  text-transform: uppercase;
}
.game__info .container .text .info .item + .item {
  margin-left: 32rem;
  padding-left: 32rem;
}
.game__info .container .text .info .item + .item:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 28rem;
  background: #706F6F;
  content: "";
}
.game__info .container .img {
  width: 608rem;
  height: 342rem;
  border-radius: 16rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .game__info .container .img {
    width: 100%;
    height: 240rem;
  }
}

.main__join {
  margin-bottom: 108rem;
  overflow-x: clip;
}
@media only screen and (max-width: 1024px) {
  .main__join {
    margin-bottom: 93rem;
  }
}
.main__join .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 327rem;
  background: #DFFF7D;
  border-radius: 16rem;
}
@media only screen and (max-width: 1024px) {
  .main__join .wrapper {
    align-items: flex-start;
    padding-top: 24rem;
  }
}
.main__join .wrapper .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 560rem;
}
.main__join .wrapper .content .h1-title {
  margin-bottom: 40rem;
}
@media only screen and (max-width: 1024px) {
  .main__join .wrapper .content .h1-title {
    padding: 0 50rem;
  }
}
.main__join .wrapper .content .btn {
  width: 188rem;
}
@media only screen and (max-width: 1024px) {
  .main__join .wrapper .content .btn {
    width: 140rem;
    height: 48rem;
  }
}
.main__join .wrapper .img-left,
.main__join .wrapper .img-right {
  position: absolute;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.main__join .wrapper .img-left.--xs,
.main__join .wrapper .img-right.--xs {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .main__join .wrapper .img-left,
  .main__join .wrapper .img-right {
    display: none;
  }
  .main__join .wrapper .img-left.--xs,
  .main__join .wrapper .img-right.--xs {
    display: block;
    top: -145rem;
    left: -16rem;
    width: 375rem;
    height: 558rem;
  }
}
.main__join .wrapper .img-left {
  left: -65rem;
  width: 573rem;
  height: 400rem;
}
.main__join .wrapper .img-right {
  right: -105rem;
  width: 530rem;
  height: 512rem;
}

.main__popular {
  margin-bottom: 108rem;
}
@media only screen and (max-width: 1024px) {
  .main__popular {
    position: relative;
    margin-bottom: 82rem;
    padding-bottom: 60rem;
  }
}
.main__popular .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48rem;
}
@media only screen and (max-width: 1024px) {
  .main__popular .head {
    margin-bottom: 24rem;
  }
  .main__popular .head .btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.main__popular .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16rem;
}
@media only screen and (max-width: 1024px) {
  .main__popular .list {
    display: flex;
    flex-direction: column;
  }
}
.main__popular .list .item {
  position: relative;
  height: 240rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16rem;
  overflow: hidden;
}
.main__popular .list .item .backdrop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  gap: 13rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: 0.3s ease;
}
.main__popular .list .item .backdrop .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192rem;
  height: 39rem;
}
.main__popular .list .item .backdrop .btn.--play {
  background: #BDFB00;
  border-radius: 10rem;
  color: #141414;
}
.main__popular .list .item .backdrop .btn.--details {
  border: 1px solid #BDFB00;
  border-radius: 10rem;
  color: #BDFB00;
}
.main__popular .list .item:hover .backdrop {
  opacity: 1;
}

.main__future,
.about__mission,
.about__games {
  margin-bottom: 108rem;
  overflow-x: clip;
}
@media only screen and (max-width: 1024px) {
  .main__future,
  .about__mission,
  .about__games {
    margin-bottom: 72rem;
  }
  .main__future .container,
  .about__mission .container,
  .about__games .container {
    padding: 0;
  }
}
.main__future .wrapper,
.about__mission .wrapper,
.about__games .wrapper {
  position: relative;
  padding: 40rem;
  background: #DFFF7D;
  border-radius: 24rem;
}
@media only screen and (max-width: 1024px) {
  .main__future .wrapper,
  .about__mission .wrapper,
  .about__games .wrapper {
    padding: 260rem 16rem 40rem;
  }
}
.main__future .wrapper .text,
.about__mission .wrapper .text,
.about__games .wrapper .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 568rem;
}
.main__future .wrapper .text .h2-title,
.about__mission .wrapper .text .h2-title,
.about__games .wrapper .text .h2-title {
  margin-bottom: 24rem;
}
.main__future .wrapper .text .description,
.about__mission .wrapper .text .description,
.about__games .wrapper .text .description {
  margin-bottom: 34rem;
  font-weight: 300;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}
.main__future .wrapper .text .description p,
.about__mission .wrapper .text .description p,
.about__games .wrapper .text .description p {
  font-weight: 300;
  font-size: 15rem;
  line-height: 140%;
}
.main__future .wrapper .text .description p + p,
.about__mission .wrapper .text .description p + p,
.about__games .wrapper .text .description p + p {
  margin-top: 12rem;
}
.main__future .wrapper .img,
.about__mission .wrapper .img,
.about__games .wrapper .img {
  position: absolute;
  top: -55rem;
  right: -118rem;
  width: 751rem;
  height: 715rem;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .main__future .wrapper .img,
  .about__mission .wrapper .img,
  .about__games .wrapper .img {
    top: -55rem;
    left: 49%;
    right: auto;
    transform: translateX(-50%);
    width: 390rem;
    height: 380rem;
  }
}
.main__future .wrapper .img img,
.about__mission .wrapper .img img,
.about__games .wrapper .img img {
  width: 100%;
}

.about__mission .wrapper {
  padding: 40rem 32rem;
}
@media only screen and (max-width: 1024px) {
  .about__mission .wrapper {
    padding: 296rem 16rem 40rem;
  }
}
.about__mission .wrapper .img {
  position: absolute;
  top: -31rem;
  left: -3rem;
  width: 590rem;
  height: 533rem;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .about__mission .wrapper .img {
    top: -65rem;
    left: 50%;
    transform: translateX(-50%) rotateY(180deg);
    width: 400rem;
    height: 361rem;
  }
}
.about__mission .wrapper .text {
  margin-left: auto;
}
.about__mission .wrapper .text .description {
  margin-bottom: 0;
}

.about__games .wrapper .img {
  top: -142rem;
  right: -132rem;
  width: 812rem;
  height: 697rem;
}
@media only screen and (max-width: 1024px) {
  .about__games .wrapper .img {
    top: -96rem;
    right: auto;
    left: 48%;
    transform: translateX(-50%);
    width: 465rem;
    height: 412rem;
  }
}

.main__latest {
  margin-bottom: 108rem;
}
.main__latest .h2-title {
  margin-bottom: 48rem;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .main__latest .h2-title {
    margin-bottom: 40rem;
  }
}
.main__latest .list {
  display: flex;
  flex-wrap: wrap;
  gap: 16rem;
}
@media only screen and (max-width: 1024px) {
  .main__latest .list {
    flex-direction: column;
    gap: 28rem;
  }
}
.main__latest .list .item {
  position: relative;
  height: 500rem;
  flex: 1;
  width: 100%;
  transition: 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .main__latest .list .item {
    height: auto;
  }
}
.main__latest .list .item .img {
  width: 100%;
  height: 340rem;
  margin-bottom: 8rem;
  border-radius: 16rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .main__latest .list .item .img {
    height: 240rem;
  }
}
.main__latest .list .item .date {
  margin-bottom: 8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 14rem;
  line-height: 140%;
  color: #8B8B8B;
}
.main__latest .list .item .name {
  font-family: "Wix Madefor Display", sans-serif;
  min-height: 72rem;
  font-weight: 600;
  font-size: 20rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .main__latest .list .item .name {
    min-height: auto;
    margin-bottom: 20rem;
  }
}
.main__latest .list .item .btn {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  justify-content: flex-start;
  margin-top: 0;
  transition: 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .main__latest .list .item .btn {
    display: flex;
    position: unset;
    margin: 0;
  }
}
.main__latest .list .item:hover {
  flex: 1 1 25%;
}
.main__latest .list .item:hover .btn {
  display: flex;
  margin-top: 20rem;
}

.main__map {
  position: relative;
  margin-top: auto;
  padding-top: 148rem;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .main__map {
    padding-top: 252rem;
  }
}
.main__map .container {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.main__map .container .form {
  width: 504rem;
  padding: 32rem 56rem 30rem;
  background: url(../img/form.jpg) center center/cover no-repeat;
  border-radius: 16rem;
}
@media only screen and (max-width: 1024px) {
  .main__map .container .form {
    width: 100%;
    padding: 32rem 16rem;
  }
}
.main__map .container .form .h2-title {
  margin-bottom: 48rem;
  border-radius: 16px;
  color: #FFFFFF;
  text-align: center;
  z-index: 1;
}
.main__map .container .form .btn {
  margin: 56rem auto 0;
}
.main__map .footer-img {
  width: 100%;
  height: 440rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .main__map .footer-img {
    background-position: 27% center;
  }
}

.contacts__map .container {
  top: -96rem;
}
.contacts__map .container .form {
  width: 608rem;
}

.contacts__page {
  position: relative;
  z-index: 1;
}
.contacts__page .content {
  max-width: 504rem;
  margin: 132rem 0 -108rem;
}
@media only screen and (max-width: 1024px) {
  .contacts__page .content {
    margin: 48rem 0 167rem;
  }
}
.contacts__page .content .h1-title {
  margin-bottom: 40rem;
  text-align: left;
}
.contacts__page .content p {
  font-weight: 300;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}
.contacts__page .content p + p {
  margin-top: 12rem;
}
.contacts__page .content .contacts {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  margin-top: 40rem;
}
.contacts__page .content .contacts .item {
  display: flex;
  align-items: center;
  gap: 8rem;
}
.contacts__page .content .contacts .item .img {
  width: 20rem;
  height: 20rem;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.contacts__page .content .contacts .item a,
.contacts__page .content .contacts .item span {
  font-family: "K2D", sans-serif;
  font-weight: 300;
  font-size: 15rem;
  line-height: 110%;
  color: #141414;
}

.contacts-img {
  position: absolute;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .contacts-img {
    display: none;
  }
}
.contacts-img.--left {
  top: 0;
  left: 0;
  width: 266rem;
  height: 500rem;
}
.contacts-img.--right {
  top: 75rem;
  right: 0;
  width: 636rem;
  height: 585rem;
  z-index: 1;
}
.contacts-img.--xs {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .contacts-img.--xs {
    display: block;
    width: 112rem;
    height: 199rem;
  }
}

.blog__page {
  margin-bottom: 108rem;
}
.blog__page .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40rem;
}
@media only screen and (max-width: 1024px) {
  .blog__page .list {
    gap: 24rem;
  }
}
.blog__page .list .row {
  display: flex;
  flex-wrap: wrap;
  gap: 16rem;
}
@media only screen and (max-width: 1024px) {
  .blog__page .list .row {
    flex-direction: column;
    gap: 24rem;
  }
}
.blog__page .list .item {
  position: relative;
  height: 494rem;
  flex: 1;
  width: 100%;
  transition: 0.3s ease;
}
.blog__page .list .item .img {
  width: 100%;
  height: 340rem;
  margin-bottom: 8rem;
  border-radius: 16rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .blog__page .list .item .img {
    height: 240rem;
  }
}
.blog__page .list .item .date {
  margin-bottom: 8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 14rem;
  line-height: 140%;
  color: #8B8B8B;
}
.blog__page .list .item .name {
  font-family: "Wix Madefor Display", sans-serif;
  min-height: 72rem;
  font-weight: 600;
  font-size: 20rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .blog__page .list .item .name {
    min-height: auto;
    font-weight: 500;
    font-size: 18rem;
  }
}
.blog__page .list .item .btn {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  justify-content: flex-start;
  margin-top: 0;
  transition: 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .blog__page .list .item .btn {
    display: flex;
    position: relative;
    margin-top: 18rem !important;
  }
}
.blog__page .list .item:hover {
  flex: 1 1 312rem;
}
.blog__page .list .item:hover .btn {
  display: flex;
  margin-top: 20rem;
}
.blog__page .list .item.--main {
  display: flex;
  align-items: center;
  flex: 1 1 100%;
  gap: 24rem;
  height: 340rem;
}
@media only screen and (max-width: 1024px) {
  .blog__page .list .item.--main {
    flex-direction: column;
    height: auto;
    gap: 8rem;
  }
}
.blog__page .list .item.--main .img {
  max-width: 608rem;
  min-width: 608rem;
  margin: 0;
  border-radius: 16rem 0 0 16rem;
}
@media only screen and (max-width: 1024px) {
  .blog__page .list .item.--main .img {
    width: 100%;
    min-width: auto;
    height: 340rem;
    border-radius: 16rem;
  }
}
.blog__page .list .item.--main .caption {
  display: flex;
  flex-direction: column;
}
.blog__page .list .item.--main .caption .date {
  margin-bottom: 16rem;
}
.blog__page .list .item.--main .caption .name {
  margin-bottom: 16rem;
}
.blog__page .list .item.--main .caption .description {
  margin-bottom: 36rem;
  font-weight: 300;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .blog__page .list .item.--main .caption .description {
    margin-bottom: 0;
  }
}
.blog__page .list .item.--main .caption .btn {
  position: relative;
  display: flex;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .blog__inner-hero {
    padding: 0 16rem;
  }
}
.blog__inner-hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 56rem auto 48rem;
  padding: 0 104rem;
  height: 440rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16rem;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .blog__inner-hero .container {
    height: 340rem;
    margin: 48rem auto 40rem;
    padding: 0;
  }
}
.blog__inner-hero .container .h1-title {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .blog__inner-hero .container .h1-title {
    font-size: 28rem;
    text-shadow: 2rem 4rem 0 #141414;
  }
}
.blog__inner-hero .container:after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  content: "";
}

.blog__inner-text {
  margin-bottom: 108rem;
}
@media only screen and (max-width: 1024px) {
  .blog__inner-text {
    margin-bottom: 72rem;
  }
}
.blog__inner-text .blog__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.blog__inner-text .blog__wrapper .text {
  max-width: 816rem;
}
.blog__inner-text .blog__wrapper .text .h2-title {
  margin: 48rem 0 16rem;
}
@media only screen and (max-width: 1024px) {
  .blog__inner-text .blog__wrapper .text .h2-title {
    margin-top: 40rem;
  }
}
.blog__inner-text .blog__wrapper .text .h3-title {
  margin: 24rem 0 8rem;
  font-weight: 600;
  font-size: 20rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .blog__inner-text .blog__wrapper .text .h3-title {
    font-size: 18rem;
  }
}
.blog__inner-text .blog__wrapper .text p {
  font-weight: 300;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}
.blog__inner-text .blog__wrapper .text p + p {
  margin-top: 12rem;
}
.blog__inner-text .blog__wrapper .text .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16rem;
  margin-top: 24rem;
}
@media only screen and (max-width: 1024px) {
  .blog__inner-text .blog__wrapper .text .grid {
    display: flex;
    flex-direction: column;
    gap: 8rem;
  }
}
.blog__inner-text .blog__wrapper .text .grid .item {
  padding: 16rem;
  border: 1px solid #D7D4D4;
  border-radius: 8rem;
}
.blog__inner-text .blog__wrapper .text .grid .item .name {
  margin-bottom: 8rem;
  font-weight: 600;
  font-size: 20rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .blog__inner-text .blog__wrapper .text .grid .item .name {
    font-size: 18rem;
  }
}
.blog__inner-text .blog__wrapper .text .grid .item p + p {
  margin-top: 8rem;
}
.blog__inner-text .blog__wrapper .text .list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 8rem;
  padding-left: 104rem;
}
@media only screen and (max-width: 1024px) {
  .blog__inner-text .blog__wrapper .text .list {
    padding-left: 0;
  }
}
.blog__inner-text .blog__wrapper .text .list .item {
  padding: 16rem;
  background: #FFFFFF;
  box-shadow: 2rem 3rem 28rem rgba(0, 0, 0, 0.04);
  border-radius: 8rem;
  font-weight: 300;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}
.blog__inner-text .blog__wrapper .text .list .item span {
  font-weight: 500;
}
.blog__inner-text .blog__wrapper .text .list.--row {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
}
@media only screen and (max-width: 1024px) {
  .blog__inner-text .blog__wrapper .text .list.--row {
    flex-direction: column;
  }
}
.blog__inner-text .blog__wrapper .text .list.--row .item {
  flex: 1;
}
.blog__inner-text .blog__wrapper .info {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 16rem;
  width: 296rem;
  gap: 32rem;
  padding: 24rem 16rem;
  border: 1px solid #DFFF7D;
  border-radius: 12rem;
}
@media only screen and (max-width: 1024px) {
  .blog__inner-text .blog__wrapper .info {
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 40rem;
  }
}
.blog__inner-text .blog__wrapper .info .title {
  font-family: "Wix Madefor Display", sans-serif;
  font-weight: 600;
  font-size: 20rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #8B8B8B;
}
@media only screen and (max-width: 1024px) {
  .blog__inner-text .blog__wrapper .info .title {
    font-weight: 500;
    font-size: 22rem;
    line-height: 140%;
  }
}
.blog__inner-text .blog__wrapper .info .caption {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  font-family: "Poppins", sans-serif;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}
.blog__inner-text .blog__wrapper .info .caption span {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #8B8B8B;
}

.terms .terms__wrapper {
  margin: 20px auto;
  max-width: 700px;
}

.terms .terms__wrapper .h1-title {
  margin-bottom: 56rem;
}
@media only screen and (max-width: 1024px) {
  .terms .terms__wrapper .h1-title {
    margin-bottom: 48rem;
  }
}
.terms .terms__wrapper .h4-title {
  font-weight: 700;
  font-size: 24px;
  line-height: calc(24px * 1.618);
}
.terms .terms__wrapper p {
  font-size: 16px;
  line-height: calc(16px * 1.618);
}

.terms .terms__wrapper .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16rem;
}
.terms .terms__wrapper .grid .item {
  padding: 16rem;
  border: 1px solid #D7D4D4;
  border-radius: 8rem;
}
.terms .terms__wrapper .grid .item .name {
  margin-bottom: 8rem;
  font-weight: 600;
  font-size: 20rem;
  line-height: 120%;
  text-transform: capitalize;
  color: #141414;
}
.terms .terms__wrapper .grid .item p + p {
  margin-top: 8rem;
}
.terms .terms__wrapper .list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin: 12rem 0;
/*   padding-left: 104rem; */
}
@media only screen and (max-width: 1024px) {
  .terms .terms__wrapper .list {
    padding-left: 0;
  }
}
.terms .terms__wrapper .list .item {
  padding: 16rem;
  border: 1px solid #D7D4D4;
  border-radius: 8rem;
  font-weight: 300;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}
.terms .terms__wrapper .list .item span {
  font-weight: 500;
}
.terms .terms__wrapper .list.--row {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
}
@media only screen and (max-width: 1024px) {
  .terms .terms__wrapper .list.--row {
    flex-direction: column;
  }
}
.terms .terms__wrapper .list.--row .item {
  flex: 1;
}
.terms .terms__wrapper .list p + p {
  margin-top: 8rem;
}
.terms .terms__wrapper ul {
  margin: 12rem 0;
  padding-left: 24rem;
  list-style: disc;
}
.terms .terms__wrapper ul li {
  font-weight: 300;
  font-size: 15px;
  line-height: 140%;
  color: #141414;
}
.terms .terms__wrapper ul li span {
  font-weight: 500;
}
.terms .terms__wrapper .label {
  font-weight: 500;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}
.terms .terms__wrapper a {
  font-weight: 300;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
}

.terms-img {
  position: absolute;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .terms-img {
    display: none;
  }
}
.terms-img.--left-1 {
  top: 59rem;
  left: -91rem;
  width: 441rem;
  height: 500rem;
  z-index: 0;
}
.terms-img.--left-2 {
  top: 76rem;
  left: 19px;
  width: 302rem;
  height: 334rem;
  z-index: 2;
}
.terms-img.--right-1 {
  top: 75rem;
  right: 0;
  width: 442rem;
  height: 585rem;
  z-index: 2;
}
.terms-img.--right-2 {
  top: 101rem;
  right: 309rem;
  width: 391rem;
  height: 328rem;
  z-index: 1;
}

footer {
  padding: 48rem 0;
  background: #141414;
}
footer .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48rem;
}
@media only screen and (max-width: 1024px) {
  footer .top {
    flex-direction: column;
    margin-bottom: 32rem;
  }
}
footer .top .left {
  display: flex;
  flex-direction: column;
  max-width: 532rem;
  gap: 24rem;
  padding-right: 28rem;
}
@media only screen and (max-width: 1024px) {
  footer .top .left {
    align-items: center;
    margin-bottom: 24rem;
    padding: 0;
  }
}
footer .top .left .logo img {
  width: 79rem;
}
footer .top .left p {
  font-size: 16px;
  line-height: calc(16px * 1.618);
  color: #FDF9F9;
}
@media only screen and (max-width: 1024px) {
  footer .top .left p {
    text-align: center;
  }
}
footer .top .left .contacts {
  display: flex;
  align-items: center;
  gap: 16rem;
}
@media only screen and (max-width: 1024px) {
  footer .top .left .contacts {
    flex-direction: column;
  }
}
footer .top .left .contacts .item {
  display: flex;
  align-items: center;
  gap: 8rem;
}
footer .top .left .contacts .item .img {
  width: 20rem;
  height: 20rem;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}
footer .top .left .contacts .item a,
footer .top .left .contacts .item span {
  font-family: "K2D", sans-serif;
  font-weight: 300;
  font-size: 15rem;
  line-height: 110%;
  color: #FDF9F9;
}
footer .top .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media only screen and (max-width: 1024px) {
  footer .top .right {
    align-items: center;
  }
}
footer .top .right .title {
  margin-bottom: 16rem;
  font-weight: 600;
  font-size: 15rem;
  line-height: 110%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #BDFB00;
}
@media only screen and (max-width: 1024px) {
  footer .top .right .title {
    display: none;
  }
}
footer .top .right ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16rem;
}
@media only screen and (max-width: 1024px) {
  footer .top .right ul {
    align-items: center;
  }
}
footer .top .right ul li a {
  font-family: "K2D", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 110%;
  text-transform: capitalize;
  color: #FDF9F9;
  transition: 0.3s ease;
}
footer .top .right ul li a:hover {
  color: #DFFF7D;
}
footer .bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  footer .bot {
    flex-direction: column-reverse;
  }
}
footer .bot .social {
  display: flex;
  align-items: center;
  gap: 16rem;
}
@media only screen and (max-width: 1024px) {
  footer .bot .social {
    margin-top: 24rem;
  }
}
footer .bot .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  height: 20rem;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}
footer .bot .social a svg {
  width: 20rem;
  height: 20rem;
}
footer .bot .lks {
  display: flex;
  align-items: center;
  gap: 24rem;
}
@media only screen and (max-width: 1024px) {
  footer .bot .lks {
    flex-direction: column;
  }
}
footer .bot .lks a {
  font-family: "K2D", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 110%;
  text-transform: capitalize;
  color: #AFAFAF;
  transition: 0.3s ease;
}
footer .bot .lks a:hover {
  color: #FFFFFF;
}

.breadcrumbs {
  display: flex;
  position: relative;
  padding-bottom: 8rem;
}
.breadcrumbs .rank-math-breadcrumb {
  position: relative;
  margin-top: 24rem;
  font-family: "Poppins", sans-serif;
  font-size: 14rem;
  line-height: 140%;
  color: #141414;
  z-index: 4;
}
@media only screen and (max-width: 1024px) {
  .breadcrumbs .rank-math-breadcrumb {
    font-size: 12rem;
  }
}
.breadcrumbs .rank-math-breadcrumb p {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.breadcrumbs .rank-math-breadcrumb p a {
  color: #141414;
}
.breadcrumbs .rank-math-breadcrumb p .last {
  color: #8B8B8B;
}
@media only screen and (max-width: 1024px) {
  .breadcrumbs .rank-math-breadcrumb p .last {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}
.breadcrumbs .rank-math-breadcrumb p .separator {
  display: flex;
}
.breadcrumbs:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 52rem;
  background: #FFFFFF;
  content: "";
  z-index: 3;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 16rem;
  font-weight: 500;
  font-size: 15rem;
  line-height: 110%;
  color: #FFFFFF;
}
.form-group input[type=text],
.form-group input[type=password],
.form-group input[type=number],
.form-group input[type=email] {
  height: 17rem;
  padding: 4rem 8rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid #D7D4D4;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 110%;
  color: #FFFFFF;
}
.form-group input[type=text]:hover, .form-group input[type=text]:focus,
.form-group input[type=password]:hover,
.form-group input[type=password]:focus,
.form-group input[type=number]:hover,
.form-group input[type=number]:focus,
.form-group input[type=email]:hover,
.form-group input[type=email]:focus {
  border-color: #DFFF7D;
}
.form-group input[type=text]:not(:placeholder-shown),
.form-group input[type=password]:not(:placeholder-shown),
.form-group input[type=number]:not(:placeholder-shown),
.form-group input[type=email]:not(:placeholder-shown) {
  border-color: #DFFF7D;
}
.form-group input[type=text].error,
.form-group input[type=password].error,
.form-group input[type=number].error,
.form-group input[type=email].error {
  border-color: #FF0D0D;
  color: #FF0D0D;
}
.form-group input[type=text].error + .error-message,
.form-group input[type=password].error + .error-message,
.form-group input[type=number].error + .error-message,
.form-group input[type=email].error + .error-message {
  display: block;
}
.form-group input[type=text]::placeholder,
.form-group input[type=password]::placeholder,
.form-group input[type=number]::placeholder,
.form-group input[type=email]::placeholder {
  color: #D7D4D4;
}
.form-group .error-message {
  display: none;
  margin: 4rem 0 0 8rem;
  font-weight: 300;
  font-size: 12px;
  line-height: 110%;
  color: #FF0000;
}

.form-group + .form-group {
  margin-top: 24rem;
}

.swiper-btn {
  position: unset;
  cursor: pointer;
}
.swiper-btn:after {
  display: none;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 56rem;
}
@media only screen and (max-width: 1024px) {
  .pagination {
    margin-top: 48rem;
  }
}
.pagination .pagination-prev,
.pagination .pagination-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 40rem;
}
.pagination .pagination-prev svg,
.pagination .pagination-next svg {
  width: 100%;
  height: 100%;
  fill: transparent;
  transition: 0.3s ease;
}
.pagination .pagination-prev:hover svg,
.pagination .pagination-next:hover svg {
  fill: #DFFF7D;
}
.pagination .page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32rem;
  height: 32rem;
  background: transparent;
  border-radius: 8rem;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 15rem;
  line-height: 140%;
  color: #141414;
  opacity: 1;
  transition: 0.3s ease;
}
.pagination .page:hover, .pagination .page.current {
  background: #DFFF7D;
  font-weight: 800;
}

/*# sourceMappingURL=main.css.map */
