* {
    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 {
    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, #2a0845, #6441a5, #2a0845);
}

.flex-direction-column {
    flex-direction: column;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #6441a5!important;
}
.nav-link{
    transition: background-color 0.3s, transform 0.3s;
}
.nav-link:hover {
    background-color: #6441a5!important;
    transform: scale(0.8);
}

.btn-black {
    background: none;
    color: #fff;
}
.btn-black:hover {
    background-color: #333;
    color: #fff;
}
.btn-purple {
    background-color: #6441a5!important;
    color: #fff!important;
    border: none!important;
    transition: background 0.3s, color 0.3s;
}
.btn-purple:hover {
    background-color: #482f77!important;
    color: #fff!important;
    border: none!important;
}
.bg-ungu {
    background-color: #6441a5;
}
/*GAMES*/
.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: 32px;
    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.5rem 0;
    background: #6441a5;
    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: #6441a5!important;
}
.dropdown-item:hover{
    background-color: #6441a5!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: 576px) {
    img.banner {
        height: 20vh!important;
    }
}
@media only screen and (max-width: 768px) {
    img.banner {
        height: 25vh!important;
    }
}
@media only screen and (max-width: 992px) {
    img.banner {
        height: 30vh!important;
    }
}
@media only screen and (max-width: 1200px) {
    img.banner {
        height: 35vh!important;
    }
}
@media only screen and (max-width: 1400px) {
    img.banner {
        height: 40vh!important;
    }
}
@media only screen and (min-width: 1401px) {
    img.banner {
        height: 45vh!important;
    }
}