.separator-line {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    padding-top: 20px;
    padding-bottom: 20px;
}
.separator-line h2 {
    text-align: center;
    line-height: 40px;
    text-transform: uppercase;
    color: #fff;
}
.separator-line .separator-lline {
    width: 100%;
    background: linear-gradient(135deg, rgb(0 40 85 / 95%), rgb(1 69 145));
    border-color: rgb(5 88 181);
    height: 25px;
    margin-left: 0;
    border-radius: 0 10px 10px 0;
}
.separator-line .separator-title {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0 30px 0 30px;
    white-space: nowrap;
}
.separator-line .separator-rline {
    width: 100%;
    background: linear-gradient(-135deg, rgb(0 40 85 / 95%), rgb(1 69 145));
    border-color: rgb(5 88 181);
    height: 25px;
    margin-right: 0;
    border-radius: 10px 0 0 10px;
}

@media (max-width: 800px) {
    .separator-line h2 {
        font-size:20px;
        line-height: 30px !important;
    }
    .separator-line .separator-lline, .separator-line .separator-rline {
        width: 30px;
    }
    .separator-line, .separator-title
    {
        white-space: wrap;
    }
    .separator-line h2 {
        text-align: center;
        line-height: 45px;
    }
}