body {
    color: #fff;
    background-color: #253231;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

.header {
    align-items: center;
    background-color: #1b3836;
    display: flex;
    gap: 10px;
    min-height: 70px;
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
}

.container {
    max-width: 1170px;
    padding: 0;
}

nav {
    width: 100%;
}


.navbar {
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.navbar>.container-fluid {
    padding: 0;
    justify-content: center;
    max-width: 1479px;
}

.navbar .menu-items {
    display: flex;
}

.menu-items ul {
    padding: 0;
}

.navbar .nav-container li {
    list-style: none;
}

.navbar .nav-container a {
    text-decoration: none;
}

.nav-container {
    display: block;
    position: relative;
}

.nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 15px;
    left: 5px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.nav-container .hamburger-lines {
    display: block;
    height: 26px;
    max-width: 1650px;
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
    background-color: #1b3836;
    padding-top: 75px;
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
    text-align: center;
    align-items: flex-start;
}

.navbar ul {
    margin: 0;
    width: 100%;
}

.navbar .menu-items li {
    font-size: 16px;
    font-weight: 500;
}

.menu-items li a {
    display: flex;
    color: #fff;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px !important;
}


.nav-container input[type="checkbox"]:checked~.menu-items {
    transform: translateX(0);
    overflow-y: scroll;
    width: -webkit-fill-available;
    position: absolute;
    left: 0;
    top: 0;

}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked~.logo {
    display: none;
}

.header-btns {
    display: flex;
    gap: 15px;
}

.o-btn {
    border: none;
    border-radius: 100px;
    color: #1b2827;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: .15s;
    z-index: 2;
}

.btns-login {
    background-color: #ff9533;
}

.btns-registration {
    background-color: #ffd36c;
}

.btns-login:hover {
    background-color: #ffaa5c;
    color: #1b2827;
}

.btns-registration:hover {
    background-color: #ffdc89;
    color: #1b2827;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu li a {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    gap: 5px;
    line-height: 129%;
    padding: 0 15px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s;
}

.main-menu-content {
    padding: 0;
}

.mobile {
    display: none !important;
}

.top-section {
    margin-top: 100px;
}

.contents-wrappers p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin: 0 auto;
    max-width: 770px;
    text-align: center;
}

.contents-wrappers h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 40px 0;
    text-align: center;
}

.button {
    background: #2f615d;
    border: none;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 40px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: .15s;
    z-index: 2;
}

.button:hover {
    background: #43706d;
    color: #fff;
}

.greenShadow {
    background: #ffd36c;
    box-shadow: 0 6px 40px #e1d36b66;
    color: #1b2827;
}

.greenShadow:hover {
    background: #ffdc89;
    box-shadow: none;
    color: #1b2827;
}

.main-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.frame img {
    margin-top: 65px;
    width: 100%;
}

.glance {
    padding: 80px 0;
    width: 100%;
}

.component-title-header {
    align-items: center;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.component-title-icon {
    align-items: center;
    background: #1b2827;
    border-radius: 5px;
    display: flex;
    height: 50px;
    justify-content: center;
    padding: 10px;
    width: 50px;
}

.component-title-text {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
}

.table-wrapper {
    background-color: #1b2827;
    border-radius: 10px;
    padding: 20px;
}

table {
    border-collapse: separate;
    border-spacing: 6px;
    width: 100%;
}

table th {
    font-weight: 400;
    background: #253231;
    border-radius: 5px;
    font-size: 16px;
    padding: 20px;
    text-align: start;
    width: 50%;
}

table td {
    font-weight: 700;
    color: #fff;
    background: #253231;
    border-radius: 5px;
    font-size: 16px;
    padding: 20px;
    text-align: start;
    width: 50%;
}

.games-wrapper {
    display: grid;
    flex-wrap: wrap;
    gap: 20px 14px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-content: center;
    margin-bottom: 20px;
}


@keyframes playBtn-Animation {
    0% {
        height: 40px;
        opacity: 1;
        width: 40px
    }

    40% {
        opacity: 1
    }

    to {
        height: 70px;
        opacity: 0;
        width: 70px
    }
}

@keyframes playBtn-AnimationMobile {
    0% {
        height: 40px;
        opacity: 1;
        width: 40px
    }

    40% {
        opacity: 1
    }

    to {
        height: 50px;
        opacity: 0;
        width: 50px
    }
}

.game {
    background: #2f615d;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none
}

.game-play-icon__wrap {
    display: block
}

.game-play-icon,
.game-play-icon__wrap {
    height: 24px;
    width: 24px
}

.game-img-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: auto
}

.game-provider {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 10px
}

.game-play-overlay {
    align-items: center;
    background: #000c;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: .3s;
    width: 100%;
    z-index: 2
}

.game-play {
    color: #fff;
    font-size: 14px;
    font-weight: 600
}

.game-play-icon__wrap {
    align-items: center;
    background: #ffd36c;
    border-radius: 100%;
    color: #fff;
    display: flex;
    height: 50px;
    justify-content: center;
    margin-bottom: 20px;
    width: 50px
}

.game-play-icon__wrap:after,
.game-play-icon__wrap:before {
    animation: playBtn-Animation 1.1s infinite;
    border: 1px solid #ffd36c;
    border-radius: 50%;
    content: "";
    display: none;
    height: 60px;
    opacity: 0;
    position: absolute;
    width: 60px
}

.game-play-icon__wrap:after {
    animation-delay: .2s !important
}

.game:hover .game-play-overlay {
    opacity: 1
}

.game:hover .game-play-icon__wrap:after,
.game:hover .game-play-icon__wrap:before {
    display: block
}

.game-provider {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
}

.auto {
    margin: auto;
    width: fit-content;
}

.bonuses {
    padding: 80px 0;
}

.component-title-desc {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px !important;
    text-align: justify !important;
    max-width: 100% !important;
}

.bonuses-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.bonus {
    background: #1b2827;
    border-radius: 10px;
    overflow: hidden;
}

.bonus img {
    width: 100%;
}

.bonus-info {
    padding: 30px;
}

.bonus-title {
    color: #ffd36c;
    font-size: 20px;
    font-weight: 700;
    text-align: start;
    text-transform: capitalize;
}

.bonus-content {
    margin: 0;
    padding: 0;
}

.bonus-content li:first-child {
    margin-top: 20px;
}

.bonus-content li {

    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    list-style: none;
    margin-bottom: 8px;
    max-width: 400px;
    padding-left: 16px;
    position: relative;
    text-transform: none;

}

.bonus-content li:before {
    background-color: #ffd36c;
    border-radius: 100%;
    content: " ";
    display: block;
    height: 5px;
    left: -11px;
    margin-left: 10px;
    position: absolute;
    top: 10px;
    width: 5px;
}

.bonuses-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.online-casino-content {
    display: inline-grid;
    gap: 20px 30px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
}

.online-casino-content-item {
    align-items: center;
    background: #1b2827;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.online-casino-content-item-title {
    color: #ffd36c !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 20px 0 !important;
    text-transform: capitalize;
}

.online-casino-content-item-desc {
    text-align: left !important;
}

.deposit {
    padding: 80px 0;
}

.deposit-table {
    background: #38504e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.deposit-table table {
    border-spacing: 0 6px;
}

.deposit-table th {
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    text-align: right;
    background: transparent;
    width: unset;
}

.deposit-table td:first-child {
    border-radius: 5px 0 0 5px;
}

.deposit-table td:last-child {
    border-radius: 0 5px 5px 0;
}

.deposit-table td {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 0px 20px;
    text-align: center;
    width: unset;
    border-radius: unset;
    background: unset;
}

.deposit-table-tr:nth-child(odd) {
    background: #253231;
}

.deposit-table-tr:nth-child(even) {
    background: #1b2827;
}

.faq {
    padding-bottom: 50px;
}

.faq-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.accordion-button:focus {
    border-color: unset;
    box-shadow: unset;
}

.accordion-button:not(.collapsed) {
    background-color: #ffd36c;
    color: #1b2827;
    box-shadow: none;
}

.accordion-button {
    font-size: 24px;
    font-weight: 700;
    background: #1b2827;
    color: #FFFFFF;
    border-radius: 5px !important;
    padding: 25px 30px;

}

.accordion-item {
    color: unset;
    background-color: unset;
    border: unset;
    margin-top: 20px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(./assets/arrow-down-black.png) !important;
}

.accordion-button::after {
    background-image: url(./assets/arrow-down-white.png) !important;
}

.accordion-body {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding: 20px 20px 0;
}

footer {
    background: #173336;
    padding: 60px 16px 40px;
    position: relative;
}

.footer-content {
    margin: auto;
    max-width: 1170px;
}

.footer-content-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-content-top-right {
    display: flex;
    gap: 20px;
}

.footer-ul {
    color: #e0e0e0e6;
    font-size: 16px;
    font-weight: 700;
    list-style: none;
}

.footer-li {
    font-size: 14px;
    margin: 20px 0 0;
    width: 200px;
}

.footer-li-link {
    color: #e0e0e066;
    cursor: pointer;
    font-weight: 400;
    text-decoration: none;
    transition: .2s;
}

.footer-li-link:hover {
    color: #fff;
}

.footer-medium {
    border-bottom: 1px solid #2d5c59;
    display: flex;
    justify-content: flex-end;
    padding: 30px 0;
    flex-wrap: wrap;
}

.footer-medium-block {
    align-items: center;
    display: flex;
    gap: 20px;
}

.footer-medium.second {
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.footer-medium-reviews {
    opacity: .7;
    transition: .2s;
}

.footer-medium-reviews:hover {
    opacity: 1;
}

.footer-text {
    color: #ffffff80;
    font-size: 12px;
    font-weight: 400;
    margin-top: 30px;
}

.deposit-table-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.footer-dropdown {
    display: none;
}

.dropdown-title-icon-wrapper {
    align-items: center;
    background: #253231;
    border-radius: 3px;
    display: flex;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.dropdown-title {
    align-items: center;
    background-color: initial;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    gap: 10px;
    justify-content: space-between;
    padding: 0;
    transition: .3s;
    width: 100%;
}

.dropdown {
    background-color: transparent;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.panel {
    /* padding: 0 18px; */
    display: none;
    overflow: hidden;
}

.footer-content-dropdown {
    width: 100%;
}

.active .dropdown-title-icon {
    transform: rotate(180deg);
}

.dropdown-title-icon {
    transition: .3s;
}

.dropdown-content {
    list-style: none;
    padding: 0;
    transition: .3s;
}

.dropdown-content-item {
    margin-top: 20px;
}

.footer-dropdown {
    display: none;
}

.mobile-frame {
    display: none !important;
}

.bonuses-page {
    height: fit-content;
    margin: auto;
    max-width: 1170px;
    position: relative;
}

.bonuses-desc {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.space {
    margin-bottom: 50px;
    margin-top: 40px;
}

.bonuses-item {
    margin-bottom: 80px;
}

.bonuses-item-img {
    border-radius: 10px;
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

.bonuses-item-text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}


@media (max-width: 1200px) {
    .online-casino-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .contents-wrappers {
        padding: 0px 16px 40px;
    }
}

@media (max-width: 980px) {
    .online-casino-content {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .logo-img {
        position: absolute;
        left: 60px;
    }

    .logo {
        width: 92px;
        height: 40px;
    }

    .mobile {
        display: flex !important;
    }

    .desktop {
        display: none;
    }

    .nav-container .hamburger-lines {
        padding: 0 10px;
    }

    .nav-container .checkbox {
        left: 14px;
    }

    .deposit-table {
        overflow: scroll;
        padding: 6px 14px 6px 14px;
    }
}

@media (min-width: 992px) {
    .img-wrapper {
        display: none;
    }

    .hamburger-lines {
        padding-right: 10px;
    }

}

@media (max-width: 700px) {
    .faq {
        padding-bottom: 0px;
    }

    .bonuses-item {
        margin-bottom: 40px;
    }

    .footer-medium.second {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-medium {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .accordion-button {
        font-size: 20px;
        text-align: start;
    }

    .faq-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .component-title-header {
        gap: 10px;
        margin-bottom: 20px;
    }

    .component-title-text {
        font-size: 20px;
        text-align: start;
    }

    .component-title-icon {
        height: 40px;
        width: 40px;
    }

    .component-title-icon img {
        height: 22px;
        width: 22px;
    }

    .contents-wrappers h1 {
        font-size: 24px;
        line-height: 125%;
        margin: 0 0 16px;
    }

    .footer-content-top {
        align-items: center;
        flex-direction: column;
    }

    .footer-content-top-left {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-ul-wrapper {
        display: none;
    }

    .footer-dropdown {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
    }

    .footer-content-top-right {
        width: 100%;
    }

    .deposit {
        padding: 40px 0;
    }

    .glance {
        padding: 40px 0;
    }

    .frame img {
        margin-top: 28px;
    }

    .bonuses-buttons {
        flex-direction: column;
        margin-top: 20px;
    }

    .bonuses-wrapper {
        grid-template-columns: 1fr;
    }

    .bonuses {
        padding: 40px 0;
    }

    .table-wrapper {
        padding: 6px;
    }

    .games-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 14px 6px;
    }

    .online-casino-content {
        display: flex;
        flex-direction: column;
    }

    .main-buttons {
        flex-direction: column;
        margin-top: 20px;
    }
}


@media (max-width: 520px) {
    .desktop-frame {
        display: none;
    }

    .mobile-frame {
        display: block !important;
    }
}

@media (max-width: 500px) {
    .header-btns {
        gap: 5px;
    }
}

@media (min-width: 481px) {
    .header-align {
        display: none;
    }
}


@media (max-width: 480px) {
    .logo {
        margin: auto;
        text-align: center;
        inset: 55px 0 0;
    }

    .nav-container .hamburger-lines {
        gap: 0px;
    }

    .logo {
        margin: auto;
    }

    .nav-container input[type="checkbox"]:checked~.menu-items {
        width: -webkit-fill-available;
    }
}

@media (max-width: 414px) {


    .logo-img {
        position: unset;
        margin-left: 10px;
    }
}

@media (max-width: 395px) {
    .footer-medium.second {
        justify-content: space-around;
    }
}
@media (max-width: 390px) {
        .logo {
        width: 100%;
    }
}