.single-casino {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.single-casino .section-top {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    min-height: 756px;
    flex: 1;
}
.single-casino .container {
    max-width: 1195px;
}
.single-casino .header-row {
    display: flex;
    justify-content: space-between;
    padding: 48px 20px 0;
    align-items: center;
}
.single-casino .header-row .logo img {
    max-width: 256px;
    max-height: 150px;
    object-fit: contain;
}
.single-casino .header-row .button {
    font-family: "Bebas Neue", Sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1em;
    text-decoration: none;
    fill: #F8F9FA;
    color: #F8F9FA;
    background-color: #FFFFFF00;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #F8F9FA;
    border-radius: 5px 5px 5px 5px;
    padding: 8px 24px 4px 24px;
}
.single-casino .header-row .button:hover {
    color: #212529;
    background-color: #F8F9FA;
    border-color: #F8F9FA;
}
.content-row {
    padding: 10px 20px;
}
.content-row .title {
    color: #FFFFFF;
    font-family: "Oswald", Sans-serif;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5em;
    text-align: left;
    margin-bottom: 10px;
}
.content-row .heading-title {
    color: #FFFFFF;
    font-family: "Oswald", Sans-serif;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}
.content-row .button {
    display: inline-block;
    font-family: "Oswald", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.5em;
    fill: #000000;
    color: #000000;
    background-color: #34FFEB;
    border-radius: 10px 10px 10px 10px;
    padding: 6px 12px 8px 12px;
    margin: 15px 0;
    text-decoration: none;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.025);
    }
    100% {
        transform: scale(1);
    }
}
.content-row .button:hover {
    background: linear-gradient(0deg, #26b7a9 0%, rgba(16, 231, 200, 0.73) 100%), linear-gradient(180deg, rgba(236, 236, 236, 0.84) 0%, #2dd2c1 100%);
}
.section-steps {
    background: #34FFEB;
    padding: 16px 15px 16px 15px;;
}
.section-steps .column-gap-no {
    display: flex;
}
.section-steps .column-gap-no .col-33 {
    width: 33.3%;
}
.section-steps  .widget-wrap {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.section-steps .widget-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.divider {
    height: 20px;
    width: 3px;
    background: #000;
}
.section-steps .heading-title {
    color: #000000;
    font-family: "Oswald", Sans-serif;
    font-size: 55px;
    font-weight: 600;
    line-height: 1.5em;
    margin: 0 15px;
}
.section-steps .heading-content {
    color: #000000;
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2em;
}

.section-steps .widget {
    margin: 0;
}
.section-payment {
    padding: 48px 16px 96px 16px;
    background: #fff;
}
.section-payment .heading-title {
    color: #212529;
    font-family: "Oswald", Sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
}
.section-payment .widget-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.section-payment img {
    max-width: 500px;
    width: 100%;
}
.section-legal {
    padding: 48px 15px 24px 15px;
    background: #1B1B2B;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-legal .column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.section-legal .column .widget-wrap {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.section-legal .column .widget-wrap img {
    max-width: 128px;
    margin: 10px;
}
.section-legal  .heading-title {
    color: #FFFFFF;
    font-family: "Roboto Condensed", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5em;
}
.section-footer {
    padding: 8px 15px 8px 15px;
    background: #000;
    display: flex;
    justify-content: center;
}
.section-footer img {
    width: 100%;
    display: block;
    max-width: 425px;
    margin: 0 auto;
}
.background-overlay {
    display: none;
}
@media (max-width: 767px) {
    .content-row .title {
        font-size: 36px;
    }
    .single-casino .header-row {
        padding-top: 20px;
    }
    .content-row {
        padding: 20px 0;
        text-align: center;
    }
    .content-row .title {
        text-align: center;

    }
    .single-casino .header-row .logo img {
        width: 160px;
    }
    .section-steps .column-gap-no {
        flex-direction: column;
    }
    .section-steps .divider {
        display: none;
    }
    .section-steps .column-gap-no .col-33 {
        width: 100%;
    }
    .section-top {
        background: none!important;
        position: relative;
    }
    .section-top .container {
        position: relative;
    }
    .background-overlay {
        display: block;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        position: absolute;
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 1;
    }
}