:root {
    --primary-color: #0068F5;
    --primary-color-20: #99C2FB;
    --text-50: #0C3058;
    --text-40: #687E97;
    --text-30: #687E97;
    --link-color: #0068F5;
    --dividers: #C3CFE7;
    --divider-40: #E1E7F3;
    --downriver-50: #0C3058;
    --downriver-30: #687E97;
    --disable-60: #8596AF;
}

* {
    font-family: 'Rubik', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #F7F8FA;
    font-family: "Rubik", sans-serif;
    box-sizing: border-box;
}

main {
    /*height: calc(100vh - 144px);*/
    flex: 1;
    margin-top: 60px;
    /*overflow-x: auto;*/
}

main.main-service {
    overflow: hidden;
}

.container {
    /*max-width: 1480px;*/
    /*width: 100%;*/
    /*margin-right: auto;*/
    /*margin-left: auto;*/
    /*padding: 0 40px;*/
    max-width: calc(100% - 28vw);
    width: 100%;
    margin-right: 400px;
    margin-left: 0;
    padding: 0 40px;
}

.section-announcement .container {
    max-width: 1480px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 40px;
}

.homepage-block .container {
    max-width: 1480px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 40px;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h1 {
    font-size: 32px;
    line-height: 125%;
    font-weight: 500;
}

h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}

.label {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
}

input,
textarea,
select {
    outline: none;
}

p {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 25px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0!important;
    padding: 0;
    border-radius: 50%;
    background: var(--primary-color-20);
}

.swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
}

.breadcrumbs-inner {
    display: none;
    position: absolute;
    top: 80px;
    right: 32px;
    z-index: 100;
}

.breadcrumbs-inner .breadcrumbs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.breadcrumbs-inner a {
    color: #0068F5;
    font-size: 14px;
    font-weight: 400;
}

#filter-list .filter-item {
    display: flex;
    align-items: center;
    gap: .4rem;
}

#filter-list .filter-count { opacity: .8; }

#filter-list .caret {
    display: inline-flex;
    margin-inline-start: .25rem;
    transition: transform .2s ease;
    pointer-events: none; /* чтобы клик по каретке не дергал чекбокс */
}

#filter-list li.filter-parent .caret { transform: rotate(0deg); }
#filter-list li.filter-parent.is-open .caret { transform: rotate(180deg); }

@media (max-width: 1440px) {
    .container {
        max-width: calc(100% - 28vw);
        margin-right: 28vw;
        padding: 0 32px;
    }
}

@media (max-width: 1280px) {
    main {
        /*height: calc(100vh - 144px);*/
        /*flex: 1;*/
        margin-top: 64px;
    }
    .container {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        padding: 0 32px;
    }
    h1 {
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
    }
    h2 {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
    }
    p {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
    }
    .breadcrumbs-inner {
        display: flex;
    }
    .breadcrumbs-inner .breadcrumbs {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    main {
        margin-top: 7px;
    }
    .container {
        padding: 0 16px;
    }
    h1 {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
    }
    h2 {
        font-size: 16px;
        line-height: 16px;
        font-weight: 500;
    }
    .breadcrumbs-inner {
        display: none;
    }
}

.otgs-development-site-front-end {
    display: none;
}