::-webkit-input-placeholder {
    color: #333;
}

::-moz-placeholder {
    color: #333;
}

:-ms-input-placeholder {
    color: #333;
}

::-ms-input-placeholder {
    color: #333;
}

::placeholder {
    color: #333;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

ul[class],
ol[class] {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
    font-style: normal;
    font-weight: normal;
}

body {
    min-width: 320px;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    position: relative;
    overflow-x: hidden;
}

ul[class],
ol[class] {
    list-style: none;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

img {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

h1 {
    font-weight: bold;
    font-size: 32px;
    line-height: 48px;
}

h2 {
    font-weight: bold;
    font-size: 24px;
    line-height: 36px;
}

h3 {
    font-size: 18px;
    line-height: 28px;
}

h4 {
    font-size: 16px;
    line-height: 24px;
}

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

h6 {
    font-size: 12px;
    line-height: 20px;
}

p {
    font-size: 16px;
    line-height: 28px;
    margin: 0;
    margin-bottom: 10px;
}

blockquote {
    margin: 0;
    padding-left: 18px;
    border-left: 2px solid #F1F6FC;
}

blockquote p {
    font-size: 16px;
    line-height: 24px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.form-radio {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-right: 20px;
}

.form-radio:last-child {
    margin-right: 0;
}

.form-radio:hover .form-radio__btn + label::before {
    border-color: #1E2A5D;
}

.form-radio:hover .form-radio__btn:disabled + label::before {
    border: 1px solid #F1F6FC;
    background-color: #F1F6FC;
}

.form-radio .form-radio__btn {
    display: none;
}

.form-radio .form-radio__btn + label {
    color: #333;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.form-radio .form-radio__btn + label::before {
    content: '';
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid #F1F6FC;
    background-color: #F1F6FC;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.form-radio .form-radio__btn:checked + label::before {
    border: 5px solid #4F88D9;
}

.form-radio .form-radio__btn:disabled + label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    opacity: .5;
}

.form-checkbox {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-right: 20px;
}

.form-checkbox:last-child {
    margin-right: 0;
}

.form-checkbox:hover .form-checkbox__btn + label::before {
    border-color: #1E2A5D;
}

.form-checkbox:hover .form-checkbox__btn:disabled + label::before {
    border: 1px solid #F1F6FC;
    background-color: #F1F6FC;
}

.form-checkbox .form-checkbox__btn {
    display: none;
}

.form-checkbox .form-checkbox__btn + label {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
}

.form-checkbox .form-checkbox__btn + label::before {
    content: '';
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid #F1F6FC;
    background-color: #F1F6FC;
    border-radius: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.form-checkbox .form-checkbox__btn:checked + label::before {
    background-color: #4F88D9;
    border-color: #4F88D9;
}

.form-checkbox .form-checkbox__btn:checked + label::after {
    content: '';
    width: 7px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    left: 7px;
    top: 2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.form-checkbox .form-checkbox__btn:disabled + label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    opacity: .5;
}

.form-switch {
    width: 60px;
    height: 26px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-right: 20px;
}

.form-switch:last-child {
    margin-right: 0;
}

.form-switch .form-switch__btn {
    display: none;
}

.form-switch .form-switch__btn + label,
.form-switch .form-switch__btn:disabled + label {
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #F1F6FC;
}

.form-switch .form-switch__btn:disabled + label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    opacity: .75;
}

.form-switch .form-switch__btn + label::before,
.form-switch .form-switch__btn:disabled + label::before {
    content: '';
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 1px solid #1E2A5D;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(5px, 4px);
    -ms-transform: translate(5px, 4px);
    transform: translate(5px, 4px);
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-switch .form-switch__btn:checked + label {
    background-color: #4F88D9;
}

.form-switch .form-switch__btn:checked + label::before {
    -webkit-transform: translate(36px, 4px);
    -ms-transform: translate(36px, 4px);
    transform: translate(36px, 4px);
    background-color: #fff;
    border: transparent;
}

.form-group {
    margin-bottom: 15px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group .form-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
}

.form-group .form-text {
    font-size: 13px;
    margin-left: 5px;
    color: #777;
}

.form-control {
    display: block;
    width: 100%;
    height: 42px;
    padding: 14px 16px;
    font-size: 14px;
    color: #777;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.form-control:focus {
    color: #495057;
    border-color: #1e2a5d;
    outline: none;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-control:disabled {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    opacity: .36;
}

.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn, button {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 16px;
    color: #191919;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.btn:disabled, button:disabled {
    opacity: .65;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary:focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success:focus {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
    max-width: none;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .select-list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .select-list {
    width: 100%;
    left: 0;
}

.nice-select.right {
    margin-left: auto;
    width: auto;
    max-width: none;
}

.nice-select.right .select-list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .select-list {
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}

.nice-select .select-list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .select-list {
    display: none;
}

.no-csspointerevents .nice-select.open .select-list {
    display: block;
}

.news__item--cat>a{
    text-decoration: none;
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
        -o-transition-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 300;
    font-display: auto;
    src: url("../fonts/Raleway-Light.woff2") format("woff2"), url("../fonts/Raleway-Light.woff") format("woff");
}

@font-face {
    font-family: "Raleway";
    font-style: italic;
    font-weight: 300;
    font-display: auto;
    src: url("../fonts/Raleway-LightItalic.woff2") format("woff2"), url("../fonts/Raleway-LightItalic.woff") format("woff");
}

@font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url("../fonts/Raleway-Regular.woff2") format("woff2"), url("../fonts/Raleway-Regular.woff") format("woff");
}

@font-face {
    font-family: "Raleway";
    font-style: italic;
    font-weight: 400;
    font-display: auto;
    src: url("../fonts/Raleway-Italic.woff2") format("woff2"), url("../fonts/Raleway-Italic.woff") format("woff");
}

@font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 500;
    font-display: auto;
    src: url("../fonts/Raleway-Medium.woff2") format("woff2"), url("../fonts/Raleway-Medium.woff") format("woff");
}

@font-face {
    font-family: "Raleway";
    font-style: italic;
    font-weight: 500;
    font-display: auto;
    src: url("../fonts/Raleway-MediumItalic.woff2") format("woff2"), url("../fonts/Raleway-MediumItalic.woff") format("woff");
}

@font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-display: auto;
    src: url("../fonts/Raleway-SemiBold.woff2") format("woff2"), url("../fonts/Raleway-SemiBold.woff") format("woff");
}

@font-face {
    font-family: "Raleway";
    font-style: italic;
    font-weight: 600;
    font-display: auto;
    src: url("../fonts/Raleway-SemiBoldItalic.woff2") format("woff2"), url("../fonts/Raleway-SemiBoldItalic.woff") format("woff");
}

@font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700;
    font-display: auto;
    src: url("../fonts/Raleway-Bold.woff2") format("woff2"), url("../fonts/Raleway-Bold.woff") format("woff");
}

@font-face {
    font-family: "Raleway";
    font-style: italic;
    font-weight: 700;
    font-display: auto;
    src: url("../fonts/Raleway-BoldItalic.woff2") format("woff2"), url("../fonts/Raleway-BoldItalic.woff") format("woff");
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-container-autoheight {
    height: auto;
}

.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.swiper-container-css-mode .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-container-css-mode .swiper-wrapper .swiper-slide {
    scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    -webkit-scroll-snap-type: x mandatory;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    -webkit-scroll-snap-type: y mandatory;
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}

.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 50%;
    width: calc(44px / 44 * 27);
    height: 44px;
    margin-top: calc(-1 * 44px / 2);
    z-index: 10;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fdf;
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 44px;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: 'prev';
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: 'next';
}

.swiper-button-prev.swiper-button-white, .swiper-button-next.swiper-button-white {
    background-color: #ffffff;
}

.swiper-button-prev.swiper-button-black, .swiper-button-next.swiper-button-black {
    background-color: #000000;
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fdf;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms top, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #fdf;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-white {
    background-color: #ffffff;
}

.swiper-pagination-black {
    background-color: #000000;
}

.swiper-pagination-lock {
    display: none;
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > img, .swiper-zoom-container > svg, .swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
    animation: swiper-preloader-spin 1s infinite linear;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 4px solid #fdf;
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper-lazy-preloader-white {
    background-color: #fff;
}

.swiper-lazy-preloader-black {
    background-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active {
    pointer-events: auto;
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-prev, .swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top, .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top, .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.modal__overlay {
    position: fixed;
    z-index: 300;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.modal__container {
    background-color: #fff;
    max-width: 500px;
    min-width: 300px;
    max-height: 90vh;
    width: auto;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 20px;
}

.modal__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.modal__header .modal__title {
    font-size: 16px;
}

.modal__header .modal__close {
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
    outline: none;
    margin-left: auto;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.modal__header .modal__close:hover:before {
    color: #000;
}

.modal__header .modal__close:before {
    content: "\2715";
    color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 150%;
    line-height: 80%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.modal__content {
    padding-top: 20px;
    padding-bottom: 20px;
}

#modal-thanks {
    text-align: center;
}

#modal-thanks .modal__header {
    padding-bottom: 0;
}

#modal-thanks .modal-thanks__icon {
    fill: #28a745;
    height: 100px;
}

#modal-thanks .modal-thanks__title {
    font-size: 22px;
    font-weight: 700;
    margin-top: 15px;
}

#modal-thanks .modal-thanks__text {
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 400;
    color: #777;
}

#modal-thanks .btn {
    padding-left: 30px;
    padding-right: 30px;
    text-transform: uppercase;
}

@media (max-width: 560px) {
    .modal__container {
        max-width: calc(100% - 30px);
    }
}

@-webkit-keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes mmslideIn {
    from {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes mmslideIn {
    from {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes mmslideOut {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }
}

@keyframes mmslideOut {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1270px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.center {
    text-align: center;
}

.upper {
    text-transform: uppercase;
}

.main {
    min-height: calc(100% - 228px - 360px);
}

.main .container {
    height: calc(100% - 64px);
}

.pdf_in_journal{
    display: none;
}

.header {
    background: #3855BE url("../img/logo.svg") no-repeat 58% 0%;
    height: 228px;
    padding: 32px 0;
}

.mheader {
    display: none;
}

.mobile-menu {
    display: none;
}

.header__subtitle {
    font-size: 24px;
    font-weight: 300;
    line-height: 28px;
    color: #fff;
    margin-bottom: 8px;
}

.header__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: #fff;
}

.header__navbar {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 32px;
    height: 72px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.header__nav--link {
    margin-right: 52px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #fff;
}

.header__nav--link:last-child {
    margin-right: 0;
}

.header__search {
    position: relative;
    width: 100%;
    max-width: 381px;
    height: 40px;
    overflow: hidden;
    border-radius: 4px;
}

.header__search--field {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    padding: 0 50px 0 12px;
    color: rgba(56, 85, 190, 0.5);
}

.header__search--field::-webkit-input-placeholder {
    color: rgba(56, 85, 190, 0.5);
}

.header__search--field::-moz-placeholder {
    color: rgba(56, 85, 190, 0.5);
}

.header__search--field:-ms-input-placeholder {
    color: rgba(56, 85, 190, 0.5);
}

.header__search--field::-ms-input-placeholder {
    color: rgba(56, 85, 190, 0.5);
}

.header__search--field::placeholder {
    color: rgba(56, 85, 190, 0.5);
}

.header__search--btn {
    position: absolute;
    right: 10px;
    top: 0;
    padding: 0;
    margin: 0;
    height: 100%;
}

.categories__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(56, 85, 190, 0.15);
}

.categories__topics {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: #3855BE;
    margin-right: 35px;
}

.categories__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.categories__link {
    font-size: 16px;
    font-weight: 300;
    line-height: 19px;
    color: #272727;
}

.categories__link--last {
    margin-left: 70px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #272727;
}

.grid__layout {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    margin: 64px 0;
    overflow: hidden;
}

.grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
}

.leftside {
    width: 298px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-right: 1px solid rgba(56, 85, 190, 0.15);
    padding-right: 24px;
}

.mainside {
    padding-left: 24px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news__block,
.contacts,
.write-us,
.archive,
.news-content {
    width: 100%;
    overflow: hidden;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 24px;
    border-right: 1px solid rgba(56, 85, 190, 0.15);
}

.news-content>p>a>img{
    padding: 16px !important;
}

.logo:hover{
    text-decoration: none;
}

.rightside {
    width: 299px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-left: 24px;
}

.footer {
    height: 360px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: #3855BE;
    padding-top: 24px;
    padding-bottom: 24px;
    color: #fff;
}

.footer .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.foo__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.foo__nav--link {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #fff;
    margin-right: 32px;
}

.foo__nav--link:last-child {
    margin-right: 0;
}

.foo__info {
    max-width: 430px;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
}

.foo__copy {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}

.side__block {
    margin-bottom: 64px;
}

.side__block:first-child {
    margin-bottom: 88px;
}

.side__block:last-child {
    margin-bottom: 0;
}

.cat__block--top {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    color: #3855BE;
    border-bottom: 1px solid rgba(56, 85, 190, 0.15);
    padding-bottom: 7px;
    margin-bottom: 8px;
}

.cat__block--item {
    display: block;
    padding-bottom: 23px;
    border-bottom: 1px solid rgba(56, 85, 190, 0.15);
}

.cat__block--item__right {
    margin-bottom: 30px;
    display: block;
}

.cat__block--item__right .cat__block--img {
    margin: 0;
}

.cat__block--item__right span {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    color: #3855BE;
}

.cat__block--item.center .cat__block--subtitle {
    font-size: 12px;
    line-height: 17px;
}

.cat__block--item:first-child .cat__block--img {
    margin-top: 0;
}

.cat__block--item:last-child {
    padding-bottom: 0;
    border: none;
}

.cat__block--img {
    margin-top: 24px;
    display: block;
    padding-bottom: 8px;
}

.cat__block--title {
    font-size: 20px;
    font-weight: 600;
    line-height: 23px;
    color: #272727;
    display: block;
    padding-top: 24px;
}

.cat__block--subtitle {
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    color: #272727;
    display: block;
    margin-top: 8px;
}

.weather {
    padding-top: 15px;
}

.weather__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(56, 85, 190, 0.15);
    height: 40px;
}

.weather__row:last-child {
    border: none;
}

.weather .weather__time {
    max-width: 50px;
    width: 100%;
}

.weather .weather__temp {
    max-width: 120px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
}

.bigposter {
    height: 400px;
    border-radius: 4px;
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 64px;
    background-color: #D4DDFF;
    width: 100%;
}

.bigposter::before {
    content: '';
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 42, 42, 0)), to(#2A2A2A));
    background: -o-linear-gradient(top, rgba(42, 42, 42, 0) 0%, #2A2A2A 100%);
    background: linear-gradient(180deg, rgba(42, 42, 42, 0) 0%, #2A2A2A 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.bigposter img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.bigposter .poster__info {
    position: absolute;
    left: 48px;
    bottom: 64px;
}

.bigposter .poster__title {
    display: block;
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: #fff;
}

.bigposter .poster__subtitle {
    display: block;
    max-width: 470px;
    font-size: 24px;
    font-weight: 300;
    line-height: 28px;
    color: #fff;
}

.bigposter .poster__cat {
    background-color: #3855BE;
    border-radius: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 23px;
    color: #fff;
    padding: 8px 16px;
}

.bigposter2 {
    border-radius: 4px;
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 64px;
    background-color: #D4DDFF;
}

.news__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(56, 85, 190, 0.15);
    padding-bottom: 7px;
    margin-bottom: 31px;
}

.news__block--top {
    font-weight: 600;
    color: #3855BE;
    font-size: 24px;
    line-height: 28.18px;
}

.pagination.right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 10px 0;
}

a.pagintaion__page,
.pagintaion__dot {
    font-weight: 400;
    line-height: 19px;
    font-size: 16px;
    color: rgba(39, 39, 39, 0.3);
    font-size: 16px;
    margin: 0 6px;
}

a.pagintaion__page:last-child,
.pagintaion__dot:last-child {
    margin-right: 0;
}

a.pagintaion__page.active,
.pagintaion__dot.active {
    color: #3855BE;
    text-decoration: underline;
}

.news__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(56, 85, 190, 0.15);
}

.news__container.no-line::before {
    display: none;
}

.news__container::before {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: rgba(56, 85, 190, 0.15);
}

.news__item {
    display: block;
    overflow: hidden;
    max-width: 274px;
    height: 443px;
    border-bottom: 1px solid rgba(56, 85, 190, 0.15);
    margin-bottom: 24px;
}

.news__item:last-child, .news__item:nth-last-child(2) {
    border-bottom: none;
    margin-bottom: 0;
}

.news__item--img {
    height: 240px;
    width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 16px;
    position: relative;
}

.news__item--img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news__item--cat {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #3855BE;
    border-radius: 4px;
    padding: 8px 16px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 23.5px;
}

.news__item--date {
    display: block;
    color: #272727;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 10px;
}

.news__item--title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #272727 !important;
    display: block;
}

.news__item.list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    height: auto;
    padding-bottom: 23px;
    text-decoration: none;
}

.news__item.list .news__item--img {
    width: 381px;
    margin-bottom: 0;
    height: 240px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 48px;
}

.news__item.list .news__item--date {
    color: rgba(39, 39, 39, 0.3);
}

.news__item.list .news__item--descr {
    display: block;
    margin-top: 16px;
    color: #272727;
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 400;
}

.d-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 48px;
}

.contacts {
    font-family: Raleway;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 23px;
    color: #272727;
}

.section-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(56, 85, 190, 0.15);
    color: #3855BE;
}

.grid-m .contacts-wrapper__item--left {
    width: 274px;
}

.grid-m .contacts-wrapper__item--left img {
    width: 100%;
    height: 274px;
    object-fit: cover;
}

.contact-name {
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
}

.contact-rate {
    font-size: 24px;
    line-height: 28px;
    margin-top: 16px;
}

.contact-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    margin-top: 8px;
}

.contact-bottom {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 18px;
    margin-top: 84px;
}

.contact-bottom__mail {
    display: block;
    color: #272727;
}

.contact-bottom__mail:not(:last-child) {
    margin-bottom: 16px;
}

.contacts-section:not(:last-child) {
    margin-bottom: 96px;
}

.text__notice {
    font-size: 16px;
    line-height: 19px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    margin-top: 32px;
}

.text__adress span {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.text__adress span:last-child {
    margin-bottom: 0;
}

.section-wrapper {
    margin-top: 24px;
}

.contact-links {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.contact-links a {
    margin-left: 16px;
    font-size: 20px;
    line-height: 140%;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #272727;
}

.grid-s .contacts-wrapper__item--left {
    width: 167px;
}

.grid-s .contacts-wrapper__item--left img {
    width: 100%;
    height: 167px;
    object-fit: cover;
}

.form-section {
    margin-bottom: 96px;
    max-width: 705px;
    width: 100%;
}

.main-form .section-title:first-child {
    margin-bottom: 50px;
}

.main-form .section-title:nth-child(3) {
    margin-bottom: 24px;
}

.form__row {
    display: grid;
    grid-template-columns: 166px 1fr;
    grid-gap: 49px;
    margin-bottom: 24px;
}

.input-title {
    font-size: 20px;
    line-height: 23px;
}

.main-form input {
    background: #FFFFFF;
    border: 1px solid rgba(56, 85, 190, 0.5);
    box-sizing: border-box;
    border-radius: 4px;
    padding: 11px 12px;
    font-size: 16px;
    line-height: 19px;
    color: #3855BE;
    box-shadow: none;
}

.main-form input::placeholder {
    font-family: Raleway;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: rgba(56, 85, 190, 0.5);
}

.main-form textarea {
    background: #FFFFFF;
    border: 1px solid rgba(56, 85, 190, 0.5);
    box-sizing: border-box;
    border-radius: 4px;
    padding: 11px 12px;
    font-size: 16px;
    line-height: 19px;
    color: #3855BE;
    box-shadow: none;
    height: 200px;
    resize: none;
}

.form__row--right {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.form__row--right .mbtn {
    padding: 10px 16px;
    background: #3855BE;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    cursor: pointer;
}

.file-field__top {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    font-feature-settings: 'pnum' on, 'lnum' on;
}

.file-field__top svg {
    margin-right: 5px;
}

.file-field .upload {
    padding: 10px 16px;
    background: #E1E5F5;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    margin-top: 16px;
}


.section-table {
    margin-bottom: 96px;
}

.section-table:last-child {
    margin-bottom: 55px;
}

.table {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

.table-years__wrapper {
    border-right: 1px solid rgba(56, 85, 190, 0.15);
    padding-right: 24px;
}

.table-years {
    width: 71px;
    height: 282px;
    overflow-y: auto;
    padding-top: 24px;
    padding-bottom: 24px;
    position: relative;
    border-top: 1px solid rgba(56, 85, 190, 0.15);
    border-bottom: 1px solid rgba(56, 85, 190, 0.15);
}


.table-years::-webkit-scrollbar {
    width: 4px;
}

.table-years::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: rgba(56, 85, 190, 0.15);
}

.table-years a {
    display: block;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */
    color: #272727;

    font-feature-settings: 'pnum' on, 'lnum' on;

}

.table-years a:last-child {
    margin-bottom: 0;
}

.table-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-row-gap: 26px;
    margin-left: 24px;
}

.table-item__top {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-right: 1px solid rgba(56, 85, 190, 0.15);
    border-left: 1px solid rgba(56, 85, 190, 0.15);
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    font-feature-settings: 'pnum' on, 'lnum' on;
}

.table-item__bottom {
    border: 1px solid rgba(56, 85, 190, 0.15);
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    grid-gap: 16px;
    min-height: 88px;
}

.table-item__bottom a {
    font-size: 12px;
    line-height: 14px;
    text-decoration-line: underline;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #272727;
}

.table-item:nth-child(6n) .table-item__top,
.table-item:nth-child(6n) .table-item__bottom {
    border-right: none;
}

.table-item--bord-left .table-item__bottom,
.table-item--bord-left .table-item__top {
    padding-left: 0;
    border-left: none;
}


.news-title__magazine {
    font-size: 20px;
    line-height: 23px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: rgba(39, 39, 39, 0.5);
}

.news-title__name {
    font-weight: 600;
    font-size: 50px;
    line-height: 64px;
    color: #3855BE;
    margin-top: 8px;
}

.news-title__bottom {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.news-title__type {
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #FFFFFF;
    padding: 8px 16px;
    background: #3855BE;
    border-radius: 4px;
    margin-right: 48px;
}

.news-title__data {
    font-size: 20px;
    line-height: 23px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: rgba(39, 39, 39, 0.5);
}

.news-content {
    margin-top: 64px;
}

.news-content img[width="300"][align="left"]{
 margin-right:15px;
}
@media(max-width:500px){
 .news-content img[width="300"][align="left"]{
	 margin-right:0;
		width:100%;
		float:none;
 }
}

.news-content__preview {
    font-size: 18px;
    line-height: 32px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    margin: 64px 0;
}

.news-section {
    margin-bottom: 64px;
}

.news-section--last {
    margin-bottom: 32px;
}

.news-section .section-title {
    color: #272727;
}

.news-section__text {
    font-size: 18px;
    line-height: 32px;
    /* or 178% */

    font-feature-settings: 'pnum' on, 'lnum' on;
    margin-top: 24px;
}

.news-section__text img {
    margin: 32px 0;
}

.news-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(56, 85, 190, 0.15);
    border-bottom: 1px solid rgba(56, 85, 190, 0.15);
}

.news-bottom__row {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-bottom__row:first-child {
    display: block;
}

.news-bottom__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
    font-feature-settings: 'pnum' on, 'lnum' on;
}

.d-flex {
    display: flex;
    align-items: center;
}

.news-bottom__notice {
    font-size: 16px;
    line-height: 19px;
    color: rgba(39, 39, 39, 0.5);
}

.news-bottom__item--left .news-bottom__title {
    margin-right: 16px;
}

.news-bottom__icon_like {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #3855BE;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.news-bottom__icon {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #3855BE;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    margin-left: 24px;
}

.news-bottom__icon_active{
    width: 40px;
    height: 40px;
    background: #3855BE;
    border: 1px solid #3855BE;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.news-bottom__icon_active svg{
    fill: #FFFFFF;
}

.news-bottom__icon_frame{
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-bottom__icon_like svg{
    fill: #3855BE;
    transition: .3s;
}

.news-bottom__icon svg {
    fill: #3855BE;
    transition: .3s;
}

.news-bottom__icon:hover {
    background: #3855BE;
}

.news-bottom__icon:hover svg {
    fill: #FFFFFF;
}

.news-bottom__icons {
    display: flex;
    align-items: center;
}

.other-news {
    margin-top: 64px;
}

.other-news__wrapper {
    display: flex;
    align-items: center;
    margin-top: 32px;
}

.other-news__col {
    width: 50%;
}

.other-news__col--left {
    padding-right: 25px;
    border-right: 1px solid rgba(56, 85, 190, 0.15);
}

.other-news__col--right {
    padding-left: 25px;
}

.other-news__img {
    width: 100%;
    height: 240px;
    position: relative;
    margin-bottom: 16px;
}

.other-news__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.other-news__img .other-news__type {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #3855BE;
    border-radius: 4px;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;

    color: #FFFFFF;
    padding: 8px 16px;
}

.other-news__item {
    max-height: 409px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(56, 85, 190, 0.15);
    margin-bottom: 32px;
}

.other-news__item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.other-news__data {
    font-size: 16px;
    line-height: 19px;

    font-feature-settings: 'pnum' on, 'lnum' on;
    color: rgba(39, 39, 39, 0.5);
}

.other-news__text {
    height: 92px;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    margin-top: 10px;
}
.mobile_block{
    display: none;
}


@media (max-width: 1199px) {


}

@media (max-width: 991px) {

    .mobile_block{
        display: block;
    }

    .pdf_in_journal{
        display: block;
    }
    .rightside{
        display: none;
    }

    .rightside>.cat__block--item__right{
        display: none;
    }

    .header {
        background: #3855BE url("../img/logo.svg") no-repeat 68% 0%;
        height: 228px;
        padding: 32px 0;
        background-size: contain;
    }


    .categories__top {
        display: none;
    }
/*
    .rightside {
        display: none;
    }*/
}

@media (max-width: 768px) {
    .leftside {
        display: none;

    }

    .mainside {
        padding-left: 0;
    }

    header {
        display: none;
    }

    .mheader {
        display: block;
        background-color: #3855BE;
    }

    .mheader .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mheader .logo img {
        height: 60px;
    }

    .mheader__text {
        text-align: center;
    }

    .mheader__text span {
        display: block;
        color: #FFFFFF;
    }

    .hamburger {
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 20px;
        height: 2px;
        background: #FFFFFF;
        left: calc(50% - 10px);
        -webkit-transition: .3s;
        transition: .3s;
        z-index: 11;
    }


    .hamburger span:first-child {
        top: calc(50% - 7px);
    }

    .hamburger span:nth-child(2) {
        top: calc(50% - 1px);
    }

    .hamburger span:last-child {
        top: calc(50% + 5px);
    }

    .hamburger--active span:first-child {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
    }

    .hamburger--active span:nth-child(2) {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    .hamburger--active span:last-child {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 50%;
    }


    .mobile-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #3855BE;
        z-index: 10;
        -webkit-transform: translateX(+100%);
        transform: translateX(+100%);
        -webkit-transition: .3s;
        transition: .3s;
    }

    .mobile-menu--active {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .mobile-menu .categories__list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .categories__link--last {
        display: none;
    }

    .categories__link {
        color: #FFFFFF;
        margin-bottom: 10px;
        font-size: 20px;
    }

    .foo__nav {
        flex-direction: column;
        align-items: center;
    }

    .foo__nav--link {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .foo__info {
        max-width: 100%;
        text-align: center;
    }

    .footer {
        height: auto;
    }

    .foo__copy {
        margin-top: 10px;
    }


    .bigposter .poster__info {
        left: 5px;
    }

    .news__item.list {
        flex-direction: column;
    }

    .news__item.list .news__item--img {
        width: auto;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .grid__layout {
        margin: 32px 0;
    }

    .table {
        align-items: flex-start;
    }

    .table-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .table-item--bord-left .table-item__bottom, .table-item--bord-left .table-item__top {
        border-left: 1px solid rgba(56, 85, 190, 0.15);

    }

    .table-item--bord-left .table-item__bottom {
        padding: 18px;
    }

    .d-grid {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }

    .other-news__wrapper {
        flex-direction: column;
    }

    .other-news__col--right {
        padding-left: 0;
    }

    .other-news__col--left {
        padding-right: 0;
        border-right: none;
    }

    .other-news__item:last-child {
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(56, 85, 190, 0.15);
        margin-bottom: 32px;
    }

    .other-news__col {
        width: 100%;
    }
}

@media (max-width: 425px) {
    .news__container::before {
        display: none;
    }

    .news__item {
        margin: auto;
    }

    .table-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-title__name {
        font-size: 24px;
        line-height: 26px;
    }

    .form__row {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }

}

@media (max-width: 321px) {
}

/* !!! Не удалять! Без этого блока не будут работать врезки в статьях! */
.rblock {
 display:-moz-inline-stack; display:inline-block; *display:inline; float:right;
 vertical-align:top;
	margin:0px;
	padding:0px;
	overflow:hidden;
}
.clear{clear:both;}
form.rblock input{background-color:#FFF;}
.VoteForm{
 width:300px;
 margin-left: 15px;
 margin-bottom: 30px;
 padding: 10px;
 border-radius: 5px;
 background-color: #CCCCCC;
}
.VoteForm .Question{
 font-weight:bold;
}
.VoteForm.block{margin-right:20px;}
/* конец блока, без которого не будут работать врезки в статьях! */
.rightlist{
 max-width:50%;
 display:-moz-inline-stack; display:inline-block; *display:inline; float:left;
	margin:0 10px 20px 0;
	padding:3px;
	background-color:#999999;
	border-radius:4px;
}
.rightlist .enlarge{max-width:100%; height:auto; margin:5px 0;}
@media(max-width:720px){
 .rightlist{max-width:100%; width:100%; float:none; margin:0; padding:0;}
}
hr{clear:both; height:1px;}
.news-content p[align="justify"] img[align="left"]{
 margin-right:2%;
}