/*-----------------------------------------------------------------------------------

    Custom CSS for the Blogs page.

-----------------------------------------------------------------------------------*/

header {
    border: none;
}

p {
    font-family: "faktum_wide_regular", sans-serif;
    font-size: large;
}
.blog-area .btn-blog {
    width: 100%;
    text-align: right;
    background: #F9588A;
}

.blog-area .btn-blog .btn-custom {
    background: #F9588A;
}

.blog-area .btn-blog .btn-custom:hover {
    color: #0F265D;
}

.blog-area .blog-article {
    border: 1px solid #F9588A;
}

.blog-text {
    font-family: "faktum_wide_regular", sans-serif;
    padding: 15px;
}

.blog-text p {
    font-family: "faktum_wide_regular", sans-serif;
    font-weight: 600;
}

.blog-article {
    font-family: "faktum_wide_regular", sans-serif;
    position: relative;
}

.blog-article::before {    
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.15;
}

.blog-article-1::before {
    background-image: url('/assets/images/blog/blog-1.jpg');
}

.blog-article-2::before {
    background-image: url('/assets/images/blog/blog-2.jpg');
}

.blog-article-3::before {
    background-image: url('/assets/images/blog/blog-3.jpg');
}

.blog-article-4::before {
    background-image: url('/assets/images/blog/blog-4.jpg');
}

.blog-article-5::before {
    background-image: url('/assets/images/blog/blog-5.jpg');
}

.btn-custom {
    background: #F9588A;
}