.hero{

    min-height:100vh;
    display:flex;
    align-items:center;
    padding:100px 8%;
    position:relative;
    overflow:hidden;

}

.hero::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 200px;

    background: linear-gradient(
        to bottom,
        rgba(15,17,23,0),
        #0000
    );

    pointer-events: none;
    z-index: 1;
}

.hero-content{

    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.hero-text{

    width:45%;
    z-index:100;
    opacity: 0;
    transform: translateX(-80px);
    animation: heroSlide 1s ease forwards;
    animation-delay: .3s;

}

@keyframes heroSlide{
    from{
        opacity:0;
        transform:translateX(-80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

.hero-text h1{

    font-size:70px;
    line-height:1.15;
    margin-bottom:25px;

}

.hero-text p{

    font-size:18px;
    color:#b5b5b5;
    line-height:34px;
    max-width:550px;

}

/* BUTTON */

.btn{

    display:inline-block;
    margin-top:40px;
    padding:15px 40px;
    background:#00c0d1;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    opacity:0;
    animation:fadeUp .8s ease forwards;
    animation-delay:1.1s;

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.btn:hover{

    transform:translateY(-5px);
    box-shadow:0 0 25px #0b77f1;

}

@media(max-width:992px){

.hero{

    padding-top:150px;

}

.hero-content{

    flex-direction:column;
    text-align:center;

}

.hero-text{

    width:100%;
}

.hero-text h1{

    font-size:48px;

}

.hero-text p{

    margin:auto;

}
}