*,
::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 {
  height: 100vh;
  font-size: 0.039vw;
}
@media only screen and (max-width: 2560px) {
  html {
    font-size: 0.039vw;
  }
}
@media only screen and (max-width: 1920px) {
  html {
    font-size: 0.0521vw;
  }
}
@media only screen and (max-width: 1536px) {
  html {
    font-size: 0.06511vw;
  }
}
@media only screen and (max-width: 1440px) {
  html {
    font-size: 0.06945vw;
  }
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 0.2vw;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 0.2vw;
  }
}
@media only screen and (max-width: 391px) {
  html {
    font-size: 0.2665vw;
  }
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-family: verdana,sans-serif;
  font-weight: 200;
  font-size: 15px;
  line-height: 21px;
  color: #0C0B0B;
}
body.menu-active {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 40px;
  border-radius: 40px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  font-family: verdana,sans-serif;
  text-transform: capitalize;
  cursor: pointer;
}
.btn.--primary {
  position: relative;
  background: #DF4444;
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.51);
  color: #FFFFFF;
  transition: 0.3s ease;
  overflow: hidden;
}
.btn.--primary span {
  position: relative;
  top: 0;
  transition: 0.3s ease-in-out;
}
.btn.--primary:before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.btn.--primary:hover span {
  top: -200%;
}
.btn.--primary:hover:before {
  top: 50%;
  transform: translateY(-50%);
}

.h1 {
  font-family: verdana,sans-serif;
  font-weight: 800;
  font-size: 74px;
  line-height: 81px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .h1 {
    font-size: 52px;
    line-height: 57px;
  }
}

.h2 {
  margin-bottom: 48px;
  font-family: verdana,sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #000000;
}
@media only screen and (max-width: 1024px) {
  .h2 {
    font-size: 28px;
    line-height: 35px;
    color: #0C0B0B;
  }
}

header .container {
  display: flex;
  align-items: center;
  height: 84px;
}
@media only screen and (max-width: 1024px) {
  header .container {
    height: 80px;
    padding: 0 20px;
  }
}
header .container .logo {
  display: flex;
}
header .container .logo img {
  width: 77px;
}
header .container .menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  header .container .menu {
    position: fixed;
    flex-direction: column;
    justify-content: center;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    gap: 60px;
    background: #FFFFFF;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 99;
    pointer-events: none;
  }
  header .container .menu:after {
    position: absolute;
    top: -20px;
    left: -42px;
    width: 422px;
    height: 522px;
    background: url(../img/menu-bg.png) center top/100% 100% no-repeat;
    content: "";
    pointer-events: none;
  }
  header .container .menu.active {
    top: 80px;
    opacity: 1;
    pointer-events: auto;
  }
}
header .container .menu ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 1024px) {
  header .container .menu ul {
    flex-direction: column;
    gap: 40px;
  }
}
header .container .menu ul li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #141414;
  transition: 0.3s ease;
}
header .container .menu ul li a:hover {
  color: #D7C7EE;
}
header .container .menu ul.hidden-lg {
  display: none;
}
@media only screen and (max-width: 1024px) {
  header .container .menu ul.hidden-lg {
    display: flex;
  }
}
header .container .menu-btn {
  display: none;
}
@media only screen and (max-width: 1024px) {
  header .container .menu-btn {
    display: block;
    width: 40px;
    height: 40px;
    margin-left: auto;
    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);
  }
}

.hero {
  margin: 118px 0 96px;
  overflow-x: clip;
}
@media only screen and (max-width: 1024px) {
  .hero {
    margin: 40px 0;
  }
}
/* .hero.--main {
  margin: 24px 0 117px;
}
@media only screen and (max-width: 1024px) {
  .hero.--main {
    margin: 48px 0 60px;
  }
}
.hero.--main .container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .hero.--main .container {
    flex-direction: column;
    align-items: center;
  }
}
.hero.--main .container .left {
  width: 502px;
  margin-top: 130px;
}
@media only screen and (max-width: 1024px) {
  .hero.--main .container .left {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0;
  }
}
.hero.--main .container .right {
  position: relative;
  width: 592px;
  height: 523px;
}
@media only screen and (max-width: 1024px) {
  .hero.--main .container .right {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 311px;
    margin-top: 24px;
  }
}
.hero.--main .container .right img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.hero.--main .logo {
  display: flex;
}
.hero.--main .logo img {
  width: 502px;
}
@media only screen and (max-width: 1024px) {
  .hero.--main .logo img {
    width: 322px;
  }
} */
.hero.--about .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 342px;
  padding: 0 48px;
  background: #D0CEFD;
  box-shadow: 1px 2px 24px rgba(0, 0, 0, 0.12);
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .hero.--about .wrapper {
    align-items: flex-start;
    justify-content: center;
    height: 508px;
    padding: 32px;
    border-radius: 20px;
  }
  .hero.--about .wrapper .h1 {
    background: linear-gradient(280.15deg, #141414 -7.36%, #2D2B61 106.18%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.hero.--about .img {
  display: flex;
  position: absolute;
  bottom: -48px;
  right: -103px;
}
@media only screen and (max-width: 1024px) {
  .hero.--about .img {
    right: auto;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero.--about .img img {
  width: 702px;
}
@media only screen and (max-width: 1024px) {
  .hero.--about .img img {
    width: 521px;
  }
}
/* .hero.--games {
  margin-top: 94px;
}
@media only screen and (max-width: 1024px) {
  .hero.--games {
    margin-top: 40px;
  }
}
.hero.--games .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 342px;
  padding: 0 48px;
  background: #FFE26A;
  box-shadow: 1px 2px 40px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .hero.--games .wrapper {
    align-items: flex-start;
    justify-content: center;
    height: 426px;
    padding: 32px 0;
    border-radius: 20px;
  }
  .hero.--games .wrapper .h1 {
    background: linear-gradient(280.15deg, #141414 -7.36%, #2D2B61 106.18%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.hero.--games .img {
  display: flex;
  position: absolute;
  bottom: 0;
  right: -82px;
}
@media only screen and (max-width: 1024px) {
  .hero.--games .img {
    right: auto;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero.--games .img img {
  width: 803px;
}
@media only screen and (max-width: 1024px) {
  .hero.--games .img img {
    width: 500px;
  }
} */
.hero.--game {
  margin: 95px 0 40px;
}
.hero.--game .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 342px;
  padding: 0 48px;
  background: #C8E2FF;
  box-shadow: 1px 2px 40px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .hero.--game .wrapper {
    align-items: flex-end;
    height: 533px;
    padding: 20px 16px;
    border-radius: 20px;
  }
}
.hero.--game .wrapper .left {
  max-width: 540px;
}
.hero.--game .wrapper .left .h1 {
  font-family: verdana,sans-serif;
  margin-bottom: 32px;
  font-weight: 900;
  font-size: 32px;
  line-height: 35px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .hero.--game .wrapper .left .h1 {
    font-size: 28px;
    line-height: 31px;
  }
}
.hero.--game .wrapper .left .info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero.--game .wrapper .left .info .item {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(20, 20, 20, 0.1);
  border-radius: 4px;
  font-family: verdana,sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #141414;
}
.hero.--game .wrapper .left .info .item span {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #141414;
}
.hero.--game .img {
  display: flex;
  position: absolute;
  bottom: 43px;
  right: 12px;
}
@media only screen and (max-width: 1024px) {
  .hero.--game .img {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero.--game .img img {
  width: 596px;
}
@media only screen and (max-width: 1024px) {
  .hero.--game .img img {
    width: 400px;
  }
}
/* .hero.--news {
  margin-top: 48px;
}
.hero.--news .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 342px;
  padding: 0 48px;
  background: #FFE26A;
  box-shadow: 1px 2px 40px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .hero.--news .wrapper {
    align-items: flex-start;
    justify-content: center;
    height: 436px;
    padding: 32px;
    border-radius: 20px;
  }
  .hero.--news .wrapper .h1 {
    background: linear-gradient(280.15deg, #141414 -7.36%, #2D2B61 106.18%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.hero.--news .img {
  display: flex;
  position: absolute;
  right: 0;
}
@media only screen and (max-width: 1024px) {
  .hero.--news .img {
    right: auto;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero.--news .img img {
  width: 596px;
}
@media only screen and (max-width: 1024px) {
  .hero.--news .img img {
    width: 375px;
  }
} */
.hero.--single-news {
  margin: 48px 0 40px;
}
@media only screen and (max-width: 1024px) {
  .hero.--single-news {
    margin: 40px 0;
  }
}
.hero.--single-news .h1 {
  margin-bottom: 40px;
  font-weight: 800;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .hero.--single-news .h1 {
    font-size: 28px;
    line-height: 34px;
    color: #1A1919;
  }
}
.hero.--single-news .img {
  height: 342px;
  border-radius: 40px;
  overflow: hidden;
}
.hero.--single-news .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero.--terms {
  margin: 48px 0 16px;
}
.hero.--terms.--mb {
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .hero.--terms.--mb {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .hero.--terms {
    margin-bottom: 8px;
  }
}
.hero.--terms .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  box-shadow: 1px 2px 20px rgba(17, 17, 17, 0.12);
  border-radius: 40px;
}
.hero.--terms .wrapper .h1 {
  font-family: verdana,sans-serif;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .hero.--terms .wrapper .h1 {
    font-size: 28px;
    line-height: 31px;
  }
}

.description.--main {
  margin-bottom: 96px;
}
@media only screen and (max-width: 1024px) {
  .description.--main {
    margin-bottom: 80px;
  }
}
.description.--main .list {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .description.--main .list {
    flex-direction: column;
    gap: 32px;
  }
}
.description.--main .list .item {
  flex: 1;
  position: relative;
  padding: 24px;
}
@media only screen and (max-width: 1024px) {
  .description.--main .list .item {
    padding: 0;
  }
}
.description.--main .list .item .title {
  margin-bottom: 16px;
  font-family: verdana,sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .description.--main .list .item .title {
    font-size: 18px;
    line-height: 22px;
    color: #0C0B0B;
  }
}
.description.--main .list .item + .item:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 28px);
  background: #E0E0E0;
  content: "";
}

.our__games {
  margin-bottom: 96px;
}
@media only screen and (max-width: 1024px) {
  .our__games {
    margin-bottom: 80px;
  }
}
.our__games .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .our__games .list {
    display: flex;
    flex-direction: column;
  }
}
.our__games .list .item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  margin-bottom: 24px;
  background: #D7C7EE;
  box-shadow: 1px 2px 24px rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .our__games .list .item .img {
    margin-bottom: 16px;
  }
}
.our__games .list .item .img img {
  object-fit: cover;
    max-width: 100%;
    max-height: 100% !important;
  width: 100%;
  transition: 0.3s ease;
}
.our__games .list .item .title {
  font-family: verdana,sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .our__games .list .item .title {
    font-size: 18px;
    line-height: 22px;
    color: #0C0B0B;
  }
}
.our__games .list .item:hover img {
  scale: 1.03;
}
.our__games .btn {
  margin: 0 auto;
}

.advantages {
  padding: 64px 0 220px;
  background: #F6F5F5;
}
@media only screen and (max-width: 1024px) {
  .advantages {
    padding: 40px 0 280px;
  }
}
.advantages .container {
  display: flex;
  align-items: flex-start;
  gap: 37px;
}
@media only screen and (max-width: 1024px) {
  .advantages .container {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
}
.advantages .container .h2 {
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .advantages .container .h2 {
    margin: 0;
  }
}
.advantages .container .list {
  display: flex;
  flex-direction: column;
  min-width: 696px;
  max-width: 696px;
  gap: 40px;
}
@media only screen and (max-width: 1024px) {
  .advantages .container .list {
    width: 100%;
    min-width: auto;
    max-width: none;
  }
}
.advantages .container .list .item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.advantages .container .list .item .img img {
  width: 64px;
}
.advantages .container .list .item .caption .title {
  margin-bottom: 16px;
  font-family: verdana,sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .advantages .container .list .item .caption .title {
    font-size: 18px;
    line-height: 22px;
    color: #0C0B0B;
  }
}

.in__touch {
  margin-bottom: 96px;
  padding-bottom: 64px;
  background: #F6F5F5;
}
@media only screen and (max-width: 1024px) {
  .in__touch {
    margin-bottom: 80px;
    padding-bottom: 40px;
  }
}
.in__touch .wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 342px;
  margin-bottom: 96px;
  background: #8984FB;
  box-shadow: 1px 2px 40px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .in__touch .wrapper {
    align-items: flex-end;
    width: 343px;
    height: 434px;
    margin: 0 auto 80px;
    padding-bottom: 64px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 560px) {
  .in__touch .wrapper {
    width: 343px;
  }
}
.in__touch .wrapper .img {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .in__touch .wrapper .img {
    top: -201px;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
  }
}
.in__touch .wrapper .img img {
  width: 512px;
  height: 512px;
}
@media only screen and (max-width: 1024px) {
  .in__touch .wrapper .img img {
    width: 343px;
    height: 343px;
  }
}
.in__touch .wrapper .text {
  width: 660px;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .in__touch .wrapper .text {
    width: 100%;
  }
}
.in__touch .wrapper .text .title {
  margin-bottom: 56px;
  font-family: verdana,sans-serif;
  font-weight: 900;
  font-size: 60px;
  line-height: 72px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.64);
}
@media only screen and (max-width: 1024px) {
  .in__touch .wrapper .text .title {
    width: 300px;
    margin: 182px auto 32px;
    font-size: 48px;
    line-height: 58px;
  }
}
.in__touch .wrapper .text .btn {
  margin: 0 auto;
}
.in__touch .description {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.in__touch .description .h2 {
  margin-bottom: 32px;
}
.in__touch .description p {
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 1024px) {
  .in__touch .description p {
    font-size: 15px;
    line-height: 24px;
  }
}

.latest__news {
  margin-bottom: 89px;
}
@media only screen and (max-width: 1024px) {
  .latest__news {
    margin-bottom: 80px;
  }
}
.latest__news .news__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media only screen and (max-width: 1024px) {
  .latest__news .news__list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.latest__news .news__list .item {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 32px;
  background: #C8E2FF;
  box-shadow: 1px 2px 14px rgba(0, 0, 0, 0.06);
  border-radius: 18px;
}
@media only screen and (max-width: 1024px) {
  .latest__news .news__list .item {
    padding: 12px;
  }
}
.latest__news .news__list .item .img {
  width: 100%;
  max-width: 560px;
  height: 248px;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .latest__news .news__list .item .img {
    max-width: 100%;
  }
}
.latest__news .news__list .item .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.latest__news .news__list .item .caption {
  display: flex;
  flex-direction: column;
}
.latest__news .news__list .item .caption .title {
  margin-bottom: 16px;
  font-family: verdana,sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  color: #000000;
}
@media only screen and (max-width: 1024px) {
  .latest__news .news__list .item .caption .title {
    color: #0C0B0B;
  }
}
.latest__news .news__list .item .caption p {
  color: #000000;
}
@media only screen and (max-width: 1024px) {
  .latest__news .news__list .item .caption p {
    color: #0C0B0B;
  }
}
.latest__news .news__list .item:nth-child(1) {
  flex-direction: row;
  align-items: center;
  min-width: 100%;
  gap: 32px;
}
@media only screen and (max-width: 1024px) {
  .latest__news .news__list .item:nth-child(1) {
    flex-direction: column;
    gap: 16px;
  }
}
.latest__news .news__list .item:nth-child(1) .img {
  margin-bottom: 0;
}
.latest__news .news__list .item:nth-child(2) {
  background: #FCE6B9;
}
.latest__news .news__list .item:nth-child(3) {
  background: #D7C7EE;
}
.latest__news .news__list .item:hover img {
  scale: 1.03;
}

.partner {
  background: #F6F5F5;
  padding: 48px 0 220px;
}
@media only screen and (max-width: 1024px) {
  .partner {
    padding: 40px 0 280px;
  }
}
.partner .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1024px) {
  .partner .container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}
.partner .container .column {
  padding: 0 64px;
}
.partner .container .column .h2 {
  margin-bottom: 24px;
  text-align: left;
}
.partner .container .column p + p {
  margin-top: 12px;
}
.partner .container .column:nth-child(1) {
  padding-right: 96px;
}
@media only screen and (max-width: 1024px) {
  .partner .container .column:nth-child(1) {
    padding: 0;
  }
}
.partner .container .column:nth-child(2) {
  padding-top: 90px;
  padding-left: 96px;
}
@media only screen and (max-width: 1024px) {
  .partner .container .column:nth-child(2) {
    padding: 0;
  }
}
.partner .container .column + .column {
  border-left: 1px solid #C7C5C6;
}
@media only screen and (max-width: 1024px) {
  .partner .container .column + .column {
    border: none;
  }
}

.game__description {
  margin-bottom: 40px;
  padding: 16px 0;
}
@media only screen and (max-width: 1024px) {
  .game__description {
    margin-bottom: 32px;
  }
}
.game__description p + p {
  margin-top: 8px;
}

.game__gallery {
  margin-bottom: 96px;
}
.game__gallery .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
@media only screen and (max-width: 1024px) {
  .game__gallery .list {
    gap: 16px;
  }
}
.game__gallery .list .item {
  min-width: 384px;
  height: 230px;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .game__gallery .list .item {
    min-width: 100%;
  }
}
.game__gallery .list .item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.news {
  margin-bottom: 89px;
}
.news .news__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1024px) {
  .news .news__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
.news .news__list .item {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 32px;
  box-shadow: 1px 2px 14px rgba(0, 0, 0, 0.06);
  border-radius: 18px;
}
@media only screen and (max-width: 1024px) {
  .news .news__list .item {
    padding: 12px;
  }
}
.news .news__list .item .img {
  width: 100%;
  max-width: 560px;
  height: 248px;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}
.news .news__list .item .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.news .news__list .item .caption {
  display: flex;
  flex-direction: column;
}
.news .news__list .item .caption .title {
  margin-bottom: 16px;
  font-family: verdana,sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  color: #000000;
}
.news .news__list .item .caption p {
  color: #000000;
}
.news .news__list .item:hover img {
  scale: 1.03;
}

.news__text {
  max-width: 1008px;
  margin: 0 auto 96px;
}
@media only screen and (max-width: 1024px) {
  .news__text {
    margin-bottom: 80px;
  }
}
.news__text p {
  margin-bottom: 12px;
}
.news__text h2 {
  margin: 32px 0;
  font-family: verdana,sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.02em;
  color: #000000;
  text-transform: capitalize;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .news__text h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #141414;
  }
}
.news__text h3 {
  margin: 32px 0 16px;
  font-family: verdana,sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .news__text h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
.news__text h4 {
  margin: 32px 0 16px;
  font-family: verdana,sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .news__text h4 {
    font-size: 16px;
    line-height: 18px;
  }
}
.news__text ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: disc;
}
.news__text ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-left: 24px;
}

.terms__text {
  max-width: 1008px;
  margin: 0 auto 96px;
}
@media only screen and (max-width: 1024px) {
  .terms__text {
    margin-bottom: 80px;
  }
}
.terms__text .list {
  margin-bottom: 12px;
}
.terms__text .list .item {
  padding: 16px;
  border: 1px solid #D7D4D4;
  border-radius: 8px;
}
.terms__text .list .item span {
  font-weight: 600;
}
.terms__text .list.--row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media only screen and (max-width: 1024px) {
  .terms__text .list.--row {
    flex-direction: column;
  }
}
.terms__text .list.--row .item {
  flex: 1;
}
.terms__text .list.--row .item:last-child {
  min-width: 380px;
}
@media only screen and (max-width: 1024px) {
  .terms__text .list.--row .item:last-child {
    min-width: 100%;
  }
}
.terms__text .list.--column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 104px;
}
@media only screen and (max-width: 1024px) {
  .terms__text .list.--column {
    padding-left: 0;
  }
}
.terms__text p {
  margin-bottom: 12px;
}
.terms__text h2 {
  margin: 32px 0;
  font-family: verdana,sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.02em;
  color: #000000;
  text-transform: capitalize;
  text-align: left;
}
.terms__text h3 {
  margin: 32px 0 16px;
  font-family: verdana,sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .terms__text h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
.terms__text h4 {
  margin: 32px 0 16px;
  font-family: verdana,sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .terms__text h4 {
    font-size: 16px;
    line-height: 18px;
  }
}
.terms__text ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: disc;
}
.terms__text ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-left: 24px;
}
.terms__text a {
  color: #141414;
}

.contacts {
  margin: 48px 0 96px;
}
@media only screen and (max-width: 1024px) {
  .contacts {
    margin: 40px 0 80px;
  }
}
.contacts .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 80px;
  background: #D7C7EE;
  box-shadow: 1px 2px 40px rgba(0, 0, 0, 0.18);
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .contacts .wrapper {
    flex-direction: column;
    gap: 48px;
    padding: 48px 16px;
    border-radius: 20px;
  }
}
.contacts .wrapper .h1 {
  margin-bottom: auto;
  font-weight: 800;
  font-size: 40px;
  line-height: 44px;
}
@media only screen and (max-width: 1024px) {
  .contacts .wrapper .h1 {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 31px;
    color: #141414;
  }
}
.contacts .wrapper .left,
.contacts .wrapper .right {
  width: calc(50% - 16px);
}
@media only screen and (max-width: 1024px) {
  .contacts .wrapper .left,
  .contacts .wrapper .right {
    width: 100%;
  }
}
.contacts .wrapper .left {
  display: flex;
  flex-direction: column;
}
.contacts .wrapper .left .email {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.contacts .wrapper .left .email .img {
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 1024px) {
  .contacts .wrapper .left .email .img {
    width: 32px;
    height: 32px;
  }
}
.contacts .wrapper .left .email .img img {
  width: 100%;
  height: 100%;
}
.contacts .wrapper .left .email a {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .contacts .wrapper .left .email a {
    font-size: 18px;
    line-height: 22px;
  }
}
.contacts .wrapper .left p + p {
  margin-top: 12px;
}
.contacts .wrapper .right {
  padding-left: 80px;
}
@media only screen and (max-width: 1024px) {
  .contacts .wrapper .right {
    padding-left: 0;
  }
}
.contacts .wrapper .right .title {
  margin-bottom: 32px;
  font-family: verdana,sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  color: #141414;
}
@media only screen and (max-width: 1024px) {
  .contacts .wrapper .right .title {
    font-size: 18px;
    line-height: 22px;
  }
}
.contacts .wrapper .right form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}
.contacts .wrapper .right form .btn {
  width: 240px;
  margin: 18px auto 0;
}
@media only screen and (max-width: 1024px) {
  .contacts .wrapper .right form .btn {
    margin-top: 16px;
  }
}

footer {
  margin-top: auto;
  padding: 48px 0;
  background: #141414;
}
@media only screen and (max-width: 1024px) {
  footer {
    padding: 80px 0 40px;
  }
}
footer .top {
  padding: 32px 0 56px;
  border-bottom: 1px solid #D9D1C8;
}
@media only screen and (max-width: 1024px) {
  footer .top {
    padding: 0 0 32px;
  }
}
footer .top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  footer .top .container {
    flex-direction: column;
  }
}
footer .top .container .logo {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  footer .top .container .logo {
    margin-bottom: 32px;
  }
}
footer .top .container .logo img {
  width: 70px;
}
footer .top .container .menu ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  footer .top .container .menu ul {
    flex-direction: column;
    margin-bottom: 32px;
  }
}
footer .top .container .menu ul a {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #FFFFFF;
  transition: 0.3s ease;
}
footer .top .container .menu ul a:hover {
  color: #D7C7EE;
}
footer .top .container .social {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 1024px) {
  footer .top .container .social {
    gap: 16px;
  }
}
footer .top .container .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #343434;
  border-radius: 8px;
}
footer .top .container .social a img {
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 1024px) {
  footer .top .container .social a {
    width: 32px;
    height: 32px;
    background: none;
  }
}
footer .bot {
  padding: 40px 0 24px;
}
@media only screen and (max-width: 1024px) {
  footer .bot {
    padding: 32px 0 0;
  }
}
footer .bot .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  footer .bot .container {
    flex-direction: column-reverse;
  }
}
footer .bot .container .copyright {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #7F7F7F;
}
footer .bot .container .lks {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  footer .bot .container .lks {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
}
footer .bot .container .lks a {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #7F7F7F;
  transition: 0.3s ease;
}
footer .bot .container .lks a:hover {
  color: #FFFFFF;
}
footer .container {
  max-width: 1342px;
}

.breadcrumbs {
  margin-top: 16px;
}
.breadcrumbs p {
  display: flex;
}
.breadcrumbs a, .breadcrumbs .separator {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #C9C9C9;
}
.breadcrumbs .separator {
  margin: 0 10px;
}
.breadcrumbs .last {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #141414;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-family: verdana,sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #141414;
  transition: 0.3s ease;
}
.pagination .page.current, .pagination .page:hover {
  background: #8984FB;
  border-radius: 4px;
  color: #FFFFFF;
}
.pagination .pagination-prev {
  margin-right: 12px;
}
.pagination .pagination-next {
  margin-left: 12px;
}

input[type=text],
input[type=email] {
  height: 47px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  border: none;
  font-family: verdana,sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  color: #717170;
}

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