.intro-page {
    padding: 50px 0 40px 0;
    background-color: #F5F5F5;
}

.intro-page__inner {
    display: flex;
    align-items: center;
}

.intro-page__content {
    width: 100%;
    max-width: 730px;
}

.intro-page__title {
    margin: 0 0 10px 0;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #333333;
}

.intro-page__text {
    margin: 0;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: #777777;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 18px;
    margin: 0 0 0 auto;
    padding: 0;
    list-style-type: none;
}

.breadcrumbs__item {
    position: relative;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: #555555;
}

.breadcrumbs__item::after {
    content: '/';
    position: absolute;
    right: -12px;
    top: 0;
}

.breadcrumbs__item:last-child::after {
    display: none;
}

.breadcrumbs__link {
    text-decoration: none;
    color: inherit;
}

@media screen and (max-width: 768px) {
    .intro-page__inner {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .breadcrumbs {
        margin: 0 0 30px 0;
    }
}

@media screen and (max-width: 575px) {
    .intro-page__title {
        font-size: 24px;
        line-height: 34px;
    }
}