/*----------------- 
Frontend related CSS
-----------------*/
.pages-container .row {
    margin-bottom: 0;
	margin-top: 0;
}
.d-none {
    display: none!important;
}
.d-block {
    display: block!important;
}
.category-description .col {
	padding-left: 0;
	padding-right: 0;
}
.category-description-ul {
    font-size: 0.9em;
}
.pages-container {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}
.latest-posts-carousel .pages-row {
    padding: 0 40px;
}
.col-50 {
    width: 45%;
    margin: auto 1rem;
    display: inline-block;
    text-align: left;
    border-radius: 8px;
}
.post-container {
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
}
.post-info-container {
    text-align: left;
}
.post-title {
    font-size: 18px;
    line-height: 27px;
    font-style: italic;
    text-align: left;
    margin: 1.2em 0;
    font-weight: 700;
}
.post-image-container {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px 8px 0 0;
}
.post-info-container {
    padding: 0px 30px 20px 30px;
}
.read-more {
    font-weight: 600;
    color: #0f5b74!important;
    border-radius: 2px;
    background-color: rgba(15, 91, 116, 0.14)!important;
    font-style: italic;
    font-size: 16px;
    padding: 8px 10px;
    border: none;
    display: block;
    margin-top: 10px;
}
.post-title a, .read-more a {
    color: #0f5b74!important;
}
.pagination {
    text-align: center;
    width: 100%;
    margin-bottom: 75px;
}
.latest-posts-carousel .page-number {
    cursor: pointer;
    color: #00b6f0;
    font-style: italic;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
}
.latest-posts-carousel .page-number.current, .latest-posts-carousel .page-number:hover {
    color: #0f5b74;
}
.latest-posts-carousel .page-number span {
    font-size: 4rem!important;
}
.arrow {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    height: 100%;
}
.prev-page-container {
    left: -5px;
}
.next-page-container {
    right: -5px;
}
@media screen and (min-width: 768px) {
    .d-sm-none {
        display: none!important;
    }
    .d-sm-block {
        display: block!important;
    }
    .prev-page-container {
        left: 0px;
    }
    .next-page-container {
        right: 0px;
    }
}
@media screen and (max-width: 991px) {
    .sidebar {
        padding-top: 30px;
    }
	.pages-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 767px) {
    .col-50 {
        width: 95%;
        margin: auto!important;
    }
}