/*
Theme Name: Betify
Theme URI: https://betify.info
Author: Betify
Author URI: https://betify.info
Description: Custom theme built from scratch
Version: 1.0
*/

/* GENERAL */
html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.progress {
    width: 100vw;
    height: 5px;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    display: none;
    z-index: 99;

    .progress-bar {
        height: 100%;
        background-color: #85FF00;
        width: 0;
    }

    @media screen and (max-width: 992px) {
        display: block;
    }
}

a,
a:hover,
a::before {
    color: #1ED760;
    text-decoration: none;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
}

section {
    @media screen and (max-width: 992px) {
        padding: 35px 0 !important;
    }

    @media screen and (max-width: 768px) {
        padding: 20px 0 !important;
    }
}

table {
    margin-bottom: 50px;

    @media screen and (max-width: 992px) {
        min-width: 100% !important;
    }

    @media screen and (max-width: 768px) {
        font-size: 0.8em;
    }
}

.table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

ul.list-check,
ul.list-uncheck {
    padding: 0;
    list-style-type: none;

    li {
        margin-bottom: 20px;
        color: #a1a1a1;

        &::before {
            width: 27px;
            height: 27px;
            content: '';
            display: inline-block;
            margin-right: 10px;
            margin-bottom: -7px;
        }
    }
}

ul.list-check li::before {
    background-image: url(img/list-check.webp);
    background-size: contain;
}

ul.list-uncheck li::before {
    border-radius: 100%;
    border: 1px solid #1ED760;
}

.col-lg-6 {
    .half-underline {
        position: relative;
        display: inline-block;

        &::after {
            width: 50px;
            height: 2px;
            content: "";
            position: absolute;
            top: -5px;
            left: 0;
            background-color: #1ED760;
        }
    }
}

.col-lg-12 {
    .half-underline {
        position: relative;
        display: inline-block;

        &::after {
            width: 50px;
            height: 2px;
            content: "";
            position: absolute;
            top: -5px;
            left: 35%;
            background-color: #1ED760;
        }
    }
}

.p-tab {
    color: #a1a1a1;

    span {
        color: #fff;
    }
}

/* HEADER */
.header {
    width: 100%;
    position: sticky;
    background-color: #000;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    z-index: 3;

    .logo {
        height: 100px;
        display: block;
        align-content: center;
        float: left;
        font-size: 2em;
        padding: 20px;
        text-decoration: none;

        img {
            width: 150px;
            max-width: 100%;
        }
    }

    .menu {
        height: 100px;
        margin: 0;
        padding: 0;
        position: relative;
        list-style: none;
        overflow: hidden;
        background-color: #000;
        display: flex;
        flex-flow: row wrap;
        clear: both;
        max-height: 0;
        align-items: center;
        transition: max-height 0.5s ease-out;

        li {
            display: inline-block;
            text-align: center;

            a {
                display: block;
                padding: 20px;
                color: #fff;

                &:hover {
                    color: #1ED760;
                }
            }

            /*&:last-child {
                width: 100px;
                position: absolute;
                right: 0;
                border-radius: 10px;
                background-color: #1ED760;
                color: #fff;

                &:hover {
                    background-color: #fff;
                    color: #1ED760;
                }
            }*/
        }
    }

    .menu-ctas {
        display: flex !important;
        gap: 10px;
        position: absolute;
        right: 20px;
        align-items: center;

        .menu-login,
        .menu-register {
            border-radius: 10px;
            font-weight: 800;
            transition: 0.5s;
            -webkit-transition: 0.5s;
            -o-transition: 0.5s;
            -moz-transition: 0.5s;

            a {
                display: inline-block;
                padding: 10px 15px;
                transition: 0.5s;
                -webkit-transition: 0.5s;
                -o-transition: 0.5s;
                -moz-transition: 0.5s;
            }

            &:hover {
                background-color: #fff;
                color: #1ED760;
            }
        }

        .menu-login {
            border: 1px solid #1ED760;
            background-color: transparent;

            a {
                color: #1ED760;
            }
        }

        .menu-register {
            background-color: #1ED760;
            color: #fff;

            a {
                color: #000;
            }
        }
    }

    .menu-icon {
        cursor: pointer;
        display: inline-block;
        padding: 47px 20px;
        position: relative;
        user-select: none;
        margin-bottom: 0;

        .navicon {
            background: #fff;
            display: block;
            height: 3px;
            position: relative;
            transition: background 0.5s;
            width: 20px;
            border-radius: 10px;

            &:hover,
            &:hover::before,
            &:hover::after {
                background: #1ED760;
            }

            &::before,
            &::after {
                background: #fff;
                content: '';
                display: block;
                height: 100%;
                position: absolute;
                transition: all 0.5s;
                width: 100%;
                border-radius: 10px;
            }

            &::before {
                top: 6px;
            }

            &::after {
                top: -6px;
            }
        }
    }

    .menu-btn {
        display: none;
    }

    @media (min-width: 1400px) {
        .logo img {
            width: 150px;
        }

        .menu {
            height: 100px;
        }
    }

    @media (min-width: 992px) {
        .menu {
            max-height: none;
            clear: none;
            line-height: 30px;
        }

        .menu-icon {
            display: none;
        }

        li {
            float: left;

            a {
                padding: 15px 20px;
                line-height: 30px;
            }
        }
    }

    @media screen and (max-width: 1200px) {
        .menu {
            li {
                a {
                    padding: 10px;
                    font-size: .95rem;
                }
            }
        }
    }

    @media screen and (max-width: 992px) {
        .menu {
            height: auto;
            display: block;

            li {
                a {
                    padding: 20px;
                    font-size: 1rem;
                }
            }
        }

        .menu-icon {
            float: right;
        }

        .menu-btn {
            &:checked {
                ~.menu {
                    max-height: fit-content;
                    display: block;

                    li {
                        display: block !important;
                        line-height: 20px;
                    }
                }

                ~.menu-icon {
                    .navicon {
                        background: transparent;

                        &::before {
                            transform: rotate(-45deg);
                        }

                        &::after {
                            transform: rotate(45deg);
                        }
                    }

                    &:not(.steps) .navicon::before,
                    &:not(.steps) .navicon::after {
                        top: 0;
                    }
                }

                ~.menu-btn:hover {
                    color: #1ED760;
                }
            }

            &:not(:checked)~.menu {
                height: 0;
            }
        }

        li:last-child {
            width: fit-content;
            position: relative;
            margin: auto;
            right: 0;
            border-radius: 0;
        }

        .menu-ctas {
            .menu-login, .menu-register {
                margin: 20px 0 30px;
            }
        }
    }

    @media screen and (max-width: 500px) {
        .logo {
            padding: 20px 10px;

            img {
                width: 120px;
            }
        }
    }

    @media screen and (max-width: 420px) {
        .logo img {
            width: 90px;
        }
    }

    @media screen and (max-width: 350px) {
        .logo img {
            width: 50px;
        }
    }
}

.beneath-header {
    padding: 10px 0;
    background-color: #141414;

    .container {
        display: flex;
        justify-content: space-around;
        text-align: center;

        a {
            color: #fff;

            &:hover {
                color: #1ED760;
            }
        }
    }

    @media screen and (max-width:768px) {
        font-size: .85em;
    }
}

.beneath-header-2 {
    padding: 25px 0;
    background-color: #000;

    .container {
        display: flex;
        justify-content: space-around;
        scrollbar-width: none;
        text-align: center;

        a {
            padding: 10px 15px;
            background-color: #141414;
            color: #a1a1a1;
            border-radius: 10px;

            &:hover,
            &:active,
            &.active {
                background-color: #1ED760;
                color: #fff;
            }
        }
    }

    @media screen and (max-width: 992px) {
        padding: 15px 0;

        .container {
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            gap: 10px;
            padding: 0 15px;
            justify-content: flex-start;

            a {
                flex: 0 0 auto;
                white-space: nowrap;
                margin: 0;
                padding: 10px 20px;
            }
        }

        &.fixed {
            width: 100vw;
            position: fixed;
            top: 0;
            z-index: 98;
            left: 0;
            right: 0;
        }
    }
}




/* FOOTER */

footer {
    width: 100%;
    position: absolute;
    background-color: #000;
    color: #a6a6a6;

    .row {
        margin-bottom: 2.5rem !important;

        .flex-wrap {
            img {
                margin: auto 5px;
            }
        }
    }

    @media (max-width: 768px) {
        .container {
            text-align: center;
        }
    }
}

/* ACCUEIL */
.section-hero {
    padding: 50px 0;
    background-color: #141414;

    .container {
        background: linear-gradient(to right, #141414 0%, #141414 75%, #232323 100%);
        border-radius: 20px;
    }
    h1,
    h2,
    h3,
    h4 {
        color: #fff;
        font-weight: 800;
    }

    p {
        color: #a1a1a1;
    }

    .hero-intro-title {
        margin-bottom: .5rem;
        line-height: 1.2;
        color: #fff;
        font-weight: 800;
        font-size: 1.5rem;
    }

    .hero-intro-catch {
        margin-bottom: .5rem;
        line-height: 1.2;
        font-size: 1.25rem;
        color: #1ED760;
    }

    .col-12:nth-child(2) {
        padding-right: 50px;
        text-align: right;
    }

    .section-hero-cta {
        a {
            width: 80%;
            display: block;
            float: right;
            text-align: center;
            padding: 15px 30px;
            border-radius: 10px;
            background-color: #1ED760;
            color: #000;
            font-weight: 800;

            &::before {
                content: "";
                display: inline-block;
                width: 24px;
                height: 24px;
                background-image: url(img/picto_gift.webp);
                background-size: cover;
                background-repeat: no-repeat;
                vertical-align: middle;
                margin: 0 14px 2px 0;
            }

            &:hover {
                background-color: #000;
                color: #fff;

                &::before {
                    filter: invert(1);
                }
            }

            @media screen and (max-width:992px) {
                margin: auto;
                float: none;
            }
        }
    }

    @media screen and (max-width:992px) {
        img {
            max-width: 350px !important;
        }
    }
}

.section-links {
    padding: 50px 0;
    background-color: #141414;

    .container {
        margin-top: 0 !important;
    }

    h3 {
        color: #fff;
    }
}

.section-choices {
    padding: 50px 0;
    background-color: #141414;

    .row {
        justify-content: space-between;
    }

    .col-12 {
        padding: 20px 0 20px 20px;
        background: linear-gradient(to right, #232323 0%, #141414 25%, #141414 100%);
        border-radius: 20px;

        &:nth-child(2) {
            overflow: hidden;
        }

        .col-3 {
            margin-bottom: 10px;
        }

        .row {
            .col-7:nth-child(2) {
                .section-img {
                    width: 85%;
                    position: absolute;
                    top: -20px;
                }
            }
        }
    }

    p {
        color: #a1a1a1;
    }

    .title-img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        margin-right: 10px;
    }

    .title-container {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;

        h3, h4 {
            color: #fff;
        }
    }

    .section-img {
        width: 100%;
        height: auto;
    }

    .section-choices-cta {
        a {
            width: 110%;
            display: block;
            text-align: center;
            padding: 10px 15px;
            border-radius: 10px;
            background-color: #1ED760;
            color: #000;
            font-size: .95em;
            font-weight: 800;

            &::before {
                content: "";
                display: inline-block;
                width: 24px;
                height: 24px;
                background-image: url(img/picto_gift.webp);
                background-size: cover;
                background-repeat: no-repeat;
                vertical-align: middle;
                margin: 0 7px 2px 0;
            }

            &:hover {
                background-color: #000;
                color: #fff;

                &::before {
                    filter: invert(1);
                }
            }
        }
    }

    &.section-choices.section-choices-casino {
        .row.g-2 {
            justify-content: flex-start;
        }

        .col-12 {
            padding: 30px;
        }
    }

    @media screen and (max-width: 768px) {
        .section-img {
            width: 80%;
        }
    }
}

#bonuses, #mobile-app, #how-to-bet, #how-to-register, #how-to-connect, #how-to-deposit, #first-bet, #how-to-withdraw, #available-bets, #casino, #section-hero-bonus, .section-about-games, .section-banner-page, .section-banner-bonuses, #bonuses, #mobile-app, .section-about-bonuses, #bonus-casino-betify, .section-about, .section-about-page, .section-intro-promocode {
    h2 {
        font-size: 1.75rem;
    }
}

.section-intro-payments {
    h1 {
        color: #fff;
        font-size: 1.75rem;
    }
}

.section-about {
    padding: 50px 0;
    background-color: #141414;

    .col-12 {
        align-content: center;

        img {
            width: 500px;
            max-width: 100%;
            display: block;
            margin: auto;
            padding: 50px;
        }

        &.col-lg-4 img {
            width: 400px;
        }
        h1,
        h2,
        h3,
        h4,
        h5 {
            color: #fff;
        }

        p {
            color: #a1a1a1;
        }
    }

    .table {

        td,
        th {
            border: 1px solid #3c3b3b;
            color: #fff;
        }
    }

    .section-about-cta {
        a {
            width: fit-content;
            min-width: 240px;
            display: block;
            margin: 50px auto 0;
            text-align: center;
            padding: 15px 30px;
            border-radius: 10px;
            background-color: #1ED760;
            color: #000;
            font-weight: 800;

            &:hover {
                background-color: #000;
                color: #fff;
            }
        }
    }

    .section-about-cta-page {
        a {
            width: 280px;
            margin: 50px 0;
            padding: 10px 20px;
            border-radius: 50px;
            color: #fff;
            font-weight: 500;

            @media screen and (max-width:992px) {
                margin: auto !important;
            }
        }
    }

    &.section-about-games {
        .row {
            justify-content: space-between;
        }

        .col-lg-2 {
            width: 20%;
            max-width: 20%;
            flex: 0 0 20%;
        }
    }

    &.section-about-casino {
        .col-12 {
            align-content: flex-start;

            img {
                padding: 20px;
            }
        }
    }

    &.section-about-bonuses {
        .col-lg-12 {
            .half-underline {
                position: relative;
                display: inline-block;

                &::after {
                    width: 50px;
                    height: 2px;
                    content: "";
                    position: absolute;
                    top: -5px;
                    left: 0;
                    background-color: #1ED760;
                }
            }
        }

        .table {
            border-radius: 20px;
            border: 1px solid #fff;

            table {
                margin-bottom: 0;

                th {
                    padding: 1em 1.5em;
                    border-bottom: 1px solid #fff;
                    background-color: #2F4B39;

                    &:first-child {
                        border-radius: 20px 0 0 0;
                    }

                    &:last-child {
                        border-radius: 0 20px 0 0;
                    }
                }

                td,
                tr {
                    padding: 1em 1.5em;
                    border-bottom: 1px solid #fff;
                    border-radius: 20px;

                    &:first-child {
                        border-right: 1px solid #fff;
                    }
                }

                tr {

                    &:last-child,
                    &:last-child td {
                        border-bottom: none;
                    }
                }
            }
        }
    }

    &.section-about-promocode {
        .col-lg-12 {
            .half-underline {
                &::after {
                    left: 0;
                }
            }
        }

        .section-about-cta {
            a {
                margin: 50px auto 0;
                border-radius: 50px;
                color: #fff;
            }
        }

        .table {
            border-radius: 20px;
            border: 1px solid #fff;

            table {
                margin-bottom: 0;

                td,
                th,
                tr {
                    padding: 1em 1.5em;
                    border-bottom: 1px solid #fff;
                    border-radius: 20px;
                }

                td,
                th {
                    &:first-child {
                        border-right: 1px solid #fff;
                    }
                }

                tr {

                    &:last-child,
                    &:last-child td {
                        border-bottom: none;
                    }
                }
            }
        }
    }

    &.section-about-payments {
        .col-12 {
            p {
                color: #fff;
            }
        }

        ul {

            &.list-check,
            &.list-uncheck {
                li {
                    color: #fff;
                }
            }
        }

        .table {
            border-radius: 20px;
            border: 1px solid #fff;

            table {
                margin-bottom: 0;

                th {
                    padding: 1em 1.5em;
                    border-bottom: 1px solid #fff;
                    background-color: #3A435A;

                    &:first-child {
                        border-radius: 20px 0 0 0;
                    }

                    &:last-child {
                        border-radius: 0 20px 0 0;
                    }
                }

                td,
                tr {
                    padding: 1em 1.5em;
                    border-bottom: 1px solid #fff;
                    border-radius: 20px;
                }

                td,
                th {
                    &:first-child {
                        border-right: 1px solid #fff;
                    }
                }

                tr {

                    &:last-child,
                    &:last-child td {
                        border-bottom: none;
                    }
                }
            }
        }

        .section-about-cta {
            a {
                width: fit-content;
                margin: 50px auto 0;
                border-radius: 50px;
                color: #fff;
            }
        }
    }
}

.section-features {
    padding: 50px 0;
    background-color: #141414;

    .row {
        &:first-child {
            text-align: center;
        }
    }

    .col-12 {
        align-content: center;
        h1,
        h2,
        h3,
        h4,
        h5 {
            color: #fff;
        }

        h3 {
            font-size: 1.25rem;
        }

        p {
            color: #a1a1a1;
        }
    }

    .col-lg-3 img {
        max-width: 42px;
    }

    .section-features-cta {
        a {
            width: 240px;
            display: block;
            margin: auto;
            text-align: center;
            padding: 15px 30px;
            border-radius: 10px;
            background-color: #1ED760;
            color: #000;
            font-weight: 800;

            &:hover {
                background-color: #000;
                color: #fff;
            }
        }
    }

    @media screen and (max-width:768px) {
        .col-12 {
            text-align: center;
        }

        .col-lg-3 img {
            margin: auto;
        }
    }
}

.banner-app {
    padding: 50px 0;
    background-color: #141414;

    .container {
        background-color: #232323;
        border-radius: 20px;
    }

    .col-lg-4 {
        padding: 20px 50px;
        align-content: center;

        &:nth-child(2) {
            padding: 50px 0;
        }

        &:first-child img {
            width: 220px;
            max-width: 100%;
        }
    }

    .banner-app-download {
        margin-bottom: .5rem;
        line-height: 1.2;
        color: #1ED760;
        font-size: 2.5em;
        font-weight: 900;
    }

    .banner-app-download-text {
        margin-bottom: .5rem;
        line-height: 1.2;
        color: #fff;
        font-size: 1.5em;
        font-weight: 300;
    }

    a {
        width: 100%;
        max-width: 280px;
        margin: auto;
        display: flex;
        justify-content: flex-start;
        padding: 10px 15px 10px 25px;
        border-radius: 20px;
        background-color: #1ED760;
        color: #000;
        font-weight: 800;

        &:first-child {
            margin-bottom: 15px;
        }

        .icon {
            margin-right: 15px;
            align-content: center;
        }

        img {
            max-height: 45px;
            transition: .5s;
        }

        .text {
            text-align: left;
            line-height: 20px;
            font-size: 1.5em;

            span {
                font-weight: 400;
                font-size: 75%;
            }
        }

        &:hover {
            background-color: #000;
            color: #fff;

            img {
                filter: invert(1);
            }
        }
    }

    @media screen and (max-width: 1200px) {
        a .text {
            font-size: 1.25em;
        }
    }

    @media screen and (max-width: 992px) {
        .container {
            max-width: min-content;

            .row {
                flex-direction: column;
            }
        }

        .col-lg-4,
        .col-lg-4:nth-child(2) {
            padding: 50px;
            text-align: center;
        }
    }
}

.banner-subscribe {
    padding: 50px 0;
    background-color: #141414;

    .container {
        background-color: #232323;
        border-radius: 20px;
    }

    .col-lg-8 {
        padding: 50px;
        align-content: center;
    }

    .col-lg-4:nth-child(2) {
        padding: 50px;
        align-content: center;
        background-image: url(img/home/banner/payments.webp);
        background-size: 70%;
        background-repeat: no-repeat;
        background-position: right bottom;
    }
    h1,
    h2,
    h3,
    h4,
    h5 {
        color: #fff;
    }

    p,
    span {
        color: #a1a1a1;
    }

    input[type="email"] {
        width: 100%;
        max-width: 350px;
        height: 42px;
        margin-bottom: 20px;
        padding: 5px 15px;
        border-radius: 50px;
        border: 1px solid #fff;
        background-image: url(img/home/banner/mail.webp);
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: calc(100% - 20px);
        background-color: transparent;
        color: #fff;

        &:focus-visible {
            border: none;
            outline: #1ED760 auto 1px;
        }
    }

    input[type="checkbox"] {
        width: 20px;
        height: 20px;
        border-radius: 5px;
        accent-color: #1ED760;
        cursor: pointer;

        &:not(:checked):not(:disabled) {
            appearance: none;
            margin-bottom: 0;
            border: 1px solid #a1a1a1;
        }

        &:checked {
            border-radius: 5px;
        }
    }

    span {
        margin-left: 5px;
    }

    @media screen and (max-width: 992px) {
        .col-lg-4:nth-child(2) {
            display: none;
        }
    }

    @media screen and (max-width: 768px) {
        input[type="email"] {
            max-width: 100%;
        }
    }
}


.section-payments {
    padding: 50px 0;
    background-color: #141414;

    .table {
        border-radius: 20px 20px 0 0;

        thead {
            background-color: #1ED760;

            tr {
                th {
                    padding: 1em 1.5em;
                    color: #000;
                }
            }
        }

        tbody {
            border: 1px solid #141414;

            td {
                border: 1px solid #141414;
            }
        }

        td,
        th {
            border: 1px solid #141414;
            color: #fff;
        }

        td {
            padding: 1em 1.5em;
        }
    }
}

.section-faq {
    padding: 50px 0;
    background-color: #141414;

    h2, h3 {
        color: #fff;
    }

    .rolling-list {
        dt {
            margin-bottom: 20px;
            padding: 20px 80px 20px 20px;
            border: 1px solid #3c3b3b;
            border-radius: 10px;
            background: transparent;
            color: #1ED760;
            font-weight: 700;
            cursor: pointer;
            transition: 0.5s;

            i {
                float: right;
                font-size: 1.25em;
                font-style: normal;
                transform: translateY(-3px);
                transition: 0.5s;
            }

            &:hover {
                background: #1ED760;
                color: #000;
            }

            &.expanded {
                margin-bottom: 0;
                background: #1ED760;
                color: #000;

                i {
                    transform: rotate(45deg) translateY(-3px);
                }
            }
        }

        dd {
            display: none;
            margin: 0 0 20px;
            padding: 10px;
            color: #a1a1a1;
        }
    }
}

@media screen and (max-width: 992px) {

    .iphone-1,
    .iphone-3 {
        display: none;
    }
}

.section-banner-page {
    padding: 50px 0;
    background-color: #141414;

    .container {
        align-content: center;
        background: linear-gradient(to right, #232323 0%, #232323 1.5%, #2b6dbd 100%);
        border-radius: 20px;

        .col-lg-6,
        .col-lg-12 {
            padding: 50px;
        }

        .col-lg-6 {

            h3,
            p {
                color: #fff;
            }
        }
    }

    .section-about-cta-page {
        a {
            margin: 50px 0 0;
            color: #000;
        }
    }

    .col-12 {
        img {
            max-width: 100%;
            display: block;
            margin: auto;
            padding: 0 20px;
        }
    }
}

/*.section-about-games-casino .col-12.col-lg-4 img {
    max-width: 100%;
}*/

.section-intro-promocode {
    padding: 50px 0;
    background-color: #141414;

    .col-12 {
        align-content: center;
    }

    .row {
        &:first-child {
            .col-lg-12 {
                text-align: center;
            }
        }

        .col-12 {
            color: #fff;

            h2 {
                font-size: 3em;
                font-weight: 800;
            }

            h3, .bonus-subtext {
                font-size: 2em;
                font-weight: 800;

                &::before {
                    width: 35px;
                    height: 35px;
                    content: '';
                    display: inline-block;
                    margin-right: 15px;
                    margin-bottom: -5px;
                    background-image: url(img/promocode/green-gift.webp);
                    background-size: contain;
                    background-repeat: no-repeat;
                }
            }

            p {
                margin-bottom: 50px;
                color: #fff;
            }
        }

        .col-lg-3 {
            img {
                max-width: 42px;
            }
        }

        .section-intro-promocode-cta {
            a {
                &:hover {
                    background-color: #000;
                    color: #fff;
                }
            }
        }

        .section-promocode {
            width: 100%;
            max-width: 700px;
            margin: 25px auto;
            padding: 25px 50px;
            border-top: 1px solid #a1a1a1;
            border-bottom: 1px solid #a1a1a1;

            h5 {
                color: #85FF00;
            }

            p {
                margin-bottom: 0;
            }

            img {
                max-width: 70px;
                transition: .5s;

                @media screen and (max-width:768px) {
                    max-width: 50px;
                    transform: rotate(90deg);
                }
            }

            a {
                width: 240px;
                display: block;
                margin: auto;
                text-align: center;
                padding: 15px 30px;
                border-radius: 50px;
                background-color: #fff;
                color: #000;
                font-weight: 800;
                transition: .5s;

                &:hover {
                    background-color: #000;
                    color: #fff;
                }
            }
        }

        .section-intro-promocode-cta {
            a {
                width: 240px;
                display: block;
                margin: auto;
                text-align: center;
                padding: 15px 30px;
                border-radius: 50px;
                background-color: #1ED760;
                color: #fff;
                font-weight: 600;

                &::before {
                    content: "";
                    display: inline-block;
                    width: 24px;
                    height: 24px;
                    background-image: url(img/promocode/white-gift.webp);
                    background-size: cover;
                    background-repeat: no-repeat;
                    vertical-align: middle;
                    margin: 0 7px 2px 0;
                }
            }
        }

    }
}