.img-wrap {
    position: relative;
    height: auto;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
    padding-top: 50.25%;
}

.img-wrap img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    transform: translateZ(0);
    margin: 0 auto;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    top: 0;
    position: absolute;
    object-position: 50% 50%;
    object-fit: cover;
}
.title-section{
    display: inline-block;
    color: #111;
    position: relative;
    padding: 10px 20px;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.title-section::after{
    width: 200px;
    height: 3px;    
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    background: #da0000;
}
.h-section-title {
    display: flex;
    background: #fff;
    border-bottom: 2px solid #da0000;
    height: 42px;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.h-section-title h2 {
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 500;
}
.h-section-title h2 span {
    background: #da0000;
    color: #fff;
    height: 50px;
    display: inline-block;
    line-height: 60px;
    padding: 0px 25px 0 15px;
    position: relative;
    z-index: 2;
}
.h-section-title h2 span:after {
    content: "";
    width: 75px;
    height: 50px;
    position: absolute;
    top: 0;
    right: -17px;
    background: #da0000;
    transform: skewX(35deg);
    z-index: -1;
}
.h-section-title .viewall {
    transition: all 0.3s;
    white-space: nowrap;
}
.h-section-title p{
    margin-bottom: 0 !important;
}