
/* NEW CUSTOMER OFFER */
.newCustomerOffer {
    padding: 40px 16px 0px 16px;
    max-width: 1384px;
    margin-left: auto;
    margin-right: auto;
    background-image: url('../assets/background_newCustomerOffer2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;

    margin-top: 32px;
    margin-bottom: 32px;
    box-sizing: border-box;
}

.newCustomerOffer .newCustomerOffer--title {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 46px;
    color: #0ccd93;
}

.newCustomerOffer .newCustomerOffer--group__white {
    color: #ffffff;
    font-weight: 900;
    font-size: 42.38px;
    line-height: 50px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

.newCustomerOffer .newCustomerOffer--group__green {
    font-size: 72px;
    line-height: 97px;
    color: #0ccd93;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

.newCustomerOffer .newCustomerOffer--bottom {
    margin-top: 445px;
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
}

@keyframes guy {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.newCustomerOffer .newCustomerOffer--guy {
    position: absolute;
    bottom: 0;
    z-index: -1;
    display: block;
    left: 50%;
    max-height: 680px;
    transform: translateX(-50%);
    opacity: 0;
}

.newCustomerOffer.startAnimation .newCustomerOffer--guy {
    opacity: 1;
    animation: guy 1.6s;
}

.newCustomerOffer .newCustomerOffer--download {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.newCustomerOffer .newCustomerOffer--download a {
    margin-bottom: 27px;
}

.newCustomerOffer .newCustomerOffer--download a:last-child {
    margin-bottom: 0;
}



/* MEDIA QUERY */

@media screen and (min-width: 800px) {

    .newCustomerOffer p {
        font-size: 39px;
        line-height: 46px;
        font-weight: 400;
    }

    /* NEW CUSTOMER OFFER */
    .newCustomerOffer {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .newCustomerOffer .newCustomerOffer--left {
        width: 50%;
        position: relative;
        z-index: 10;
    }

    .newCustomerOffer .newCustomerOffer--guyLarge {
        position: absolute;
        bottom: 0;
        z-index: -2;
        opacity: 0;
    }

    .newCustomerOffer.startAnimation .newCustomerOffer--guyLarge {
        animation: guy 1.6s;
        opacity: 1;
    }

    .newCustomerOffer .newCustomerOffer--right {
        width: 50%;
        position: relative;
        z-index: 20;
        padding-bottom: 40px;
    }

    .newCustomerOffer .newCustomerOffer--guy {
        display: none;
    }

    .newCustomerOffer .newCustomerOffer--title {
        font-size: 40px;
        line-height: 47px;
    }

    .newCustomerOffer .newCustomerOffer--group__white {
        font-weight: 900;
        font-size: 56px;
        line-height: 66px;
    }

    .newCustomerOffer .newCustomerOffer--group__green {
        font-weight: 900;
        font-size: 135px;
        line-height: 158px;
    }

    .newCustomerOffer .newCustomerOffer--bottom {
        margin-top: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .newCustomerOffer .newCustomerOffer--download {
        margin-right: 15px;
    }

    .newCustomerOffer .newCustomerOffer--scan {
        margin-left: 15px;
    }

    .newCustomerOffer .newCustomerOffer--scan img {
        display: block;
        margin: auto;
    }

    .newCustomerOffer .newCustomerOffer--scan p {
        font-weight: 700;
        font-size: 24px;
        line-height: 28px;
        color: #ffffff;
        margin-top: 14px;
        margin-bottom: 0;
    }
    .newCustomerOffer .newCustomerOffer--download a {
        margin-bottom: 23px;
    }

    .newCustomerOffer .newCustomerOffer--download a:last-child {
        margin-bottom: 0;
    }

    .newCustomerOffer .newCustomerOffer--declaimer {
        font-weight: 400;
        font-size: 14px;
        line-height: 23px;
        text-align: center;
        font-family: 'Aktiv Grotesk Cd','Raleway', sans-serif;
        color: #ffffff;
        text-align:center;
        padding-left:5%;
        padding-right:5%;
    }

}