@font-face {
    src: url("/esonlinegames-components/esonlinegames-fonts/esonlinegames-montserrat-semibold.woff2")
        format("truetype");
    font-family: "montserrat-semibold";
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    src: url("/esonlinegames-components/esonlinegames-fonts/esonlinegames-montserrat-regular.woff2")
        format("truetype");
    font-family: "montserrat-regular";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    src: url("/esonlinegames-components/esonlinegames-fonts/esonlinegames-montserrat-light.woff2")
        format("truetype");
    font-family: "montserrat-light";
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-title: "montserrat-semibold", sans-serif;
    --font-text: "montserrat-regular", sans-serif;
    --font-light: "montserrat-light", sans-serif;

    --bg-color-main: #2f0229;
    --bg-color-sub: #1f031c;
    --color-title: #ffbf0e;
    --color-text: #ffffff;
    --color-form: #8d8d8d;
}

*,
::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-main);
    display: flex;
    flex-direction: column;
    align-items: center;
}

html,
body {
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

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;
}

.esonlinegames--container__main {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.esonlinegames__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

/* Header */
.esonlinegames--header {
    width: 100%;
    display: flex;
    position: relative;
}

.esonlinegames--menu {
    width: 100%;
    display: flex;
    align-items: center;
}

.esonlinegames--header__container {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0.8rem 0;
    flex-direction: column;
    align-items: center;
}

.esonlinegames--menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.esonlinegames--menu__box {
    display: flex;
    align-items: center;
    gap: 1.875rem;
    width: 100%;
    justify-content: flex-end;
}

.esonlinegames--menu__list {
    gap: 1.565rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.esonlinegames--main__text-logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.esonlinegames--menu__list-item a {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    line-height: 100%;
    color: #fff;
    text-align: center;
}

/* Burger */
#esonlinegamesMenuToggle {
    display: none;
    position: absolute;
    top: 0;
    left: 0rem;
    z-index: 999 !important;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: 58px;
}

#esonlinegamesMenuToggle 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;
}

#esonlinegamesMenuToggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    right: 0rem;
    top: 0rem;
    position: relative;
    background: var(--color-text);
    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; /* Отключаем прокрутку с приоритетом */
}

#esonlinegamesMenuToggle span:first-child {
    transform-origin: 0% 0%;
}

#esonlinegamesMenuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#esonlinegamesMenu {
    position: absolute;
    max-width: 100vw;
    width: 100%;
    z-index: 1000;
    margin: 65px 0 0 0px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-color-main);
    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);
}

#esonlinegamesMenu li {
    text-align: center;
    padding: 20px 50px;
    font-size: 22px;
}

#esonlinegamesMenuToggle input:checked ~ ul {
    transform: none;
}

.burger-button {
    display: block;
    width: 42px;
    height: 32px;
    position: absolute;
    top: 1.3rem;
    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(-4px, 5px);
    -webkit-transform: rotate(-45deg) translate(-4px, 5px);
    -moz-transform: rotate(-45deg) translate(-4px, 5px);
    -ms-transform: rotate(-45deg) translate(-4px, 5px);
    -o-transform: rotate(-45deg) translate(-4px, 5px);
}

/* Обновляем селектор для checked состояния */
#esonlinegamesMenuToggle .active ~ #esonlinegamesMenu {
    transform: none;
}

/* Welcome */
.esonlinegames--welcome-box {
    width: 100%;
    display: flex;
    align-items: flex-end;
    height: 650px;
    justify-content: center;
}

.esonlinegames--header__title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
}

.esonlinegames--header__info {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    justify-content: center;
    max-width: 640px;
    width: 100%;
}

.esonlinegames--header__title-welcome {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 4.375rem;
    line-height: 100%;
    color: var(--color-title);
}

.esonlinegames--header__text-welcome {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.435rem;
    line-height: 100%;
    color: var(--color-text);
}

.esonlinegames--header---image {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-title/esonlinegames-phone-hello.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 394px;
    width: 100%;
    height: 520px;
}

/* About */
.esonlinegames--about-box {
    padding: 10rem 0;
}

.esonlinegames--about--container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.esonlinegames--about---top {
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}

.esonlinegames--about----title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 100%;
    color: var(--color-title);
    text-align: center;
}

.esonlinegames--about----lists {
    display: flex;
    flex-direction: column;
    gap: 1.56rem;
}

.esonlinegames--about----lists_text {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 120%;
    color: var(--color-text);
    text-align: center;
}

.esonlinegames--about---iamgebox {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.esonlinegames--about----monster {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-about/esonlinegames-monster.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 315px;
    width: 100%;
    height: 137px;
}
.esonlinegames--about----ball {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-about/esonlinegames-children-ball.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 315px;
    width: 100%;
    height: 137px;
}
.esonlinegames--about----tv {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-about/esonlinegames-children-tv.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 315px;
    width: 100%;
    height: 137px;
}
.esonlinegames--about----swim {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-about/esonlinegames-children-swimming.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 315px;
    width: 100%;
    height: 137px;
}

/* Steps */
.esonlinegames--steps--container {
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
}

.esonlinegames--steps---title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 100%;
    color: var(--color-title);
}

.esonlinegames--white {
    color: var(--color-text);
}

.esonlinegames--steps---lists {
    display: grid;
    grid-template-columns: auto auto;
    gap: 2.5rem 1.25rem;
}

.esonlinegames--steps----items {
    list-style-type: decimal;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.44rem;
    line-height: 100%;
    color: var(--color-text);
    margin-left: 2rem;
}

.esonlinegames--steps----items:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}
.esonlinegames--steps----items:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}
.esonlinegames--steps----items:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
}
.esonlinegames--steps----items:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.esonlinegames--steps----items_title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.44rem;
    line-height: 100%;
    color: var(--color-text);
    margin-bottom: 0.675rem;
}

.esonlinegames--steps----items_text {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 120%;
    color: var(--color-text);
}

/* Games */
.esonlinegames--games-box {
    padding: 12.5rem 0;
}

.esonlinegames--games--bg {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-games/esonlinegames-games-bg-line-hill.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 3.75rem 0;
}

.esonlinegames--games---title {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 3.4rem;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
}

.esonlinegames--games---lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem 1.25rem;
}

.esonlinegames--games----items {
    max-width: 315px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.esonlinegames--games----items_box {
    position: relative;
    display: inline-block;
    max-width: 315px;
    width: 100%;
    height: 160px;
}

.esonlinegames--games----items_name {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.44rem;
    line-height: 100%;
    color: var(--color-text);
    text-align: center;
}

.esonlinegames--games----items img {
    max-width: 315px;
    width: 100%;
    height: 160px;
}

.esonlinegames--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;
}

.esonlinegames--games----image {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}

.esonlinegames--games----content {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 0px);
    height: calc(100% - 0px);
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.815rem;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    padding: 1rem;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}
.esonlinegames--games----items:hover .esonlinegames--games----content {
    opacity: 1;
}

.esonlinegames--games----content_text {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1rem;
    line-height: 100%;
    color: #fff;
    text-align: center;
}

.esonlinegames--games----items:hover .esonlinegames--games----content {
    opacity: 1;
    visibility: visible;
}

.esonlinegames--games----content_btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--color-title);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 100%;
    color: var(--color-text);
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 171px;
    width: 100%;
    height: 44px;
    border: 3px solid transparent;
    transition: background-color 0.2s ease;
    box-shadow: 0px 0px 10px 0px #ffbf0ecc;
}

.esonlinegames--games----content_btn:hover {
    background-color: transparent;
    border: 3px solid var(--color-title);
}

/* Benefits */
.esonlinegames--benefits---lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 0;
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.esonlinegames--benefits----elem:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}
.esonlinegames--benefits----elem:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
    transform: translateX(-70px);
}
.esonlinegames--benefits----elem:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
}
.esonlinegames--benefits----elem:nth-child(4) {
    grid-column: 2;
    grid-row: 4;
    transform: translateX(-70px);
}

.esonlinegames--benefits----elem {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 120%;
    color: var(--color-text);
    max-width: 405px;
    width: 100%;
}

.esonlinegames--benefits----elem_icon {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-benefits/esonlinegames-icon-puzzle.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 70px;
    width: 100%;
    height: 70px;
}

/* Contact */
.esonlinegames--contact-box {
    padding: 10rem 0 0;
    position: relative;
    z-index: 1;
}

.esonlinegames--contact--image {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-contact/esonlinegames-phone-contact.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 615px;
    width: 100%;
    height: 1082px;
    position: absolute;
    bottom: 2rem;
    z-index: -1;
    left: 1rem;
}

.esonlinegames--contact-box::after {
    content: "";
    display: block;
    height: 10rem;
}
.esonlinegames--contact--container {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}

.esonlinegames--contact---top {
    display: flex;
    flex-direction: column;
    gap: 0.675rem;
}

.esonlinegames--contact---top_title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 100%;
    color: var(--color-title);
    text-align: center;
}

/* Contact Form */
.esonlinegames__contact--form {
    width: 100%;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.esonlinegames_contact__input {
    outline: none;
    height: 60px;
    width: 100%;
    border: none;
    background: var(--bg-color-sub);
    font-family: var(--font-text);
    font-weight: 700;
    font-size: 1.125rem;
    border: 2px solid #8d8d8d;
    line-height: 24px;
    color: #8d8d8d;
    padding: 1.25rem;
}

.esonlinegames_contact__input::placeholder {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    color: #8d8d8d;
}

.esonlinegames_contact__checkbox {
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    line-height: 100%;
    color: var(--color-text);
    gap: 1rem;
}

.esonlinegames_contact___link {
    color: var(--color-title);
    text-decoration: underline;
}

.esonlinegames_contact___check {
    max-width: 40px;
    width: 100%;
    height: 40px;
    border: 2px solid #8d8d8d;
    background: var(--bg-color-sub);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.custom-checkbox {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.esonlinegames_contact___check:checked {
    background: var(--color-title);
    border-color: var(--color-title);
}

.esonlinegames_contact___check:checked::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 5px;
    width: 12px;
    height: 20px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.esonlinegames_contact__btn {
    margin: 2.5rem 0;
    background: var(--color-title);
    border: none;
    cursor: pointer;
    width: 100%;
    height: 42px;
    padding: 0.5rem;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.25rem;
    border: 3px solid transparent;
    line-height: 100%;
    color: var(--color-text);
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    box-shadow: 0px 0px 10px 0px #ffbf0ecc;
    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;
}

.esonlinegames_contact__btn:hover {
    background-color: transparent;
    border: 3px solid var(--color-title);
}

textarea {
    resize: none;
    overflow: hidden;
}

.active__block {
    display: flex;
}

.form-message {
    border-radius: 4px;
    text-align: center;
}

.form-message.error {
    padding: 0.5rem;
    background-color: #ffebee;
    color: #d32f2f;
    border: 1px solid #ef9a9a;
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 24px;
}

.form-message.success {
    padding: 0.5rem;
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 24px;
}

/* Footer */
.esonlinegames--footer {
    width: 100%;
    background-color: var(--bg-color-sub);
    padding: 2.69rem 0;
}

.esonlinegames--footer--container {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 1.75rem;
}

.esonlinegames--footer---logo {
    max-width: 50px;
    width: 100%;
    height: 50px;
}

.esonlinegames--footer---nav {
    display: flex;
    align-items: center;
    gap: 1.56rem;
}

.esonlinegames--footer----link a {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    line-height: 24px;
    color: var(--color-text);
}

.esonlinegames--footer---text {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    line-height: 24px;
    color: var(--color-text);
    text-align: center;
}

/* Others Styles */
.esonlinegames--conduct-box {
    padding: 6.25rem 0;
}

.esonlinegames--conduct---image {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-conduct/esonlinegames-eags.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 650px;
    width: 100%;
    height: 406px;
    margin: 0 auto;
}

.esonlinegames--conduct---lists {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.esonlinegames--conduct----elem {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.esonlinegames--conduct----elem__subelem {
    display: flex;
    flex-direction: column;
    gap: 0.675rem;
}

.esonlinegames--conduct----elem_sublists {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.esonlinegames--conduct----elem_title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.44rem;
    line-height: 100%;
    color: var(--color-text);
}

.esonlinegames--conduct----elem___title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 100%;
    color: var(--color-text);
}

.esonlinegames--conduct----elem_text {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 100%;
    color: var(--color-text);
}

.esonlinegames--privacy----elem__subelem {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 100%;
    color: var(--color-text);
    list-style-type: decimal;
    margin-left: 1.25rem;
}

.esonlinegames--h {
    height: auto !important;
    padding: 6.25rem 0 3.125rem;
}

.esonlinegames--about-h,
.esonlinegames--image-h {
    padding: 0 0 10rem;
}

.esonlinegames--center {
    text-align: center;
}

.esonlinegames--m-auto {
    margin: 0 auto;
}

.esonlinegames--games-page--image {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-title/esonlinegames-phone-hello.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 394px;
    width: 100%;
    height: 520px;
    margin: 0 auto;
}

.esonlinegames--contact--page_img {
    left: auto;
    right: 0 !important;
    transform: scaleX(-1) rotateX(360deg);
    -webkit-transform: scaleX(-1) rotateX(360deg);
    -moz-transform: scaleX(-1) rotateX(360deg);
    -ms-transform: scaleX(-1) rotateX(360deg);
    -o-transform: scaleX(-1) rotateX(360deg);
}

.esonlinegames--contact__info {
    display: flex;
    width: 100%;
    gap: 1.625rem;
}

.esonlinegames--contactpage--container {
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
    align-items: flex-start;
}

.esonlinegames__contact--form-w {
    max-width: 650px;
    width: 100%;
}

.esonlinegames--contact--adressinfo {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
}

.esonlinegames--contact---elem {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}

.esonlinegames--contact----mail {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 100%;
    color: var(--color-text);
}

.esonlinegames--contact----icon_mail {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-contact/esonlinegames-icon-mail.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 60px;
    width: 100%;
    height: 60px;
}
.esonlinegames--contact----icon_phone {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-contact/esonlinegames-icon-phone.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 60px;
    width: 100%;
    height: 60px;
}
.esonlinegames--contact----icon_location {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-contact/esonlinegames-icon-location.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 60px;
    width: 100%;
    height: 60px;
}

.esonlinegames--gamepage-box {
    padding: 6.25rem 0 10rem;
}

.esonlinegames--gamepage--container {
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
}

.esonlinegames--gamepage---title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 100%;
    color: var(--color-title);
}

.esonlinegames--gamepage---info {
    display: flex;
    gap: 1.3rem;
}

.esonlinegames--gamepage----link {
    max-width: 647px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.esonlinegames--gamepage----link_img {
    width: 100%;
    height: 329px;
}

.esonlinegames--gamepage----link_btn {
    background: var(--color-title);
    border: none;
    cursor: pointer;
    width: 100%;
    height: 42px;
    padding: 0.5rem;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.25rem;
    border: 3px solid transparent;
    line-height: 100%;
    color: var(--color-text);
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    box-shadow: 0px 0px 10px 0px #ffbf0ecc;
    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;
}
.esonlinegames--gamepage----link_btn:hover {
    background-color: transparent;
    border: 3px solid var(--color-title);
}

.esonlinegames--gamepage----description {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.esonlinegames--gamepage----description_elem {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 120%;
    color: var(--color-text);
}

.esonlinegames--gamepage-reviews {
    display: flex;
    align-items: center;
    gap: 1.625rem;
}

.esonlinegames--gamepage--elem {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 630px;
    width: 100%;
}

.esonlinegames--gamepage---radiant-ava {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-games/esonlinegames-radiant.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 80px;
    width: 100%;
    height: 80px;
}
.esonlinegames--gamepage---qrivo-ava {
    background-image: url("/esonlinegames-components/esonlinegames-picture/esonlinegames-games/esonlinegames-qrixo.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 80px;
    width: 100%;
    height: 80px;
}

.esonlinegames--gamepage---message {
    display: flex;
    flex-direction: column;
    gap: 0.675rem;
}

.esonlinegames--gamepage----name {
    font-family: var(--color-text);
    font-weight: 600;
    font-size: 1.475rem;
    line-height: 100%;
    color: var(--color-text);
}

.esonlinegames--gamepage----text {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 120%;
    color: var(--color-text);
}

/* Mobile */
@media screen and (max-width: 1350px) {
    .esonlinegames--container__main {
        padding: 0 1.4rem;
    }

    .esonlinegames--about---iamgebox,
    .esonlinegames--footer---nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .esonlinegames--gamepage---info {
        flex-direction: column;
        align-items: center;
    }

    .esonlinegames--gamepage----description {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 1130px) {
    .esonlinegames--contact__info {
        flex-direction: column;
        gap: 3.125rem;
        align-items: center;
    }
}

@media screen and (max-width: 991px) {
    .esonlinegames--steps---lists {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .esonlinegames--gamepage-reviews {
        flex-direction: column;
    }

    .esonlinegames--gamepage--elem {
        max-width: 100%;
        width: 100%;
    }

    .esonlinegames--about-h {
        padding: 3.125rem 0 6.25rem;
    }

    .esonlinegames--welcome-box {
        height: auto;
        padding: 3.125rem 0 0;
    }

    .esonlinegames--header__title {
        flex-direction: column;
        align-items: center;
        gap: 3.125rem;
    }

    .esonlinegames--header__info {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 780px) {
    .esonlinegames--header__title-welcome,
    .esonlinegames--about----title,
    .esonlinegames--steps---title,
    .esonlinegames--contact---top_title,
    .esonlinegames--gamepage---title {
        font-size: 1.875rem;
    }
    .esonlinegames--header__text-welcome,
    .esonlinegames--steps----items_title,
    .esonlinegames--steps----items,
    .esonlinegames--conduct----elem_title,
    .esonlinegames--gamepage----name {
        font-size: 1.25rem;
    }

    .esonlinegames--header---image {
        height: 305px;
        max-width: 220px;
        width: 100%;
    }

    .esonlinegames--about-box {
        padding: 6.25rem 0;
    }

    .esonlinegames--about---top,
    .esonlinegames--steps--container {
        gap: 1.875rem;
    }

    .esonlinegames--about----lists_text,
    .esonlinegames--steps----items_text,
    .esonlinegames--conduct----elem_text,
    .esonlinegames--privacy----elem__subelem,
    .esonlinegames--gamepage----text,
    .esonlinegames--gamepage----description_elem {
        font-size: 1rem;
    }

    .esonlinegames--conduct----elem___title {
        font-size: 1.125rem;
    }

    .esonlinegames--about----lists,
    .esonlinegames--steps---lists {
        gap: 1.25rem;
    }

    .esonlinegames--about--container {
        gap: 3.125rem 0;
    }

    .esonlinegames--about---iamgebox {
        gap: 0.95rem;
    }

    .esonlinegames--benefits---lists {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .esonlinegames--benefits----elem {
        max-width: 100%;
        width: 100%;
    }

    .esonlinegames--benefits----elem:nth-child(2),
    .esonlinegames--benefits----elem:nth-child(4) {
        transform: translate(0);
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
    }

    .esonlinegames--contact--image {
        position: static;
        max-width: 175px;
        width: 100%;
        height: 310px;
        transform: scaleX(-1) rotateX(360deg);
        -webkit-transform: scaleX(-1) rotateX(360deg);
        -moz-transform: scaleX(-1) rotateX(360deg);
        -ms-transform: scaleX(-1) rotateX(360deg);
        -o-transform: scaleX(-1) rotateX(360deg);
    }

    .esonlinegames--contact-f {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }

    .esonlinegames--contact-box::after {
        height: 4rem;
    }

    .esonlinegames--footer----link a,
    .esonlinegames--footer---text {
        font-size: 0.85rem;
    }

    .esonlinegames--menu__list {
        display: none;
    }

    #esonlinegamesMenuToggle {
        display: block;
    }

    .esonlinegames--conduct---image {
        max-width: 342px;
        width: 100%;
        height: 214px;
    }

    .esonlinegames--conduct-box {
        padding: 3.125rem 0 6.25rem;
    }

    .esonlinegames--games-page--image {
        max-width: 220px;
        width: 100%;
        height: 305px;
    }

    .esonlinegames--image-h {
        padding: 0 0 6.25rem;
    }

    .esonlinegames--contact--page_img {
        margin: 6.25rem 0;
    }

    .esonlinegames--contact-boxpage {
        height: auto;
    }

    .esonlinegames--contact---elem {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .esonlinegames--contact----mail {
        text-align: center;
    }

    .esonlinegames--gamepage-box {
        padding: 3.125rem 0 6.25rem;
    }

    .esonlinegames--gamepage--elem {
        flex-direction: column;
        align-items: flex-start;
    }

    .esonlinegames--gamepage----link_img {
        height: auto;
    }
}
@media screen and (max-width: 355px) {
    .esonlinegames--benefits----elem_icon {
        max-width: 60px;
        width: 100%;
        height: 60px;
        background-size: contain;
    }
}
