* {
    font-family: sans-serif;
    box-sizing: border-box;
}

::placeholder {
    color: #333;
    opacity: 1;
}
::-webkit-input-placeholder,
::-ms-input-placeholder,
:-ms-input-placeholder {
    color: #333;
}


/* body {
    font-size: 12px;
} */

body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    min-height: 100vh;
    color: #212529;
    
}

.header {
    /* background: linear-gradient(to right, #453b08, #D5CE56, #453b08); */
    border-bottom: 1px #fff solid;
}

.bg-provider {
    background: linear-gradient(to right, #242424, #050503, #242424);
}

.btn-register {
    background-color: #222;
    border: none;
    color: #fbfbfb;
    border-radius: 2px;
    margin-left: .5rem;
}

.btn-register.register {
    background-color: #ae2020;
}

.btn-register.login {
    background-color: #D5CE56;
}

.flex-direction-column {
    flex-direction: column;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #D5CE56!important;
}
.nav-link{
    transition: background-color 0.3s, transform 0.3s;
    border: 0 !important;
    border-bottom: 2px solid #D5CE56 !important;
}
.nav-link:hover {
    background-color: #D5CE56!important;
    transform: scale(0.95);
}

.btn-black {
    background: none;
    color: #fff;
}
.btn-black:hover {
    background-color: #333;
    color: #fff;
}
.btn-purple {
    background-color: #D5CE56!important;
    color: #fff!important;
    border: none!important;
    /* transition: background 0.3s, color 0.3s; */
}
.btn-purple:hover {
    background-color: #0072b1!important;
    color: #fff!important;
    border: none!important;
}
.bg-ungu {
    background-color: #D5CE56;
}
.text-cok {
    color: #D5CE56;
}
.bg-black{
    background-color: #000;
}

/*GAMES*/
.game-provider-slider {
    background-color: #0f0f0f;
    display: flex;
}

.game-provider-slider .game-providers {
    flex-grow: 1;
    display: flex;
    scroll-behavior: smooth;
}

.game-provider-slider .game-providers a {
    color: #fff;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(100% / 6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #ddd;
    border-left: 3px solid #050016;
    border-right: 3px solid #050016;
    border-top: 6px solid #050016;
    border-bottom: 6px solid #050016;
}

.game-provider-slider .game-providers a:hover {
    /* background: #aaa; */
}

.game-provider-slider .game-providers a h5 {
    color: #fff;
    font-size: 13px;
    margin: 10px 0 0;
    text-align: center;
}

.game-provider-slider>button {
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 4px;
    background: none;
    border: none;
    outline: none;
    background-color: #050016;
}

.game-provider-slider>button:hover {
    background-color: #252036;
}

@media (max-width: 992px) {
    .game-provider-slider .game-providers a {
        flex-basis: calc(100% / 4);
    }
}

.games {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.games-img {
    transition: transform 0.5s;
}
.games:hover .games-img {
    transform: scale(1.2);
}
.games-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 1.5rem;
    left: 0;
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    color: #fff;
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.games:hover .games-title {
    visibility: visible;
    opacity: 1;
}
.games-title-description {
    margin-bottom: 1rem;
    transition: 0.5s;
    transform: translateY(1em);
    text-align: center;
}
.games:hover .games-title-description {
    transform: translateY(0);
}
.games-title-button {
    width: 100%;
    padding: 0.3rem 0;
    font-size: .8rem;
    background: #D5CE56;
    color: #fff;
    text-transform: uppercase;
    transition: 0.5s;
    transform: translateY(1em);
    text-align: center;
}
.games:hover .games-title-button {
    transform: translateY(0);
}
/*END GAMES*/

/*GAMES TIPS*/

/*END GAMES TIPS*/

.dropdown-toggle::after {
    display: none;
}

.dropdown-item{
    /* color: var(--bs-light) */
    border-bottom: #212529;
}

.dropdown-item.active{
    background-color: #D5CE56!important;
}
.dropdown-item:hover{
    background-color: #D5CE56!important;
    color: var(--bs-light)
}

.dropdown-menu{
    background-color: var(--bs-secondary) !important;
    color: var(--bs-light)
}

.footer-mobile a {
    font-size: .85rem;
}

.footer-mobile a i {
    font-size: 1.2rem;
    line-height: 1.3;
}

@media (max-width: 390px) {
    .nav-tabs .nav-link {
        font-size: .85rem;
    }
}


@media only screen and (max-width: 1400px) {
    img.banner {
        aspect-ratio: 32/9;
    }
}
@media only screen and (max-width: 576px) {


    img.banner {
        aspect-ratio: 29/9;
    }

    .images-logo {
        max-width: 50%;
    }

    .btn-register {
        --bs-btn-padding-y: 0.25rem;
        --bs-btn-padding-x: 0.5rem;
        --bs-btn-font-size: 0.875rem;
        --bs-btn-border-radius: 0.25rem;
    }
}
@media only screen and (min-width: 1401px) {
    img.banner {
        aspect-ratio: 32/9;
    }
}

@media only screen and (min-width: 1024px) {
    .container {
        max-width: 75%;
    }
}