
.common-title {
    color: #db996b;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    text-transform: uppercase;
}
.common-title:before {
    background: linear-gradient(180deg, #ffbc8b 59%, #c5774a);
    bottom: 0;
    content: "";
    left: -30px;
    position: absolute;
    top: 0;
    width: 5px;
    z-index: 1;
}
@media (max-width: 768px) {
    .common-title:before {
        left:-20px;
        width: 3px
    }

    .common-title {
        font-size: 24px;
        letter-spacing: 1px
    }
}