
#hero {
    position: relative;

    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    width: 100%;
    /*height: 65vh;*/
    background-color: #37517e;

}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero #overlay {
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    position: absolute;
}

#hero .hero-avatar-container{
    width: 250px;
    height: 270px;
    margin:0 auto;
    background-size: cover;
    background-position: center center;
    border: 4px solid #E8E9EE;
    border-radius: 5%;
    transition: 0.5s;
    overflow: hidden;
}

#hero .hero-avatar-container img{
    min-height: 270px;
    width: 100%;
    transition: 0.5s;
}

#hero .hero-avatar-container:hover{
    box-shadow:0 0 8rem -2rem #eeeeee;
}
#hero .hero-avatar-container:hover img{
    transform: scale(1.2);
}

#hero img.hero-avatar {
    max-width: 300px;
    border-radius: 5px;
    border: 4px solid #E8E9EE;

}

#hero .container-fluid {
    /*padding-top: 72px !important;*/
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff !important;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 50px;
    font-size: 24px;
    text-align: justify;
}

#hero .btn-view-profile {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
}


@media (max-width: 991px) {
    #hero {
        /*height: 100vh !important;*/
        text-align: center;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }

    #hero .hero-content-text {
        text-align: center;
    }

}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }

    #hero .hero-avatar-container{
        width: 200px;
        height: 220px;
        margin:0 auto;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

}
