.blog-post-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single-blog-box {
    width: 48%;
    margin-bottom: 20px;
}

.blog-img {
    background: #FA6634;
    height: 298px;
    overflow: hidden;
}

.blog-img img {
    transition: transform .5s, filter 1.5s ease;
    filter: brightness(100%);
    width: 100%;
    height: 100%;
}

.blog-img:hover img {
    transform: scale(1.15) rotate(-4deg);
    filter: brightness(80%);
}

.blog-cont {
    position: relative;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    min-height: 250px;
    text-align: left;
}

.blog-cont:before,
.blog-cont:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 70px;
    transition: .5s;
    background: #FA6634;
}

.blog-cont:before {
    left: -80px;
    top: 0;
}

.blog-cont:after {
    right: -80px;
    bottom: 0;
}

.blog-cont:hover:before {
    left: 0;
}

.blog-cont:hover:after {
    right: 0;
}

.blog-cont h3 {
    font-size: 15px;
    color: #1d1d1d;
    font-weight: 100;
    font-family: hind, arial, sans-serif;
    margin-top: 0;
    margin-bottom: 15px;
}

.blog-cont h2 {
    font-family: hind-bold, arial, sans-serif;
    line-height: 32px;
    color: #333;
    margin: 5px 0 15px;
    font-size: 24px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.blog-cont p {
    font-family: hind-bold, arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #333;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-cont a {
    background-color: #347078;
    margin-top: 20px;
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    font-family: hind-bold, arial, sans-serif;
    border-radius: 90px;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 15px;
    display: block;
    width: max-content;
}

.load-more,
.view-more {
    text-align: center;
    width: 100%;
}

.load-more-container {
    text-align: center!important;
    margin-top: 20px;
}


.load-more-btn,
.view-more-btn {
    background-color: #FA6634;
    margin: 20px auto;
    color: #fff;
    padding: 15px 36px;
    font-weight: 600;
    font-family: hind-bold, arial, sans-serif;
    border-radius: 90px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    display: block;
    width: max-content;
    cursor: pointer;
}

.load-more-btn:hover,
.view-more-btn:hover,
.load-more-btn:focus,
.view-more-btn:focus{
    background-color: #FA6634;
}


@media only screen and (max-width: 820px){
.single-blog-box{
width: 100%;
}
}

@media only screen and (max-width: 575px){
.blog-img {
height:180px;
}
.blog-cont a {
margin:20px auto;
}
}