.HSlider {
    font: normal 14pt arial;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    /* height: 600px; */
        margin-bottom: 20px;
}

.HSlider  .Header{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 30px;
    text-transform: uppercase;
    display: flex;
    padding: 5px;
    color: #ec1c24;
    border-bottom: 1px solid #e9ecef;
    /* padding-bottom: 30px; */
    flex-direction: column;
    position: relative;
    line-height: 45px;
           font-family: 'Roboto Condensed', sans-serif!important
}
         
.HSlider  .Header span{
         font-family: 'Roboto Condensed', sans-serif!important;
}
.HSlider  .Header:after {
    content: '\f111';
    font-size: 13px;
    display: flex;
    background: #fff;
    width: 54px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
        font-family: 'FontAwesome';
}
.HSlider .ItemPanel {
     overflow: hidden;
    position: relative;
    left: 0;
    top: 0;
}
.HSlider ul{
    padding-left:0!important;
}
.HSlider .ItemContainer {
    list-style: none;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    width: 100%!important;
    left: 0;
    top: 0;
        gap: 30px;
}
.HSlider .ItemContainer .Item  .text{
    margin-top:10px;
    font-size:16px;
        line-height: 20px;
        order:1;
        line-height: 1.4;
}
.HSlider .ItemContainer .Item {
    width: 33.333%;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}
.HSlider .ItemContainer .Item a{
        display: flex;
            flex-direction: column;
}

.HSlider .ItemContainer .Item a:hover{
	color: #ec1c24
}
.HSlider .ItemContainer .Item a:hover .Summary{
	color: #333;
}

.HSlider .ItemContainer .Item img {
    height: 220px;
        width:100%;
        object-fit: cover;
}
.HSlider .ItemContainer .Item .Summary{
    order:2;
        padding-top: 10px;
        font-weight: normal;
        line-height: 20px;
}
.HSlider .ItemContainer .Item .image {
    width: auto;
    height: 220px;
    background-color: #fcfcfc;
    margin-bottom: 6px;
}

.HSlider .ItemPanel .PreButton {
    width: 48px;
    height: 48px;
    background: #c0c0c0;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 2;
}

.HSlider .ItemPanel .NextButton {
    width: 48px;
    height: 48px;
    background: #c0c0c0;
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 2;
}
@media only screen and (max-width: 768px){
        .HSlider .ItemContainer {
            flex-direction: column!important;
        }
        .HSlider .ItemContainer .Item{
        width:100%!important;
        }
        .HSlider{
        height: auto;
        }
}