.blogComponent {
    padding-bottom: 150px;
    overflow: hidden;
}
.blogComponent .header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.blogComponent .header h2{
    font-family: regular;
    font-size: 50px;
    color: #4D4D4D;
    line-height: 50px;
    margin-bottom: 0px;
    margin-left: -4px;
}
.blogComponent .header .mainLink{
    margin-top: 0px;
}
.blogComponent .box{
    margin-bottom: 30px;
}
.blogComponent .box .imgContainer{
    width: 100%;
    padding-top: 60%;
    /*overflow: hidden;*/
    transition: 0.2s ease-in;
    border: 0px solid transparent;
    position: relative;
}
.blogComponent .box .imgContainer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.4s;
    border: 0px solid black;
}
.blogComponent .box:hover .imgContainer img{
    border: 20px solid #f5f5f5;
}
.blogComponent .box span{
    color: #999999;
    font-size: 14px;
    font-family: regular;
    display: flex;
    margin: 5px 0px 1px 0px;
}
.blogComponent .box .text{
    max-height: 40px;
    overflow: hidden;
}
.blogComponent .box .text h5{
    color: #4D4D4D;
    font-size: 18px;
}
.smallBlogLink{
    display: none;
    padding: 20px 0 0 0;
    justify-content: center;
    align-items: center;
}
.blog-header{
    font-size: 120px;
    font-family: caps;
    color: #f5f5f5;
    text-shadow:-1px -1px 0 #cccccc, 1px -1px 0 #cccccc, -1px 1px 0 #cccccc, 1px 1px 0 #cccccc;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 90px;
    line-height: 95px;
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {

}
@media (max-width: 767px) {
    .blog-header{
        font-size: 60px;
        line-height: 50px;
        margin-bottom: 30px;
    }
}
@media (max-width: 575px) {
    .blog-header{
        font-size: 40px;
        line-height: 30px;
        margin-bottom: 20px;
    }
}


@media (max-width: 1199px) {
    .blogComponent{
        padding-bottom: 50px;
    }
}
@media (max-width: 991px) {

}
@media (max-width: 767px) {

}
@media (max-width: 575px) {
    .blogComponent .header{
        justify-content: center;
    }
    .blogComponent .header h2{
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    .blogComponent .header{
        margin-bottom: 20px;
    }
    .blogComponent .header .mainLink{
        display: none;
    }
    .smallBlogLink{
        display: flex;
    }
}