html, body {
    background: #000;
    font-family: Gobold;
    color: #000;
}

.clear::after {
    content: "";
    display: block;
    clear: both;
}

.flex {
    display: flex;
}

.flex-justify-center {
    display: flex;
    justify-content: center;
}
.flex-justify-evenly {
    display: flex;
    justify-content: space-evenly;
}
.flex-justify-between {
    display: flex;
    justify-content: space-between;
}
.flex-justify-end {
    display: flex;
    justify-content: flex-end;
}
.flex-justify-start {
    display: flex;
    justify-content: flex-start;
}
.flex-justify-self-right {
    justify-self: flex-end;
}
.flex-justify-self-center {
    justify-self: center;
}
.flex-justify-self-left {
    justify-self: flex-start;
}
.flex-align-start {
    display: flex;
    align-items: flex-start;
}
.flex-align-center {
    display: flex;
    align-items: center;
}
.flex-align-end {
    display: flex;
    align-items: flex-end;
}
.flex-align-self-start {
    align-self: flex-start;
}
.flex-align-self-center {
    align-self: center;
}
.flex-align-self-end {
    align-self: flex-end;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-column {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}

.only-desktop {
    display: flex;
}

.only-mobile {
    display: none!important;
}

.button {
    text-transform: uppercase;
    font-family: Gobold;
    font-size: 1.5rem;
    padding: 1.5rem 2rem!important;
    border-radius: 290486px;
    background: #fff;
    color: #ff353d;
    border: none;
    -webkit-transition: transform .3s;
    -ms-transition: transform .3s;
    transition: transform .3s;
}

.button:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    color: #ff353d;
}

.button.red {
    background: #ff353d;
    color: #fff;
    min-width: 240px;
    padding: 2rem 2.5rem!important;
}

.button.red:hover {
    color: #fff;
}

.button-subtitle {
    font-family: Gobold;
    margin-top: 20px;
    font-size: 1.5rem;
    max-width: 70%;
}

.logo {
    background: url('logo.png') no-repeat;
    background-size: contain;
    width: 185px;
    height: 88px;
    top: 15px;
    position: absolute;
}

.hero-bg {
    background: url('top_bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.hero {

    height: 500px;
    color: #fff;
    overflow-y: hidden;
    position: relative;
}


.hero::before {
    display: block;
    content: "";
    background: url(girls.png) no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 608px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 740px;
}

.hero .button {
    position: absolute;
    right: 15px;
    top: 15px;
}

.hero .title {
    max-width: 690px;
    position: absolute;
    bottom: 100px;
    font-size: 2.7rem;
    font-family: Avalon;
}

.main {
    padding: 0 2rem 10rem;
    width: 100%;
    max-width: none;
}

.main::after {
    display: block;
    content: "";
    background: url('starburst.png') no-repeat;
    width: 365px;
    height: 204px;
    position: absolute;
    bottom: -75px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

.main .button {
    background: #ff353d;
    color: #fff;
    min-width: 200px;
    padding: 2rem 2.5rem!important;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
}

.main .cta {
    margin-top: -50px!important;
}

.payment-methods {
    display: flex;
}

.payment-methods a {
    display: flex;
    margin: 15px 30px;
}
.payment-methods.flex-justify-end a {
    margin-right: 0;
}
.payment-methods.flex-justify-start a {
    margin-left: 0;
}

.payment-methods a img {
    align-self: center;
    max-height: 30px;
    max-width: 120px;
}

.main .steps {
    width: 100%;
    margin-top: 80px;
}

.main .step {
    width: 300px;
    font-family: Avalon;
    position: relative;
}

.main .step::before {
    display: inline-block;
    content: "1.";
    position: absolute;
    top: -20px;
    left: -35px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    color: #fff;
    font-family: Avalon;
    font-size: 50px;
    font-weight: bold;
    background: #ff353d;
    text-align: center;
    border-radius: 99999px;
}
.main .step:nth-child(2)::before {
    content: "2.";
    text-indent: 5px;
}

.main .step:nth-child(3)::before {
    content: "3.";
    text-indent: 5px;
}

.step .inner {
    box-shadow: 0px 5px 40px rgba(255, 53, 60, 0.3);
    padding: 30px;
    width: 100%;
    height: 232px;
    text-transform: uppercase;
}

.main .step:nth-child(2) {
    margin: 0 80px;
}

.step h1 {
    font-size: 2.1rem;
    color: #ff353d;
    font-family: Gobold;
}

.step h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 15px;
}

.step p {
    font-weight: 400;
    font-size: 0.9rem;
    margin-top: 15px;
}

.footer-bg {
   background: url('bottom_bg.jpg') no-repeat;
   background-size: auto;
   background-position: center top; 
}

footer {
    
    padding: 11rem 2rem 2rem;
}

footer .button-subtitle {
    color: #fff;
}

footer .cta {
    margin-bottom: 10rem;
}

footer .logo {
    position: static;
    width: 120px;
    height: 58px;
}

footer .content {
    border-bottom: 1px solid #1D1D20;
    margin: 1.3rem 0 0!important;
    padding-bottom: 1.3rem!important;
    font-family: Avalon;
    color: #aaaaaa;
}

.content .column {
    padding: 5px 0;
}

.content .flags a {
    margin-left: 30px;
}

.content ul {
    margin: 0;
}
.content ul a {
    color: #aaaaaa;
    font-size: 0.8rem;
}

.content ul li {
    margin: 5px 0;
    list-style: none;
}
.content ul li:first-child {
    margin-top: 0;
}

.content .logos {
    flex-wrap: wrap;
}
.content .logos a {
    margin: 0 15px;
}
.content .providers a {
    margin: 0 35px;
}
.content .responsible-gaming a {
    margin: 0 50px;
    margin-top: 40px;
}
.content.legal {
    font-size: 0.7rem;
    border-bottom: 0;
}


@media screen and (min-width: 768px) and (max-width: 1024px) {

    .hero {
        height: 550px;
    }

    .hero::before {
        background-position: center 60px;
    }

    .hero .button {
        font-size: 1.3rem;
    }

    .hero .logo {
        width: 155px;
        left: 10px;
    }
    
    .main {
        padding: 0 1rem 10rem;   
    }
    .main .cta {
        padding: 0.75rem 0;
    }
    .button-subtitle {
        max-width: 100%;
    }
    .payment-methods a {
        margin: 15px 15px!important;
    }
    .payment-methods a img {
        max-height: 14px;
        max-width: 110px;
    }
    .main .steps {
        margin: 0;
        margin-top: 80px;
        padding: 0 0.5rem 0 1rem;
    }
    .main .step {
        width: 30%;
    }
    .step .inner {
        padding: 20px 15px;
        width: 100%;
        height: 165px;
    }
    .main .step:nth-child(2) {
        margin: 0 50px;
    }
    .main .step::before {
        font-size: 33px;
        top: -20px;
        left: -27px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    .step  h1 {
        font-size: 1.45rem;
    }
    .step h2 {
        font-size: 1.1rem;
    }
    footer .button-subtitle {
        padding: 0 13rem;
    }
}

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

    .only-desktop {
        display: none!important;
    }

    .only-mobile {
        display: flex!important;
    }

    .button {
        font-size: 1.2rem;
    }

    footer .no-border {
        border: none;
        padding-bottom: 0!important;
        margin-bottom: -10px!important;
    }

    .logo {
        width: 125px;
        margin-left: 10px;
    }

    .hero::before {
        background-position: center;
        background-position-y: 65%;
        background-size: 108%;
    }
    .hero .title {
        font-size: 1.4rem;
        max-width: 90%;
        bottom: 110px;
        margin-left: 4px;
        padding: 0;
    }

    .main {
        padding: 0 0.7rem 10rem;
    }

    .main::after {
        max-width: 90%;
        background-size: contain;
        bottom: -80px;
    }

    .main .cta {
        width: 100%;
    }

    .button-subtitle {
        max-width: none;
        padding: 0 2.8rem;
    }
    .payment-methods {
        width: 100%;
    }
    .payment-methods a {
        margin: 0!important;
    }
    .payment-methods a:first-child {
        margin-left: 0;
    }
    .payment-methods a img{
        max-width: 50px;
    }

    .steps {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    .step {
        margin-bottom: 60px!important;
    }
    .main .step:nth-child(2) {
        margin: 0;
    }
    .main .step::before {
        font-size: 45px;
        top: -20px;
        left: -35px;
        width: 65px;
        height: 65px;
        line-height: 65px;
    }
    footer {
        padding-left: 1rem;
        padding-right: 1rem;
        background-size: auto 30%;
    }

    footer img {
        max-width: 115px;
        max-height: 31px;
    }

    footer .content.social .is-2, footer .content.social .is-3 {
        width: 50%;
        display: block;
        float: left;
    }
    footer .content.social .is-2 {
        justify-content: flex-end;
        display: flex;
    }
    footer .content.social .is-3 {
        padding-left: 25px;
    }
    footer .flags {
        margin-top: 15px;
        padding-top: 15px!important;
        width: 100%;
        justify-content: space-between;
    }
    footer .content .flags a{
        margin: 0;
    }

    .logos {
        width: 100%;
        padding-top: 25px!important;
        border-top: 1px solid #1D1D20;
    }
    
    .content .logos a {
        margin-bottom: 10px;
    }

    .mobile-links-left {
        float: left;
    }
    .mobile-links-right {
        float: right;
        text-align: right;
        padding-bottom: 20px!important;
    }

    footer .content.licence-logos {
        margin-top: 0!important;
    }

    .providers, .responsible-gaming {
        flex-wrap: wrap;
        flex-basis: auto;
        justify-content: space-around;
    }

    .responsible-gaming {
        margin-top: -10px;
    }

    .providers a, .responsible-gaming a {
        margin: 0 0 10px!important;
    }
}

@media screen and (min-width: 1600px) {
 .footer-bg {
  	background-size: 100% auto;   
 }
}