* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 15px 50px;
}
.logo a{
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li{
    margin-right: 15px;
}
.nav-links li:last-child{
    margin-right: 0px;
}
.nav-links li a{
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    font-weight: bold;
    padding: 0px 5px;
    transition: 0.3s ease;
}
.nav-links li a:hover{
    color: #ffc107;
}
.nav-links li .active{
    color: #ffc107;
}
.moble-menu {
    display: none;
    cursor: pointer;
}
.moble-menu span{
    display: flex;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
}
.order-button {
    padding: 10px 20px;
    background-color: #ffc107;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
}
.order-button:hover {
    background-color: #d51341;
}
.blog-section{
    width: 100%;
}
.blog-section .section-content{
    width: 85%;
    margin: 20px auto;
}
.blog-section .section-content .title{
    width: 60%;
    text-align: center;
    margin: auto;
}
.blog-section .section-content .title h2{
    font-size: 40px;
    color: #23d25d;
    text-transform: uppercase;
}
.blog-section .section-content .title p{
    font-size: 18px;
    color: #6a6a6a;
    margin-top: 20px;
}
.blog-section .section-content .cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    margin: 25px auto;
}
.blog-section .section-content .cards .card{
    width: 100%;
    background-color: #f7f7f7;
    position: relative;
}
.blog-section .section-content .cards .card img{
    width: 100%;
    height: 250px;
}
.blog-section .section-content .cards .card .article{
    padding: 15px 20px;
}
.blog-section .section-content .cards .card .article h4{
    font-size: 24px;
    color: #4a4a4a;
}
.blog-section .section-content .cards .card .article p{
    font-size: 16px;
    margin: 10px 0px;
    color: #6a6a6a;
}
.blog-section .section-content .cards .card a{
    text-decoration: none;
    display: inline-block;
    background-color: #25c5c5;
    padding: 8px 1px;
    margin-left: 20px;
    color: #fff;
    margin-bottom: 20px;

}
.blog-section .section-content .cards .card .posted-date p{
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    background-color: #25c5c5;
    padding: 6px 15px;
}
@media screen and (max-width:992px){
    .blog-section .section-content .cards{
        
        grid-template-columns: repeat(2, 1fr);
        
    }
}
@media screen and (max-width:768px){
    .navbar{
        padding: 15px 30px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #444;
        padding:20px 25px ;
        margin-top: 8px;
    }
    .nav-links li{
        padding: 15px 0px;
    }
    .moble-menu {
        display: block;
    }
    .nav-active {
        display: block;
    }
    .blog-section .section-content .cards{
        
        grid-template-columns: 1fr;
        
    }
}

