*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    src: url("fonts/ar/Kufi.ttf");
    font-family: 'Kufi';
}
html{
    direction: rtl;
}
body{
    font-family: 'Kufi',sans-serif;
}
.header-page{
    background: #0c63e4 url("../images/header.jpg") top center no-repeat;
    background-blend-mode: multiply;
    height: 450px;
    background-size: cover;
}

.navbar{
    background: #FFF !important;
    padding: 0;
    margin: 0;
    width: 100%;
}
.navbar .navbar-brand{
    position: absolute;
    top: 10px;
    background: #FFF;
    border-radius: 25px;
}
@media (max-width: 769px) {
    .navbar .navbar-brand{
        position: relative;
    }
    .navbar .navbar-brand img{
        width: 180px;
    }
}
.navbar img{
    width: 250px;
}
.navbar .nav-item .nav-link{
    text-decoration: none;
    display: block;
    padding: 20px;
    font-size: 19px;
    color: #000 !important;
}

.main-content .single-journal{
    position: relative;
    margin-bottom: 100px;
    border: 7px solid #FFF;
    border-radius: 10px;
}
.main-content .single-journal .cover{
    overflow: hidden;
}
.main-content .single-journal .cover img{
    transition: all .3s ease-in-out;
    border-radius: 10px;
    height: 250px;
}
.main-content .single-journal .cover:hover img{
    transform: rotate(10deg) scale(1.2);
}
.main-content .single-journal .info{
    position: absolute;
    width: 70%;
    background: #FFF;
    right: 15%;
    left: 15%;
    bottom: -60px;
    border-radius: 10px;
}
.main-content .single-journal .info ul{
    padding: 0;
    margin-bottom: 0;
}
.main-content .single-journal .info li{
    list-style: none;
    border-bottom: 1px solid #DDD;

}
.main-content .single-journal .info li:last-child{
    border-bottom: 0;
}
.main-content .single-journal .info li a{
    display: block;
    text-decoration: none;
    padding: 10px 0;
    text-align: center;
    transition: all .3s ease-in-out;
}
.main-content .single-journal .info li a:hover{
    background: #0c63e4;
    color: #FFF;
}
.main-content.number .single-journal img{
    border-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.main-content .single-journal .title{
    text-align: center;
    padding: 10px;
    font-weight: bold;
    background: #0c63e4;
    color: #FFF;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.main-content.number .info{
    bottom: -20px;
}

.title-section{
    text-align: center;
    margin: 50px auto;
}
.title-section h2{
    font-weight: bold;
}

.footer{
    background: #23527c;
    color: #FFF;
    text-align: center;
    padding: 10px;
}
.footer p{
    margin-bottom: 0;
}
