@font-face {
    src: url("/fronlinegames-components/fronlinegames-font/fronlinegames-ttoctosquares-regular.woff2")
        format("truetype");
    font-family: "ttoctosquares-regular";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-main-text: "ttoctosquares-regular", sans-serif;

    --bg-color: #191919;
    --bg-header: #191312;

    --color-text: #fff;
    --color-light-green: #dbff4d;
    --color-gradient: linear-gradient(#ffc700, #f02418);
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol,
li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #ffffff;
}
html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

main,
footer {
    width: 100%;
    color: rgba(3, 3, 3, 1);
}

img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    vertical-align: top;
}

.fronlinegames--container__main {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.fronlinegames__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

/* Header */
.fronlinegames--header {
    width: 100%;
    display: flex;
    position: relative;
    background-color: var(--bg-header);
}

.fronlinegames--menu {
    width: 100%;
    display: flex;
    align-items: center;
}

.fronlinegames--header__container {
    max-width: 1249px;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0.675rem 0;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.fronlinegames--menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fronlinegames--menu__box {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}

.fronlinegames--menu__list {
    gap: 1.625rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 0.3rem 0;
    position: relative;
}

.fronlinegames--menu__list-item {
    position: relative;
}

.fronlinegames--menu__list-item a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.425rem;
    width: 100%;
    height: 3px;
    background: var(--color-light-green);
}

.fronlinegames--menu__list-item a::after {
    transition: all 0.3s ease;
    transform: scaleX(0);
}
.fronlinegames--menu__list-item a.active::after {
    transform: scaleX(1);
}

.fronlinegames--main__text-logo {
    display: flex;
    align-items: center;
    gap: 1.625rem;
}

.fronlinegames--menu__list-item a {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    color: var(--color-text);
    text-align: center;
}

/* Burger */
#fronlinegamesMenuToggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999 !important;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: 58px;
}

#fronlinegamesMenuToggle a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

#fronlinegamesMenuToggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin-bottom: 5px;
    right: 0rem;
    top: 0rem;
    position: relative;
    background: var(--color-light-green);
    border-radius: 3px;
    z-index: 1001 !important;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.no-scroll {
    overflow: hidden !important; /* Отключаем прокрутку с приоритетом */
}

#fronlinegamesMenuToggle span:first-child {
    transform-origin: 0% 0%;
}

#fronlinegamesMenuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#fronlinegamesMenu {
    position: absolute;
    max-width: 100vh;
    width: 100%;
    z-index: 1000;
    margin: 0 0 0 0;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #191919;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    height: 130vh;
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
}

#fronlinegamesMenu li {
    max-width: 320px;
    width: 100%;
    padding: 1rem;
    font-size: 22px;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

#fronlinegamesMenuToggle input:checked ~ ul {
    transform: none;
}

.burger-button {
    display: block;
    width: 42px;
    height: 32px;
    position: absolute;
    top: 1rem;
    right: 0rem;
    cursor: pointer;
    opacity: 1; /* Изменили с 0 на 1 */
    z-index: 1002 !important;
    -webkit-touch-callout: none;
    background: transparent;
    border: none;
    padding: 0;
}

/* Добавляем класс для открытого состояния */
.burger-button.active span:first-child {
    transform: rotate(45deg) translate(5px, 0px);
    background: #f9f9f9;
    -webkit-transform: rotate(45deg) translate(5px, 0px);
    -moz-transform: rotate(45deg) translate(5px, 0px);
    -ms-transform: rotate(45deg) translate(5px, 0px);
    -o-transform: rotate(45deg) translate(5px, 0px);
}

.burger-button.active span:nth-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
    -webkit-transform: rotate(0deg) scale(0.2, 0.2);
    -moz-transform: rotate(0deg) scale(0.2, 0.2);
    -ms-transform: rotate(0deg) scale(0.2, 0.2);
    -o-transform: rotate(0deg) scale(0.2, 0.2);
}

.burger-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, 2px);
    -webkit-transform: rotate(-45deg) translate(0px, 2px);
    -moz-transform: rotate(-45deg) translate(0px, 2px);
    -ms-transform: rotate(-45deg) translate(0px, 2px);
    -o-transform: rotate(-45deg) translate(0px, 2px);
}

/* Обновляем селектор для checked состояния */
#fronlinegamesMenuToggle .active ~ #fronlinegamesMenu {
    transform: none;
}

/* Welcome */
.fronlinegames--welcome-box {
    width: 100%;
    height: 746px;
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-welcome/fronlinegames-bg-line-cube.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fronlinegames--header__title {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    justify-content: center;
    max-width: 600px;
}

.fronlinegames--header__title-w {
    max-width: 100%;
    width: 100%;
}
.fronlinegames--header__text-welcome-w {
    max-width: 855px !important;
    width: 100% !important;
}

.fronlinegames--welcome-box-h {
    height: 339px !important;
}

.fronlinegames--header__title-welcome {
    font-family: var(--font-main-text);
    font-weight: 700;
    font-size: 8rem;
    line-height: 100%;
    color: var(--color-text);
}

.fronlinegames--header__title-welcome-p {
    font-size: 6rem;
    text-transform: uppercase;
}

.fronlinegames--header__text-welcome {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 28px;
    color: var(--color-text);
}

/* Start */
.fronlinegames--start-box {
    padding: 4.375rem 0;
}

.fronlinegames--start--container {
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
}

.fronlinegames--start---top {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fronlinegames--start----previews {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 28px;
    letter-spacing: 1px;
    color: var(--color-light-green);
}

.fronlinegames--start----title {
    font-family: var(--font-main-text);
    font-weight: 700;
    font-size: 4rem;
    line-height: 72px;
    letter-spacing: 1px;
    color: var(--color-text);
    max-width: 710px;
    width: 100%;
    text-transform: uppercase;
}
.fronlinegames--start---lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.675rem;
}

.fronlinegames--start----elem {
    border: 1px solid var(--color-light-green);
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 0.675rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.fronlinegames--start----elem_num {
    font-family: var(--font-main-text);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 28px;
    background: var(--color-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.fronlinegames--start----elem_text {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 28px;
    color: var(--color-text);
}

.fronlinegames--start----elem:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}
.fronlinegames--start----elem:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}
.fronlinegames--start----elem:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}
.fronlinegames--start----elem:nth-child(4) {
    grid-column: 4;
    grid-row: 2;
}

/* About */
.fronlinegames--about-box {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-about/fronlinegames-about-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 4.375rem 0;
}

.fronlinegames--hooks {
    color: var(--color-light-green);
}

.fronlinegames--about--lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.675rem;
}

.fronlinegames--about---items:nth-child(1) {
    grid-row: 1 / span 2;
}
.fronlinegames--about---items:nth-child(2),
.fronlinegames--about---items:nth-child(2) {
    grid-column: 2;
}

.fronlinegames--about_flex {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
}

.fronlinegames--about---items {
    border: 1px solid var(--color-light-green);
    padding: 0.675rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    max-width: 655px;
    width: 100%;
}

.fronlinegames--about---items-page {
    border: 1px solid var(--color-light-green);
    padding: 0.675rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
}

.fronlinegames--about----teams {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-about/fronlinegames-teams-shooter.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 634px;
    width: 100%;
    height: 282px;
}
.fronlinegames--about----shooter {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-about/fronlinegames-shooter.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 188px;
    width: 100%;
    height: 270px;
}
.fronlinegames--about----woman {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-about/fronlinegames-woman-player.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 188px;
    width: 100%;
    height: 173px;
}
.fronlinegames--about----woman-page {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-about/fronlinegames-woman-player.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 634px;
    width: 100%;
    height: 378px;
}

.fronlinegames--about----description-page {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 624px;
}

.fronlinegames--about----text {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 24px;
    color: var(--color-text);
    width: 100%;
}

/* Games */
.fronlinegames--games-box {
    padding: 4.375rem 0;
}

.fronlinegames--games---title {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 3.4rem;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
}

.fronlinegames--games---lists {
    display: flex;
    flex-wrap: wrap;
    gap: 3.125rem 0.675rem;
}

.fronlinegames--games----items {
    flex: 1 0 calc(33.333% - 0.675rem);
    width: 100%;
    padding: 1.25rem;
    display: inline-flex;
    gap: 0.675rem;
    flex-direction: column;
    position: relative;

    border: 1px solid var(--color-light-green);
}

.fronlinegames--games----items_name {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 32px;
    color: var(--color-text);
}

.fronlinegames--games----items img {
    max-width: 393px;
    width: 100%;
    height: 227px;
}

.fronlinegames--games----full {
    max-width: 100% !important;
    width: 100%;
}

.fronlinegames--games----items::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    transition: all 0.3s ease-in;
    pointer-events: none;
    margin: -15px;
}

.fronlinegames--games----image {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}

.fronlinegames--games----content {
    position: absolute;
    bottom: 1.05rem;
    left: 1.25rem;
    width: calc(100% - 40px);
    height: calc(100% - 79px);
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.81rem;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    padding: 1rem;
    box-sizing: border-box;
}
.fronlinegames--games----items:hover .fronlinegames--games----content {
    opacity: 1;
}

.fronlinegames--games----content_text {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 100%;
    color: var(--color-text);
}

.fronlinegames--games----items:hover .fronlinegames--games----content {
    opacity: 1;
    visibility: visible;
}

.fronlinegames--games----content_btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--color-light-green);
    font-family: var(--font-main-text);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
    color: #333333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 68px;
    border-radius: 7px;
    transition: background-color 0.2s ease;
}

.fronlinegames--games----content_btn:hover {
    background-color: #a2ff64;
}
.fronlinegames--games----content_btn:active {
    background-color: #00ff0d;
}

/* Champions */
.stacked-swiper {
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 5rem;
    max-width: 1320px;
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.swiper-slide {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    height: auto;
    border: 1px solid #000000;
    background: #252424;
    box-shadow: -30px 3px 27px 0px #0000008c;
    border-radius: 10px;
    padding: 1.25rem;
    flex-direction: column;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.7;
    transform: scale(0.95);
}

.fronlinegames---name {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 24px;
    color: var(--color-text);
    margin: 0.675rem 0;
}

.fronlinegames---rating {
    font-family: var(--color-text);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 18px;
    letter-spacing: 0%;
    color: var(--color-text);
}

.swiper-button-box {
    display: flex !important;
    justify-content: center !important;
}

.swiper-button-next,
.swiper-button-prev {
    top: 92% !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 40%;
    background-color: var(--color-light-green);
    max-width: 56px;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    border: none !important;
    box-shadow: 0px 2px 4px 0px #00000033;
    box-shadow: 0px 1px 10px 0px #0000001f;
    box-shadow: 0px 4px 5px 0px #00000024;
    justify-content: center;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-champions/fronlinegames-arrow-left.svg");
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: none !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 40%;
    background-color: var(--color-light-green);
    max-width: 56px;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    border: none !important;
    box-shadow: 0px 2px 4px 0px #00000033;
    box-shadow: 0px 1px 10px 0px #0000001f;
    box-shadow: 0px 4px 5px 0px #00000024;
    justify-content: center;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-champions/fronlinegames-arrow-left.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #a2ff64;
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-champions/fronlinegames-arrow-left.svg");
    background-repeat: no-repeat;
    background-position: center;
}
.swiper-button-prev:active,
.swiper-button-next:active {
    background: #00ff0d;
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-champions/fronlinegames-arrow-left.svg");
    background-repeat: no-repeat;
    background-position: center;
}

/* Faq */
.fronlinegames--faq-box {
    padding: 12.5rem 0;
    width: 100%;
}

.fronlinegames--faq--container {
    display: flex;
    flex-direction: column;
    gap: 2.3rem;
    align-items: flex-end;
}

.fronlinegames--faq---top {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.fronlinegames--faq---lists {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.675rem;
    max-width: 986px;
    width: 100%;
}

.fronlinegames--faq----items {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1.25rem;

    width: 100%;
    border-top: 1px solid var(--color-light-green);
    border-bottom: 1px solid var(--color-light-green);
}
.fronlinegames--faq----items_top {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    justify-content: space-between;
}

.fronlinegames--faq----items__num {
    font-family: var(--font-main-text);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 24px;
    background: var(--color-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.fronlinegames--faq----items__title {
    font-family: var(--font-main-text);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 18px;
    color: var(--color-text);
    vertical-align: middle;
}

.fronlinegames--faq----items__btn {
    transform: rotate(0deg);
    border: none;
    outline: none;
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-faq/fronlinegames-icon-plus.svg");
    background-position: center;
    background-repeat: no-repeat;
    max-width: 30px;
    width: 100%;
    height: 30px;
    background-color: transparent;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    background-color: var(--color-light-green);
}

.fronlinegames--faq----items__text {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 18px;
    color: var(--color-text);

    margin: 0.675rem auto 0;
}

.fronlinegames--faq----flex {
    display: flex;
    flex-direction: column;
    max-width: 626px;
    width: 100%;
}

/* Contact */
.fronlinegames--contact-box {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3)),
        url(/fronlinegames-components/fronlinegames-picture/fronlinegames-contact/fronlinegames-bg-line.webp);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    height: 100%;
}

.fronlinegames--contact--container {
    display: flex;
    gap: 1.25rem;
    width: 100%;
    padding: 4.375rem 0;
    width: 100%;
    justify-content: space-between;
}

.fronlinegames--contact---top {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
    max-width: 580px;
    width: 100%;
}

.fronlinegames--contact---top_text {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 24px;
    color: var(--color-light-green);
}

.fronlinegames--contact--column {
    flex-direction: column;
    gap: 3.125rem;
}

.fronlinegames--contact---info {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
}

.fronlinegames--contact----address {
    max-width: 610px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fronlinegames--contact----address_items {
    display: flex;
    gap: 4.56rem;
    align-items: center;
}

.fronlinegames--contact----address__text {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 100%;
    color: var(--color-text);
    text-transform: uppercase;
}

.fronlinegames--contact----address__location {
    background-image: url(/fronlinegames-components/fronlinegames-picture/fronlinegames-contact/fronlinegames-icon-location.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 56px;
    width: 100%;
    height: 56px;
}
.fronlinegames--contact----address__phone {
    background-image: url(/fronlinegames-components/fronlinegames-picture/fronlinegames-contact/fronlinegames-icon-phone.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 56px;
    width: 100%;
    height: 56px;
}
.fronlinegames--contact----address__mail {
    background-image: url(/fronlinegames-components/fronlinegames-picture/fronlinegames-contact/fronlinegames-icon-mail.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 56px;
    width: 100%;
    height: 56px;
}

/* Footer */
.fronlinegames--footer {
    width: 100%;
}

.fronlinegames--footer--container_top {
    background-color: #141414;
    padding: 1.275rem 0;
}
.fronlinegames--footer---nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.fronlinegames--footer----link a {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1rem;
    line-height: 18px;
    color: var(--color-text);
    text-transform: capitalize;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.fronlinegames--footer----link a:hover {
    font-weight: 600;
}

.fronlinegames--footer--container_bottom {
    background-color: #000000;
    padding: 1.875rem 0;
}

.fronlinegames--footer--container__info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1.25rem;
    align-items: center;
}

.fronlinegames--footer--container__text {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1rem;
    line-height: 18px;
    color: var(--color-text);
    max-width: 655px;
    width: 100%;
}

.fronlinegames--footer--container__copyright {
    max-width: 300px;
    width: 100%;
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 30px;
    color: var(--color-text);
    text-align: center;
}

.fronlinegames--footer--container__link {
    color: var(--color-light-green);
}

/* Contact Form */
.fronlinegames__contact--form {
    max-width: 655px;
    width: 100%;
    display: flex;
    gap: 1.25rem;
    flex-direction: column;
}

.fronlinegames_contact__input {
    outline: none;
    height: 60px;
    width: 100%;
    border: 1px solid var(--color-light-green);
    background: transparent;
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    color: var(--color-light-green);
    padding: 1.25rem;
}

.fronlinegames_contact__input::placeholder {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #c9c9c9;
}

.fronlinegames_contact__checkbox {
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--color-text);
    gap: 1rem;
}

.fronlinegames_contact___link {
    color: var(--color-light-green);
}

.fronlinegames_contact___check {
    max-width: 40px;
    width: 100%;
    height: 40px;
    border: 1px solid #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
.custom-checkbox {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.fronlinegames_contact__btn {
    background: var(--color-light-green);
    border: none;
    cursor: pointer;
    width: 100%;
    height: 68px;
    padding: 0.5rem;
    font-family: var(--font-main-text);
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 100%;
    color: #333333;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    -webkit-transition: 0.4s;
}

.fronlinegames_contact__btn:hover {
    background: #a2ff64;
}

.fronlinegames_contact__btn:active {
    background: #00ff0d;
}

textarea {
    resize: none;
    overflow: hidden;
}

.active__block {
    display: flex;
}

.form-message {
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.form-message.error {
    background-color: #ffebee;
    color: #d32f2f;
    border: 1px solid #ef9a9a;
    font-family: var(--font-main-text);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 24px;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    font-family: var(--font-main-text);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 24px;
}

/* Others Styles */
.fronlinegames--conduct--container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 1px solid var(--color-light-green);
    padding: 2.5rem;
}

.fronlinegames--conduct---top,
.fronlinegames--conduct--lists {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fronlinegames--conduct----title {
    font-family: var(--font-main-text);
    font-weight: 600;
    font-size: 2rem;
    line-height: 30px;
    color: var(--color-text);
    text-transform: capitalize;
}

.fronlinegames--conduct----text,
.fronlinegames--conduct---elem {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 24px;
    color: var(--color-text);
    text-transform: capitalize;
}

.fronlinegames--conduct--color {
    color: var(--color-light-green);
}

.fronlinegames--pagegame--container {
    border: 1px solid var(--color-light-green);
    padding: 1.44rem 1rem;
    display: flex;
    gap: 1.25rem;
}

.fronlinegames--page---image {
    max-width: 635px;
    width: 100%;
    height: 227px;
    object-position: bottom;
}

.fronlinegames--page---image_center {
    object-position: center;
}

.fronlinegames--pagegame--info {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    max-width: 626px;
    width: 100%;
}

.fronlinegames--pagegame---title {
    font-family: var(--font-main-text);
    font-weight: 600;
    font-size: 2rem;
    line-height: 32px;
    color: var(--color-text);
}

.fronlinegames--pagegame----players {
    display: flex;
    flex-direction: column;
    gap: 1.44rem;
}

.fronlinegames--pagegame----players_lists {
    display: flex;
    flex-direction: column;
    gap: 0.675rem;
}

.fronlinegames--pagegame----players__elem {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.fronlinegames--pagegame----players___name {
    font-family: var(--font-main-text);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 32px;
    color: var(--color-light-green);
}

.fronlinegames--pagegame----players___count {
    font-family: var(--font-main-text);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 32px;
    color: var(--color-text);
}

.fronlinegames--pagegame----btn {
    background: var(--color-light-green);
    border: none;
    cursor: pointer;
    width: 100%;
    height: 68px;
    padding: 0.5rem;
    font-family: var(--font-main-text);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 100%;
    color: #333333;
    text-align: center;
    vertical-align: middle;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    -webkit-transition: 0.4s;
}
.fronlinegames--pagegame----btn:hover {
    background: #a2ff64;
}

.fronlinegames--pagegame----btn:active {
    background: #00ff0d;
}

.fronlinegames--pagegame-box {
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
}

.fronlinegames--pagegame--description {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.fronlinegames--pagegame---detailed {
    display: flex;
    gap: 0.81rem;
}

.fronlinegames--pagegame---lists {
    max-width: 652px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.fronlinegames--pagegame----elem {
    gap: 0.3rem;
    vertical-align: middle;
}

.fronlinegames--pagegame----elem_info {
    font-family: var(--font-main-text);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 32px;
    color: var(--color-text);
}

.fronlinegames--pagegame---about {
    max-width: 651px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.fronlinegames--pagegame---about_title {
    font-family: var(--font-main-text);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 32px;
    color: var(--color-text);
}

.fronlinegames--pagegame-popular {
    display: flex;
    gap: 0.69rem;
}

.fronlinegames--pagegame--left {
    max-width: 654px;
    width: 100%;
    border: 1px solid var(--color-light-green);
    padding: 2.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fronlinegames--pagegame--left_title {
    font-family: var(--font-main-text);
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-text);
}

.fronlinegames--pagegame--avatars {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.fronlinegames--pagegame--avatars_elem {
    font-family: var(--font-main-text);
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    text-transform: uppercase;
    color: var(--color-text);
    max-width: 291px;
    width: 100%;
    display: flex;
    align-items: center;

    gap: 0.575rem;
}

.fronlinegames--pagegame--avatars__anec {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-games/fronlinegames-anecdotedream1977.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 70px;
    width: 100%;
    height: 70px;
}
.fronlinegames--pagegame--avatars__scream {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-games/fronlinegames-screamshaman.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 70px;
    width: 100%;
    height: 70px;
}
.fronlinegames--pagegame--avatars__thunder {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-games/fronlinegames-thunderunner-4.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 70px;
    width: 100%;
    height: 70px;
}
.fronlinegames--pagegame--avatars__nyxar {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-games/fronlinegames-nyxar-echo.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 70px;
    width: 100%;
    height: 70px;
}
.fronlinegames--pagegame--avatars__vix {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-games/fronlinegames-vix_27.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 70px;
    width: 100%;
    height: 70px;
}
.fronlinegames--pagegame--avatars__dragon {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-games/fronlinegames-dragon32.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 70px;
    width: 100%;
    height: 70px;
}

.fronlinegames--pagegame--trends {
    display: flex;
    flex-direction: column;
    gap: 0.675rem;
}

.fronlinegames--pagegame--trends_elem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.fronlinegames--pagegame---icon {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-games/fronlinegames-icon-lighting.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 50px;
    width: 100%;
    height: 73px;
}

.fronlinegames--pagegame---name {
    font-family: var(--font-main-text);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 24px;
    color: var(--color-text);
    text-transform: uppercase;
}

.fronlinegames--pagegame---image_duo {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-games/fronlinegames-zoo-run.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 170px;
    width: 100%;
    height: 80px;
}
.fronlinegames--pagegame---image_jumpers {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-games/fronlinegames-jumprers.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 170px;
    width: 100%;
    height: 80px;
}
.fronlinegames--pagegame---image_red-vs-blue {
    background-image: url("/fronlinegames-components/fronlinegames-picture/fronlinegames-games/fronlinegames-red-vs-blue.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 170px;
    width: 100%;
    height: 80px;
}

/* Mobile */
@media screen and (max-width: 1360px) {
    .fronlinegames--container__main {
        padding: 0 1.875rem;
    }

    .fronlinegames--pagegame-popular {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 1220px) {
    .fronlinegames--welcome-box-h {
        height: auto !important;
        padding: 5rem 0;
    }

    .fronlinegames--about----description-page {
        max-width: 100%;
        width: 100%;
    }

    .fronlinegames--container__main {
        padding: 0 1.875rem;
    }

    .fronlinegames--header__title-welcome-p {
        font-size: 5rem;
    }

    .fronlinegames--start---lists,
    .fronlinegames--about--lists {
        display: flex;
        flex-direction: column;
    }

    .fronlinegames--about_flex {
        display: flex;
        flex-direction: column !important;
        gap: 0.875rem;
    }

    .fronlinegames--about--lists {
        align-items: center;
    }

    .fronlinegames--about----shooter,
    .fronlinegames--about----woman {
        max-width: 634px;
        width: 100%;
        height: 282px;
    }

    .fronlinegames--games---lists {
        flex-direction: column;
        align-items: center;
        max-width: 525px;
        width: 100%;
        margin: 0 auto;
    }

    .fronlinegames--games----items img {
        max-width: 525px;
        width: 100%;
    }

    .fronlinegames--games----content {
        height: calc(100% - 79px);
    }

    .fronlinegames--contact--container,
    .fronlinegames--footer--container__info {
        flex-direction: column;
        align-items: center;
    }

    .fronlinegames--footer--container__text {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .fronlinegames--footer---nav {
        flex-direction: column;
        gap: 0.675rem;
    }

    .fronlinegames--contact---info {
        flex-direction: column;
    }

    .fronlinegames--pagegame---detailed {
        flex-direction: column;
    }

    .fronlinegames--pagegame---about,
    .fronlinegames--pagegame---lists {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 960px) {
    .fronlinegames--pagegame--container {
        flex-direction: column;
        align-items: center;
    }
}
@media screen and (max-width: 810px) {
    .fronlinegames--menu__list {
        display: none;
    }

    #fronlinegamesMenuToggle {
        display: block;
    }

    .fronlinegames--menu__list-item a.active::after {
        content: none;
    }

    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        right: 30%;
    }

    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: 30%;
    }
}

@media screen and (max-width: 625px) {
    .fronlinegames--header__title-welcome {
        font-size: 4.925rem;
    }

    .fronlinegames--conduct--container {
        padding: 1rem;
    }

    .fronlinegames--contact----address_items {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .fronlinegames--header__title {
        gap: 0.75rem;
    }

    .fronlinegames--welcome-box {
        height: 525px;
    }

    .fronlinegames--contact----address__text {
        font-size: 1rem;
    }

    .fronlinegames--start-box {
        padding: 2.81rem 0;
    }

    .fronlinegames--start----previews,
    .fronlinegames--contact---top_text {
        font-size: 1.25rem;
        line-height: 28px;
    }

    .fronlinegames--start----title {
        font-size: 2rem;
        line-height: 38px;
    }

    .fronlinegames--header__title-welcome {
        font-size: 1.895rem;
        line-height: 120%;
    }

    .fronlinegames--start---top {
        gap: 0.7rem;
    }

    .fronlinegames--start--container {
        gap: 1.725rem;
    }

    .fronlinegames--about-box,
    .fronlinegames--games-box,
    .fronlinegames--contact--container {
        padding: 3.125rem 0;
    }

    .fronlinegames--pagegame-box,
    .fronlinegames--pagegame---about,
    .fronlinegames--pagegame--description {
        gap: 1.25rem;
    }

    .fronlinegames--contact---top {
        gap: 0.675rem;
    }

    .fronlinegames--pagegame----players___name,
    .fronlinegames--pagegame---name {
        font-size: 1.125rem;
    }

    .fronlinegames--pagegame--left {
        padding: 1rem;
    }

    .fronlinegames--pagegame---image_duo,
    .fronlinegames--pagegame---image_jumpers,
    .fronlinegames--pagegame---image_red-vs-blue {
        max-width: 70px;
        width: 100%;
        height: 45px;
    }
}

@media screen and (max-width: 475px) {
    .fronlinegames--games----items:nth-child(1) img {
        object-position: right;
    }
    .fronlinegames--games----items:nth-child(2) img {
        object-position: center;
    }
    .fronlinegames--games----items:nth-child(3) img {
        object-position: left;
    }
    .fronlinegames--games----items:nth-child(4) img {
        object-position: right;
    }
    .fronlinegames--games----items:nth-child(5) img {
        object-position: right;
    }
}
@media screen and (max-width: 425px) {
    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        right: 15%;
    }

    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: 15%;
    }
}

@media screen and (max-width: 389px) {
    .fronlinegames--container__main {
        padding: 0 0.675rem;
    }
}
