.offer {
    background-color: #333;
    color: white;
    text-align: center;
    transition: position 0.3s;
    border-radius: 0.5rem;
    background-image: linear-gradient(227deg, #585858 0%, #363636 100%);
}

.offer > .row {
    padding: 10px 0;
}

.offer .logo {
    max-width: 300px;
    max-height: 50px;
}


.normal {
    position: static;
}

.sticky-offer {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 30px;
    width: calc(100% - 40px);
}

.info-div {
    background-color: #f1f4f7;
}

.hero-body {
    /*align-items: center;*/
    /*justify-content: flex-start;*/
    text-align: center;
    margin: auto;
    max-width: 95%;
    padding: 3.2rem 1rem 0;
    transition: padding .3s;
    z-index: 1;
}

.hero-body .text-success {
    color: #7aeff8 !important;
}

.hero-caption {
    color: #fff;
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 2.9rem;
    text-align: center;
    text-shadow: 0 .8rem .8rem rgba(9,10,11,.5);
    background-color: #235f93aa;
    padding: 1rem;
    border-radius: 1rem;
}

.info-bonus-caption {
    font-size: 1.6rem;
    border: 2px dashed #3883c3;
    padding: 1rem;
    border-radius: 1rem;
    background-color: #e8f4fb;
}

.product-info-container {
    background-repeat: no-repeat;
    background-size: cover;
}

.game-list {
    list-style: none;
    padding-left: 0;
    margin: 40px -5px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.game-list li {
    width: calc(16.66% - 10px);
    margin: 0 5px 10px;
    text-align: center;
}

.game-list li a {
    display: block;
    height: 100%;
    background: #fff;
    border-radius: 4px;
    color: #152232;
    font-weight: bold;
    line-height: 1.2;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}


.game-list li a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #152232;
    opacity: 0;
    transition: 0.5s;
}


.game-list li a img {
    display: block;
    margin: 0 auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.game-list li a .game-item-data {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
}

.game-list li a .game-item-data > div {
    width: 100%;
}

.game-list li a .game-item-data .game-item-title {
    color: #fff;
    line-height: 1.2;
}

.game-list li a .game-item-data .game-item-title strong {
    line-height: 1.2;
}

.game-list li a .game-item-data .game-item-button {
    width: 100%;
    max-width: 106px;
    background: #086ae3;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    line-height: 1.2;
    padding: 12px 0;
    transition: 0.5s;
    margin: 10px auto 0;
}

.game-list li a:hover:before {
    opacity: 0.8;
}


.game-list li a:hover .game-item-data {
    opacity: 1;
}


.btn-getbonus {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    background-color: #00c853;
    color: #FFF;
}

.btn-getbonus:hover {
    background-color: #00d85a;
    color: #FFF;
}



@media (max-width: 992px) {
    .bs-header .navbar-brand {
        color: #1753af;
    }
}

@media screen and (max-width: 980px) {
    .game-list li {
        width: calc(25% - 10px);
    }
}

@media screen and (max-width: 580px) {
    .game-list li {
        width: calc(33.33% - 10px);
    }

    .hero-caption {
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.9rem;
    }
}

@media screen and (max-width: 470px) {
    .game-list li {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 330px) {
    .game-list li {
        width: calc(100% - 10px);
    }
}


.hero img {
    height: 80%;
    transition: left .6s, right .6s;
    bottom: 0;
    position: absolute;
}

.hero img.left {
    left: 0;
}

.hero img.right {
    right: 0;
}


@media (min-width: 768px) {
    .hero img {
        height: 90%;
    }
    .hero img.left {
        left: 7%;
    }

    .hero img.right {
        right: 7%;
    }
}