@font-face {
    font-family: 'Lato';
    src: local('Lato Regular'), local('Lato-Regular'),
    url('/for-our-clients/static/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: Lato, serif;
}

:root {
    --text-color: #1A1C1F;
    --button-main-color: #88000D;
}

body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

.content {
    width: 1200px;
    margin: 24px auto;
    display: flex;
    flex-direction: column;
}

.title {
    display: flex;
    align-items: center;
    padding: 12px 0;
    box-sizing: border-box;
}

.title__text {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #1A1C1F;
    margin: 0;
}

.breadcrumbs {
    all: unset;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 16px 0;
}

.breadcrumbs__item {
    font-size: 14px;
    margin-right: 8px;
}

.breadcrumbs__link {
    color: #357894;
    text-decoration: none;
}

.breadcrumbs__text {

}

.textBlock {
    width: 850px;
    background: #fff;
    padding: 16px;
    margin: 12px auto;
    border-radius: 8px;
    box-sizing: border-box;
}

.textBlock_sto {
    background: #031D44;
}

.paragraph {
    color: #1A1C1F;
    font-size: 18px;
    line-height: 26px;
    margin: 8px 0;
}

.paragraph_sto {
    color: #fff;
}

.link {
    text-decoration: none;
    color: #3229FF;
    font-weight: bold;
}

.link_sto {
    color: #DB7F67;
}

.list {
    margin: 0;
}

.listItem {
    color: #1A1C1F;
    font-size: 18px;
    line-height: 26px;
}

.image {
    width: 550px;
    height: 550px;
    margin: 0 auto;
    border-radius: 8px;
}

@media screen and (max-width: 1100px) {
    .content {
        width: 100%;
        padding: 0 24px;
        margin: 8px 0;
        box-sizing: border-box;
    }

    .title {
        flex-direction: column;
        padding: 12px 0;
    }

    .title__text {
        font-size: 22px;
        line-height: 32px;
    }

    .breadcrumbs {
        overflow-x: scroll;
    }

    .breadcrumbs__item {
        margin-right: 16px;
        text-align: center;
    }

    .textBlock {
        width: 100%;
        padding: 12px;
    }

    .paragraph {
        font-size: 14px;
        line-height: 22px;
        margin: 4px 0;
    }

    .listItem {
        font-size: 14px;
        line-height: 22px;
    }

    .image {
        width: 80%;
        height: auto;
    }
}

