@font-face {
  font-family: 'SF-Pro-Display';
  src: 
    url(../fonts/SF-Pro-Display-Regular.otf) format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'SF-Pro-Display';
  src: 
    url(../fonts/SF-Pro-Display-Medium.otf) format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'SF-Pro-Display';
  src: 
    url(../fonts/SF-Pro-Display-Semibold.otf) format('opentype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'SF-Pro-Display';
  src: 
    url(../fonts/SF-Pro-Display-Bold.otf) format('opentype');
  font-weight: bold;
  font-style: normal;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "SF-Pro-Display", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: rgba(149, 183, 233, 1);
    background-color: rgba(3, 1, 32, 1);
    margin: 0;
    text-rendering: optimizeSpeed;
}
.bg-img {
    position: absolute;
    z-index: -1;
}
.body-wrapper {
    overflow: hidden;
    margin: 0;
}
a {
    text-decoration: none;
    transition: all .3s ease-in-out;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
header {
    padding: 0 120px;
    padding-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav {
    display: flex;
    font-size: 24px;
    gap: 64px;
}
.header__nav-item {
    transition: all .3s ease-in-out;
}
.header__nav-item:not(.active):hover {
    filter: brightness(140%);
}
.header__nav-item.active {
    color: #fff;
}
.blue-btn {
    background-color: rgba(3, 80, 204, 1);
    font-weight: 500;
    color: #fff;
    transition: all .3s ease-in-out;
    border-radius: 10px;
    padding: 6px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
    max-width: 238px;
    width: 100%;
    min-height: 62px;
}
.blue-btn:hover {
    background-color: rgb(0, 102, 255);
}
.blue-btn:active {
    background-color: rgb(89, 155, 255);
}
.header__btn {
    min-width: 197px;
    min-height: 56px;
}

/* WELCOME */
section.welcome {
    position: relative;
}
section.welcome::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/sections-img/welcome-bg.jpg) no-repeat;
    background-size: contain;
    background-position: right;
    z-index: -2;
    margin-top: -150px;
}
.container {
    padding: 0 120px;
}
.welcome__title {
    padding-top: 192px;
    padding-bottom: 76px;
}
.title {
    font-size: 70px;
    line-height: 110%;
    color: #fff;
}
.welcome__features {
    padding-top: 199px;
    display: flex;
    width: 100%;
    gap: 12px;
    justify-content: space-between;
}
.features-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 40px 40px 46px;
    width: 100%;
    height: 150px;
    background: linear-gradient(97.73deg, rgba(3, 80, 204, 0.2) 2.6%, rgba(21, 2, 26, 0) 97.4%);
    border-radius: 10px;
    gap: 5px;
}
.features-item-title {
    font-weight: 600;
    font-size: 36px;
    color: #fff;
    line-height: 110%;
}
.features-item-subtitle {
    font-size: 22px;
    line-height: 120%;
}
.welcome__image {
    top: 0;
    right: 0;
    margin-top: -90px;
}
section {
    padding-bottom: 240px;
}

/* GAMES */
.games__title {
    text-align: center;
}
.games__subtitle {
    font-size: 24px;
    padding-top: 30px;
    text-align: center;
}
.games__list {
    padding-top: 64px;
    display: flex;
    gap: 21px;
    justify-content: space-between;
}
.list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px;
    width: calc(100vw / 4 - 21px);
    height: 581px;
    border-radius: 12px;
    background-color: rgba(10, 13, 52, 1);
    overflow: hidden;
    z-index: 1;
    transition: all .5s ease-in-out;
}
.list-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
    border-radius: 12px;
    transition: all .5s ease-in-out;
}
.list-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 13, 52, 0) 0%, rgba(10, 13, 52, 1) 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: 12px;
    transition: all .5s ease-in-out;
}
.list-item > * {
    z-index: 2;
}
.list-item-bg {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -3 !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mask: linear-gradient(to bottom, rgb(0, 0, 0) 0, rgb(0, 0, 0) calc(100% - 20px), rgba(0, 0, 0, 0) calc(100% - 20px));
}
.slider-track .list-item-bg {
    height: 104%;
}
.list-item.active::before {
    opacity: 1;
}
.list-item.active::after {
    background: linear-gradient(to bottom, rgba(19, 23, 74, 0) 0%, rgba(19, 23, 74, 1) 70%);
}
.list-item.active .list-item-image {
    -webkit-mask-image: inherit;
    mask-image: inherit;
    top: 28%; 
    transition: all .5s ease-in-out;
}
.list-item.active .list-item-text-wrap {
    transform: translateY(0);
    transition-delay: 0.5s;
    transition: all .5s ease-in-out;
}
.list-item.active .list-item-title {
    font-size: 36px;
    transition: all .5s ease-in-out;
}
.list-item.active .list-item-desc {
    opacity: 1;
    visibility: visible;
    transform: inherit;
    pointer-events: none;
    transition: all .5s ease-in-out .5s;
}
.list-item.active .list-item-link.inactive {
    opacity: 1;
    transition: .3s ease-in-out;
}
.list-item.active:hover .list-item-link.inactive {
    opacity: 0;
    transition: .3s ease-in-out;
}
.list-item.active:hover .list-item-link.active {
    opacity: 1;
    transition: .3s ease-in-out;
}
.list-item.active {
    width: calc(1.7 * (100vw / 4 - 21px));
    background-color: rgba(19, 23, 74, 1);
}
/* .list-item:nth-child(1).active::before {
    opacity: 1;
}
.list-item:nth-child(1).active::after {
    background: linear-gradient(to bottom, rgba(19, 23, 74, 0) 0%, rgba(19, 23, 74, 1) 100%);
}
.list-item:nth-child(1).active .list-item-image {
    top: 45%;
} */
.list-item-image {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateY(-50%) translateX(50%);
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    transition: all .5s ease-in-out;
}
.list-item-title {
    font-size: 24px;
    line-height: 120%;
    color: #fff;
    transition: all .5s ease-in-out;
}
.list-item-desc {
    line-height: 28px;
    transform: translateY(40px);
    opacity: 0;
    visibility: hidden;
    transition-delay: .5s;
    transition: transform .5s ease-in-out;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.list-item-text-wrap {
    display: flex;
    min-height: 175px;
    gap: 20px;
    flex-direction: column;
    transform: translateY(146px); 
    transition: all .5s ease-in-out;
}
.list-item-link {
    display: flex;
    position: absolute;
    right: 40px;
    top: 40px;
    width: 45px;
    height: 45px;
    rotate: 225deg;
    transition: .3s ease-in-out;
    opacity: 0;
    background: url(../img/arrow-inactive.png) center no-repeat;
}
.list-item-link.active {
    rotate: 45deg;
    background-image: url(../img/arrow-active.png);
}

/* TECH */
section.tech {
    position: relative;
}
section.tech::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/sections-img/tech-bg.jpg);
    background-size: cover;
    margin: -900px 0;
    background-position: center;
    z-index: -2;
}
.tech .tttle, .partners .title, .faq .title {
    text-align: center;
}
.tech__categories {
    padding-top: 64px;
    display: flex;
    width: 675px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.category-item.active {
    color: #fff;
    background-color: rgba(3, 80, 204, 1);
    transition: all .3s ease-in-out;
}
.category-item.active:not(.active):hover {
    filter: brightness(140%);
    transition: all .3s ease-in-out;
}
.category-item {
    padding: 8px 32px;
    font-size: 24px;
    line-height: 120%;
    color: rgba(84, 129, 180, 1);
    border-radius: 60px;
    background-color: rgba(23, 26, 71, 1);
    cursor: pointer;
    transition: all .3s ease-in-out;
}
section.tech .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 91px;
}
section.tech .container {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

section.tech .container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    z-index: -1;
}

/* tech bg */
section.tech .container.bg-dev::before {
    background-image: url(../img/tech-dev.png);
}
section.tech .container.bg-design::before {
    background-image: url(../img/tech-design.png);
}
section.tech .container.bg-search::before {
    background-image: url(../img/tech-search.png);
}
section.tech .container.bg-front::before {
    background-image: url(../img/tech-front.png);
}
section.tech .container.bg-back::before {
    background-image: url(../img/tech-back.png);
}
section.tech .container.bg-adv::before {
    background-image: url(../img/tech-adv.png);
}

/* hide tech-bg */
section.tech .container.bg-fade::before {
    opacity: 0;
}


.category-info-wrap {
    position: relative;
    height: 363px;
    padding-top: 17px;
    transition: all .5s ease-in-out;
}
.category-info.active {
    display: contents;
    visibility: visible;
    opacity: 1;
    transition: all .5s ease-in-out;
}
.category-info.active .category-info-text {
    transform: translateY(115px);
    opacity: 1;
    transition: all .5s ease-in-out;
}
.category-info {
    display: block;
    position: absolute;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease-in-out;
}
.category-info-text {
    display: block;
    text-align: center;
    padding-top: 15px;
    transform: translateY(0px);
    opacity: 0;
    transform: inherit;
    transition: all .5s ease-in-out;
}
.category-info-title {
    font-size: 40px;
    padding-bottom: 32px;
    line-height: 120%;
    color: #fff;
}
.category-info-desc {
    line-height: 160%;
}
section.tech {
    padding-bottom: 249px;
}

/* PARTNERS */
.partners__links {
    display: grid;
    grid-template-columns: repeat(8, 146px);
    grid-template-rows: repeat(3, 146px);
    gap: 0;
    padding-top: 64px;
    justify-content: center;
}
.partners__links-item {
    position: relative;
    width: 146px;
    height: 146px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}
.partners__links-item img {
    position: absolute;
    top: 0; left: 0;
    width: 146px;
    height: 146px;
    border-radius: 10px;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
}
.partners__links-item img.top {
    opacity: 0;
    pointer-events: none;
}
.partners__links-item:hover img.top {
    opacity: 1;
}
.partners__links-item.active img.top {
    opacity: 1;
}
.empty {
    width: 146px;
    height: 146px;
}
section.partners {
    background: url(../img/sections-img/partners-bg.png) no-repeat;
    background-position: bottom center;
    background-size: contain;
}
section.faq .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.faq__questions {
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 925px;
}
.question.active {
    background-color: rgba(19, 23, 74, 1);
}
.question.active .question-title {
    color: #fff;
}
.question.active .question-desc {
    display: block;
}
.question.active .question-arrow.inactive {
    opacity: 0;
    transition: all .3s ease-in-out;
}
.question.active .question-arrow.active {
    opacity: 1;
    transition: all .3s ease-in-out;
}
.question:not(.active):hover {
    filter: brightness(80%);
}
.question {
    position: relative;
    padding: 24px 40px;
    cursor: pointer;
    border-radius: 10px;
    background-color: rgba(10, 13, 52, 1);
    transition: all .3s ease-in-out;
}
.question-title {
    font-size: 24px;
    line-height: 120%;
    color: rgba(84, 129, 180, 1);
}
.question-desc {
    padding-top: 24px;
    line-height: 160%;
    display: none;
}
.question .question-arrow.inactive {
    opacity: 1;
    transition: all .3s ease-in-out;
}
.question .question-arrow {
    position: absolute;
    display: flex;
    opacity: 0;
    top: 24px;
    right: 40px;
    transition: all .3s ease-in-out;
}
section.faq {
    position: relative;

}
.faq__image {
    position: absolute;
    top: 0;
    right: 0;
}

/* CONTACTS */
section.contacts .container {
    display: flex;
    justify-content: space-between;
}
.contacts-left {
    display: flex;
    flex-direction: column;
    gap: 122px;
}
.contacts__social {
    display: flex;
    gap: 12px;
}
.contacts__social-item:hover {
    filter: brightness(140%);
}
.contacts__social-item {
    padding: 6px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: rgba(87, 154, 255, 1);
    line-height: 160%;
    border-radius: 4px;
    background-color: rgba(3, 80, 204, 0.1);
    transition: all .3s ease-in-out;
}
.contacts-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}
.contacts__inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.contacts__inputs-item:not(textarea) {
    height: auto;
}
.contacts__inputs-item:is(textarea) {
    min-height: 122px;
    resize: none;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-y: auto;
}
.contacts__inputs-item::placeholder {
    color: rgba(77, 84, 175, 1);
}
.contacts__inputs-item:focus {
    outline: none;
}
.contacts__inputs-item {
    background-color: rgba(19, 23, 74, 1);
    border: 1px solid rgba(77, 84, 175, 0.1);
    border-radius: 10px;
    width: 726px;
    padding: 20px 24px;
    color: #fff; 
    font-family: 'SF-Pro-Display';
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    white-space: normal;
    word-wrap: break-word;
}

/* FOOTER */
footer {
    padding: 0 120px;
    padding-bottom: 28px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 160%;
    position: relative;
}
footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    background: url(../img/sections-img/footer-bg.jpg) no-repeat;
    background-size: 100%;
    background-position: bottom;
    z-index: -2;
    aspect-ratio: 1920 / 1344;
    transform: translateX(-50%);
    width: max(100%, 1000px);
     mask: linear-gradient(
      to top,
      rgba(0, 0, 0) 0%,
      rgb(0, 0, 0) calc(100% - 200px),
      rgba(0, 0, 0, 0) 100%
    );
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer__title {
    font-size: 34px;
    font-weight: bold;
    color: #fff;
}
.footer__socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer__socials-links {
    display: flex;
    gap: 4px;
}
.socials-link:hover {
    filter: brightness(150%);
}
.socials-link {
    width: 32px;
    transition: all .3s ease-in-out;
}
.footer__water:hover {
    filter: drop-shadow(0 0 2px rgb(108, 201, 255));
}
.footer__water {
    width: 134px;
    transition: all .3s ease-in-out;
}
.footer-right {
    display: flex;
    gap: 120px;
}
.footer__class {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.class-name {
    font-size: 24px;
    line-height: 120%;
    color: #fff;
}
.footer__class-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 10px;
}
.class-item:hover {
    filter: brightness(150%);
}
.class-item {
    transition: all .3s ease-in-out;
}

/* ~~~ OUR GAMES ~~~ */
body.our-games section {
        padding-bottom: 300px;
}    
body.our-games section.immerse {
    padding-bottom: 320px;
}
.immerse__image {
    position: absolute;
    z-index: -1;
}
/* IMMERSE */
section.immerse {
    position: relative;
}
section.immerse::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/sections-img/immerse-bg.jpg) no-repeat;
    margin: -150px 0;
    background-position: center top;
    z-index: -2;
}
section.immerse .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.immerse__title {
    padding-top: 282px;
    padding-bottom: 44px;
}
.immerse__subtitle {
    font-size: 24px;
    line-height: 160%;
}
/* ALL-GAMES */
section.all-games {
    position: relative;
}
section.all-games::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/sections-img/allgames-bg.jpg) no-repeat;
    background-size: cover;
    margin: -900px 0;
    background-position: center;
    z-index: -2;
    mask: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 300px, rgb(0, 0, 0) calc(100% - 300px), rgba(0, 0, 0, 0) 100% );
}
.all-games__categories {
    padding-top: 32px;
    padding-bottom: 64px;
    display: flex;
    gap: 12px;
}
.all-games__list-wrap {
    display: flex;
    width: 100%;
    min-height: 465px;
    justify-content: space-between;
    position: relative;
}
.all-games__list.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}
.all-games__list {
    position: absolute;
    top: 0;
    display: none;
    width: 100%;
    gap: 24px 20px;
    grid-template-columns: repeat(auto-fill, minmax(510px, 1fr));
    display: grid;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all .5s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
.all-games__list-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
    border-radius: 12px;
    transition: all .5s ease-in-out;
}
.all-games__list-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 13, 52, 0) 0%, rgba(10, 13, 52, 1) 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: 12px;
    transition: all .5s ease-in-out;
}
.all-games__list-item > * {
    z-index: 2;
}
.all-games__list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px;
    width: 100%;
    height: 465px;
    border-radius: 12px;
    background-color: rgba(10, 13, 52, 1);
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.all-games__list-item.active::before {
    opacity: 1;
}
.all-games__list-item.active::after {
    background: linear-gradient(to bottom, rgba(19, 23, 74, 0) 0%, rgba(19, 23, 74, 1) 70%);
}
.all-games__list-item.active .list-item-text-wrap {
    transform: translateY(0);
    transition-delay: 0.5s;
    transition: all .5s ease-in-out;
}
.all-games__list-item.active .list-item-title {
    font-size: 36px;
    transition: all .5s ease-in-out;
}
.all-games__list-item.active .list-item-desc {
    opacity: 1;
    visibility: visible;
    transform: inherit;
    pointer-events: none;
    transition: all .5s ease-in-out .5s;
}
.all-games__list-item.active .list-item-link.inactive {
    opacity: 1;
    transition: .3s ease-in-out;
}
.all-games__list-item.active:hover .list-item-link.inactive {
    opacity: 0;
    transition: .3s ease-in-out;
}
.all-games__list-item.active:hover .list-item-link.active {
    opacity: 1;
    transition: .3s ease-in-out;
}
.list-item-link {
    display: flex;
    position: absolute;
    right: 40px;
    top: 40px;
    rotate: 225deg;
    transition: .3s ease-in-out;
    opacity: 0;
}
.list-item-link.active {
    rotate: 45deg;
}

/* SOON */
section.soon .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.soon__title {
    padding-bottom: 64px;
}
.soon__slider {
    position: relative;
    height: 465px;
}
.slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 465px;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}
.slider-item {
    padding: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}
.slider-item-title {
    font-size: 24px;
    color: #fff;
    line-height: 120%;
    font-weight: 600;
    padding-bottom: 20px;
    transform: translateY(76px);
    transition: all .5s ease-in-out;
}
.slider-item-desc {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease .5s;
    z-index: 2;
    line-height: 28px;
    height: 56px;
}
.slider-item.active .list-item-link.inactive {
    opacity: 1;
    transition: all .3s ease-in-out;
}
.slider-item.active:hover .list-item-link.inactive {
    opacity: 0;
    transition: all .3s ease-in-out;
}
.slider-item.active:hover .list-item-link.active {
    opacity: 1;
    transition: all .3s ease-in-out;
}
.slider-item.active .slider-item-title {
    font-size: 36px;
    transform: translateY(0);
}
.slider-item.active .slider-item-desc {
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease .5s;
}
.slider-item.active {
    width: 862px;
    height: 465px;
    background-color: rgba(19, 23, 74, 1);
    filter: none;
    z-index: 2;
}
.slider-item.inactive {
    width: 390px;
    height: 400px;
    background-color: rgba(10, 13, 52, 1);
    filter: blur(3px);
    z-index: 1;
    position: relative;
}
.slider-item.active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(50% 50% at 50% 50%, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.1;
    z-index: 1;
}
.soon__slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 2px;
}
.indicator {
    width: 50px;
    height: 4px;
    border-radius: 60px;
    background-color: rgba(30, 27, 70, 1);
    position: relative;
    overflow: hidden;
}
.indicator > div {
    height: 100%;
    background-color: rgba(3, 80, 204, 1);
    border-radius: 60px;
    width: 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: none;
}
.indicator > div.progressing {
    transition: width 5s linear;
}

/* ~~~ FALL GUYS ~~~ */
body.fall-guys section {
    padding-bottom: 240px;
}
body.fall-guys section .game__image {
    position: absolute;
    top: -13%;
    right: 0;
    z-index: -1;
}

/* GAME */
section.game {
    position: relative;
}
section.game::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/sections-img/game-bg.jpg) no-repeat;
    margin-top: -230px;
    background-position: right;
    z-index: -2;
}
section.game .container {
    padding-top: 192px;
}
.game__desc {
    width: 669px;
    font-size: 24px;
    line-height: 140%;
    padding-top: 60px;
    padding-bottom: 79px;
}

/* NEWS */
section.news .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.slider-item.news .news__date {
    color: rgba(84, 129, 180, 1);
    line-height: 160%;
    position: absolute;
    top: 40px;
    left: 40px;
    display: none;
}
.slider-item.news.active .news__date {
    display: block;
}

/* ABOUT GAME */
section.about-game {
    position: relative;
}
section.about-game::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/sections-img/aboutgame-bg.jpg) no-repeat;
    margin-bottom: -200px;
    background-position: left top;
    z-index: -2;
}
.about-game__first-img {
    z-index: -1;
}
.about-game__first {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 210px;
}
.about-game__first-info {
    display: flex;
    flex-direction: column;
    gap: 64px;
    height: 435px;
    width: 630px;
    
    .blue-btn {
        width: 238px;
    }
}
.about-game__first-desc {
    line-height: 140%;
}
.about-game__second-info {
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}
.second-info-slider {
    position: relative;
    width: 100%;
    height: auto;
}
.second-info-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}
.second-info-slider-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
    gap: 10px;
}
.second-info-slider-left {
    width: 772px;
    box-sizing: border-box;
}
.second-info-title {
    color: #fff;
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 32px;
}
.second-info-desc {
    line-height: 140%;
}
.second-info-slider-right {
    flex: 1;
    max-width: 777px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}
.second-info-slider.left:hover, .second-info-slider.right:hover {
    filter: brightness(150%);
}
.second-info-slider.left:active, .second-info-slider.right:active {
    filter: brightness(200%);
}
.second-info-slider.left, .second-info-slider.right {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 64px;
    height: 64px;
    cursor: pointer;
    z-index: 10;
    transition: all .3s ease-in-out;
}
.second-info-slider.right {
    left: 88px;
}
@media (max-width: 768px) {
    .second-info-slider-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .second-info-slider-left, .second-info-slider-right {
        max-width: 100%;
        padding: 0;
    }
    .second-info-slider-right {
        max-height: 200px;
    }
    .second-info-title {
        font-size: 20px;
    }
    .second-info-desc {
        font-size: 14px;
    }
    .second-info-slider-right.left, .second-info-slider-right.right {
        width: 35px;
        height: 35px;
    }
    .second-info-slider.right {
        left: 55px;
    }
    .about-game__second-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    section.tech .container.bg-back::before {
        background: url('../img/tech-back.png');
        background-size: auto;
        background-repeat: round;
        background-size: contain;
    }
    section.tech .container.bg-dev::before {
        background-image: url('../img/tech-dev.png');
        background-size: auto;
        background-repeat: round;
        background-size: contain;
    }
    section.tech .container.bg-design::before {
        background-image: url('../img/tech-design.png');
        background-size: auto;
        background-repeat: round;
        background-size: contain;
    }
    section.tech .container.bg-search::before {
        background-image: url('../img/tech-search.png');
        background-size: auto;
        background-repeat: round;
        background-size: contain;
    }
    section.tech .container.bg-front::before {
        background-image: url('../img/tech-front.png');
        background-size: auto;
        background-repeat: round;
        background-size: contain;
    }
    section.tech .container.bg-adv::before {
        background-image: url('../img/tech-adv.png');
        background-size: auto;
        background-repeat: round;
        background-size: contain;
    }
}

/* ~~~ PAYMENT ~~~~ */
/* @media(min-height: 1081px) {
    body.payment {
        height: 100vh;
        background: url(../img/sections-img/payment-bg.jpg) no-repeat;
        background-size: cover;
        background-position: center;
    }
    section.pixeltech-payment::before {
        background: none !important;
    }
} */
body.payment section {
    padding-top: 72px;
    padding-bottom: 220px;
}
body.payment section .container {
    padding: 0 195px;
    display: flex;
    justify-content: space-between;
}
body.payment section .container .bg-img {
    position: relative;
}
section.pixeltech-payment {
    /* position: relative; */
}
section.pixeltech-payment::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/sections-img/payment-bg.jpg) no-repeat;
    /* background-position-y: top; */
    background-position-x: left;
    background-size: contain;
    height: 1800px;
    z-index: -2;
    margin-top: -300px;
} 
.pixeltech-payment__right {
    display: flex;
    flex-direction: column;
    width: 590px;
    text-align: center;
}
.pixeltech-payment__back:hover {
    filter: brightness(150%);
}
.pixeltech-payment__image {
    align-self: center;
}
.pixeltech-payment__back {
    display: flex;
    gap: 16px;
    color: rgba(10, 70, 171, 1);
    line-height: 160%;
    width: 232px;
    transition: all .3s ease-in-out;
}
.pixeltech-payment__title {
    padding-bottom: 64px;
}
.pixeltech-payment__right-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 64px;
}
.pixeltech-payment__btn {
    max-width: 100%;
}
.block-item {
    border-radius: 10px;
    background-color: rgba(3, 80, 204, 0.2);
    padding: 16px;
}
.pixeltech-payment__agree a {
    color: rgba(149, 183, 233, 1);
    text-decoration: underline;
    transition: all .3s ease-in-out
}
.pixeltech-payment__agree a:hover {
    filter: brightness(80%);
}
.pixeltech-payment__agree {
    font-size: 14px;
    color: #fff;
    line-height: 160%;
    padding-top: 12px;
}

/* !!! ADAPTIVE !!! */
.burger {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    display: none;
    z-index: 27;
    background-color: transparent;
    cursor: pointer;
}
.burger span {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: rgba(149, 183, 233, 1);
    left: 8px;
    transition: transform .5s;
    will-change: transform;
}
.burger span:hover {
    transform: scale(2);
}
.burger span:nth-child(1) {
    transform: translateY(-10px);
} 
.burger span:nth-child(3) {
    transform: translateY(10px);
} 
.burger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
} 
.burger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.burger.active span:nth-child(2) {
    display: none;
} 
.menu {
    display: none;
    visibility: hidden;
    z-index: 26;
    box-shadow: 10px 10px 50px #000;
    min-height: 100vh;
}
.menu__list {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
@media (max-width: 1100px) {
    .header__nav-item, .header__btn {
        display: none;
    }
    .burger {
        display: block;
        position: relative;
    }
    .menu__list {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding-top: 48px;
    }
    .menu__list li {
        padding: 4px 0;
        text-transform: uppercase;
        text-align: center;
    }
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        background-color: #050018f5;
        padding: 100px 30px 30px;
        transform: translateX(100%);
        transition: all .5s;
        display: block;
    }
    .menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    .menu__item a {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }
    .no-scroll {
        overflow: hidden;
    }
}

/* RESPONSIVE STYLES */
@media (max-width: 1440px) {
    section.welcome::before, section.immerse::before {
        background-size: cover;
    }
    

    /* ~~~ HOME ~~~ */
    .container {
        padding: 0 60px;
    }
    header, footer {
        padding: 0 60px;
    }
    footer {
        padding-bottom: 60px;
    }
    body {
        font-size: 18px;
    }
    .title {
        font-size: 60px;
    }

    /* welcome */
    .welcome__title {
        padding-top: 150px;
        padding-bottom: 60px;
    }
    .welcome__features {
        padding-top: 150px;
        gap: 20px;
    }
    .features-item {
        padding: 30px;
        height: auto;
        min-height: 120px;
    }
    .features-item-title {
        font-size: 30px;
    }
    .features-item-subtitle {
        font-size: 20px;
    }
    .welcome__image {
        top: 80px;
        max-width: 50%;
    }

    .list-item {
        width: calc(50% - 15px);
        height: 450px;
        padding: 30px;
    }
    .list-item.active {
        width: calc(100% - 15px);
    }
    .list-item-title {
        font-size: 22px;
    }
    .list-item.active .list-item-title {
        font-size: 30px;
    }
    .list-item-text-wrap {
        min-height: 150px;
        transform: translateY(120px);
        gap: 0px;
        padding-top: 5px;
    }
    .list-item.active .list-item-text-wrap {
        transform: translateY(10px);
    }
    .list-item-desc {
        font-size: 16px;
        line-height: 24px;
    }

    /* tech*/
    .tech__categories {
        width: 100%;
        gap: 10px;
    }
    .category-item {
        font-size: 20px;
        padding: 6px 24px;
    }
    .category-info-title {
        font-size: 32px;
    }
    .category-info-desc {
        font-size: 16px;
    }
    .category-info-wrap {
        height: 300px;
    }
    .category-info-text {
        transform: translateY(90px);
    }

    /* partners */
    .partners__links {
        grid-template-columns: repeat(4, 120px);
        grid-template-rows: auto;
    }
    .partners__links-item, .empty {
        width: 120px;
        height: 120px;
    }
    .partners__links-item img {
        width: 120px;
        height: 120px;
    }

    /* faq */
    .faq__questions {
        width: 100%;
        max-width: 700px;
    }
    .question {
        padding: 20px 30px;
    }
    .question-title {
        font-size: 20px;
    }
    .question-desc {
        font-size: 16px;
    }

    /* contacts */
    .contacts .container {
        flex-direction: column;
        gap: 60px;
    }
    .contacts-left {
        gap: 60px;
    }
    .contacts__inputs-item {
        font-size: 20px;
        padding: 16px 20px;
    }
    .contacts-right {
        gap: 30px;
    }

    /* footer */
    .footer-right {
        gap: 60px;
    }
    .footer__title {
        font-size: 28px;
    }
    .class-name {
        font-size: 20px;
    }

    /* ~~~ OUR-GAMES ~~~*/
    body.our-games section {
        padding-bottom: 200px;
    }
    .immerse__title {
        padding-top: 200px;
        padding-bottom: 30px;
    }
    .all-games__list {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 20px;
    }
    .all-games__list-item {
        height: 400px;
        padding: 30px;
    }

    /* FALL-GUYS */
    body.fall-guys section {
        padding-bottom: 200px;
    }
    .game .container {
        padding-top: 150px;
    }
    .game__desc {
        width: 500px;
        font-size: 20px;
    }
    .game__image {
        width: 70%;
    }
    .about-game__first {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 150px;
    }
    .about-game__first-info {
        width: 100%;
        height: auto;
    }
    .second-info-slider-left {
        width: 100%;
    }
    .second-info-slider-right {
        max-width: 100%;
    }

    /* Payment Page */
    body.payment {
        background-position: right;
    }
    body.payment .container {
        padding: 0 10px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        align-items: center;
    }
    body.payment section .container {
        padding: 0 20px;
    }
    section.pixeltech-payment::before {
        background: url(../img/sections-img/payment-bg_mobile.jpg) no-repeat;
        background-position-x: center;
        z-index: -2;
    } 
    .pixeltech-payment__right {
        width: 80%;
        align-items: center;
    }
    .pixeltech-payment__back {
        align-self: center;
        padding-bottom: 20px;
    }
    .pixeltech-payment__right-block {
        width: 90%;
    }
    .pixeltech-payment__btn {
        max-width: 90%;
    }
    .pixeltech-payment__back:hover {
        filter: brightness(3);
    }
    .pixeltech-payment__back {
        filter: brightness(2);
    }
}
@media(max-width: 1440px) {
    .list-item-desc {
        font-size: 14px;
    }
    .list-item-text-wrap {
        min-height: 150px;
        transform: translateY(120px);
    }
    .question .question-arrow {
        top: 16px;
        right: 20px;
    }
}
@media(max-width:1650px) {
    section.contacts .container {
        flex-direction: column;
        align-items: center;
        gap: 45px;
    }
    section.contacts .container .contacts-left {
        gap: 45px;
    }
    section.contacts .container .contacts__title {
        text-align: center;
    }
    .tech__tttle {
        text-align: center;
    }
    .pixeltech-payment__image {
        width: 50%;
    }
    .list-item-desc {
        font-size: 18px;
    }
}
@media (max-width: 1024px) {
    /* General adjustments */
    .container {
        padding: 0 40px;
    }
    header, footer {
        padding: 0 40px;
    }
    footer {
        padding-bottom: 40px;
    }
    body {
        font-size: 16px;
    }
    .title {
        font-size: 50px;
    }

    /* Welcome Section */
    .welcome__image {
        display: none;
    }
    section.welcome .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .welcome__title {
        padding-top: 120px;
        padding-bottom: 50px;
        text-align: center;
    }
    .welcome__features {
        padding-top: 120px;
    }
    .features-item {
        padding: 20px;
    }
    .features-item-title {
        font-size: 26px;
    }
    .features-item-subtitle {
        font-size: 18px;
    }

    /* Games Section */
    .games__list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .list-item {
        width: 50%;
        height: 400px;
        padding: 20px;
        
    }
    .list-item.active {
        width: 70%;
    }
    .list-item-text-wrap {
        min-height: 145px;
        /* transform: translateY(100px); */
    }

    /* Tech Section */
    .category-item {
        font-size: 18px;
        padding: 6px 20px;
    }
    .category-info-title {
        font-size: 28px;
    }
    .category-info-wrap {
        height: 250px;
    }
    .category-info-text {
        transform: translateY(70px);
    }

    /* Partners Section */
    .partners__links {
        grid-template-columns: repeat(3, 100px);
    }
    .partners__links-item, .empty {
        width: 100px;
        height: 100px;
    }
    .partners__links-item img {
        width: 100px;
        height: 100px;
    }

    /* FAQ Section */
    .question {
        padding: 15px 20px;
    }
    .question-title {
        font-size: 18px;
    }
    .question .question-arrow {
        top: 10px;
        right: 15px;
    }


    /* Footer */
    .footer-right {
        flex-direction: column;
        gap: 40px;
    }

    /* Our Games Page */
    .all-games__list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    .all-games__list-item {
        height: 350px;
        padding: 20px;
    }
    .slider-item.active {
        width: 500px;
        height: 350px;
    }
    .slider-item.inactive {
        width: 250px;
        height: 300px;
    }

    /* Fall Guys Page */
    body.fall-guys {
        background-image: none;
    }
    .second-info-title {
        font-size: 30px;
    }
    .second-info-desc {
        font-size: 16px;
    }
    .about-game__first-info {
        align-items: center;
        text-align: center;
    }
    .second-info-slider-right {
        max-width: 60%;
    }
    .slider-arrows {
        padding-top: 24px;
        display: flex;
        justify-content: center;
        gap: 23px;
        align-items: center;
    }
    .second-info-slider-right.left, .second-info-slider-right.right {
        position: relative;
        left: 0;
        bottom: 0;
    }
    .second-info-slider-item {
        align-items: center; 
    }
    .soon__slider, .slider-track {
        height: 350px;
    }
    .slider-track .list-item-bg {
        height: 108%;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .footer-left {
        align-items: center;
    }
    .footer__socials-links {
        align-self: center;
    }
    .footer-right {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* General adjustments */
    .container {
        padding: 0 20px;
    }
    header, footer {
        padding: 0 20px;
    }
    footer {
        padding-bottom: 20px;
    }
    .title {
        font-size: 40px;
    }

    /* Welcome Section */
    .welcome__title {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .welcome__features {
        padding-top: 100px;
    }
    .features-item-title {
        font-size: 22px;
    }
    .features-item-subtitle {
        font-size: 16px;
    }

    /* Games Section */
    .list-item {
        height: 350px;
    }
    .list-item-title {
        font-size: 20px;
    }
    .list-item.active .list-item-title {
        font-size: 26px;
    }

    /* Tech Section */
    .category-item {
        font-size: 16px;
        padding: 4px 16px;
    }
    .category-info-title {
        font-size: 24px;
    }

    /* Partners Section */
    .partners__links {
        grid-template-columns: repeat(2, 80px);
    }
    .partners__links-item, .empty {
        width: 80px;
        height: 80px;
    }
    .partners__links-item img {
        width: 80px;
        height: 80px;
    }

    /* FAQ Section */
    .faq__questions {
        max-width: 100%;
    }

    /* Our Games Page */
    .all-games__list {
        grid-template-columns: 1fr;
    }
    .all-games__categories {
        flex-wrap: wrap;
    }

    /* Fall Guys Page */
    .game__desc {
        font-size: 18px;
    }

    /* contacts */
    .contacts__inputs-item {
        width: calc(100vw * 0.9);
    }   
    .contacts__social {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* General adjustments */
    body {
        background-image: none;
    }
    body .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    section.welcome, section.games {
        padding-bottom: 200px;
    }
    .games__subtitle {
        font-size: 20px;
        line-height: 120%;
        text-align: center;
        padding: 40px 0;
    }
    .welcome__image {
        display: none;
    }
    .list-item-image {
        width: 50%;
    }
    section.games .games__list {
        padding: 0;
    }
    body.fall-guys section.game__image {
        display: none;
    }
    .title {
        text-align: center;
    }
    .games__title {
        padding-bottom: 40px;
    }
    .game__desc {
        width: 100%;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 59px;
    }
    .game .container {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .container {
        padding: 0 15px;
    }
    header, footer {
        padding: 0 15px;
    }
    footer {
        padding-bottom: 15px;
    }
    body {
        font-size: 16px;
    }
    .title {
        font-size: 32px;
    }

    /* Welcome Section */
    .welcome__title {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    .welcome__features {
        flex-direction: column;
        padding-top: 40px;
        gap: 10px;
        width: 215px;
    }
    .features-item {
        padding: 15px;
        text-align: center;
    }
    .features-item-title {
        font-size: 20px;
        text-align: center;
        width: 100%;
    }
    .features-item-subtitle {
        text-align: center;
        width: 100%;
    }

    /* Games Section */
    .list-item {
        height: 300px;
        padding: 15px;
    }

    /* Tech Section */
    section.tech {
        padding-bottom: 200px;
    }
    .category-info-title {
        font-size: 20px;
    }
    .category-info-wrap {
        height: 200px;
    }
    .category-info.active .category-info-text {
        transform: translateY(0px);
    }

    /* partners */
    section.partners {
        padding-bottom: 200px;
    }

    /* faq */
    section.faq {
        padding-bottom: 200px;
    }
    .faq__image {
        scale: 0.5;
        right: -30%;
        top: -40%;
    }
    .question .question-arrow {
        top: 12px;
        right: 14px;
    }
    
    /* contact */
    .contacts-left, .contacts-right {
        gap: 40px;
    }
    .contacts__social {
        flex-direction: column;
    }
    .contacts__inputs-item {
        width: 100%;
    }

    /* Footer */
    .footer-left, .footer-right {
        gap: 20px;
    }
    .footer__title {
        font-size: 24px;
    }

    /* Our Games Page */
    body.our-games {
        background-image: none
    }
    .immerse__image {
        display: none;
    }
    .immerse__subtitle {
        padding-top: 40px;
        font-size: 18px;
    }
    body.our-games section.immerse {
        padding-bottom: 200px;
    }
    section.immerse .container {
        padding-top: 70px;
    }
    .immerse__title {
        padding: 0;
    }
    .games__list {
        padding-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .list-item .list-item-title {
        font-size: 12px;
    }
    .list-item.active .list-item-title {
        font-size: 16px;
    }
    .list-item.list-item-desc {
        font-size: 14px;
        line-height: 120%;
    }
    .list-item {
        width: 280px;
        padding: 20px;
    }
    .list-item-text-wrap {
        gap: 10px;
        min-height: 100px;
        transform: translateY(120px);
    }
    .all-games__list-item.active .list-item-title {
        font-size: 16px;
    }
    .all-games__list-item .list-item-title {
        font-size: 12px;
    }
    .all-games__list-item .list-item-desc {
        font-size: 14px;
        line-height: 120%;
    }
    .all-games__list-item .list-item-text-wrap {
        height: 96px;
    }
    .all-games__categories {
        justify-content: center;
        padding: 40px 0
    }

    .soon__slider, .slider-track {
        height: 240px;
    }
    .all-games__list-item {
        height: 300px;
        padding: 15px;
    }
    .slider-item.active {
        width: 280px; 
        height: 240px; 
    }
    .slider-item.inactive {
        width: 220px; 
        height: 200px; 
    }
    .slider-track {
        height: 240px;
    }
    .soon__slide {
        height: 240px;
    }

    section.game .container {
        padding-top: 70px; 
    }

    /* about game */
    .about-game__first-info {
        gap: 40px;
    }
    .second-info-title {
        margin-bottom: 40px;
    }
    .second-info-slider-right {
        max-width: 100%;
    }

    /* news | soon */
    .soon__title {
        padding-bottom: 40px;
    }
    .slider-item {
        padding: 20px;
    }
    .list-item-link.active, .list-item-link.inactive {
        top: 20px;
        right: 20px;
    }
    .slider-item.news .news__date {
        top: 20px;
        left: 20px;
        font-size: 14px;
    }
    .slider-item-title {
        font-size: 12px;
        text-align: center;
        padding-bottom: 10px;
    }
    .slider-item.active .slider-item-title {
        font-size: 16px;
    }
    .slider-item-desc {
        font-size: 14px;
        width: 100%;
        text-align: center;
        line-height: 120%;
    }

    /* footer */
    .footer__desc {
        text-align: center;
    }
    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 20px;
    }
    .footer__class {
        text-align: center;
        align-items: center;
    }
    .footer__class-items {
        padding: 0;
    }

    .pixeltech-payment__right {
        width: inherit;
    }
}
@media(max-width: 878px) {
    .partners__links {
        grid-template-columns: repeat(3, 80px);
    }
    .partners__links-item, .empty {
        width: 80px;
        height: 80px;
    }
    .partners__links-item img {
        width: 80px;
        height: 80px;
    }
}
@media(max-width: 650px) {
    .partners__links {
        grid-template-columns: repeat(3, 60px);
    }
    .partners__links-item, .empty {
        width: 60px;
        height: 60px;
    }
    .partners__links-item img {
        width: 60px;
        height: 60px;
    }
    .list-item-desc {
        font-size: 14px;
    }

}
@media(max-width: 480px) {
    .partners__links {
        grid-template-columns: repeat(3, 40px);
    }
    .partners__links-item, .empty {
        width: 40px;
        height: 40px;
    }
    .partners__links-item img {
        width: 40px;
        height: 40px;
    }
}
@media(max-width: 480px) {
    .list-item-text-wrap {
        gap: 10px;
        min-height: 100px;
        transform: translateY(130px);
    }   
    .list-item .list-item-desc {
        font-size: 14px;
        line-height: 120%;
    }
    .list-item .list-item-desc {
        font-size: 14px;
        line-height: 120%;
    }
    .list-item.active .list-item-text-wrap {
        transform: translateY(10px);
        gap: 0px;
    } 
    .list-item.active {
        width: 80%;
    }
}
.second-info-slider-right.left {
    background: url(../img/about-game/slider-left.png) center no-repeat;
    background-size: cover;
    border-radius: 90px;
    width: 64px;
    height: 64px;
    z-index: 5;
    cursor: pointer;
    width: 100%;
    transition: all .3s ease-in-out;
}
.second-info-slider-right.left:hover {
    filter: brightness(150%);  
}
.second-info-slider-right.righ:hover {
    filter: brightness(150%);  
}
.second-info-slider-right.right {
    background: url(../img/about-game/slider-right.png) center no-repeat;
    background-size: cover;
    border-radius: 90px;
    width: 64px;
    height: 64px;
    z-index: 5;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.slider-arrows {
    display: flex;
    width: 152px;
    gap: 24px;
    align-items: center;
}
.question-arrow.inactive {
    background: url(../img/arrow-inactive.png) center no-repeat;
    background-size: contain;
    width: 33px;
    height: 33px;
}
.question-arrow.active {
    background: url(../img/arrow-active.png) center no-repeat;
    background-size: contain;
    width: 33px;
    height: 33px;
}
section.privacy {
    line-height: 1.2;
}
section.privacy a {
    filter: brightness(140%);
    text-decoration: underline;
}
section.privacy .container .title {
    text-align: center;
}
.game__image {
    top: -89px;
    right: 0;
}
@media (max-width: 480px) {
  .game__image {
    display: none;
  }
}
