﻿.hero {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero .hero__container{
    z-index: 1000;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    min-height: 600px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.5rem 1.5rem 56px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.hero-v2::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0, .75) 67%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0, .75) 67%);
    z-index: 0;
}
.logo-badge {
    margin: 0 0 2.4rem;
}

.hero .hero__description {
    padding: 0 3.2rem;
    z-index: 2;
    flex: 0 0 100%;
}

.hero .hero__h2,
.hero .hero__h5,
.hero .hero__p {
    color: #fff;
}

.hero .hero__h2 {
    font-size: 2.8rem;
    line-height: 3.8rem;
}

.hero .hero__h5 {
    font-size: 2rem;
    line-height: 3rem;
}

.hero .hero__p {
    margin: 2.4rem 0;
    font-size: 1.6rem;
    line-height: 2.5rem;
}

.hero .hero__action .action-btn:last-child {
    justify-content: center;
    border: none;
}

.hero .hero__scroll {
    margin: 2rem auto 5rem;
}

.hero .hero__mouse {
    position: relative;
    display: block;
    width: 30px;
    height: 50px;
    margin: 0 auto 10px;
    box-sizing: border-box;
    border: 2px solid #fff;
    border-radius: 23px;
}

.hero .hero__wheel {
    position: absolute;
    display: block;
    top: 29%;
    left: 57%;
    width: 5px;
    height: 5px;
    margin: -4px 0 0 -4px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation: scroll-down 2.5s linear infinite;
    animation: scroll-down 2.5s linear infinite;
}

.hero .action-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.2rem 3.65rem;
    margin: 2.4rem;
    min-width: 260px;
    width: auto;
    max-width: 260px;
    font-size: 1.4rem;
    border-radius: 10rem;
    text-transform: uppercase;
    cursor: pointer;
    color: #fff;
}

@-webkit-keyframes scroll-down {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@media only screen and (min-width: 62.0625em) {

    .hero .hero__container {    
        padding: 13.3rem 1.5rem 100px;
        max-width: 1274px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .hero .hero__description {
        padding: 0;
        flex: 0 0 50%;
    }

    .hero .logo-badge {
        margin: 0 7rem 0 0;
    }

    .hero .hero__h2,
    .hero .hero__h5,
    .hero .hero__p {
        margin: 0 0 1.2rem;
    }

    .hero .hero__h2 {
        font-size: 5rem;
        line-height: 6.6rem;
    }

    .hero .hero__h5 {
        font-size: 2.8rem;
        line-height: 4.2rem;
    }

    .hero .hero__action {
        display: flex;
        margin: 5rem 0 0;
    }

        .hero .hero__action .action-btn:last-child {
            justify-content: center;
        }

    .hero .hero__scroll {
        margin: 5rem auto 0;
    }

    .hero .action-btn{
        margin: 0 1.8rem 0 0;
        max-width: 100%;
    }
}
