/*--------------------------------------------------------------
# Article Section
--------------------------------------------------------------*/
#article {
    width: 100%;
    height: 13vh;


    background-repeat: no-repeat;
    background-blend-mode: screen;
    background-color: rgba(0, 0, 128, .3);


    background-size: cover;
    position: relative;
}

@media (min-width: 1024px) {
    #article {
        background-attachment: fixed;
    }
}

#article:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#article .article-container {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 13rem;
    justify-content: center;
    flex-direction: column;
    text-align: right;
    padding-right: 40px;
}

#article h1 {
    margin: 30px 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 768px) {
    #article h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

#article h2 {
    color: #eee;
    margin-bottom: 50px;
    font-size: 24px;
}

@media (max-width: 768px) {
    #article h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

#article .btn-get-started {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#article .btn-get-started:hover {
    background: #ca526e;
    border: 2px solid #ca526e;
}
