/* Шрифт: Rubik
 * Цвет заголовков: #1D4A8E
 * Цвет ссылок: #035CB0 / #424146
 * Цвет текста: #424146
 * Цвет фона сайта: #F3F3F3
 * Цвет хлебных крошек: #7f8c8d / #035CB0
*/

/* ОБЩИЕ СТИЛИ */
body {
    line-height: 1.6;
    color: #424146;
    background-color: #F3F3F3;
    font-family: Rubik, sans-serif;
}

.container {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ХЛЕБНЫЕ КРОШКИ */
.breadcrumbs {
    font-size: medium;
    color: #7f8c8d;
}

.breadcrumbs a {
    text-decoration: none;
    color: #7f8c8d;
}

.breadcrumbs a:hover {
    color: #035CB0;
    transition: color 0.3s;
}

.breadcrumbs span {
    color: #035CB0;
}

@media (max-width: 1200px) {
    .only-desktop {
        display: none;
    }

    .breadcrumbs {
        max-height: 25px;
        margin-bottom: 25px;
        overflow: hidden;
    }
}