@import url(variables.css);

.differential-block {
    padding-top: 16px;
}
.differential-block .image {
    height: 300px;
    max-width: 100%;
}
.differential-block .image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.differential-block .text {
    position: relative;
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 600;
}
.differential-block .text,
.differential-block .body {
    color: #666666;
}
.differential-block .text .title {
    position: relative;
    display: inline-block;
}
/* .differential-block .text .title::after {
    position: absolute;
    bottom: 0;
    
    content: ' ';

    background: var(--bg-gradient-right);
    height: 6px;
    width: 100%;
} */


@media (max-width: 992px) {
    .differential-block .text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .differential-block {
        padding-top: 0;
    }
    
    .differential-block .text,
    .differential-block .image {
        width: 100%;
        max-width: 100%;
    }
    .differential-block .image img {
        object-fit: cover;
        width: 100%;
    }
    .differential-block .text {
        padding-top: 20px;
    }
    .differential-block .image img,
    .differential-block .text {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .differential-block .text,
    .differential-block .image {
        width: 100%;
    }
    .left-bar::after,
    .right-bar::after {
        content: " ";
        position: absolute;
        background: #FFFA;
        z-index: -1;
        height: 2px;
        width: 70%;
    }
    .left-bar::after {
        left: 0;
    }   
    .right-bar::after {
        right: 0;
    }
}