/* source sans font family   */
/* @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

body{
    font-family: 'Source Sans 3', sans-serif;
}
h1{
    font-size: 2.2rem;
}
h2{
    font-size: 1.8rem;
}
h3{
    font-size: 1.6rem;
}
h4{
    font-size: 1.4rem;
}
h5{
    font-size: 1.2rem;
}
h6{
    font-size: 1rem;
}
.divider{
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0px;
}
.brand-logo{
    position: relative;
    height: 30px;
}
.brand-logo a{
    display: inline-block;
    position: absolute;
    top: -40px;
    left: calc(50% - 66px);
}
.navbar_apn .brand-logo a{
    display: inline-block;
    position: relative;
    top: 0px;
    left: 0px;
}
.navbar_apn .brand-logo{
    height: 60px;
    display: flex;
    align-items: center;
}
    
.brand-logo img{
    max-height: 80px;
    max-width: 400px;
}
.brand-links a {
    text-decoration: none;
    font-size: 24px;
}
.brand-links a i{
    font-size: 40px;
}
.navbar_apn .brand-logo img{
    max-height: 48px;
    max-width: 400px;
}
.navbar-menu{
    max-width: 100vw;
    overflow-x: auto;
    white-space: nowrap;

}
.navbar-menu::-webkit-scrollbar{
    display: none;
}
.navbar-menu ul{
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.navbar-menu ul li{
    margin-right: 10px;
}
.navbar-menu ul li a{
    color: white;
    text-decoration: none;
    padding: 5px 5px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
}
.post-card .thumb img {
    width: 100%;
    
    object-fit: cover;
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.post-card .post-title a{
    color: black;
    text-decoration: none;
}
.post-card .post-desc p{
    margin: 0px;
    font-size: 14px;
    color: #666;
}
.post-card .post-date span{
    font-size: 12px;
    color: #666;
    background: #ffffffa6;
    padding: 1px 8px;
    border-radius: 20px;
    font-size: 12px;
    border: solid 1px #e9e9e9;
}

.post-card-t1{
    position: relative;
    /* height: 100%; */
}
.h-100.thumb img{
    height: 100%;
    object-fit: cover;

}


.post-card-t1 .details{
    /* position: absolute; */
    /* bottom: 10px; */
    /* left: 10px; */
}

.post-card-t1 .sub-details{
    position: absolute;
    top: 10px;
    left: 10px;
}

.post-card .date-tag{
    background: #ffffffa6;
    padding: 1px 8px;
    border-radius: 20px;
    font-size: 12px;
    border: solid 1px #e9e9e9;
}

.post-card-t1 .post-title a{
    color: black;
}

.post-card-t4{
    display: flex;
    margin-bottom: 5px;
}
.post-card-t4 .thumb{
    min-width: 22%;
    max-width: 22%;
    margin-right: 10px;
}
.style-overlay::after {
    /* background: linear-gradient(to top, rgb(36 38 38 / 80%), rgba(255, 255, 255, 0.8));
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 30%;
    z-index: 1;
    content: ""; */
    content:"";
    background: linear-gradient(to top, rgb(255 189 184 / 58%) 52%, rgba(0, 0, 100, 0));
    height: 75%;
    left: 0;
    position: absolute;
    bottom: 0;
    /* border-radius: 5px; */ 
    width: 100%;
    z-index: -1;
    /* transition: 0.4s; */
    /* visibility: hidden; */
    opacity: 0.5;
    /* background: red; */
    border-radius: 5px;
}
.style-overlay .details{
    z-index: 1;
}
.post-thumb img{
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}
.footer-menu{
    margin: 0px;
    padding: 0px;
}
.footer-menu li{
    list-style: none;
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    margin-bottom: 5px;
}
.footer-menu li a{
    color: white;
    text-decoration: none;
    padding: 1px 5px;
    display: inline-block;
}
a.no-decoration{
    text-decoration: none;
}
a.badge{
    text-decoration: none;
}
a.badge:hover{
    color: white;
}
.text-little-dark{
    color: #666;
}
.hz-scroll{
    overflow-x: auto;
}
.hz-scroll-inner{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}
.hz-scroll-inner .w-280{
    width: 280px;
    flex-shrink: 0;
    margin-right: 15px;
}
.grid-2items{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}


@media (min-width: 768px) {
    .grid-2items{
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}
.fs-8px{
    font-size: 8px;
}