.sec-full-width{
    background-image: url('../img/pexels-photo-575101.jpeg');
    background-attachment: fixed;
    background-size: 100% auto;
    padding: 120px 80px;
    vertical-align: middle;
    text-align: center;
    overflow-x: hidden;
}
.sec-full-wrapper{
    position: relative;
}
.text-wrapper h2{
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color:#eee;
    animation: inFromLeft 1s;
    margin-bottom: 0px;
}
.text-wrapper h4{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #eee;
    margin-bottom: 80px;
    margin-top: 10px;
    animation: inFromLeft 1.7s;
}
.button-link{
    background-color: #777;
    border-radius: 4px;
    color: #eee;
    padding: 12px 25px;
    position: relative;
    animation: inFromLeft 2s;
}
.sec-full-wrapper a:hover{
    opacity: 0.85;
}
@keyframes inFromLeft{
    from{
        opacity: 0;
        transform: translate3d(-100%,0,0);
    }
    to{
        opacity: 1;
        transform: none;
    }
}

@media screen and (max-width: 800px){
    .sec-full-width{
        background-size: 100% 100%;
    }
}