@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz@6..12&family=Open+Sans:wght@300&family=Quicksand:wght@300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Nunito+Sans:opsz,wght@6..12,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-size: #000;
}

:root {
    --bg-body-color: #fff;
    --secondary-bg: #fff;
    --elements-bg: #324064;
    --white: #ffffff;
    --main-accent: #FF3939;
    --secondary-accent: #01239C;
    --text-secondary: #bfc6e1;
    --devider: #6070AB;
    --secondary-font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-body-color);
    width: 100%;
    height: 100%;
    overflow-x: hidden !important;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.container {
    width: 80%;
    margin: 0 auto
}

header {
    width: 100%;
    background-color: var(--bg-body-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 120px;
    padding: 10px;
}


header .wrapper {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.header img {
    width: 150px;
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 20px
}

.searchbar {
    height: 20px;
    font-size: 14px;
    font-weight: 100;
    padding: 10px;
    background-color: var(--secondary-bg);
    text-align: left;
    transition: all .2s linear;
    white-space: nowrap;
    outline: none;
    border: 1px solid var(--secondary-accent);
    border-radius: 15px;
    color: #000
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    height: 40px;
    box-sizing: border-box;
    color: #fff;
    user-select: none;
    white-space: nowrap;
    font-weight: 600;
    font-size: .775rem;
    text-decoration: none;
    transition: all .5s;
    cursor: pointer;
    font-family: var(--primary-font-family);
    border-radius: 10px;
    background-color: var(--main-accent);
    border: 2px solid var(--main-accent);
    padding: 0 30px;
}

.btn.outline {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
}

.btn:hover {
    background-color: transparent;
    color: #000;
}

.btn.outline:hover {
    background-color: var(--main-accent);
    color: #fff;
    border: 1px solid var(--main-accent)
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 60px;
    height: 50px;
}

nav ul li {
    list-style-type: none;
    position: relative;
}

nav ul li::after {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background-color: var(--main-accent);
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.5s;
}

nav ul li:hover::after {
    width: 100%;
}

nav ul li a {
    color: #000;
    font-weight: 500;
}

.banner_section {
    margin-top: 150px;
    position: relative;
}

.banner_section .wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.banner_item {
    width: calc(50% - 95px);
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 35px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner_section .get_bonus {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-48%, -55%);
    max-width: 40%;
}

.banner_section .get_bonus:nth-child(3) {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -0%);
    width: 16%;
    z-index: 2;
}

.get_bonus_btn {
    position: absolute;
    display: flex;
    gap: 300px;
    background-color: #3B31A5;
    padding: 15px 25px;
    left: 50%;
    top: 96%;
    transform: translate(-50%, -55%);
    border-radius: 15px;
}

.banner_item .btn {
    padding-left: 50px;
    padding-right: 50px;
    font-weight: 400;
    display: none;
}

.banner_title {
    font-size: 40.47px;
    color: #fff;
    font-weight: 900;
    width: 100%;
    line-height: 48.94px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.banner_item:nth-child(2) .banner_title {
    text-align: end;
}

.banner_title span {
    font-size: 65.44px;
    line-height: 60px;
}

.content_section .wrapper {
    color: #000;
    background-color: var(--secondary-bg);
    padding: 20px 0px;
    border-radius: 50px;
}

.content_section a {
    color: #FFC700;
    text-decoration: underline;
}

.content_section h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.content_section h2 {
    font-size: 32px;
    margin: 20px 0px;
}

.content_section h3 {
    font-size: 26px;
    margin: 20px 0px;
}

.content_section p {
    font-size: 1rem;
    font-style: normal;
    line-height: 30px;
}


.content_section ul {
    list-style: none;
    margin: 20px;
}

.content_section ul,
.content_section ol {
    margin: 20px;
}


.content_section ul li,
.content_section ol li {
    line-height: 30px;
}


.content_section ul li::before {
    content: "\2022";
    color: var(--main-accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.text-img {
    max-width: 100%;
    display: block;
    border-radius: 5px;
    margin: 20px auto;
}

.txt_area {
    background-color: var(--secondary-bg);
    border-radius: 35px;
    padding: 10px 40px;
    margin-bottom: 40px;
}

.main .textSection .txtBtn {
    background-color: var(--main-accent);
    color: var(--white);
    padding: 10px 50px;
    display: block;
    margin: 20px auto;
    max-width: 200px;
    text-transform: uppercase;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
}

th,
td {
    border: 1px solid var(--secondary-accent);
    padding: 8px;
    text-align: left;
}

th {
    background-color: #6070AB;
    color: #000;
}


tr:nth-child(even) {
    background-color: var(--elements-bg);
    color: #fff;
}

tr:hover {
    background-color: var(--main-accent);
    color: #fff;
}

.game_section .wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game_item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 35px;
    position: relative;
}

.game_item img {
    width: 100%;
    border-radius: 35px;
    z-index: 1;
}

.game_active {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 96%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9;
    border-radius: 35px;
    overflow: hidden;
}

.game_active._active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-accent);
}

.game_active img {
    width: 50px;
}

.game_item-name {
    text-align: center;
    color: #fff;
}

.bottom_banners {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px auto;
}

.bottom_banners .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bottom_banners img {
    width: 100%;
    display: block;
    margin: 0 auto
}

.bottom_banners .providers {
    width: 80%;
}

.faq_section .title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px
}

.faq_section {
    color: var(--white)
}

.faq_section .wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

details:first-child {
    margin-top: 20px;
}

details:nth-child(4) {
    margin-bottom: 20px;
}


details {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 1px solid var(--base-divider);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    position: relative;
    line-height: 142%;
    color: var(--elements-bg);
    font-size: 1rem;
    border-radius: 15px;
    border: 1px solid var(--devider);
    margin: 10px auto;
}

summary::-webkit-details-marker {
    display: none;
}

summary {
    list-style: none;
}

summary {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 142.69%;
    outline: 0;
    cursor: pointer;
    display: block;
    margin-right: -10px;
    font-family: var(--primary-font-family);
    padding-left: 25px;
    width: 80%;
}

summary::after {
    content: "\002B";
    position: absolute;
    top: 12px;
    right: 30px;
    -webkit-transition: .2s;
    transition: .2s;
    font-size: 1.8rem;
    color: var(--devider);
    border-radius: 35px;
    padding: 2px 10px;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    margin-top: 20px;
    margin-left: 25px;
}

details ul {
    margin-top: 20px;
    margin-left: 40px;
}

footer {
    padding-bottom: 20px;
}

footer .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

footer img {
    width: 15%;
}

footer p {
    color: #000;
    opacity: .8;
}

.mobile_menu,
.burger__menu {
    display: none;
}

.review-item {
    background-color: #fff;
    border-radius: 35px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--elements-bg);
    width: 60%;
}

.review-item h3 {
    color: var(--elements-bg);
    margin-bottom: 10px;
}

.review-item p {
    color: #666;
}

.review-form {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.review-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-form h3 {
    color: #333;
    margin-bottom: 10px;
}

.review-form input,
.review-form textarea {
    width: 50%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.review-form button {
    background-color: var(--main-accent);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 25%;
    border: 1px solid var(--main-accent)
}

.review-form button:hover {
    background-color: transparent;
    color: var(--main-accent);
}

@media(max-width: 1600px) {

    .provider_section .main_banner {
        width: 65%;
    }
}

@media(max-width: 1200px) {

    .container {
        width: 90%;
    }

    .banner_section .get_bonus {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-48%, -55%);
        max-width: 50%;
    }

    .banner_section .get_bonus:nth-child(3) {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -0%);
        width: 20%;
        z-index: 2;
    }



    .banner_title {
        font-size: 30px;
        width: 90%;
    }

    .banner_title span {
        font-size: 60.44px;
    }

    .game_item {
        min-height: 130px;
    }

    .provider_section {
        min-height: 800px;
    }

    .provider_section .wrapper {
        height: 820px;
    }

    .provider_section .main_banner {
        width: 80%;
        margin-top: 50px;
    }

    .police {
        right: 35%;
        bottom: 0;
    }

    .centur {
        left: 10%;
        bottom: 0;
        z-index: 1;
    }

    .cyber {
        left: -10%;
        bottom: 0;
        z-index: 2;
    }
}

@media(max-width: 900px) {

    .container {
        width: 90%;
    }

    header .wrapper {
        width: 90%;
    }

    .banner_section {
        margin-top: 150px;
    }

    .game_item {
        width: 100%;
    }

    .get_bonus,
    .get_bonus_btn {
        display: none;
    }

    .banner_item .btn {
        display: flex;
        width: 60%;
    }

    .banner_section .wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .banner_item {
        width: calc(100% - 95px);
    }

    .game_section .wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 600px) {

    header {
        height: 70px;
    }

    header .wrapper {
        width: 100%;
    }

    .header {
        justify-content: flex-start;
        gap: 200px;
    }

    header .header-btns,
    header nav {
        display: none;
    }

    .burger__menu {
        display: block;
        position: relative;
        width: 40px;
        height: 25px;
        cursor: pointer;
        margin-top: 10px;
    }

    .burger__menu span,
    .burger__menu::before,
    .burger__menu::after {
        position: absolute;
        height: 4px;
        width: 50px;
        transition: all 0.5s;
        background-color: #000;
        border-radius: 100px;
    }


    .burger__menu::before,
    .burger__menu::after {
        content: "";
    }

    .burger__menu::before {
        top: 0;
    }

    .burger__menu::after {
        bottom: 0;
    }

    .burger__menu span {
        top: 50%;
        transform: scale(1) translate(0px, -50%);
    }

    .burger__menu._active span {
        transform: scale(0) translate(0px, -50%);
    }

    .burger__menu._active::before {
        top: 50%;
        transform: rotate(45deg) translate(0px, -50%);
    }

    .burger__menu._active::after {
        bottom: 50%;
        transform: rotate(-45deg) translate(0px, 50%);
    }

    .banner_section {
        margin-top: 80px;
    }


    .banner_item {
        width: calc(100% - 40px);
        height: 200px;
        padding: 20px;
    }

    .banner_title {
        width: 100%;
        line-height: 2.5rem;
    }

    .game_item {
        width: 100%
    }

    .mobile_menu {
        display: block;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 70%;
        background-color: var(--bg-body-color);
        transition: all .5s;
        border-bottom: 1px solid var(--elements-bg);
        border-radius: 0 0 15px 15px;
    }

    .mobile_menu._active {
        top: 0;
    }

    .mobile_menu .container {
        margin-top: 60px;
        height: 100%;
    }

    .mobile_menu .wrapper {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        height: 100%;
        margin-top: 120px;
        gap: 40px;
    }

    .mobile_menu ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }

    .mobile_menu ul li {
        list-style-type: none;
        font-size: 1rem;
    }

    .mobile_menu ul li a {
        color: var(--elements-bg);
        font-size: 24px;
    }

    .mobile_menu-btns {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .mobile_menu-btns input {
        width: 70%;
    }

    .mobile_menu-btns div {
        display: flex;
        gap: 20px;
    }

    .banner_section {
        width: 100%;
    }

    .banner_section .wrapper {
        margin-top: 60px;
    }

    .banner_title {
        font-size: 30px;
        width: 90%;
        line-height: 1.875rem;
    }

    .banner_title span {
        font-size: 50.44px;
        line-height: 2.875rem;
    }


    .provider_section {
        min-height: 600px;
    }

    .provider_section .wrapper {
        height: 620px;
    }

    .provider_section .main_banner {
        min-height: 300px;
        margin-top: 50px;
    }

    .provider_section .main_banner .title {
        font-size: 60px;
    }

    .provider_section .provider_list {
        width: 90%;
    }

    summary {
        font-size: .825rem;
        padding-left: 5px;
    }

    details p {
        font-size: .825rem;
        margin-left: 5px;
    }

    details ul {
        margin-left: 10px;
    }

    summary::after {
        padding: 2px 5px 4px 5px;
    }

    .game_section .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-form input,
    .review-form textarea {
        width: 90%;
    }

    .review-form button {

        width: 80%;
    }

    .review-item {
        width: calc(100% - 40px);
    }
}

@media(max-width: 400px) {

    .header {
        gap: 150px;
    }

    h2 {
        font-size: 2rem !important;
    }

    .game_item {
        width: 100%;
        height: 200px;
    }

    .game_item:nth-child(5),
    .game_item:nth-child(6),
    .game_item:nth-child(7),
    .game_item:nth-child(8),
    .game_item:nth-child(9),
    .game_item:nth-child(10),
    .game_item:nth-child(11),
    .game_item:nth-child(12) {
        display: none;
    }

    .provider_section .wrapper {
        gap: 40px;
    }

    .provider_section .title {
        font-size: 10px;
    }

    summary {
        font-size: .825rem;
        padding-right: 80px;
    }

    .mobile_menu .wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .mobile_menu ul {
        gap: 15px;
    }

    .mobile_menu-btns div {
        gap: 20px;
    }
}

@media(max-width: 374px) {
    .header {
        gap: 100px;
    }
}