/* Loading Screen */

.index:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff url(https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/lEGAa/svOiLouohVAkQZbHf4AirxQT5A0UZdHzc5Ze8wX4.png);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9 !important;
    background-size: 250px !important;
    background-repeat: no-repeat;
    background-position: center !important;
    animation-name: logobg;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

@keyframes logobg {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}


.blog-single .object-cover,
.f_blog .object-cover{
    -o-object-fit: fill ;
    object-fit: fill !important;
}
@media(max-width:768px){
.blog-single .object-cover, .f_blog .object-cover {
    max-height: 200px;
}
}