@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

html,
body {
    height: 100%;
    min-width: 320px;
}
:root {
    --footer-bg: #1d1d1d;
    --gray: #888;
    --gray-light: #00000002;

    --white: #fff;
    --black: #000000;

    --text-primary:  #1b0905;

    --bg-1: #1b0905;
    --bg-2: #07041b;
    --bg-3:#061507;

    --accent-color: #e17600;
    --primary-color: #bc883d;

    --transition-linear: all 300ms linear;
    --transition-ease-in: all .4s ease-in;
    --spacing5-10: 5px;
    --spacing10-15: 15px;
    --spacing20: 21px;
    --spacing30: 29px;
    --spacing40-50: 46px;

    --font16-18: 17px;
    --font18-22: 21px;


    --gradient-1: linear-gradient(to bottom, #bc883d, #f5e47b, #bc883d);
    --gradient-2: linear-gradient(to right, #cca212, #fceabb, #cca212);

     
    --hover: #ffd371;
}
.bg-gradient-1 {
    background-image: var(--gradient-1);
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 200%;
    background-position: 0 0, 0 100%;
    background-origin: padding-box, border-box;
    animation: highlight 1s infinite alternate;
}

.bg-gradient-2 {
    background-image: var(--gradient-2);

    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 200%;
    background-position: 0 0, 0 100%;
    background-origin: padding-box, border-box;
    animation: highlight 1s infinite alternate;
}

@keyframes highlight {
    100% {
        background-position: 0 0, 0 0;
    }
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

body {
    position: relative;
    direction: ltr;
    font-family: 'Archivo Narrow';
    sans-serif !important;
    overflow-x: hidden;
    background-color: var(--bg-3);
    color: var(--white)
}

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

.section5jhjasy {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section5jhjasy {
        padding: 80px 0;
    }
}

h1 {
    font-family: 'Lobster',
    sans-serif;
    font-size: 24px;
    
    font-weight: 700;
    line-height: 1.2;
}

h2,
h3,
h4,
h5 {
    font-family: 'Lobster',
    sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 1.5rem;
}
@media (min-width: 600px) {
    h1 {
        font-size: 1.75rem;
    }
}
@media (min-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }
}
@media (min-width: 992px) {
    h1 {
        font-size: 43px;
    }
    h2 {
        font-size: 1.85rem;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-ease-in);
}

a:hover,
a:focus {
    color: var(--hover);
}

.common-btn5jhjasy {
    display: block;
    width: 95%;
    margin: 0 auto;
    padding: 10px;
}

@media (min-width: 420px) {
    .common-btn5jhjasy {
        font-size: var(--font18-22);
        width: max-content;
        padding: 10px var(--spacing30);
        font-weight: 600;
        min-width: 212px;
    }
}

.header5jhjasy {
    position: absolute;
    top: 83px;
    width: 100%;
    background-color: #0000008f;
}
.header__nav5jhjasy {
    display: flex;
    align-items: center;
    padding: 8px 0;
    gap: 10px;
    justify-content: center;
}
@media (min-width: 521px) and (max-width: 991px) {
    .header5jhjasy {
        top: 37px;
    }
    .header__nav5jhjasy {
        justify-content: space-between;
    }
}
.header-logo-box5jhjasy {
    padding: var(--spacing10-15) 0;
}
@media (max-width: 520px) {
    .header-logo-box5jhjasy {
        display: none;
    }
}
@media (min-width: 992px) {
    .header-logo-box5jhjasy {
        display: none;
    }
}
.logo5jhjasy {
    align-items: center;
    justify-content: center;

    font-family: 'Lobster',
        sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-right: 0;
}
.header__nav5jhjasy.flex-row-reverse .logo5jhjasy {
   text-align: end;
}
@media (min-width: 600px) {
    .logo5jhjasy {
        font-size: 20px;
    }
}
@media (min-width: 992px) {
    .logo5jhjasy{
        font-size: 24px;
    }
    .header__logo5jhjasy.flex-row {
        justify-content: center;
    }
    .header__logo5jhjasy.flex-row-reverse {
        justify-content: end;
    }
}

.logo-pic5jhjasy {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    margin-right: 6px;
    margin-left: 6px;
    font-size: 1rem;
}
@media (min-width: 992px) {
    .logo-pic5jhjasy {
        height: 50px;
        width: 50px;
    }
}
.logo-pic5jhjasy img {
    width: 100%;
}

.menu-btn5jhjasy {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    fill: var(--white);
    background-color: transparent;

    transition: var(--transition-ease-in);
}
.menu-btn5jhjasy:hover,
.menu-btn5jhjasy:focus {
    fill: var(--hover);
}

@media (min-width: 992px) {
    .menu-btn5jhjasy {
        display: none;
    }
}

@media (max-width: 991px) {
    .menu-container5jhjasy {
        position: fixed;
        top: 0;
        left: 0;
        display: none;

        height: 100vh;
        width: 100%;
        padding: var(--spacing20);

        background-color: var(--black);
    }

    .menu-container5jhjasy.is-open {
        display: flex;
        flex-direction: column;
        gap: var(--spacing30);
        z-index: 5;
    }
}

@media (min-width: 992px) {
    .menu-container5jhjasy {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}
@media (min-width: 1200px) {
    .menu-container5jhjasy {
        flex: 1;
    }
}

.menu__close-btn5jhjasy {
    transition: var(--transition-ease-in);
    margin-right: auto;
    background-color: transparent;
}

@media (min-width: 992px) {
    .menu__close-btn5jhjasy {
        display: none;
    }
}

.menu__icon-close5jhjasy {
    fill: var(--white);
    transition: var(--transition-ease-in);
}

.menu__icon-close5jhjasy:hover {
    fill: var(--hover);
}

.menu__list5jhjasy {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 34px;
    list-style: none;
    padding: 6px;
}

@media (min-width: 992px) {
    .menu__list5jhjasy {
        flex-direction: row;
        justify-content: center;
        flex: 1;
        padding: 0;
        margin-bottom: 0;
    }
    .menu__item5jhjasy {
        padding: var(--spacing10-15);    
    }
}


.menu__link5jhjasy {
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    transition: var(--transition-ease-in);
    font-size: 20px;
    text-align: center;
    border-bottom: 1px solid transparent;
}

@media (min-width: 992px) {
    .menu__link5jhjasy {
        padding: 5px 2px;
        font-size: 16px;
    }
}

.menu__link5jhjasy:hover {
    border-bottom: 1px solid var(--hover);
}


.hero-logo-right {
    padding-top: var(--spacing10-15);
}
@media (min-width: 521px) {
    .hero-logo-right {
        display: none;
    }
}
@media (min-width: 992px) {
    .hero-logo-right {
        display: block;
        padding-top: var(--spacing20);
    }
}


.hero-opacity5jhjasy {
    width: 100%;
    background: url(artisticstorage/dir-bg/opacity_bg-0675a0cbca752c.png) no-repeat;
    background-size: cover;
    background-position: center;
}
@media (min-width: 992px) {
    .hero5jhjasy-1 .hero-pic5jhjasy {
        width: 100%;
        background: url(artisticstorage/tematik/tematik_big-0675a0cbca78bc.png) no-repeat;
        background-size: 367px;
        background-position: 93% 65%;
    }
}
@media (min-width: 1800px) {
    .hero5jhjasy-1 .hero-pic5jhjasy {
        background-position: 80% 80%;
    }
}
.hero-wrapper5jhjasy {
    padding: 120px 0 137px;
}
@media (min-width: 521px) {
    .hero-wrapper5jhjasy {
        padding: 140px 0 137px;
    }
}
@media (min-width: 992px) {
   .hero-wrapper5jhjasy {
        padding: 200px 0 137px;
    } 
}


.hero5jhjasy-1 .hero-box5jhjasy-2 {
    display: none;
}
.hero5jhjasy-2 .hero-box5jhjasy-1 {
    display: none;
}
.box-1-wrapper,
.hero-box5jhjasy-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing20);
}

@media (min-width: 992px) {
    .hero5jhjasy-1 .box-1-wrapper {
        padding: var(--spacing20);
        background-color: #0000006b;
    }
}


.hero-box5jhjasy-1 .hero-box-1-col {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 992px) {
    .hero-box5jhjasy-1 .hero-box-1-col {
        justify-content: start;
    }
}
@media (min-width: 992px) {
    .hero-box5jhjasy-1 .hero-titel-2 {
        font-size: var(--font18-22);
    }
}

.hero-pic5jhjasy {
    width: 80%;
    margin: 0 auto;
}

.hero-pic5jhjasy-mobile {
    width: 200px;
    height: 200px;
    padding-bottom: var(--spacing20);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 500px) {
    .hero-pic5jhjasy-mobile {
        width: 260px;
        height: 260px;
    }
}
@media (min-width: 678px) {
    .hero-pic5jhjasy-mobile {
        width: 260px;
        height: 260px;
    }
}
.hero-pic5jhjasy-mobile img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (min-width: 992px) {
    .hero-pic5jhjasy-mobile {
        display: none;
    }
}

.hero5jhjasy-2 .hero-box5jhjasy-2 {
    position: relative;
}
@media (min-width: 992px) {
    .hero5jhjasy-2 .hero-box5jhjasy-2 {
        padding-left: 116px;
    }
}



@media (min-width: 992px) {
    .hero5jhjasy-2 .hero-box5jhjasy-2::before,
    .hero5jhjasy-2 .hero-box5jhjasy-2::after {
        position: absolute;
        content: '';
        width: 100px;
        height: 100px;
        
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -2;
    }
    .hero5jhjasy-2 .hero-box5jhjasy-2::before {
        left: -120px;
        top: -20%;
        width: 260px;
        height: 260px;
        background-image: url(artisticstorage/tematik/roulette-0675a0cbca782e.png);
    
    }
    .hero5jhjasy-2 .hero-box5jhjasy-2::after {
        bottom: -107px;
        right: -40px;
        width: 230px;
        height: 230px;
        background-image: url(artisticstorage/tematik/coins-0675a0cbca7769.png);
    }
}
.hero5jhjasy-2 .hero__title5jhjasy {
    background: linear-gradient(to right, #ffffff 20%, #fccc43 30%, #ffffff 70%, #fff7e9 80%);

    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 4s ease-in-out infinite alternate;
}
@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.hero5jhjasy-2 .hero__title5jhjasy {
    font-size: 18px;
}
@media (min-width: 600px) {
    .hero5jhjasy-2 .hero__title5jhjasy {
        font-size: 28px;
    }
}
@media (min-width: 992px) {
    .hero5jhjasy-2 .hero__title5jhjasy {
        font-size: 32px;
        width: 85%;
        margin: 0 auto;
        margin-bottom: var(--spacing30);
    }
}
.hero-box5jhjasy-2 .hero-box5jhjasy-2-btn {
    width: 85%;
    margin: 0 auto;
}

.border-gradient {
    width: 100%;
    height: 16px;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}
.games-grid-col5jhjasy {
    padding: var(--spacing10-15);
}
.games-item5jhjasy {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    height: 100%;
}
.games-item-link5jhjasy {
    display: block;
    width: 100%;
    height: 212px;
}
.games-item-link5jhjasy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.games-item-rate-box5jhjasy {
    font-size: 32px;
    color: var(--accent-color);
    background-color: #000000ad;
}

.games-item-content5jhjasy {
    position: relative;
    flex: 1;
    color: var(--text-primary);
    padding: 70px var(--spacing20) var(--spacing30);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.games-item-rate-box5jhjasy {
    position: absolute;
    top: var(--spacing10-15);
    right: var(--spacing10-15);
}
.games-item-rate5jhjasy {
    color: var(--accent-color);
    font-size: 18px;
}
.games-item-play-icon5jhjasy {
    width: 77px;
    height: 77px;
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
}
.games-grid-col5jhjasy.col-lg-6 .games-item-play-icon5jhjasy {
    width: 92px;
    height: 92px;
}
.games-item-play-icon5jhjasy svg {
    fill: var(--white);
}




.benefits-list5jhjasy {
    padding: 0;
    margin-bottom: 0;
}
.benefits-item5jhjasy {
    padding-inline: 5px;
    padding-block: var(--spacing30);
}
@media (min-width: 768px) {
    .benefits-item5jhjasy {
        padding-inline: var(--spacing40-50);
    }
}
.benefits-inner-wrapper5jhjasy {
    align-items: center;
    gap: var(--spacing30);
    padding-inline: var(--spacing5-10);
    padding-block: var(--spacing30);
   
    text-align: center;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius:  40px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .benefits-inner-wrapper5jhjasy {
        padding-inline: var(--spacing40-50);
    }
}
.benefits-content5jhjasy {
    flex: 1;
    text-align: center;
}
.benefits-text5jhjasy {
    margin-block: var(--spacing30);
    color: var(--text-primary);
    font-size: 20px;
    width: 80%;
    margin-inline: auto;
}
.benefits-inner-wrapper5jhjasy.flex-lg-row .benefits-text5jhjasy {
    width: 100%;
}
.benefits-pic-wrapper5jhjasy {
    flex: 1;
    gap: var(--spacing5-10);
}
@media (min-width: 500px) {
    .benefits-pic-wrapper5jhjasy {
        gap: var(--spacing40-50);
    }
}
.benefits-pic-5jhjasy {
    flex: 1;
    width: 90px;
    height: 90px;
}
.benefits-inner-wrapper5jhjasy.flex-lg-row .benefits-pic-5jhjasy {
    margin-inline: auto;
    width: 180px;
    height: 180px;
}
.benefits-inner-wrapper5jhjasy.flex-lg-row .benefits-pic-5jhjasy-1, 
.benefits-inner-wrapper5jhjasy.flex-lg-row .benefits-pic-5jhjasy-2 {
    display: none;
}
@media (max-width: 600px) {
    .benefits-pic-5jhjasy-1 {
        display: none;
    }
}
.benefits-pic-5jhjasy img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 419px) {
    .benefits-item5jhjasy .common-btn5jhjasy {
        width: 85%;
    }
}


.slick-slider .slick-track {
    display: flex;
}

.slick-arrow {
    width: 60px;
    height: 60px;
}

@media (max-width: 991px) {
    .slick-arrow {
        display: none!important;
    }
}
.slick-prev {
    top: 50%;
    left: -60px;
}
.slick-next {
    bottom: 35%;
    right: -60px;
}
.slick-next::before,
.slick-prev::before {
    display: inline-block;
    width: 50px;
    height: 50px;
    
    background-image: url("sources/css/right-arrow-long.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 1;
}
.slick-prev::before {
    transform: rotate(180deg);
    opacity:1;
}

.hoPlay-grid5jhjasy {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .hoPlay-grid5jhjasy {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 992px) {
    .hoPlay-grid5jhjasy {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
.howPlay-item5jhjasy {
    padding: var(--spacing20);
}
@media (min-width: 768px) {
    .howPlay-item5jhjasy:nth-child(2n){
        margin-top: 245px;
    }
}
@media (min-width: 992px) {
    .howPlay-item5jhjasy:nth-child(2n) {
            margin-top: 0
        }
    .howPlay-item5jhjasy:nth-child(2n-1) {
        margin-top: 245px;
    }
}
.howPlay-item-inner_box5jhjasy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing20);
}
.howPlay-item5jhjasy:nth-child(2n) .howPlay-item-inner_box5jhjasy{
    flex-direction: column;
}

.howPlay-pic5jhjasy {
    width: 200px;
    height: 200px;
}
@media (min-width: 992px) {
    .howPlay-pic5jhjasy {
        width: 180px;
        height: 180px;
    }
}
@media (min-width: 1200px) {
    .howPlay-pic5jhjasy {
        width: 200px;
        height: 200px;
    }
}
.howPlay-pic5jhjasy img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.howPlay-text5jhjasy {
    padding-block: var(--margin20);
    text-align: center;
}
.devs-list5jhjasy {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing30);
    background-color: #1f0b0429;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
        rgba(0, 0, 0, 0.22) 0px 15px 12px;
    padding-block: var(--spacing20);
}

.devs-item5jhjasy {
    font-family: 'Lobster',
    sans-serif;
    font-size: 26px;
}


.comment-content5jhjasy {
    position: relative;
}

.comment-text5jhjasy {
    padding-inline: var(--spacing5-10);
    padding-top: var(--spacing40-50);
    padding-bottom: 100px;
    text-align: center;
    color: var(--text-primary);
    background-color: #d7d7d4;
    font-size: 18px;
}
@media (min-width: 500px) {
    .comment-box5jhjasy {
        padding: var(--spacing20);
    }
    .comment-text5jhjasy {
        padding-inline: var(--spacing30);
    }
}

.comment-pic5jhjasy {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 140px;
    height: 140px;
    border: 10px solid transparent;
    border-radius: 50%;
    overflow: hidden;   
}
.comment-pic5jhjasy img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
}

.comment-nickname5jhjasy {
    padding-top: 85px;
    text-align: center;
    font-size: 26px;
}
.video-section5jhjasy {
    position: relative;
    width: 100%;
   
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video5jhjasy {
    object-fit: cover;
    height: 100%;
    width: 100%;

    position: absolute;
    top: 0;
    left: 0;
}
.video-opacity {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #12070070
}

.form-box5jhjasy {
    position: absolute;
    width: 100%;
    padding-block: var(--spacing40-50);
}
.form-titel5jhjasy {
    text-shadow: 3px 4px 5px rgba(0, 0, 0, 1);
}


@media (min-width: 768px) {
    .form-wrapper5jhjasy {
        width: 60%;
        margin-inline: auto;
    }
}

.form5jhjasy .input-form-column--component,
.form5jhjasy .textarea-form-column--component {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;

    background-color: transparent;
    border-bottom: 2px solid var(--white);
    color: var(--white);
    text-shadow: 3px 4px 5px rgba(0, 0, 0, 1);
}
.form5jhjasy .input-form-column--component::placeholder,
.form5jhjasy .textarea-form-column--component::placeholder {
    color: var(--white);
}
.form5jhjasy .textarea-form-column--component {
    height: 5em;
    margin-bottom: 6px;
}


.policy-agreement5jhjasy {
    margin-bottom: var(--spacing30);
}

.policy-agreement5jhjasy .agreement-input5jhjasy {
    margin-right: 7px;
}

.policy-agreement5jhjasy .agreement-input5jhjasy:checked {
    accent-color: var(--hover);
}

.form5jhjasy .agreement-label5jhjasy {
    color: var(--white);
}

.agreement-privacy-link5jhjasy {
    margin-left: 3px;
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.agreement-privacy-link5jhjasy:hover {
    color: var(--hover);
    text-decoration-color: var(--hover);
}

@media (min-width: 420px) {
    .form5jhjasy .common-btn5jhjasy {
        margin: 0;
    }
    .form5jhjasy .common-btn5jhjasy-center {
        margin-inline: auto;
    }
}
.footer-box1-5jhjasy.flex-column,
.footer-box1-5jhjasy.flex-column-reverse,
.footer-box1-5jhjasy.flex-md-column {
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-disclaimer-text5jhjasy {
    text-align: center;
    background: #a72a2a;
    border: 1px solid;
    padding: 15px;
    font-size: 18px;
}
@media (min-width: 768px) {
    .footer-box1-5jhjasy.flex-md-row .footer-disclaimer-text5jhjasy {
        width: 75%;
        text-align: start;
        margin-bottom: 12px;
    }
}
.footer-box2-5jhjasy {
    align-items: center;
}
.footer-pic5jhjasy {
    display: flex;
    flex: 1;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
}
.footer-pic5jhjasy img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-box2-5jhjasy {
    justify-content: space-around;
}
.policy-5jhjasy {
    display: flex;
    justify-content: center;
    column-gap: var(--spacing20);
    flex-wrap: wrap;

    background-color: #1f0b0429;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    padding: var(--spacing10-15);
}
.policy-item5jhjasy {
    padding-block: 2px;
}
.policy-item5jhjasy a:hover {
    color: var(--white);
}
.footer-menu__list5jhjasy {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 0;
    align-items: center;
}
.footer-menu__link5jhjasy {
    font-size: 17px;
    font-weight: 600;
}

.footer-copyright5jhjasy {
    font-size: 14px;
    text-align: center;
}
.footer-copyright5jhjasy-2 {
    margin-inline: auto;
    padding: 4px 15px;
    border-radius: 100vw;

    width: max-content;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}


.game-page5jhjasy .game-pic5jhjasy {
    height: 350px;
    margin: 30px auto;
}
@media (min-width: 992px) {
    .game-page5jhjasy .game-pic5jhjasy {
        width: 65%;
    }
}
.game-page5jhjasy .game-pic5jhjasy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-page5jhjasy .game-page-players5jhjasy {
    padding: 10px 45px;
    color: var(--text-primary);
    height: max-content;
    width: max-content;
    margin-inline: auto;
    margin-bottom: 20px;
    border-radius: 100vw;
}
@media (max-width: 500px) {
    .game-page5jhjasy .game-page-players5jhjasy {
        font-size: 18px!important;
    }
}

.game-page5jhjasy .demogame5jhjasy {
    width: 100%;
    height: 350px;
}
@media (min-width: 768px) {
    .game-page5jhjasy .demogame5jhjasy {
        height: 600px;
    }
}
 
.page-comments-list5jhjasy {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.page-comments-item5jhjasy {
    margin: 0 auto;
    align-items: center;
    text-align: center;
}
@media (min-width: 992px) {
    .page-comments-list5jhjasy {
        flex-direction: row;
        gap: 20px;
    }
    .page-comments-item5jhjasy {
        flex: 1;
    }
    .page-comments-item5jhjasy .comment-box5jhjasy {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .page-comments-item5jhjasy .comment-content5jhjasy {
        flex: 1;
    }
    .page-comments-item5jhjasy .comment-text5jhjasy {
        height: 100%;
    }
}



.category-item5jhjasy {
    position: relative;
    background-image: var(--gradient-1);
    padding: 30px;
}
.category-col5jhjasy.col-md-4 .category-item5jhjasy {
    padding: var(--spacing5-10);
}
@media (min-width: 400px) and (max-width: 767px) {
    .category-item5jhjasy {
        width: 75%;
        margin-inline: auto;
    }
}
.category-col5jhjasy {
    padding: var(--spacing10-15);
}
.category-pic5jhjasy {
    height: 300px;
    position: relative;
    display: block;
    width: 100%;
   
}
.category-pic5jhjasy::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #0000008a;
    opacity: 0;
    transition: var(--transition-ease-in);
}
.category-pic5jhjasy:hover::before {
    opacity: 1;
}
.category-pic5jhjasy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-titel5jhjasy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Archivo Narrow';
    color: var(--white);
    text-align: center;
    opacity: 0;
    transition: var(--transition-ease-in);
}
.category-pic5jhjasy:hover .category-titel5jhjasy {
    opacity: 1;
}

.category-btn5jhjasy {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.category-btn5jhjasy {
    padding: 8px;
}
.category-col5jhjasy.col-md-4 .category-btn5jhjasy {
    padding: 3px;
}
.category-btn5jhjasy a {
    min-width: 100px;
    font-size:21px;
    font-weight: 700;
    display: inline-block;
    padding: 3px 40px;
    text-align: center;
    background-color: var(--white);
    color: var(--text-primary);
}

@media (min-width: 550px) {
    .category-col5jhjasy.col-md-6 .category-btn5jhjasy a {
        min-width: 150px;
        padding: 5px 65px;
        font-size: 34px;
    }
}
.category-btn5jhjasy a:hover {
    color: var(--hover);
}



.contact-page5jhjasy .contact-box1-5jhjasy {
    align-items: center;
    gap: var(--spacing40-50)
}

.contact-box1-5jhjasy .map-block5jhjasy {
    width: 100%;
    height: calc(350px + 100px);
    border: 0;
}
@media (min-width: 992px) {
    .contact-page5jhjasy .map-block5jhjasy,
    .contact-page5jhjasy .contact-form-box5jhjasy {
        flex: 1;
    }
    .contact-box1-5jhjasy .map-block5jhjasy {
        width: 100%;
        height: calc(350px + 100px);
        border: 0;
    }
}
.contact-box1-5jhjasy .contacts-map5jhjasy {
    width: 100%;
    height: 100%;
}

.contact-page5jhjasy .contact-adress-list5jhjasy {
    padding-block: var(--spacing30);
    font-size: 17px;
}
@media (min-width: 500px) {
    .contact-page5jhjasy .contact-adress-list5jhjasy {
        width: 65%;
        margin-inline: auto;
        font-size: 26px;
    }
}
.contact-page5jhjasy .contact-adress-item5jhjasy {
    text-align: center;
}
.contact-page5jhjasy .contact-link5jhjasy svg {
    width: 25px;
    height: 25px;
    fill: #5500ff;
}
.contact-link-colored5jhjasy {
    color: var(--hover)
}

.contact-form-box5jhjasy {
    width: 100%;
}
.contact-form-box5jhjasy .form-input5jhjasy,
.contact-form-box5jhjasy .form-textarea5jhjasy {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;

    background-color: transparent;
    border-bottom: 2px solid var(--white);
    color: var(--white);
    text-shadow: 3px 4px 5px rgba(0, 0, 0, 1);
}

.contact-form-box5jhjasy .form-input5jhjasy::placeholder,
.contact-form-box5jhjasy .form-textarea5jhjasy::placeholder {
    color: var(--white);
}

.contact-form-box5jhjasy .form-textarea5jhjasy {
    height: 5em;
    margin-bottom: 6px;
}



.about-page-box1-5jhjasy {
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .about-page-box1-5jhjasy {
        gap: var(--spacing30)
    }
}

.about-page-box2-5jhjasy {
    flex: 1;
}
.about-page-box1-5jhjasy.flex-md-row .about-page-pic5jhjasy,
.about-page-box1-5jhjasy.flex-md-row-reverse .about-page-pic5jhjasy {
    flex: 0.3;
}
.about-page-box1-5jhjasy.flex-md-column .about-page-pic5jhjasy {
    width: 245px;
    height: 245px;
}
@media (max-width: 767px) {
    .about-page-box1-5jhjasy .about-page-pic5jhjasy {
        display: none;
    }
}

.about-page-pic5jhjasy img {
    width: 90%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
}
.about-pics-block5jhjasy {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .about-pics-block5jhjasy {
        gap: 80px;
    }
}

.about-pics-item5jhjasy {
    width: 112px;
    height: 112px;
}
.about-pics-item5jhjasy img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.blog-box-1-5jhjasy {
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog5jhjasy-pic5jhjasy {
    width: 65%;
}
.about-page-pic5jhjasy-6 {
    display: none;
}
.collapsible5jhjasy {
    position: relative;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing20);
}
@media (min-width: 768px) {
    .collapsible5jhjasy {
        padding: var(--spacing20) var(--spacing20) var(--spacing20) 40px;
    }
}

.collapsible-item5jhjasy {
    position: relative;
    
}
.collapsible-btn5jhjasy {
    position: relative;
    
    padding: 15px var(--spacing20);
    background-color: #1f0b0429;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    
    width: 100%;
    font-size: 17px;
    cursor: pointer;
    
}
.collapsible-btn-titel5jhjasy {
    flex: 0.8;
    color: var(--white);
    margin-bottom: 0;
    font-size: 17px;
    text-transform: initial;
    text-align: left;
    width: 80%;
}

.collapsible-btn5jhjasy::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: url(sources/css/up-chevron5jhjasy.svg) no-repeat 0 0;
    background-position: center;
    background-size: 20px;
    transition: var(--transition-linear);
}
.collapsible-text5jhjasy {
    padding: 0 var(--spacing20);
    opacity: 0.5;
    max-height: 1px;
    overflow: hidden;
    transition: all 0.2s ease;
    position: relative;
    top: -100%;

    color: var(--text-primary);
    background-image: var(--gradient-1);
}
.collapsible5jhjasy input {
    display: none;
}
.collapsible5jhjasy input:checked ~ .collapsible-text5jhjasy {
    padding: 15px var(--spacing20);
    max-height: max-content;
    opacity: 1;
    top:0;

    background-image: var(--gradient-1);
}
.collapsible5jhjasy input:checked + .collapsible-btn5jhjasy::after {
    transform: rotate(-90deg) translate(50%);
}

.policy-page5jhjasy {
    border-bottom: 1px dotted var(--white);
}