
html, body {
    min-height: 100%;
}

body {
    display: flex;
    flex-flow: column nowrap;
    font-family: Montserrat, sans-serif;
    background: url("/images/cashStrike/background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4em 6em 2em 6em;
    box-sizing: border-box;
}

header .badge {
    color: #fff;
    background: #25a7e5;
    padding: .6em 1.4em;
    border-radius: 0.9em;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

main {
    display: flex;
    flex: 1 1 auto;
    text-align: center;
    margin: 0 0 130px 0
}

main > div.left{
    width: 68%;
}

main > div.right > img{
    max-width: 100%;
    margin-top: 7px;
    transform: scale(1.4);
    transform-origin: center top;
}

.visual {
    max-width: 100%;
    margin: 0 auto;
}

.visual img {
    max-width: 93%;
    margin-left: 8%;
}

.visual-m {
    display:none;
}

.visual-m .top img{
    width: 23em;
    margin-top: 45px;
}

.visual-m .bottom img{
    width: 23em;
}


.main-content {
    background-image: linear-gradient(to right, transparent, #000000bd, transparent);
    color: #fff;
    font-size: 26px;
    font-weight: 400;
}

.main-content p {
    max-width: 70%;
    margin: .5em auto 1em;
    padding: 1em 1.6em;
}

.call-to-action {
    
    display: flex;
    cursor: pointer;
    line-height: 30px;
}

.call-to-action > * {
    display: block;
}

.call-to-action .logo {
    width: 50%;
    display: block;
    padding-top: 8px;
}

.call-to-action .text {
    width: 50%;
    display: block;
}

.call-to-action .text div {
    width: 150px;
    color: white;
    background: #25a7e5;
    border-radius: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    padding: 0.2em .6em;
    display: block;
    margin: 0 auto;
    margin-top: 28px;
}

footer {
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em 6em;
    background: #023495;
}

@media (max-width: 1000px){

    main {
        padding: 0;
    }

    header{
        padding-bottom: 0px;
    }

    .visual-m{
        display:block;
    }
    .visual{
        display:none;
    }
    .visual-m .bottom img{
        width: 41em;
    }

    main > div.right{
        display: none;
    }

    main > div.left{
        width: 100%;
    }

    main > .left > .visual{
        margin-top: -60px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 1.3em 1.5em;
    }

    header .logo {
        height: 28px;
    }

    .visual-m .bottom img{
        width: 23em;
    }

    .main-content p {
        font-size: 20px;
    }

    footer, footer .left, footer .right {
        display: block;
    }

    footer .left > *, footer .right > * {
        margin: 0 0 1em;
        text-align: center;
    }
}