@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: var(--white-color);
}

:root {
    --bg-body-color: #011457;
    --secondary-bg: #000D3A;
    --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 {
    padding: 40px 200px;
}

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

header .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

header .wrapper{
    display: flex;
    flex-direction: column;
}

.header_top{
    display: flex;
    justify-content: space-between;
}

.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: var(--white)
}

.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: 15px;
    background-color: var(--main-accent);
    border: 2px solid var(--main-accent);
    padding: 0 30px;
}

.btn.uncolored{
    background-color: transparent
}

.btn:hover{
    background-color: transparent
}

.btn.uncolored:hover{
    background-color: 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: #fff;
    font-weight: 500;
}

.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_item .btn{
    padding-left: 50px;
    padding-right: 50px;
    font-weight: 400;
}

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

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

.content_section .wrapper{
    color: var(--white);
    background-color: var(--secondary-bg);
    padding: 45px;
    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: #fff;
}


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

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

.game_section .wrapper{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 25px;
}

.game_item {
    width: calc(25% - 25px);
    min-height: 230px;
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 35px;
}

.game_active{
    height: 100%;
    display: none;
    gap: 20px;
    color: var(--white);
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 35px;
}

.game_active._active{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game_active img {
    width: 50px;
}

.game_item-name{
    text-align: center;
}

.provider_section{
    min-height: 1000px;
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

.provider_section .wrapper{
    display: flex;
    flex-direction: column;
    height: 1020px;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.provider_section .main_banner{
    width: 45%;
    min-height: 400px;
    margin: 0 auto;
    position: relative;
    border-radius: 35px;
    margin-top: 100px
}

.provider_section .main_banner .title{
    color: var(--white);
    font-family: var(--secondary-font-family);
    font-size: 96px;
    font-weight: 900;
    text-align: center;
}

.provider_section .main_banner img {
    position: absolute;
}

.sport {
    right: 0;
    bottom: 0;
}

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

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

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

.provider_section .btn{
    padding: 25px 50px !important;
    font-size: 1.5rem !important;
}

.provider_section .provider_list{
    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(--white);
    font-size: 1rem;
    background-color: #032873;
    border-radius: 35px
}

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;
}

summary::after {
    content: "\002B";
    position: absolute;
    top: 12px;
    right: 30px;
    -webkit-transition: .2s;
    transition: .2s;
    font-size: 1.8rem;
    color: var(--white);
    background-color: var(--main-accent);
    border-radius: 50%;
    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 .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

footer img {
    width: 15%;
}

footer p{
    color: var(--white);
    opacity: .8;
    line-height: 0.5rem;
}

.mobile_menu,
.burger__menu{
    display: none;
}

@media(max-width: 1600px){
    .container{
        padding: 40px 100px;
    }

    .provider_section .main_banner{
        width: 65%;
    }

    .game_item {
        min-height: 200px;
    }
}

@media(max-width: 1200px){
    .container{
        padding: 40px 50px;
    }

    .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){
    .sport {
        right: -5%;
        bottom: 0;
        width: 50%;
    }

    .police{
        right: 30%;
        bottom: 0;
        width: 35%;
    }
    
    .centur{
        left: 10%;
        bottom: 0;
        z-index: 1;
        width: 50%;
    }
    
    .cyber{
        left: -12%;
        bottom: 1;
        z-index: 2;
        width: 50%;
    }

    .game_item {
        width: calc(32% - 15px);
    }
}

@media(max-width: 600px){
    .container{
        padding: 20px;
    }

    header .container {
        padding: 10px 20px;
    }
    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: var(--white);
        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 .wrapper {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .game_item {
        width: calc(50% - 15px);
    }

    .mobile_menu{
        display: block;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 70%;
        background-color: var(--bg-body-color);
        transition: all .5s;
    }

    .mobile_menu._active{
        top: 0;
    }

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

    .mobile_menu .wrapper{
        display: flex;
        justify-content: flex-start;
        height: 100%;

    }

    .mobile_menu ul {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

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

    .mobile_menu ul li a {
        color: var(--white)
    }

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

    .mobile_menu-btns div{
        display: flex;
    }

    .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;
    }

    .content_section .container{
        padding: 40px 0;
    }

    .content_section .wrapper{
        padding: 40px 20px;
    }

    .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;
    }
}

@media(max-width: 400px){

    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;
    }
}