.section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 47px;
    margin-top: 130px;
}

.section-title {
    /* max-width: 762px; */
    width: 100%;
    margin: 0;
}

.section-description {
    max-width: 467px;
    width: 100%;
    margin-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    margin-right: 8px;
}

.section-description.no-description {
    position: relative;
}

.section-description.no-description:after {
    content: '';
    position: absolute;
    right: -14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 14px;
    height: 100%;
    height: 152px;
    background-image: url('../images/head_arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.description-text {
    position: relative;
    /* margin: 10px 0; */
}

.description-text:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 12px;
    height: 100%;
    background-image: url('../images/head_arrow.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
}

#breadcrumbs span {
    color: #00BBD4;
}

#breadcrumbs span a {
    color: #AAAAAA;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
}
#breadcrumbs span:not(:first-child) a {
    color: #152C3F;
}
#breadcrumbs span[aria-current="page"] {
    color: #152C3F;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    display: inline-block;
}

#breadcrumbs {
    margin-top: 40px;
    margin-bottom: 0;
}

.description-text p {
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .description-text {
        padding-right: 10px;
    }
}

@media (max-width: 767.96px) {
    .section-header {
        display: block;
        margin-top: 80px;
    }

    .section-description {
        max-width: 100%;
        margin-left: 0;
        margin-top: 42px;
        margin-right: 0;
    }

    .description-text {
        padding-right: 16px;
    }

    .description-text:after {
        right: 0;
    }

    .description-text p {
        margin-top: 10px;
        margin-bottom: 0px;
    }

    #breadcrumbs {
        margin-top: 49px;
    }

    .section-description.no-description {
        margin-top: -42px;
    }

    .section-description.no-description:after {
        right: 0;
        display: none;
    }

    .section-header.no-description .section-title {
        position: relative;
    }

    .section-header.no-description .section-title:after {
        content: '';
        position: absolute;
        right: -10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 14px;
        height: 100%;
        background-image: url('../images/head_arrow.svg');
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: cover;
    }
}