
/* 
    -------------------- Header --------------------
*/
.header {
    height: 700px;
    background-image: url('../../images/blog.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.header__container {
    display: flex;
    align-items: center;
    height: 700px;
}
.header__content {
    z-index: 1;
}
.header__title {
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    z-index: 110;
    margin-bottom: 1rem;
}
.header__desc {
    font-size: .8rem;
    font-weight: 500;
    color: #ccc;
    max-width: 800px;
    z-index: 1;
    line-height: 30px;
}
#overlay {
    width: 100%;
    height: 700px;
    position: absolute;
    background-color: #000000b0;
    z-index: 1;
}