*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Work sans", sans-serif;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
body{
    margin: 0px;
    padding: 0px;
    font-family:"Work sans", sans-serif;
}
/*-----START BLOG SECTION------*/
#blog{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
}
.blog-heading{
    display: flex;
    justify-content: left;
    align-items: left;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 80px;
}
.blog-heading span{
    color:#eaac8b;
    font-size: 1.5rem;
    margin-left: 8.5%;
}
.blog-heading h3{
    font-size: 2.4rem;
    color:#000;
    font-weight:600;
    margin-left: 8.5%;
}
.blog-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
    flex-wrap: wrap;
}
.blog-box{
    width: 350px;
    background-color: #fff;
    border:1px solid #d9d9d9;
    margin:20px;
}
.blog-img{
    width:100%;
    height: auto;
}
.blog-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blog-text{
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.blog-text span{
    color:#eaac8b;
    font-size: 0.9rem;
}
.blog-text .blog-title{
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
}
.blog-text .blog-title:hover{
    color: #f28482;
    transition: all ease 0.3s;
}
.blog-text p{
    color: #7f4f24;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow:ellipsis;
    margin: 20px 0px;
}
.blog-text a{
    color:#000;
}
/*.blog-text a:hover{
    color:#f28482;
    transition: all ease 0.3s;
}*/
@media(max-width:1250px){
    .blog-box{
        width: 300px;
    }
    header{
        width: 100%;
    }
    .first-header{
        width: 100%;
    }
}
@media(max-width:1100px){
    .blog-box{
        width: 70%;
    }
    header{
        width: 100%;
    }
    .first-header{
        width: 100%;
    }
}
@media(max-width:550px){
    .blog-box{
        margin: 20px 10px;
        width: 100%;
    }
    #blog{
        padding: 20px;
    }
    header{
        width: 100%;
    }
    .first-header{
        width: 100%;
    }
}
#load-more{
    display: flex;
    margin: auto;
    height: 50px;
    padding: 0 50px;
    border: 0px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    cursor:pointer;
    transition:0.3s linear;
    align-items: center;
    margin-bottom: 50px;
}
#load-more:hover{
    opacity:0.8;
}
.addtocart{
    background-color:transparent;
    color:black;
    text-decoration: none;
    border: 1px solid;
    padding: 5px 20px;
    transition: 0.15s;
}
.addtocart:hover{
    background-color: #000;
    color:white;
    border: 10px solid black;
    padding: 5px 20px;
    color:#fff;
    opacity: 0.8;
}
/*-----FINISH BLOG SECTION------*/