@charset "UTF-8";
/*
    theme
    for Bootstrap v4

    Ivan Kolesnikov, ivan.kolesnikov@modera.net
    Version: 04.03.24

    Structure
    --------------------------------------------
    1. base
        - typography
        - helpers

    2. components
        - c-ico
        - c-btn
        - c-img
        - c-dropdown
        - c-nav
        - form
            - checkbox
            - select
            - datepicker
        - c-carousel
        - c-slider

    3. layout
        - layout
        - navbar
        - footer
        - section

    PAGES
        - landing

*/
@import url("https://fonts.googleapis.com/css?family=Inter:100,300,400,500,700");
@import url("https://use.fontawesome.com/releases/v5.6.3/css/all.css");
/* 1. base ----------------------------------*/
body {
    color: #152023;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transition-property: border-color, background-color, color, opacity;
    transition-property: border-color, background-color, color, opacity;
}

a:hover, a:focus {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}

a:focus {
    outline: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.2;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
.h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
    margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child {
    margin-bottom: 0;
}

h1, .h1 {
    font-size: 48px;
}

h2, .h2 {
    font-size: 40px;
}

h3, .h3 {
    font-size: 32px;
}

h4, .h4 {
    font-size: 24px;
}

h5, .h5 {
    font-size: 18px;
}

h6, .h6 {
    font-size: 14px;
}

p, ul, ol, dl {
    margin-bottom: 20px;
}

dt {
    margin-bottom: 10px;
    font-weight: 500;
}

dd {
    margin-bottom: 10px;
    font-weight: 300;
}

b, strong {
    font-weight: 500;
}

figcaption {
    display: block;
    padding: 6px 8px;
    background-color: #e5e5e5;
    color: #666;
    font-size: 11px;
    font-weight: normal;
    text-align: center;
}

address {
    color: #666;
}

hr {
    box-sizing: border-box;
    margin: 20px 0;
    border-color: #203133;
}

.t-lead {
    font-size: 1.25em;
}

.t-sublead {
    font-size: 1.125em;
}

.t-rear {
    font-size: 0.875em;
}

.t-primary {
    color: #45dfff !important;
}

a.t-primary:hover, a.t-primary:focus {
    color: #10314c !important;
}

.t-muted {
    color: #c5c5c5 !important;
}

a.t-muted:hover, a.t-muted:focus {
    color: #606164 !important;
}

.t-info {
    color: #10314c !important;
}

a.t-info:hover, a.t-info:focus {
    color: #000 !important;
}

.t-success {
    color: #259a2d !important;
}

a.t-success:hover, a.t-success:focus {
    color: #28702d !important;
}

.t-warning {
    color: #d0a42d !important;
}

a.t-warning:hover, a.t-warning:focus {
    color: #b4943d !important;
}

.t-danger {
    color: #e53e3e !important;
}

a.t-danger:hover, a.t-danger:focus {
    color: #c52222 !important;
}

@media (max-width: 575px) {
    .h-hidden-sm {
        display: none;
    }
}

@media (max-width: 767px) {
    .h-hidden-md {
        display: none;
    }
}

@media (max-width: 991px) {
    .h-hidden-lg {
        display: none;
    }
}

@media (max-width: 1199px) {
    .h-hidden-xl {
        display: none;
    }
}

@media (min-width: 576px) {
    .h-visible-sm {
        display: none;
    }
}

@media (min-width: 768px) {
    .h-visible-md {
        display: none;
    }
}

@media (min-width: 992px) {
    .h-visible-lg {
        display: none;
    }
}

@media (min-width: 1200px) {
    .h-visible-xl {
        display: none;
    }
}

/* 2. components ----------------------------*/
.c-ico {
    display: inline-block;
    vertical-align: middle;
    font-family: "icons" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-align: center;
    text-transform: none;
    text-decoration: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.c-ico:hover, .c-ico:focus {
    text-decoration: none;
}

.c-close {
    position: relative;
    width: 40px;
    height: 40px;
    border: 0;
    background: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: inherit;
    font-size: 0;
    font-weight: normal;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    opacity: 0.8;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transition-property: background-color, color, opacity;
    transition-property: background-color, color, opacity;
}

.c-close::before, .c-close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 0;
    margin: -1px 0 0 -25%;
    border-top: 2px solid;
    content: "";
}

.c-close::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.c-close::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.c-close:hover, .c-close:focus {
    opacity: 1;
}

.c-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 40px;
    padding: 0 40px 0 15px;
    overflow: hidden;
    border: 0;
    border-radius: 4px;
    background-color: transparent;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transition-property: border-color, background-color, color, opacity;
    transition-property: border-color, background-color, color, opacity;
}

.c-btn:hover, .c-btn:focus, .c-btn.focus {
    outline: 0;
    text-decoration: none;
}

.c-btn.disabled, .c-btn:disabled, .c-btn[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.c-btn .c-ico {
    margin: -0.125em 0.485em 0 -4px;
    font-size: 1.375em;
}

.c-btn .c-spin {
    margin: -3px -24px 0 8px;
}

.c-btn::before {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 0.6em;
    height: 0.6em;
    margin-top: -0.3em;
    border: 2px solid;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
}

.c-btn--block {
    display: block;
    width: 100%;
}

.c-btn--block + .c-btn--block {
    margin-top: 5px;
}

.c-btn--xs {
    height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 30px;
}

.c-btn--sm {
    height: 36px;
    padding-left: 12px;
    padding-right: 12px;
    line-height: 36px;
}

.c-btn--lg {
    height: 46px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 46px;
}

.c-btn--primary {
    background-color: #45dfff;
    box-shadow: 0 0 0 1px white;
    color: #000;
}

.c-btn--primary:hover, .c-btn--primary:focus, .c-btn--primary:active, .c-btn--primary.active {
    background-color: #203133;
    color: #fff;
}

.c-btn--link {
    padding-left: 0;
    padding-right: 25px;
    color: #203133;
    font-weight: 500;
}

.c-btn--link::before {
    right: 10px;
    margin-top: -0.35em;
}

.c-btn--prev {
    margin-right: auto;
}

.c-btn--next {
    margin-left: auto;
}

.c-btn-line {
    margin-left: -3px;
    margin-right: -3px;
}

.c-btn-line .c-btn {
    margin-left: 3px;
    margin-right: 3px;
}

.c-btn-group {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.c-btn-group .c-btn {
    margin: 8px;
}

.c-btn-group--justified .c-btn {
    flex: 1;
}

/*
.c-btn {
    background: none;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    height: 40px;
    line-height: 40px;
    min-width: 100px;
    padding: 0 40px 0 15px;
    position: relative;
    text-decoration: none;
    -webkit-transition: all .35s ease;
            transition: all .35s ease;
    -webkit-transition-property: border-color, background-color, color, opacity;
            transition-property: border-color, background-color, color, opacity;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}
.c-btn:focus,
.c-btn:hover {
    text-decoration: none;
}
.c-btn:focus,
.c-btn.focus {
    outline: 0;
}
.c-btn.disabled,
.c-btn:disabled {
    opacity: .65;
}
.c-btn.disabled,
.c-btn[disabled] {
    pointer-events: none;
}
.c-btn::before {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 0.6em;
    height: 0.6em;
    margin-top: -0.3em;
    border: 2px solid;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    content: "";
}
.c-btn--primary {
    background-color: #2273a3;
    box-shadow: 0 0 1px rgba(255,255,255,.9);
    color: #fff;
}
.c-btn--primary:hover,
.c-btn--primary:focus,
.c-btn--primary:active,
.c-btn--primary.is-active {
    background-color: #0073ac;
    color: #fff;
}

.c-btn--link {
    padding-left: 0;
    padding-right: 25px;
    color: #05537c;
    font-weight: 500;
}
.c-btn--link::before {
    right: 10px;
    margin-top: -0.35em;
}
*/
.c-img {
    display: block;
    margin: 0;
    overflow: hidden;
    font-size: 0;
    text-align: center;
}

.c-img img {
    vertical-align: middle;
    max-width: 100%;
}

.c-img a {
    text-decoration: none;
}

.c-nav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.c-nav__link {
    display: block;
}

.c-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    line-height: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.c-breadcrumb > li,
.c-breadcrumb__item {
    position: relative;
    padding-right: 30px;
}

.c-breadcrumb > li::before,
.c-breadcrumb__item::before {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border: 1px solid;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
}

.c-breadcrumb > li.active, .c-breadcrumb > li.is-active,
.c-breadcrumb__item.active,
.c-breadcrumb__item.is-active {
    padding-right: 0;
    opacity: 0.75;
}

.c-breadcrumb > li.active::before, .c-breadcrumb > li.is-active::before,
.c-breadcrumb__item.active::before,
.c-breadcrumb__item.is-active::before {
    display: none;
}

.c-breadcrumb > li > a,
.c-breadcrumb__link {
    display: inline-block;
}

.c-pager {
    display: flex;
    margin: 0 0 15px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .c-pager {
        margin-right: auto;
    }
}

.c-pager__link {
    display: block;
    width: 32px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
}

.c-pager__link:hover, .c-pager__link:focus {
    background-color: #f4f2f1;
    color: #000;
    text-decoration: none;
}

.c-pager__link.is-active {
    color: #45dfff;
    font-weight: 700;
}

.c-pager__link.is-disabled, .c-pager__link.is-disabled:hover, .c-pager__link.is-disabled:focus {
    background-color: transparent;
    color: inherit;
    opacity: 0.25;
    cursor: default;
}

.c-pager__link--prev,
.c-pager__link--next {
    position: relative;
    width: auto;
    padding: 0 8px;
}

.c-pager__link--prev::before,
.c-pager__link--next::before {
    position: absolute;
    top: 50%;
    width: 0.6em;
    height: 0.6em;
    margin-top: -0.275em;
    border: 2px solid;
    border-width: 2px 2px 0 0;
    font-size: 0.857em;
    content: "";
}

.c-pager__link--prev {
    padding-left: 22px;
}

.c-pager__link--prev::before {
    left: 10px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.c-pager__link--next {
    padding-right: 22px;
}

.c-pager__link--next::before {
    right: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.c-check {
    position: relative;
    display: block;
    padding-left: 34px;
}

.c-check__input {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    margin: 0 !important;
    padding: 0;
    border: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer;
}

.c-check__label {
    flex-direction: column;
    align-items: center;
    min-height: 24px;
}

.c-check__label::before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: 22px;
    text-align: center;
    text-indent: 1px;
    -webkit-transition: border-color 0.35s ease, color 0.35s ease;
    transition: border-color 0.35s ease, color 0.35s ease;
    white-space: nowrap;
    content: "";
}

.c-check__input:hover + .c-check__label::before {
    border-color: #333;
}

.c-check__input:checked + .c-check__label::before {
    border-color: #45dfff;
    color: #45dfff;
    content: "";
}

.c-check__input[disabled] + .c-check__label::before {
    border-color: #ddd;
    opacity: 0.5;
}

/*@import 'partials/form-select.css';
@import 'partials/form-file.css';
@import 'partials/form-datepicker.css';
@import 'partials/form-slider.css';*/
.c-article {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.c-article__img {
    display: block;
    margin: 0 0 20px;
    overflow: hidden;
    border-radius: 8px;
}

.c-article__img img {
    max-width: 100%;
}

.c-article__btn {
    display: block;
    margin: 20px 0 0;
}

.c-article__btn .c-btn {
    font-size: 0.875em;
    text-transform: uppercase;
}

.c-qlinks {
    padding: 30px;
    border-radius: 8px;
    background-color: #f5f5f5;
    text-align: center;
}

@media (max-width: 767px) {
    .c-qlinks {
        margin-right: -15px;
        margin-left: -15px;
        padding: 25px 15px;
        border-radius: 10px;
    }
}

.c-qlinks__title {
    display: block;
    margin: 0 0 30px;
    font-size: 30px;
    font-weight: 500;
}

.c-qlinks__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.c-qlinks__link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px;
    padding: 20px 32px;
    border-radius: 8px;
    background-color: #45dfff;
    color: #000;
}

.c-qlinks__link:hover, .c-qlinks__link:focus {
    background-color: #203133;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .c-qlinks__link {
        margin: 5px;
    }
}

.c-filter {
    margin: 0 0 40px;
}

.c-filter__selected {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    flex-wrap: wrap;
    margin: -2px 0 10px;
}

.c-filter__selected-item {
    position: relative;
    display: inline-block;
    height: 28px;
    padding: 0 22px 0 8px;
    font-size: 0.875em;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transition-property: border-color, background-color, color, opacity;
    transition-property: border-color, background-color, color, opacity;
}

.c-filter__selected-item:last-child {
    margin-right: 0;
}

.c-filter__selected-item::before {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 10px;
    margin-top: -0.5em;
    font-size: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    line-height: 1;
    opacity: 0.7;
    content: "";
}

.c-filter__selected-range .c-filter__selected-item:first-child {
    padding: 0 0 0 22px;
}

.c-filter__selected-range .c-filter__selected-item:first-child::before {
    right: initial;
    left: 8px;
}

.c-filter__selected-range .c-filter__selected-item:last-child {
    padding-left: 0;
}

.c-filter__selected-range .c-filter__selected-delimiter {
    padding: 0 8px;
}

.c-filter__selected-range .c-filter__selected-delimiter::before {
    position: absolute;
    content: "-";
}

/*.c-filter__selected-item:hover,
.c-filter__selected-item:focus,
.c-filter__selected-item:active {
    background-color: #f2f2f2;
}*/

.c-filter__selected-item:hover::before,
.c-filter__selected-item:focus::before,
.c-filter__selected-item:active::before {
    color: #45dfff;
}

.c-filter__selected-group {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 2px 6px 2px 0;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    border-radius: 16px;
    background-color: #fff;
    color: #000;
}

.c-filter__selected-item--remove {
    width: 30px;
    padding: 0;
    font-size: 0;
}

.c-filter__selected-item--remove::before {
    right: 50%;
    margin-right: -0.6em;
}

.c-filter__selected-clear {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 30px;
    margin: 2px 6px 2px 0;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    border-radius: 16px;
    background-color: #fff;
    color: #000;
    font-size: 0;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transition-property: border-color, background-color, color, opacity;
    transition-property: border-color, background-color, color, opacity;
}

.c-filter__selected-clear::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    margin-top: -0.5em;
    margin-left: -0.5em;
    font-size: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    line-height: 1;
    opacity: 0.7;
    content: "";
}

.c-filter__selected-clear:hover,
.c-filter__selected-clear:focus,
.c-filter__selected-clear:active {
    /*background-color: #f2f2f2;*/
    color: #45dfff;
}

.c-filter__tabs {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: center;*/
    width: 100%;
    margin: 0;
}

.c-filter__tabs-item {
    position: relative;
    height: 36px;
    margin: 0 5px 3px 0;
    padding: 0 28px 0 18px;
    border: 0;
    border-radius: 18px;
    background-color: #fff;
    color: inherit;
    font-weight: 400;
    line-height: 36px;
    cursor: pointer;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transition-property: border-color, background-color, color, opacity;
    transition-property: border-color, background-color, color, opacity;
}

.c-filter__tabs-item::before {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 0.6em;
    height: 0.6em;
    margin-top: -0.4em;
    border: 2px solid;
    border-width: 2px 2px 0 0;
    font-size: 0.857em;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    content: "";
}

.c-filter__tabs-item:hover,
.c-filter__tabs-item:focus {
    /*background-color: #203133;*/
    color: #45dfff;
    outline: none;
}

.c-filter__tabs-item:not(.collapsed) {
    height: 40px;
    margin-top: 2px;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #fff;
    color: #45dfff;
    line-height: 38px;
}

.c-filter__tabs-item:not(.collapsed)::before {
    margin-top: -0.15em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.c-filter__tabs-item:not(.collapsed)::after {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 8px;
    background-color: #fff;
    content: "";
}

.c-filter__content {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 8px;
    background-color: #fff;
}

.c-filter__body {
    display: none;
    height: auto !important;
    padding: 20px;
    border: 10px solid transparent;
}

.c-filter__body.show {
    display: block;
}

.c-filter__title {
    display: block;
    margin: 15px 0;
    font-size: 16px;
    font-weight: 500;
}

.c-filter__title:first-child {
    margin-top: 0;
}

.c-filter__header {
    display: flex;
    align-items: center;
}

.c-filter__header .c-filter__title {
    margin-right: 20px;
    margin-bottom: 0;
}

.c-filter__values {
    display: flex;
    align-items: center;
}

.c-filter__values .form-control {
    height: 32px;
    width: 100px;
}

.c-filter__values .form-divider {
    width: 40px;
    text-align: center;
}

.c-filter__list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px 0 0;
    font-size: 0.875em;
}

.c-filter__list .c-check {
    width: 200px;
    margin: 10px 10px 0 0;
}

.c-filter__slider {
    margin-bottom: 20px;
}

.c-filter .ui-slider {
    margin-top: 45px;
    margin-bottom: 30px;
    font-size: 0.875em;
}

.c-filter__apply {
    display: block;
    margin: 20px 0 0;
    text-align: center;
}

.c-sorting-toggler {
    position: relative;
    min-width: 40px;
    height: 36px;
    margin: 0 0 3px auto;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background-color: #f4931f;
    color: #fff;
    font-size: 16px;
    line-height: 36px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transition-property: border-color, background-color, color, opacity;
    transition-property: border-color, background-color, color, opacity;
}

.c-sorting-toggler:hover,
.c-sorting-toggler:focus {
    background-color: #203133;
    color: #fff;
    outline: none;
}

.c-sorting-toggler:not(.collapsed) {
    background-color: #fff;
    color: #45dfff;
}

.c-sorting-toggler .fa,
.c-sorting-toggler .ico {
    margin: 0;
}

.c-sorting {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: -10px 0 25px;
}

.c-sorting:not(.open) {
    display: none;
}

.c-sorting__group {
    position: relative;
    display: inline-block;
    margin: 0 0 15px 15px;
}

.c-sorting__label {
    margin-bottom: 3px;
    font-size: 12px;
}

.c-sorting .form-control {
    min-width: 80px;
    height: 30px;
    font-size: 12px;
}

.c-sorting__btn {
    display: flex;
}

.c-sorting__btn-item {
    position: relative;
    display: block;
    width: 38px;
    height: 30px;
    margin: 0;
    padding: 0;
    color: inherit;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.c-sorting__btn-item input {
    position: absolute;
    opacity: 0;
}

.c-sorting__btn-item .fa {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #fff;
    color: #203133;
    line-height: inherit;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transition-property: border-color, background-color, color, opacity;
    transition-property: border-color, background-color, color, opacity;
}

.c-sorting__btn-item:first-child .fa {
    padding-left: 3px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.c-sorting__btn-item:last-child .fa {
    padding-right: 3px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.c-sorting__btn-item:hover .fa {
    /*background-color: #05537c;*/
    color: #45dfff;
}

.c-sorting__btn-item input:checked + .fa {
    /*background-color: #fff;*/
    color: #45dfff;
}

@media (min-width: 768px) {
    .c-sorting__label {
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        white-space: nowrap;
    }
}

.c-strainer {
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    background-color: #deecf3;
    /*background-image: radial-gradient(#043252, #0f5687);
    color: #fff;*/
}

.c-strainer .form-control {
    color: #000;
}

.c-strainer__title {
    display: block;
    margin: 0 0 30px;
    font-size: 26px;
    font-weight: 500;
}

.c-strainer__descr {
    display: block;
    margin: 0 0 30px;
    font-size: 16px;
}

.c-strainer__article {
    height: 100%;
    margin: 0;
    transition: 0.35s ease box-shadow;
}

a.c-strainer__article:hover {
    box-shadow: 0 0 25px rgba(13, 115, 163, 0.75);
}

a.c-strainer__article:hover .c-article__body {
    background-color: #fff;
}

.c-article__img {
    height: 0;
    margin: 0;
    padding-bottom: 56%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.c-article__img img {
    width: 100%;
}

.c-article__body {
    flex: 1;
    padding: 12px 15px;
    border-radius: 0 0 8px 8px;
    background-color: #f8f8f8;
    color: #000;
    text-align: center;
    transition: 0.35s ease background-color;
}

.c-article__title {
    display: block;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.c-article__descr {
    display: block;
    margin: 5px 0 0;
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .c-strainer__descr {
        font-size: 14px;
    }

    .c-strainer .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .c-strainer [class*=col-] {
        padding-left: 5px;
        padding-right: 5px;
    }

    .c-article__title {
        font-size: 16px;
    }

    .c-article__descr {
        font-size: 10px;
    }
}

/* 3. layout ----------------------------------*/
html,
body {
    height: 100%;
}

.l-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100%;
}

.l-container {
    margin-left: auto;
    margin-right: auto;
}

/*@media (min-width: 992px) {
    .l-container {
        max-width: 920px;
    }
}*/

.l-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    padding: 0;
    list-style: none;
}

.l-col {
    box-sizing: border-box;
    flex-basis: 100%;
    flex-grow: 1;
    padding: 0 8px;
    width: 100%;
}

.l-col--1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.l-col--2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.l-col--3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.l-col--4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.l-col--5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.l-col--6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.l-col--7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.l-col--8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.l-col--9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.l-col--10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.l-col--11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.l-col--12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .l-col--sm-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .l-col--sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .l-col--sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .l-col--sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .l-col--sm-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .l-col--sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .l-col--sm-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .l-col--sm-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .l-col--sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .l-col--sm-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .l-col--sm-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .l-col--sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .l-col--md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .l-col--md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .l-col--md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .l-col--md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .l-col--md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .l-col--md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .l-col--md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .l-col--md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .l-col--md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .l-col--md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .l-col--md-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .l-col--md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .l-col--lg-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .l-col--lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .l-col--lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .l-col--lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .l-col--lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .l-col--lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .l-col--lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .l-col--lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .l-col--lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .l-col--lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .l-col--lg-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .l-col--lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .l-col--xl-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .l-col--xl-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .l-col--xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .l-col--xl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .l-col--xl-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .l-col--xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .l-col--xl-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .l-col--xl-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .l-col--xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .l-col--xl-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .l-col--xl-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .l-col--xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.c-navbar {
    position: relative;
    z-index: 3;
    height: 64px;
    margin: 0;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .c-navbar {
        height: 92px;
        margin-top: 30px;
        /*background-color: #fff;*/
    }
}

.c-navbar__header {
    height: 100%;
    padding: 12px 0;
    background-color: #000;
    color: #fff;
}

.c-navbar__header .l-container {
    display: flex;
    align-items: center;
    height: 100%;
}

@media (max-width: 767px) {
    .c-navbar--open .c-navbar__header::before {
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.75);
        content: "";
    }
}

.c-navbar__brand {
    display: block;
    width: 160px;
    height: 40px;
    margin-left: auto;
    padding: 0;
    line-height: 40px;
}

@media (min-width: 768px) {
    .c-navbar__brand {
        position: relative;
        z-index: 1;
        margin-left: 0;
    }
}

.c-navbar__brand img {
    max-width: 100%;
    max-height: 100%;
}

.c-navbar__toggler {
    order: -1;
    position: relative;
    height: 40px;
    width: 40px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: inherit;
    font-size: 0;
}

@media (min-width: 768px) {
    .c-navbar__toggler {
        display: none;
    }
}

.c-navbar__toggler-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 2px;
    margin: -1px 0 0 -30%;
    background-color: currentColor;
}

.c-navbar__toggler-text::before, .c-navbar__toggler-text::after {
    position: absolute;
    right: 0;
    left: 0;
    height: inherit;
    border-radius: inherit;
    background-color: currentColor;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transition-property: transform, top;
    transition-property: transform, top;
    content: "";
}

.c-navbar__toggler-text::before {
    top: -7px;
}

.c-navbar__toggler-text::after {
    top: 7px;
}

.c-navbar--open .c-navbar__toggler-text {
    background-color: transparent;
}

.c-navbar--open .c-navbar__toggler-text::before, .c-navbar--open .c-navbar__toggler-text::after {
    top: 0;
}

.c-navbar--open .c-navbar__toggler-text::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.c-navbar--open .c-navbar__toggler-text::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.c-navbar__collapse {
    position: relative;
    height: 100%;
}

@media (max-width: 767px) {
    .c-navbar__collapse {
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        width: 80%;
        padding: 15px 0;
        background-color: #fff;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
        -webkit-transition-property: transform;
        transition-property: transform;
    }

    .c-navbar--open .c-navbar__collapse {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media (min-width: 768px) {
    .c-navbar__collapse {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    .c-navbar__collapse .l-container {
        display: flex;
        align-items: center;
        height: 100%;
    }
}

.c-navbar__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-left: -15px;
    margin-right: -15px;
    /*color: #10314c;
    font-weight: 500;*/
}

@media (min-width: 768px) {
    .c-navbar__nav {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 8px;
        margin-left: 180px;
        margin-right: 0;
        color: #fff;
    }
}

/*@media (min-width: 992px) {
    .c-navbar__nav {
        margin-left: 140px;
    }
}*/

.c-navbar__nav .c-nav__link {
    display: block;
    padding: 10px 20px;
}

.c-navbar__nav .c-nav__link:hover, .c-navbar__nav .c-nav__link:focus {
    text-decoration: underline;
}

.c-navbar__nav .c-nav__link.is-active {
    color: #45dfff;
}

@media (min-width: 768px) {
    .c-navbar__nav .c-nav__link {
        padding-left: 10px;
        padding-right: 10px;
    }

    .c-navbar__nav .c-nav__link.dropdown-toggle {
        padding-right: 30px;
    }
}

.c-navbar__nav .dropdown-menu {
    background-color: #1f2937;
    color: #fff;
}
.c-navbar__nav .dropdown-menu::before {
    border-bottom-color: #1f2937;
}
.c-navbar__nav .dropdown-menu > li > a:hover,
.c-navbar__nav .dropdown-menu > li > a:focus {
    background-color: #111827;
}

.c-navbar__top {
    margin-top: 15px;
    padding: 15px 0;
    border-top: 1px solid #d7d7d7;
    font-size: 0.875em;
    font-weight: 500;
    line-height: 30px;
}

@media (min-width: 768px) {
    .c-navbar__top {
        position: absolute;
        top: -30px;
        right: 0;
        left: 0;
        margin: 0;
        padding: 0;
        border: 0;
        background-color: #152023;
        color: #fff;
    }
}

.c-navbar__top .c-links {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-right: -6px;
    margin-left: -6px;
}

.c-navbar__top .c-links__item {
    border-left: 1px solid #000;
}

.c-navbar__top .c-links__item:first-child {
    border-left: 0;
}

.c-navbar__top .c-links__link {
    display: block;
    padding: 0 12px;
}

.c-navbar__top .c-links__link:hover, .c-navbar__top .c-links__link:focus {
    color: inherit;
    text-decoration: underline;
}

.c-navbar__top .c-langswitch {
    display: flex;
    margin: 0;
}

.c-navbar__top .c-langswitch__link {
    padding: 0 12px;
    border-left: 1px solid #d7d7d7;
}

.c-navbar__top .c-langswitch__link:first-child {
    border-left: 0;
}

.c-navbar__top .c-langswitch__link.is-active {
    color: #2273a3;
}

.c-footer {
    width: 100%;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    background-color: #152023;
    color: #fff;
}

@media (max-width: 767px) {
    .c-footer {
        font-size: 0.875em;
    }
}

.c-footer__breadcrumb {
    padding-top: 16px;
    /*padding-bottom: 8px;
    background-color: #2273a3;
    color: #fff;*/
    font-size: 0.75em;
}

.c-footer__body {
    padding: 24px 0 40px;
    /*background-color: #044466;
    background-image: linear-gradient(to bottom, #04527b, #032a3e);
    color: #fff;*/
}

.c-footer__title {
    margin: 0 0 15px;
    font-size: 1.125em;
    font-weight: 400;
}

.c-footer__copy {
    padding: 12px 0;
    background-color: #40616a;
    color: #fff;
    font-size: 0.75em;
}

.c-footer__copy .l-container {
    display: flex;
}

.c-footer__copy-text {
    flex: 1;
    margin: 0;
}

.c-footer__copy-side {
    width: 11em;
    margin: 0 0 0 -11em;
}
.c-footer__copy-links .c-nav__item {
    margin-left: 24px;
}

.c-footer__links {
    flex-direction: column;
    min-height: 100%;
    margin: 0;
    list-style: none;
    text-align: right;
}

.c-footer__links .c-nav__item {
    display: block;
    margin: 4px 0;
}
.c-footer__links .c-nav__link {
    color: #45dfff;
}
.c-footer__links .c-nav__link:hover,
.c-footer__links .c-nav__link:focus {
    color: inherit;
}
.c-footer__links .c-nav__powered {
    display: block;
    margin: auto 0 0;
}

.c-footer__logo {
    display: block;
    width: 160px;
    margin: 0 0 16px;
}

.c-footer__logo img {
    max-width: 100%;
}

.c-social {
    display: flex;
    flex-wrap: wrap;
    margin: 24px 0 0;
}

.c-social__link {
    width: 32px;
    height: 32px;
    margin-right: 16px;
    border-radius: 50%;
    background-color: #40616a;
    font-size: 0;
    text-align: center;
    line-height: 32px;
}

.c-social__link::before {
    font-size: 16px;
}

.c-social__link:hover, .c-social__link:focus {
    background-color: #45dfff;
    text-decoration: none;
}

.c-modera {
    text-decoration: none;
}

a.c-modera {
    opacity: 0.8;
}

a.c-modera:hover, a.c-modera:focus {
    text-decoration: none;
    opacity: 1;
}

.c-modera__text {
    margin-right: 5px;
}

.c-modera__img {
    vertical-align: baseline;
    height: 1em;
}

.c-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.c-section__title {
    display: block;
    margin: 0 0 30px;
    /*color: #05537c;*/
    font-size: 30px;
    font-weight: 500;
    text-align: center;
}

.o-cookies {
    display: block;
    margin: 0;
    padding: 12px 0;
    border: 0;
    border-radius: 0;
    background-color: #333;
    color: #fff;
    font-size: 12px;
}

.o-cookies .c-btn {
    height: 30px;
    padding-left: 10px;
    padding-right: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 30px;
    font-size: inherit;
}

.o-cookies .c-btn::before {
    right: 14px;
    width: 8px;
    height: 8px;
    font-size: 10px;
}

@media (min-width: 576px) {
    .o-cookies__container {
        display: flex;
        align-items: flex-end;
    }
}

.o-cookies__text {
    margin-right: 28px;
}

@media (min-width: 576px) {
    .o-cookies__text {
        flex: 1;
    }
}

@media (min-width: 992px) {
    .o-cookies__text {
        margin-right: 10px;
    }
}

.o-cookies__text .c-btn--link {
    display: block;
    padding-left: 0;
    color: inherit;
    text-decoration: underline;
    text-transform: none;
}

@media (min-width: 576px) {
    .o-cookies__text .c-btn--link {
        display: inline-block;
        vertical-align: baseline;
        margin-left: 10px;
    }
}

.o-cookies__text .c-btn--link:hover, .o-cookies__text .c-btn--link:focus {
    color: inherit;
    text-decoration: none;
}

.o-cookies__button {
    margin-top: -30px;
    text-align: right;
}

@media (min-width: 576px) {
    .o-cookies__button {
        margin-top: 0;
        margin-right: 40px;
    }
}

@media (min-width: 1200px) {
    .o-cookies__button {
        margin-right: 0;
    }
}

.o-cookies__close {
    position: absolute;
    z-index: 1;
    top: 7px;
    right: 4px;
    width: 40px;
    height: 40px;
    margin: 0;
    border: 0;
    background-color: transparent;
    color: inherit;
    font-size: 0;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    filter: none;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
}

@media (min-width: 576px) {
    .o-cookies__close {
        right: 12px;
    }
}

.o-cookies__close::before {
    font-size: 12px;
    font-family: "Font Awesome 5 Free";
    content: "";
}

.o-cookies__close:hover, .o-cookies__close:focus {
    opacity: 1;
}

/* PAGES */
/* carousel */
@-webkit-keyframes bounce {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes bounce {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.c-carousel--home {
    position: relative;
    height: 0;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-bottom: 162%;
}

@media (min-width: 576px) {
    .c-carousel--home {
        padding-bottom: 90%;
    }
}

@media (min-width: 992px) {
    .c-carousel--home {
        padding-bottom: 400px;
    }
}

.c-carousel--home .carousel-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: visible;
}

.c-carousel--home .carousel-item {
    width: 100%;
    height: 100%;
    background: no-repeat 75% 100%;
    -webkit-animation: bounce 10s ease infinite;
    animation: bounce 10s ease infinite;
}

@media (min-width: 992px) {
    .c-carousel--home .carousel-item {
        -webkit-animation: none;
        animation: none;
    }
}

.c-carousel--home .c-carousel__caption {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 20px 5px 0;
    padding: 28px 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: inherit;
    text-align: left;
    text-shadow: none;
}

@media (min-width: 576px) {
    .c-carousel--home .c-carousel__caption {
        display: inline-block;
        width: 50%;
        margin: 40px 0 0;
    }
}

@media (min-width: 992px) {
    .c-carousel--home .c-carousel__caption {
        width: 40%;
    }
}

.c-carousel--home .c-carousel__title {
    display: block;
    margin: 0;
    /*color: #05537c;*/
    font-size: 24px;
    line-height: 1;
}

@media (min-width: 576px) {
    .c-carousel--home .c-carousel__title {
        font-size: 28px;
    }
}

@media (min-width: 992px) {
    .c-carousel--home .c-carousel__title {
        font-size: 38px;
    }
}

.c-carousel--home .c-carousel__subtitle {
    display: block;
    margin: 12px 0 0;
    color: #8b95a8;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

@media (min-width: 992px) {
    .c-carousel--home .c-carousel__subtitle {
        font-size: 25px;
    }
}

.c-carousel--home .c-carousel__btn-line {
    margin: 20px 0 0;
}

.c-carousel--home .c-carousel__scroll {
    display: none;
}

@media (min-width: 992px) {
    .c-carousel--home .c-carousel__scroll {
        position: absolute;
        z-index: 3;
        bottom: -18px;
        left: 50%;
        display: block;
        width: 40px;
        height: 40px;
        margin: 0 0 0 -20px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background-color: #2273a3;
        color: #fff;
        line-height: 40px;
        font-size: 0;
    }

    .c-carousel--home .c-carousel__scroll::before {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 14px;
        height: 14px;
        margin: -9px 0 0 -7px;
        border: 3px solid;
        border-width: 3px 3px 0 0;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        content: "";
    }
}

.c-carousel {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}

.c-carousel__container {
    height: 100%;
}

.c-carousel__slides {
    display: flex;
    flex-direction: row;
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: transform 0.35s ease;
}

.c-carousel__slides--swiping {
    -webkit-transition-timing-function: step-start;
    transition-timing-function: step-start;
}

.c-carousel__slide {
    flex: 1;
    flex-shrink: 0;
    height: 100%;
}

.c-carousel__slide .c-img {
    margin: 0;
}

.c-carousel__control {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border: 0;
    background: none;
    color: #1860b8;
    font-size: 0;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    -webkit-transition: color 0.35s ease;
    transition: color 0.35s ease;
}

.c-carousel__control::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    margin: -25% 0 0 -25%;
    border: 2px solid;
    border-width: 2px 2px 0 0;
    content: "";
}

.c-carousel__control:hover {
    color: #333;
}

.c-carousel__control--disabled {
    color: #333;
    opacity: 0.1;
    cursor: default;
}

.c-carousel__control--prev {
    left: 0;
}

.c-carousel__control--prev::before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.c-carousel__control--next {
    right: 0;
}

.c-carousel__control--next::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.unit {
    color: #2273a3;
}

.descr.h3 {
    font-weight: normal;
    font-size: 25px;
}

.modera-chat {
    display: none;
}

/* print styles */