.info-strip {
    background: #EFEFEF;
    padding: 24px 0;
}
.info-strip .row{
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.info-strip .strip-data{
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    font-family: var(--font-body);
}
.info-strip strong {
    color: rgba(0, 0, 0, 1);
    font-family: var(--font-medium) !important;
    font-weight: 500 !important;
    margin-right: 12px;
}
.info-strip span {
    position: relative;
    padding-left: 11px;
}
.info-strip span::before {
    content: "";
    height: 19px;
    width: 1px;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left:0;
    position: absolute;
}
@media (max-width: 991.98px) {
    .info-strip{
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .info-strip .strip-data {
        margin-bottom: 29px;
        width: 100%;
    }
}
@media (max-width: 767.98px) {


    .info-strip span strong::before {
        content: none;
    }
}