@import url('css2.css');
@import url('css2-1.css');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #212121;
    direction: ltr;
    font-family: 'Exo 2', sans-serif !important;
    font-size: clamp(12px, 4vw, 17px);
    margin: 0;
    padding: 0px;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
p {
    padding: 0;
    margin: 0;
}

p,
li {
    padding: 5px 0;
    line-height: 1.5;
}

li {
    margin: 0 8px;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

ul {
    margin: 0;
    padding: 0;
}

.wrapper-container {
    width: auto;
    padding-right: 22px;
    padding-left: 22px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (min-width: 480px) {
    .wrapper-container {
        max-width: 450px;
    }
}
@media screen and (min-width: 575px) {
    .wrapper-container {
        max-width: 540px;
    }
}
@media screen and (min-width: 768px) {
    .wrapper-container {
        max-width: 730px;
    }
}
@media screen and (min-width: 992px) {
    .wrapper-container {
        max-width: 960px;
    }
}

@media screen and (min-width: 1200px) {
    .wrapper-container {
        max-width: 1170px;
    }
}

@media (min-width: 1400px) {
    .wrapper-container {
        max-width: 1274px;
    }
}

.page-privacy {
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
    text-align: justify;
    width: 100%;
}

.title-politics {
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
    font-size: clamp(22px, 4vw, 50px);
}

.page-privacy a {
    color: #fff;
}

.page-privacy a:hover {
    color: #fff;
    opacity: 0.5;
}

.header-content {
    flex-wrap: wrap;
    position: relative;
    display: flex;
    align-items: center;
}

.static-text {
    padding: 0 80px;
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 25px;
    position: absolute;
    z-index: 2;
}

.static-text h2 {
    font-weight: bold;
    color: #fff;
    font-size: clamp(22px, 4vw, 80px);
    text-transform: uppercase;
}

.static-text p {
    padding: 0;
    color: #fff;
    opacity: 0.8;
    font-size: clamp(16px, 4vw, 18px);
}

.main-button {
    direction: initial;
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
}

.main-button svg {
    width: 25px;
    fill: #fff;
    transition: 1s ease;
    padding-right: 6px;
}

.main-button:hover svg {
    fill: #212121;
}

.main-button:hover {
    color: #212121;
}

.main-button::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: #fff;
    z-index: -1;
    transition: all 1s;
}

.main-button:hover::before {
    width: 160%;
}

.slider {
    min-height: 100vh;
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    filter: brightness(0.5);
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}
.slide1 {
    background-image: url('../images/7.jpg');
}
.slide2 {
    background-image: url('../images/5.jpg');
}
.slide3 {
    background-image: url('../images/8.jpg');
}
.slide4 {
    background-image: url('../images/6.jpg');
}
.thumbnails {
    position: absolute;
    bottom: 41px;
    right: 80px;
    display: flex;
    gap: 12px;
}

.thumbnail {
    border: 1px solid transparent;
    width: 74px;
    height: 74px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border: 1px solid #fff;
}

.header-lay {
    padding: 20px 0;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.logoImg img {
    max-height: 50px;
    object-fit: contain;
    width: 45px;
}

.logo a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
}

.logo a:hover {
    opacity: 0.5;
}

.logoTitle h2 {
    text-transform: uppercase;
    font-size: 17px;
    margin: 0;
}

.topmenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.topmenu li {
    padding: 0;
    position: relative;
}

.submenu-link {
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    padding: 12px;
    transition: 0.3s ease;
}

.submenu-link:hover {
    color: #aca22e;
}

.submenu {
    position: absolute;
    top: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    left: 0;
    background-color: #fff;
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    overflow: hidden;
    width: 300px;
    z-index: 5;
    animation: slideIn 0.3s ease 0s forwards;
    transition: all 0.3s ease;
}

@keyframes slideIn {
    0% {
        margin-top: 30px;
        opacity: 0;
    }
    100% {
        margin-top: 0;
        opacity: 1;
    }
}

.submenu li {
    padding: 0;
    border-bottom: 1px solid rgb(245, 244, 255);
}

.submenu a {
    font-size: clamp(14px, 4vw, 14px);
    color: #212121;
    padding: 12px;
    display: block;
    transition: 0.3s ease;
}

.submenu a:hover {
    margin-left: 6px;
}

.topmenu li:hover .submenu {
    display: block;
}

.fixed-header {
    background-color: #212121;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transition: top 0.3s ease;
}

.menu-toggle {
    cursor: pointer;
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    transition: all 0.5s;
}

.menu-toggle span:nth-of-type(2) {
    top: calc(50% - 7px);
}

.menu-toggle span:nth-of-type(3) {
    top: calc(50% + 7px);
}

.menu-toggle.active span:nth-of-type(1) {
    display: none;
}

.menu-toggle.active span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
}

.menu-toggle.active span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
}

.nav-panel {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: #212121;
    transform: translateY(-110%);
    transition: transform 0.5s;
}

.nav-panel.active {
    transform: translateY(0);
}

.nav-panel nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.nav-panel ul {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.nav-panel li {
    list-style-type: none;
}

.nav-link {
    text-align: center;
    font-size: clamp(16px, 4vw, 22px);
    color: #fff;
}

.nav-link:hover {
    opacity: 0.5;
}

.about-us-lay {
    position: relative;
    z-index: 1;
    background-color: #222222;
}

.about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 80px;
}

.text-centre {
    text-align: center !important;
}

.section-title h2 {
    color: #fff;
    font-size: clamp(22px, 4vw, 50px);
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: 0;
    left: 0;
    background: #aca22e;
    opacity: 0.9;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}

.about-us-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-direction: row-reverse;
}

.about-us-img {
    flex: 1;
    display: flex;
    gap: 12px;
    flex-direction: row-reverse;
}

.about-img-one {
    flex: 1;
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.about-img-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-two {
    flex: 1;
}

.about-img-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.about-us-p {
    opacity: 0.8;
    font-weight: normal;
    color: #fff;
    font-size: clamp(16px, 4vw, 18px);
}

.game-block {
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.game-catal {
    flex: 1;
}

.game-box {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 25px;
}

.game-box a h5 {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    transition: 0.3s ease;
    color: #fff;
    font-size: clamp(22px, 4vw, 30px);
}

.game-box a h5:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: 0;
    left: 0;
    background: #aca22e;
    opacity: 0.9;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}

.game-box a h5:hover {
    opacity: 0.5;
}

.game-box p {
    padding: 0;
    opacity: 0.8;
    color: #fff;
    font-size: clamp(14px, 4vw, 16px);
}

.game-box-button {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.game-box-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.game-box-rating svg {
    fill: gold;
    height: 20px;
    width: 20px;
}

.game-img {
    flex: 1;
}

.catalog-game img {
    max-height: 50vh;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-game {
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.player-video {
    position: relative;
    flex: 1;
    height: 80vh;
}

.player-video video {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.player-video video:hover {
    cursor: pointer;
}

.button-play {
    transition: 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.player-video:hover .button-play {
    display: none;
}

.button-play svg {
    width: 88px;
    height: 88px;
    fill: #fff;
}

.top-game {
    flex: 1.5;
}

.top-game-block {
    align-items: start;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 41px;
}

.top-game-block h2 {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(22px, 4vw, 30px);
}

.top-game-block h2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: 0;
    left: 0;
    background: #aca22e;
    opacity: 0.9;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}

.top-game-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.top-game-card {
    transition: 0.5s ease;
    overflow: hidden;
    position: relative;
}

.catalog-game-img {
    filter: brightness(0.5);
    position: relative;
}

.catalog-game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-game-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    left: 0;
    padding: 20px;
    position: absolute;
    bottom: 0;
}

.catalog-game-text a h5 {
    transition: 0.3s ease;
    color: #fff;
    font-size: clamp(16px, 4vw, 17px);
}

.catalog-game-text a h5:hover {
    color: #aca22e;
}

.comments-lay {
    position: relative;
    z-index: 1;
    background-color: #222222;
}

.comments {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}

.comments h2 {
    margin-bottom: 41px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(22px, 4vw, 30px);
}

.comments h2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: 0;
    left: 0;
    background: #aca22e;
    opacity: 0.9;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}

.comments-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.comments-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.comments-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 1s;
}

.comments-card-text {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 41px;
}

.comments-card-text-img {
    flex: 1;
}

.comments-card-text-img img {
    width: 100%;
    height: 338px;
    object-fit: cover;
}

.comments-card-text-box {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comments-card-text-box h1 {
    font-size: clamp(18px, 4vw, 22px);
    color: #fff;
    margin: 0;
}

.comments-card-text-box p {
    padding: 0;
    font-size: clamp(18px, 4vw, 22px);
    color: #fff;
    margin: 0;
    opacity: 0.7;
}

.comments-card-text-box h5 {
    font-size: clamp(16px, 4vw, 18px);
    color: #fff;
    margin: 0;
}

.comments-card.active {
    opacity: 1;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
}

.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    border: 1px solid transparent;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.6s ease;
}

.dot.active {
    border: 1px solid #fff;
    background-color: #222222;
}

.gambla-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}

.gambla-benefit h2 {
    margin-bottom: 41px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(22px, 4vw, 30px);
}

.gambla-benefit h2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: 0;
    left: 0;
    background: #aca22e;
    opacity: 0.9;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}

.gambla-benefit-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gambla-benefit-card {
    display: flex;
    flex-direction: column;
}

.gambla-benefit-img {
    width: 100%;
    height: 274px;
}

.gambla-benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gambla-benefit-text {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #222222;
    padding: 20px;
}

.gambla-benefit-text h5 {
    font-weight: normal;
    font-size: clamp(14px, 4vw, 16px);
    color: #fff;
}

.form-lay {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.form-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/6.jpg');
    background-position: center;
    filter: brightness(0.5);
    background-size: cover;
    z-index: -1;
}

.form-block {
    width: 70%;
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.title-box h2 {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(22px, 4vw, 30px);
}

.osn-form {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-container label {
    color: #fff;
}

.input-container .input-custom_box--block,
.input-container .textarea-custom_box--block {
    outline: none;
    margin: 8px 0;
}

.input-container .input-custom_box--block {
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    padding: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.input-container .textarea-custom_box--block {
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    padding: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    resize: vertical;
    min-height: 41px;
    max-height: 115px;
}

.input-container .input-custom_box--block::placeholder,
.input-container .textarea-custom_box--block::placeholder {
    color: #fff;
}

.check {
    transition: 0.3s ease;
    color: #fff;
}

.check:hover {
    opacity: 0.5;
    color: #fff;
}

.form-check {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    padding: 15px 0;
}

.form-check .form-check-input {
    margin: 0;
}

.form-button {
    margin: 0 auto;
}

.ui-checkbox {
    --primary-color: #1677ff;
    --secondary-color: #fff;
    --primary-hover-color: #4096ff;
    --checkbox-diameter: 20px;
    --checkbox-border-radius: 5px;
    --checkbox-border-color: #d9d9d9;
    --checkbox-border-width: 1px;
    --checkbox-border-style: solid;
    --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ui-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: var(--checkbox-diameter);
    height: var(--checkbox-diameter);
    border-radius: var(--checkbox-border-radius);
    background: var(--secondary-color);
    border: var(--checkbox-border-width) var(--checkbox-border-style)
        var(--checkbox-border-color);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.ui-checkbox::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5)
        var(--primary-color);
    box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
    border-radius: inherit;
    opacity: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
    -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
    transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
    top: 40%;
    left: 50%;
    content: '';
    position: absolute;
    width: 4px;
    height: 7px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    opacity: 0;
    -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),
        opacity 0.1s;
    -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
    transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}

.ui-checkbox:hover {
    border-color: var(--primary-color);
}

.ui-checkbox:checked {
    background: var(--primary-color);
    border-color: transparent;
}

.ui-checkbox:checked::before {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(45deg)
        scale(var(--checkmark-size));
    -ms-transform: translate(-50%, -50%) rotate(45deg)
        scale(var(--checkmark-size));
    transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
    -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
    -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
    transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
    -webkit-transition: none;
    -o-transition: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: none;
    opacity: 1;
}

.footer-lay {
    background-color: #222222;
}

.footer {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.logo-footer {
    margin: 0 auto;
}

.logoImg-footer img {
    max-height: 50px;
    object-fit: contain;
    width: 45px;
}

.logo-footer a {
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.logo-footer a:hover {
    opacity: 0.5;
}

.logoTitle-footer h2 {
    text-transform: uppercase;
    font-size: clamp(18px, 4vw, 22px);
    margin: 0;
}

.disclaimer {
    background-color: red;
    gap: 25px;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
}

.disclaimer h2 {
    text-transform: uppercase;
    font-size: clamp(18px, 4vw, 22px);
    color: #fff;
}

.disclaimer p {
    padding: 0;
    font-size: clamp(16px, 4vw, 18px);
    color: #fff;
    opacity: 0.8;
}

.privacy ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
}

.privacy ul li a {
    font-size: clamp(16px, 4vw, 18px);
    transition: 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.privacy ul li a:hover {
    color: #fff;
    opacity: 0.5;
}

.footer-bottom {
    border-top: 0.1px solid #f5f5f5;
    padding-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.footer-bottom p {
    padding: 0;
    color: #fff;
    font-size: clamp(16px, 4vw, 18px);
}

.footer-bottom img {
    max-width: 50px;
}

.playing-block {
    padding: 41px 0;
    width: 100%;
    height: 460px;
}

.playing-block iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.art-cont {
    padding: 80px 0;
}

.art-cont-title {
    margin: 80px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(22px, 4vw, 30px);
    color: #fff;
}

.art-block {
    overflow: hidden;
    position: relative;
}

.art-block-images {
    float: left;
    width: 39%;
    margin: 41px;
    margin-top: 0;
    margin-left: 0;
}

.art-block-content {
    color: #fff;
    font-size: clamp(16px, 4vw, 18px);
}

.art-block-content ul {
    list-style: inside;
}

.contacts-page {
    display: flex;
    flex-direction: row;
    gap: 80px;
    padding: 80px 0;
}

.kontact-form {
    position: relative;
    z-index: 1;
    background-color: #222222;
    padding: 20px;
    flex: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kontact-form h2 {
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
    font-size: clamp(22px, 4vw, 30px);
}

.input-kontact-form .inputs-kontact,
.input-kontact-form .textarea-kontact {
    outline: none;
    margin: 8px 0;
}

.input-position {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.input-kontact-form .inputs-kontact {
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    padding: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.input-kontact-form .textarea-kontact {
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    padding: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    resize: vertical;
    min-height: 41px;
    max-height: 115px;
}

.input-kontact-form .inputs-kontact::placeholder,
.input-kontact-form .textarea-kontact::placeholder {
    color: #fff;
}

.kontact-form button {
    margin: 0 auto;
}

.contacts-box {
    flex: 1;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 25px;
}

.contacts-box h2 {
    margin-bottom: 41px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(22px, 4vw, 30px);
}

.contacts-box h2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: 0;
    left: 0;
    background: #aca22e;
    opacity: 0.9;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}

.contacts-card {
    margin: 8px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.contacts-card svg {
    fill: #aca22e;
    width: 30px;
    height: 30px;
}

.contacts-card a h5 {
    flex: 1;
    transition: 0.3s ease;
    font-size: clamp(16px, 4vw, 18px);
    color: #fff;
}

.contacts-card a h5:hover {
    opacity: 0.5;
}

.contacts-card h5 {
    flex: 1;
    font-size: clamp(16px, 4vw, 18px);
    color: #fff;
}

.catalog-img img {
    height: 500px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .header-nav {
        display: none;
    }

    .static-text {
        width: 100%;
    }

    .about-us-box {
        flex-direction: column;
    }

    .more-game {
        flex-direction: column;
    }

    .top-game-block {
        padding: 80px 0;
    }

    .gambla-benefit-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-block {
        width: 100%;
    }

    .game-box {
        padding: 80px 0;
    }

    .game-block {
        flex-direction: column-reverse;
    }

    .game-img {
        max-width: 730px;
        width: auto;
        padding-right: 22px;
        padding-left: 22px;
        margin-right: auto;
        margin-left: auto;
    }

    .contacts-page {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .top-game-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .gambla-benefit-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .thumbnails {
        display: none !important;
    }

    .game-img {
        max-width: 540px;
    }

    .comments-card-text {
        flex-direction: column;
    }

    .comments-card-text-box {
        text-align: center;
    }

    .slide {
        width: 100%;
    }

    .more-game {
        padding: 0;
    }

    .art-block-images {
        width: 100%;
        margin: 0 0 41px 0;
    }

    .playing-block {
        height: 100vh;
    }

    .input-position {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .catalog-img img {
        height: auto;
    }
    .game-img {
        max-width: 450px;
    }

    .game-box-button {
        align-items: stretch;
        flex-direction: column;
    }

    .static-text {
        padding: 0 25px;
    }
}
