/*
    Main Banner
*/
.main-banner-container {
    width: 100%;
    background-color: #0b2e13;

}
.banner-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position-y: center;
    background-position-x: center;
    background-size: auto;
    background-repeat: repeat;
    padding: 80px 20px;
}

.banner-content {
    padding: 20px;
    border-radius: 5px;
    background: rgba(0 ,0, 0, .3);
}

.banner-content ul{
    margin: 0;
    padding-left: 20px;
}

@media screen and (max-width: 600px){
    .banner-content {
        /*font-size: 0.8rem!important;*/
    }
}

/*
    Article Banner
*/
.article-head-banner {
    margin-bottom: 1rem;
    background-position-y: bottom;
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.article-head-banner-container {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    background-color: rgba(0, 0, 0, .5);
}

.article-head-banner-content {
    padding-top: 200px;
    padding-bottom: 15px;
    color: #fff;
}

@media screen and (max-width: 767px){
    .article-head-banner-content h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px){
    .article-head-banner-content h1 {
        font-size: 1.5rem;
    }
}
