@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;500;600&display=swap');

*{
    font-family: 'Cairo', sans-serif;
}
:root{
    --first-color :rgb(26, 21, 21) ;
    --second-color :rgb(130, 130, 130) ;
}
a,a:hover{
    text-decoration: none;
}

body{
    background: #f3f3f3;
}
nav.navbar{
    background: #fff !important;
    border-bottom: 1px solid #dcdbdb;
}
/* start style content */

.content{
    margin-top: 60px;
}
.content .post
{
    text-align: center;
    background: #fff;
    padding: 20px 22px;
    border-bottom: 1px solid #9d9c9c;
    margin-bottom: 30px;
}
.post .post-image
{
    width: 100%;
}
.post .post-image img
{
    width: 100%;
    height: 380px;
}
.post .post-title{
    margin: 10px  0;
 
}
.post .post-title a{
    color: black;
}
.post .post-title a:hover{
    color: #9d9c9c;
}
.post .post-details button.btn-custom{
background: transparent;
color: var(--first-color);
width: 120px;
border:1px solid var(--first-color) ;
font-size: 18px;

}
.post .post-details button.btn-custom:hover{
    background: var(--first-color);
    color:#fff;


}
.post .post-details .post-info span{
margin-right: 20px;
font-size: 18px;

}
/*responsive mobile*/
@media only screen and (max-width: 780px) {
    .post .post-details .post-info span{
        margin-right: 15px;
        font-size: 12px;
        
        }
        .post .post-details .post-info span i{
            margin-left: 8px;
            font-size: 12px;
        }
  }
/* end responsive mobile */
.post .post-details .post-info span i{
    margin-left: 8px;
    font-size: 18px;
}
.post .post-details .post-info {
    color: var(--second-color);
}
/* end style content */

/* start style side bar */

.categories{
    background: #fff;
    border-bottom: 1px solid #9d9c9c;
    padding: 10px 5px;
    margin-bottom: 40px;
    
}
.categories h4{
    text-align: center;
    padding-bottom: 10px;
    border-bottom:1px solid #9d9c9c;
}
.categories ul{
    list-style: none;
    padding: 0;
    margin: 0;

}
.categories ul li {
    background: var(--first-color);
    margin-bottom: 3px;
    padding: 5px ;
    border-radius: 2px;
}
.categories ul li a{
    color: #fff;
    font-size: 18px;
}
.categories ul li:hover{
background: var(--second-color);
transition: all 0.3s ease-in-out;
}
.categories ul li a  span i{
    margin-left: 8px;
}
.last-post{
    background: #fff;
    padding: 20px 5px;
    border-bottom: 1px solid #9d9c9c;
    margin-bottom: 12px;

}
.last-post h4{
    text-align: center;
    border-bottom:1px solid #9d9c9c;
   padding: 10px 0;
}
.last-post ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.last-post ul li {
    border-bottom: 1px solid #9d9c9c;
    padding: 5px 0 ;
    margin-bottom: 10px;
}

.last-post ul li:last-child{
    border-bottom: 0;
}

.last-post ul li a {
    color: var(--first-color);
}
.last-post ul li a:hover{
    color: var(--second-color);
    transition: all 0.3s ease-in-out;
}
.last-post ul li a span img {
    width: 90px;
    height: 70px;

}
/* end style side bar */
footer {
    background: #fff;
    border-top: 1px solid #eaeaea;
    text-align: center;
    padding: 10px 0;
}




/*responsive mobile*/
@media only screen and (max-width: 780px) {
    .post .post-details .post-info span{
        margin-right: 15px;
        font-size: 12px;
        
        }
        .post .post-details .post-info span i{
            margin-left: 8px;
            font-size: 12px;
        }
  }
/* end responsive mobile */