:root {
    --white: #FFFFFF;
    --accent: #6B38B2;
    --surface-soft: rgb(from var(--accent) r g b / 4%);
    --surface-hard: rgb(from var(--accent) r g b / 8%);
    --primary: #040404;
    --secondary: #848484;
}

body {
    background-color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    color: var(--primary);
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
}

* {
    outline: none;
    box-sizing: border-box;
}

a {
    color: var(--primary);
    transition: all 0.2s ease 0s;
    outline: none;
}

a {
    cursor: pointer;
}

a:focus {
    outline: none;
}

a:active {
    color: var(--primary);
    outline: none;
}

a:focus, a:hover {
    color: var(--accent);
}

input, textarea, select, button {
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.2s ease 0s;
}

ul {
    margin-bottom: 0;
}

ul li {
    margin-bottom: 0;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
}

@media (max-width: 1320px) {
    .container {
        max-width: 1160px;
    }
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 100%;
    }
}

.btn {
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-block;
    color: var(--white);
    font-weight: 700;
    padding: 19px 47px;
    height: 60px;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
}

.btn-mini {
    padding: 13px 31px;
    height: 48px;
}


.btn:focus, .btn:hover {
    color: var(--white);
}

.btn svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.btn-main {
    border: 1px solid var(--accent);
    background-color: var(--accent);
    color: var(--white);
}

.btn-main:focus, .btn-main:hover {
    border: 1px solid var(--surface-hard);
    background-color: var(--surface-hard);
    color: var(--accent);
}

.btn-default {
    border: 1px solid var(--white);
    background-color: var(--white);
    color: var(--accent);
}

.btn-default:focus, .btn-default:hover, .btn-default.active {
    border: 1px solid var(--white);
    background-color: var(--accent);
    color: var(--white);
}

.btn-second {
    border: 1px solid var(--surface-hard);
    background-color: var(--surface-hard);
    color: var(--accent);
}

.btn-second:focus, .btn-second:hover, .btn-second.active {
    border: 1px solid var(--accent);
    background-color: var(--accent);
    color: var(--white);
}

.main-container {
    padding: 20px;
}

.main-hidden-header-container {
    display: none;
}

.header-menu {
    flex-grow: 1;
}

.header-menu ul {
    margin-top: 0;
    padding-left: 0;
}

.header-menu-container {
    position: sticky;
    z-index: 5;
    top: 0;
    width: calc(100vw - 42px);
    left: 20px;
    border-bottom: 1px solid #ffffff;
    background-color: #ffffff;
    border-radius: 24px;
}

.header-menu-block {
    position: relative;
    display: flex;
    width: 100%;
    color: var(--primary);
    font-weight: 500;
    line-height: 20px;
    align-items: center;
    justify-items: flex-start;
}

.header-menu-logo a {
    display: block;
    height: 26px;
    width: 140px;
}

.header-menu-logo a img {
    max-width: 100%;
    max-height: 100%;
}

.header-menu-logo svg {
    width: auto;
    height: 40px;
}

.header-menu li {
    display: inline-block;
}

.header-menu-group {
    position: relative;
}

.header-menu li a {
    padding: 18px;
    text-decoration: none;
    display: block;
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}

.header-menu li a:hover, .header-menu li a:focus, .header-menu li.active a {
    color: var(--accent);
}

.header-menu li a svg {
    display: inline-block;
    vertical-align: middle;
    margin-top: -4px;
    margin-right: -8px;
}

.header-menu-right .btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    padding: 14px 32px;
    text-transform: none;
    min-height: inherit;
    text-align: center;
    border-radius: 0;
}

.header-menu-logo {
    position: relative;
    margin-right: 48px;
    line-height: 1;
}

.header-menu-mobile {
    display: none;
}

.header-menu ul.header-menu-sub {
    display: none;
    background-color: #FFFFFF;
    padding: 10px 24px 0 24px;
    border-radius: 8px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: absolute;
    width: 260px;
    box-shadow: 1px 1px 24px 2px #0C2B5A3D;
}

.header-menu li.header-menu-group:hover ul.header-menu-sub, .header-menu li.header-menu-group:focus ul.header-menu-sub, .header-menu li.header-menu-group.open ul.header-menu-sub {
    display: flex;
}

.header-menu-sub li {
    margin-bottom: 10px;
}

.header-menu-sub li > a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: var(--primary);
    text-decoration: none;
    width: 340px;
    padding: 5px;
    text-align: left;
    white-space: nowrap;
}

.header-menu-sub li > a span, .header-menu-sub li > a img {
    line-height: 40px;
    vertical-align: middle;
}

.header-menu-sub li > a img {
    margin-right: 12px;
}

.header-menu-button .btn:not(.header-menu-mobile) {
    text-align: center;
    padding: 0 20px;
    height: 40px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.header-menu-button .btn:not(.header-menu-mobile) ~ .btn:not(.header-menu-mobile) {
    margin-left: 8px;
}

.footer-block {
    display: flex;
    justify-content: space-between;
    border-radius: 24px;
    padding: 40px 56px 24px;
    background-color: var(--surface-soft);
}

.footer-block a:not(.btn) {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 17.07px;
    color: var(--primary);
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-block a:not(.btn):hover, .footer-block a:not(.btn):focus {
    color: var(--accent);
}

.footer-block a.footer-left-logo {
    margin-bottom: 6px;
    width: 140px;
    height: 26px;
}

.footer-block a.footer-left-logo img {
    max-width: 100%;
    max-height: 100%;
}

.footer-contact-social a:not(.btn) {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-block-copyright-container {
    margin-bottom: 24px;
}

.footer-block-copyright-item {
    font-weight: 500;
    font-size: 14px;
    line-height: 17.07px;
    color: var(--primary);
}

.footer-menu {
    display: flex;
    justify-content: center;
}

.footer-menu .footer-menu-block ~ .footer-menu-block {
    margin-left: 64px;
}

.footer-block .footer-menu-block-links a {
    margin-bottom: 16px;
}

.footer-menu-block-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.footer-docs a:not(.btn) {
    color: var(--secondary);
}

.footer-docs a:not(.btn):hover, .footer-docs a:not(.btn):focus {
    color: var(--accent);
}

.footer-menu-mobile {
    flex-grow: 1;
    display: none;
}

.footer-center {
    flex-grow: 1;
}

.footer-right {
    max-width: 260px;
}

.footer-contact-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.footer-contact-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-right .btn {
    margin-bottom: 16px;
}

.footer-contact-text a:not(.btn) {
    color: var(--primary);
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-contact-text a:not(.btn):hover, .footer-contact-text a:not(.btn):focus {
    color: var(--accent);
}

.footer-contact-text svg {
    margin-right: 12px;
    min-width: 24px;
    fill: var(--accent);
}

.jGrowl {
    font-size: 16px;
}

.jGrowl-notification {
    border: medium none;
    background-color: #2F577A;
    box-shadow: 0 2px 2px 0 #2F577A, 0 4px 20px 0 #2F577A;
    color: #ffffff;
    word-break: normal;
}

.cookies-container {
    position: fixed;
    bottom: 10px;
    width: 100%;
    z-index: 300;
}

.cookies-container-block {
    background-color: #ffffff;
    box-shadow: 0 2px 70px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 32px;
    margin: auto;
    max-width: 100%;
    width: 800px;
    position: relative;
}

.cookies-block-text {
    font-size: 16px;
    line-height: 23px;
    color: #797582;
}

.cookies-block-link a {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #a3a0ac;
    cursor: pointer;
}

.cookies-block-link a:hover, .cookies-block-link a:focus {
    text-decoration: none;
    color: var(--accent);
}

.cookies-button a {
    font-size: 16px;
    line-height: 24px;
    color: var(--accent);
    cursor: pointer;
}

.cookies-button a:hover, .cookies-button a:focus {
    text-decoration: none;
    color: #a3a0ac;
}

.cookies-block-link {
    display: table;
    width: 100%;
    margin-top: 4px;
}

.cookies-block-link a {
    display: table-cell;
    width: 33%;
}

.cookies-block {
    width: 85%;
}

.cookies-button {
    position: absolute;
    right: 28px;
    top: 30px;
}

.carousel-left, .carousel-right {
    z-index: 1;
    text-align: center;
    transition: all 0.2s ease 0s;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: -44px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    margin-top: -30px;
}

.carousel-left svg rect, .carousel-right svg rect {
    fill: var(--surface-hard);
}

.carousel-left svg path, .carousel-right svg path {
    stroke: var(--accent);
}

.carousel-left:hover svg rect, .carousel-right:hover svg rect {
    fill: var(--accent);
}

.carousel-left:hover svg path, .carousel-right:hover svg path {
    stroke: var(--white);
}

.carousel-right {
    right: 0;
}

.carousel-left {
    right: 72px;
}

.slick-list {
    margin-right: -100%;
}

.slick-slide > div {
    display: flex;
    align-content: stretch;
    flex-direction: row;
    justify-content: space-between;
}

.content-container {
    padding-top: 48px;
    margin-bottom: 64px;
}


.form-control input:not([type="checkbox"]), .form-control textarea {
    font-family: 'Montserrat', sans-serif;
    height: auto;
    width: 100%;
    border: 1px solid #DFE7EF;
    padding: 13px 12px;
    border-radius: 8px;
    background: #F6F9FC;
    margin-bottom: 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #697E8F;
}

.form-control textarea {
    resize: none;
}

.form-control-checkbox {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    position: relative;
    padding-left: 38px;
    cursor: pointer;
}

.form-control-checkbox a {
    color: #3072A1;
    text-decoration: none;
}

.form-control-checkbox a:hover, .form-control-checkbox a:focus {
    color: #FF375B;
}

.form-control-checkbox span {
    display: inline-block;
    margin-bottom: 18px;
}

.form-control-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-control-checkbox::before {
    display: inline-block;
    content: ' ';
    position: absolute;
    top: 2px;
    left: 2px;
    height: 18px;
    width: 18px;
    border: 1px solid #C2CBE1;
    background-color: #ffffff;
    border-radius: 4px;
    z-index: 3;
}

.form-control-checkbox span::after {
    left: 8px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #2F577A;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: " ";
    position: absolute;
    z-index: 4;
    display: none;
}

.form-control-checkbox input:checked ~ span:after {
    display: block;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;

    font-size: 40px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -1.8px;
    color: #ffffff;
    text-transform: lowercase;
}

.footer-form-block {
    background-color: #243B57;
    border-radius: 25px;
    position: relative;
    padding: 70px 30px 36px 318px;
}

.footer-form-block-title {
    font-size: 140px;
    font-weight: 700;
    line-height: 94px;
    color: #ffffff;
    letter-spacing: -8px;
    margin-bottom: 84px;
}

.footer-form-block .form-label {
    position: absolute;
    left: 14px;
    max-width: 300px;
}

.form-row {
    display: table;
    width: 100%;
    margin-left: -4px;
    margin-right: -4px;
}

.form-row-first {
    margin-bottom: 72px;
}

.form-col-1, .form-col-4, .form-col-6 {
    float: left;
    padding-left: 4px;
    padding-right: 4px;
}

.form-col-4 {
    width: 40%;
}

.form-col-6 {
    width: 60%;
}

.form-col-1 {
    width: 100%;
}

.footer-form-block-fields-buttons {
    text-align: right;
}

.footer-form-block-fields-buttons .btn {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    height: 48px;
    width: 100%;
    padding: 8px 16px;
}

.footer-form-block-fields-buttons {
    padding-left: 4px;
    padding-right: 4px;
}

label.error {
    top: -24px;
    position: relative;
    font-size: 12px;
}

.stared:after {
    color: #FF375B;
    content: "*";
    font-size: 16px;
}

.error {
    color: #FF375B;
}

.form-control input.error, .form-control select.error, .form-control textarea.error {
    border-color: #FF375B;
}

.form-control.error:focus {
    border-color: #FF375B;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(255, 0, 0, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(255, 0, 0, 0.6);
}

.html-show-modal {
    overflow: hidden;
}

.html-show-modal body {
    overflow: hidden;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 50;
    overflow: auto;
}

.modal-content {
    position: absolute;
    top: 0;
    left: calc(50% - 300px);
    background-color: #ffffff;
    padding: 24px;
    width: 600px;
    border-radius: 24px;
    margin: 120px 0;
    max-width: calc(100vw - 32px);
}

.btn.close-button svg {
    margin-right: 0;
}

.btn.close-button {
    float: right;
    cursor: pointer;
    padding: 0;
    min-width: 32px;
    min-height: 32px;
    background-color: transparent;
    height: auto;
    width: auto;
    border: medium none;
}

.close-button:hover {
    background-color: transparent;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modal-header {
    margin-bottom: 18px;
}

.modal-header-title {
    color: #2B1446;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.modal-footer {
    text-align: right;
}

.home-reviews-block-list-item-block-header-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin: auto auto 24px;
}

.home-reviews-block-list-item-block-header-logo img {
    display: block;
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    right: -100%;
    bottom: 0;
    margin: auto;
    max-width: inherit;
}

.home-reviews-block-list-item-block .home-reviews-block-list-item-block-text-full {
    display: none;
}

.modal-body .home-reviews-block-list-item-block-button {
    margin-bottom: 18px;
}

.modal-body {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
}

.smart-captcha {
    height: 100px;
    margin-bottom: 18px;
    min-width: 256px !important;
}

.header-menu-mobile {
    display: none;
}

.header-menu-block-mobile {
    display: none;
}

.header-menu-block-mobile a svg {
    vertical-align: middle;
}

.home-main-container {
    padding-top: 16px;
    margin-bottom: 64px;
}

.home-main-block {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.home-main-block-left {
    padding: 0 64px;
    height: 400px;
    margin-right: 12px;
    flex-grow: 1;
    background-color: var(--accent);
    border-radius: 32px;
    width: calc(50% - 6px);
    display: flex;
    align-items: center;
}

.home-main-block-right {
    flex-grow: 1;
    width: calc(50% - 6px);
}

.home-main-block-left-text h1 {
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 0;
}

.home-main-block-left-text h2 {
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 0;
}

.home-main-block-right-image {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: 32px;
}

.home-main-block-right-image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
    max-width: inherit;
}

.home-program-container {
    margin-bottom: 44px;
}

.home-program-block {
    overflow: hidden;
}

.home-program-block-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: var(--primary);
    margin-bottom: 26px;
}

.home-program-block-list {
    margin-bottom: 32px;
}

.home-program-block-list-mobile {
    display: none;
}

.home-program-block-list-item {
    display: block;
    max-width: 480px;
    border-radius: 24px;
    padding: 48px;
    background-color: var(--surface-soft);
    text-decoration: none;
    margin-right: 12px;
    color: var(--primary);
}

.home-program-block-list-item:hover, .home-program-block-list-item:focus {
    background-color: var(--accent);
    color: var(--white);
}

.home-program-block-list-item-image {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin-bottom: 32px;
}

.home-program-block-list-item-image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
    max-width: inherit;
}

.home-program-block-list-item-title {
    display: block;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
}

.home-program-block-list-item-description {
    display: block;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
}

.home-program-block-button {
    text-align: center;
}

.home-help-container, .help-container {
    margin-bottom: 48px;
}

.home-help-block-title, .help-block-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.home-help-block-form, .help-block-form {
    border: 1px solid #EBEBEB;
    border-radius: 24px;
}

.home-help-block-form iframe, .help-block-form iframe {
    width: 100%;
}

.home-news-container, .home-address-fees-container {
    margin-bottom: 64px;
}

.home-news-block-title, .home-address-fees-block-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: var(--primary);
    margin-bottom: 32px;
}

.home-news-block-list {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    margin-bottom: 32px;
}

.home-news-block-list-item {
    display: block;
    width: 100%;
    flex-grow: 1;
    margin-right: 20px;
    text-decoration: none;
    color: var(--primary);
}

.home-news-block-list-item:hover, .home-news-block-list-item:focus {
    color: var(--accent);
}

.home-news-block-list-item:last-child {
    margin-right: 0;
}

.home-news-block-list-item-image {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.home-news-block-list-item-image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
    max-width: inherit;
}

.home-news-block-list-item-date {
    display: block;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.home-news-block-list-item-title {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.home-news-block-button, .home-address-fees-block-button {
    text-align: center;
}

.home-about-container {
    margin-bottom: 64px;
}

.home-about-block {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.home-about-block-right {
    padding: 48px 0 48px 48px;
    height: 346px;
    flex-grow: 1;
    border-radius: 32px;
    width: calc(50% - 6px);
    display: flex;
    align-items: center;
}

.home-about-block-left {
    flex-grow: 1;
    width: calc(50% - 6px);
    margin-right: 12px;
}

.home-about-block-left-image {
    position: relative;
    height: 346px;
    width: 100%;
    overflow: hidden;
    border-radius: 32px;
}

.home-about-block-left-image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
    max-width: inherit;
}

.home-about-block-right-text-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.home-about-block-right-text-description {
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    color: var(--primary);
}

.home-report-block-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: var(--primary);
    margin-bottom: 32px;
}

.home-report-block-button {
    text-align: center;
}

.home-report-block-list {
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-wrap: wrap;
}

.home-report-block-list-item {
    display: flex;
    flex-grow: 1;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: var(--primary);
    padding: 24px 32px;
    border-radius: 24px;
    background-color: var(--surface-soft);
    justify-content: space-between;
    align-items: center;
    width: calc(50% - 6px);
    margin-right: 12px;
    margin-bottom: 12px;
}

.home-report-block-list-item:nth-child(2n) {
    margin-right: 0;
}

.home-report-block-list-item span, .home-report-block-list-item svg {
    vertical-align: middle;
}

.home-report-block-list-item svg {
    fill: var(--accent);
    float: right;
}

.home-report-block-list-item:hover, .home-report-block-list-item:focus {
    background-color: var(--accent);
    color: var(--white);
}

.home-report-block-list-item:hover svg, .home-report-block-list-item:focus svg {
    fill: var(--white);
}

.page-block-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: var(--primary);
    margin-bottom: 32px;
    margin-top: 0;
}

.page-block-program-list {
    margin-bottom: 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: stretch;
}

.page-block-program-list-item {
    display: block;
    max-width: calc(50% - 6px);
    border-radius: 24px;
    padding: 48px;
    background-color: var(--surface-soft);
    text-decoration: none;
    margin-right: 12px;
    margin-bottom: 12px;
    color: var(--primary);
}

.page-block-program-list-item:nth-child(2n) {
    margin-right: 0;
}

.page-block-program-list-item:hover, .page-block-program-list-item:focus {
    background-color: var(--accent);
    color: var(--white);
}

.page-block-program-list-item-image {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin-bottom: 32px;
}

.page-block-program-list-item-image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
    max-width: inherit;
}

.page-block-program-list-item-title {
    display: block;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
}

.page-block-program-list-item-description {
    display: block;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
}

.page-block-pagination {
    display: flex;
    align-items: center;
}

.page-block-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    color: var(--primary);
    margin-right: 4px;
    text-decoration: none;
}

.page-block-pagination a svg {
    stroke: var(--primary);
}

.page-block-pagination a:hover, .page-block-pagination a:focus, .page-block-pagination a.active {
    background-color: var(--accent);
    color: var(--white);
}

.page-block-pagination a:hover svg, .page-block-pagination a:focus svg, .page-block-pagination a.active svg {
    stroke: var(--white);
}

.page-block-pagination a.active {
    pointer-events: none;
}

.page-block-news-list {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-wrap: wrap;
}

.page-block-news-list-item {
    display: block;
    width: calc(33.333% - 32px);
    margin-bottom: 48px;
    margin-right: 48px;
    text-decoration: none;
    color: var(--primary);
}

.page-block-news-list-item:nth-child(3n) {
    margin-right: 0;
}

.page-block-news-list-item:hover, .page-block-news-list-item:focus {
    color: var(--accent);
}

.page-block-news-list-item:last-child {
    margin-right: 0;
}

.page-block-news-list-item-image {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.page-block-news-list-item-image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
    max-width: inherit;
}

.page-block-news-list-item-date {
    display: block;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.page-block-news-list-item-title {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.page-block-address-fees-buttons {
    margin-bottom: 32px;
}

.page-block-address-fees-buttons .btn ~ .btn {
    margin-left: 12px;
}

.page-block-address-fees-list {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 32px;
}

.page-block-address-fees-list-item {
    display: block;
    width: calc(33.333% - 22px);
    text-decoration: none;
    color: var(--primary);
    background-color: var(--surface-soft);
    border-radius: 24px;
    padding: 32px;
}

.page-block-address-fees-list-item:hover, .page-block-address-fees-list-item:focus {
    color: var(--primary);
}

.page-block-address-fees-list-item-image {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.page-block-address-fees-list-item-image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
    max-width: inherit;
}

.page-block-address-fees-list-item-title {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
}

.page-block-address-fees-list-item-diagnosis, .page-block-address-fees-list-item-description {
    display: block;
    margin-bottom: 8px;
}

.page-block-address-fees-list-item-button {
    margin-top: 12px;
    width: 100%;
}

.donation-list-thermometer-container {
    margin-top: 20px;
}

.page-block-content-panel .donation-list-thermometer-container {
    margin-top: 32px;
}

.page-block-commands-list {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 32px;
}

.page-block-commands-list-item {
    display: block;
    width: calc(25% - 24px);
    text-decoration: none;
    color: var(--primary);
    background-color: var(--surface-soft);
    border-radius: 24px;
    padding: 32px;
}

.page-block-commands-list-item-image {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 32px;
}

.page-block-commands-list-item-image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
    max-width: inherit;
}

.page-block-commands-list-item-title {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
}

.page-block-commands-list-item-description {
    display: block;
    margin-bottom: 8px;
}

.page-block-commands-list-item-email {
    color: var(--accent);
    text-decoration: none;
}

.page-block-commands-list-item-email:hover, .page-block-commands-list-item-email:focus {
    color: var(--secondary);
}

.page-block-awards-list {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.page-block-awards-list-item {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: var(--primary);
    background-color: var(--surface-soft);
    border-radius: 24px;
    padding: 32px;
}

.page-block-awards-list-item-image {
    display: block;
    min-width: 140px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: 32px;
}

.page-block-awards-list-item-image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
    max-width: inherit;
}

.page-block-awards-list-item-title {
    display: block;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 12px;
}

.page-block-awards-list-item-description {
    display: block;
}

.page-block-report-list-container {
    margin-bottom: 48px;
}

.page-block-report-list {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-wrap: wrap;
}

.page-block-report-list-item, .page-block-report-list-item-main {
    display: flex;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: var(--primary);
    padding: 24px 32px;
    border-radius: 24px;
    background-color: var(--white);
    justify-content: space-between;
    align-items: center;
    width: calc(50% - 6px);
    margin-right: 12px;
    margin-bottom: 12px;
}

.page-block-report-list-item {
    border: 1px solid #EAEAEA;
}

.page-block-report-list-item-main {
    background-color: var(--surface-soft);
    width: 100%;
    margin-right: 0;
}

.page-block-report-list-item:nth-child(2n) {
    margin-right: 0;
}

.page-block-report-list-item span, .page-block-report-list-item svg, .page-block-report-list-item-main span, .page-block-report-list-item-main svg {
    vertical-align: middle;
}

.page-block-report-list-item svg, .page-block-report-list-item-main svg {
    fill: var(--accent);
    float: right;
}

.page-block-report-list-item:hover, .page-block-report-list-item:focus, .page-block-report-list-item-main:hover, .page-block-report-list-item-main:focus {
    background-color: var(--accent);
    color: var(--white);
}

.page-block-report-list-item:hover svg, .page-block-report-list-item:focus svg, .page-block-report-list-item-main:hover svg, .page-block-report-list-item-main:focus svg {
    fill: var(--white);
}

.page-block-report-filter {
    margin-bottom: 32px;
}

.page-block-report-filter-item {
    display: inline-block;
    border-radius: 999px;
    background-color: var(--surface-hard);
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: var(--accent);
    padding: 10px 32px;
    text-decoration: none;
}

.page-block-report-filter-item:focus, .page-block-report-filter-item:hover, .page-block-report-filter-item.active {
    background-color: var(--accent);
    color: var(--white);
}

.page-block-docs-list {
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-wrap: wrap;
}

.page-block-docs-list-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: var(--primary);
    padding: 24px 32px;
    border-radius: 24px;
    background-color: var(--surface-soft);
    width: calc(33.333% - 8px);
    margin-right: 12px;
    margin-bottom: 12px;
}

.page-block-docs-list-item:nth-child(3n) {
    margin-right: 0;
}

.page-block-docs-list-item svg {
    fill: var(--accent);
}

.page-block-docs-list-item:hover, .page-block-docs-list-item:focus {
    background-color: var(--accent);
    color: var(--white);
}

.page-block-docs-list-item:hover svg, .page-block-docs-list-item:focus svg {
    fill: var(--white);
}

.page-block-docs-list-item-icon {
    display: block;
    text-align: right;
    margin-bottom: 32px;
}

.page-block-docs-list-item-text {
    display: block;
}

.link-anchor-block {
    position: relative;
    top: -80px;
}

.contact-block {
    border-radius: 24px;
    padding: 40px;
    background-color: var(--surface-soft);
    margin-bottom: 48px;
}

.contact-block a:not(.btn) {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 17.07px;
    color: var(--primary);
    margin-bottom: 10px;
    text-decoration: none;
}

.contact-block a:not(.btn):hover, .contact-block a:not(.btn):focus {
    color: var(--accent);
}


.contact-contact-social a:not(.btn) {
    display: inline-block;
    margin-bottom: 0;
}

.contact-contact-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.contact-contact-text a:not(.btn) {
    color: var(--primary);
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.contact-contact-text a:not(.btn):hover, .contact-contact-text a:not(.btn):focus {
    color: var(--accent);
}

.contact-contact-text svg {
    margin-right: 12px;
    min-width: 24px;
    fill: var(--accent);
}

.page-block-contact-content {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
}

.page-block-contact-content b, .page-block-contact-content strong {
    font-weight: 600;
}

.page-block-contact-content ul {
    margin-top: 0;
    padding-left: 20px;
}

.page-breadcrumbs {
    margin-bottom: 12px;
}

.page-breadcrumbs a {
    padding-top: 4px;
    padding-bottom: 4px;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: var(--secondary);
    text-decoration: none;
}

.page-breadcrumbs a ~ a::before {
    content: url('data:image/svg+xml,<svg width="3" height="24" viewBox="0 0 3 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 14C0.671573 14 -1.01779e-07 13.3284 -6.55671e-08 12.5C-2.93554e-08 11.6716 0.671573 11 1.5 11C2.32843 11 3 11.6716 3 12.5C3 13.3284 2.32843 14 1.5 14Z" fill="%23848484"/></svg>');
    display: inline-block;
    padding: 4px 12px;
    vertical-align: middle;
}

.page-breadcrumbs a:hover, .page-breadcrumbs a:focus {
    color: var(--primary);
}

.page-block-content {
    max-width: 760px;
    margin: 0 auto 48px;
}

.page-block-content-image {
    position: relative;
    height: 380px;
    width: 100%;
    overflow: hidden;
    border-radius: 32px;
    margin-bottom: 32px;
}

.page-block-content-image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    margin: auto;
    max-width: inherit;
}

.page-block-content-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: var(--primary);
}

.page-block-content-text img {
    max-width: 100%;
}

.page-block-content-text p {
    margin-bottom: 24px;
}

.page-block-content-text b, .page-block-content-text strong {
    font-weight: 600;
}

.page-block-content-text h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.page-block-content-text ul {
    margin-top: 0;
    padding-left: 22px;
}

.page-block-content-text li {
    margin-bottom: 24px;
    position: relative;
    list-style: none;
}

.page-block-content-text li::before {
    content: '•';
    position: absolute;
    color: var(--accent);
    font-size: 60px;
    left: -26px;
    top: -7px;
}

.page-block-content-panel {
    border-radius: 24px;
    padding: 32px;
    background-color: var(--surface-soft);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
}


@media (max-width: 1199px) {
    .header-menu li a {
        padding: 18px 10px;
    }

    .header-menu-sub li > a {
        padding: 5px;
    }

    .page-block-address-fees-list-item {
        width: calc(50% - 16px);
    }

    .page-block-commands-list-item {
        width: calc(33.333% - 22px);
    }

    .home-address-fees-container .page-block-address-fees-list .page-block-address-fees-list-item:nth-child(3) {
        display: none;
    }
}

@media (max-width: 991px) {
    .link-anchor-block {
        top: -48px;
    }

    .header-menu-button {
        display: flex;
        align-items: center;
    }

    .header-menu-logo {
        margin-right: 0;
    }

    .content-container {
        padding-top: 34px;
        margin-bottom: 20px;
    }

    .header-menu-container {
        top: 0;
        width: 100vw;
        left: 0;
        border-radius: 0;
        position: fixed;
    }

    .header-menu-block {
        justify-content: space-between;
    }

    .header-menu-block {
        padding: 8px 0;
    }

    .header-menu-mobile.btn {
        border-radius: 50%;
        background-color: var(--surface-soft);
        border-color: var(--surface-soft);
        line-height: 1;
        min-height: inherit;
        cursor: pointer;
    }

    .header-menu-logo a {
        display: block;
        height: 24px;
    }

    .header-menu-logo a img {
        max-height: 100%;
    }

    .header-menu-button .btn.header-menu-mobile {
        width: 40px;
        cursor: pointer;
        display: inline-block;
        position: relative;
        text-align: center;
        transition: all 0.2s ease 0s;
        height: 40px;
    }

    .menu-icon-inner {
        display: block;
        top: 50%;
        margin-top: -1px;
    }

    .menu-icon-inner, .menu-icon-inner::before, .menu-icon-inner::after {
        width: 17px;
        height: 2px;
        background-color: var(--accent);
        border-radius: 0;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }

    .menu-icon-inner::before, .menu-icon-inner::after {
        content: "";
        display: block;
    }

    .menu-icon-inner::before {
        top: -10px;
    }

    .menu-icon-inner::after {
        bottom: -10px;
    }

    .menu-icon-spring .menu-icon-inner {
        top: -1px;
        transition: background-color 0s 0.13s linear;
    }

    .menu-icon-spring .menu-icon-inner::before {
        top: 5px;
        transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .menu-icon-spring .menu-icon-inner::after {
        top: 10px;
        transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .header-right-mobile-open .menu-icon-spring .menu-icon-inner {
        transition-delay: 0.22s;
        background-color: transparent !important;
    }

    .header-right-mobile-open .menu-icon-spring .menu-icon-inner::before {
        top: -4px;
        transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 10px, 0) rotate(45deg);
    }

    .header-right-mobile-open .menu-icon-spring .menu-icon-inner::after {
        top: -4px;
        transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 10px, 0) rotate(-45deg);
    }

    .header-menu-block .header-menu {
        float: none;
        display: none;
        position: absolute;
        padding: 16px 16px;
        right: 8px;
        top: 42px;
        border-radius: 16px;
        background-color: #F0F4FA;
    }

    .header-menu li a {
        font-size: 18px;
        line-height: 26px;
    }

    .header-menu li {
        display: block;
    }

    .menu-icon-box {
        width: 16px;
        height: 10px;
        display: inline-block;
        position: relative;
    }

    .header-menu-button .btn ~ .btn:not(.header-menu-mobile) {
        margin-left: 0;
    }

    .header-menu-button-mobile {
        display: none;
    }

    .btn.header-menu-button-mobile-mini {
        position: relative;
        padding-left: 28px;
        margin-right: 4px;
    }

    .btn.header-menu-button-mobile-mini svg {
        position: absolute;
        left: 0;
        top: 0;
        margin-right: 0;
        margin-top: -1px;
    }

    .header-menu-logo svg {
        height: 30px;
    }

    .header-menu-block-mobile ul {
        margin-top: 0;
        padding-left: 0;
    }

    .header-menu-block-mobile li {
        display: block;
        margin-bottom: 16px;
    }

    .header-menu-block-mobile li:last-child {
        margin-bottom: 0;
    }

    .header-menu-block-mobile li a {
        text-decoration: none;
    }

    .header-menu-block-mobile {
        display: block;
        background-color: var(--white);
        position: fixed;
        top: 48px;
        left: 0;
        width: 0;
        max-width: 100vw;
        bottom: 0;
        overflow: hidden;
        transition: all 1s ease 0s;
    }

    .header-menu-block-mobile ul {
        padding: 32px 0;
        background-color: #ffffff;
        border-radius: 24px;
        margin-bottom: 20px;
    }


    .header-menu-block-mobile ul:not(.header-menu-sub) a {
        font-weight: 500;
        font-size: 15px;
        line-height: 18.29px;
        color: var(--primary);
        white-space: nowrap;
    }

    .header-menu-block-mobile ul:not(.header-menu-sub) a:hover, .header-menu-block-mobile ul:not(.header-menu-sub) a:focus {
        color: var(--accent);
    }

    .header-menu-block-padding {
        width: 100vw;
    }

    .header-menu-sub li > a {
        font-size: 13px;
    }

    .header-menu-sub li > a img {
        height: 32px;
    }

    .header-menu-sub li > a span, .header-menu-sub li > a img {
        line-height: 32px;
    }

    .header-menu-sub li > a {
        padding: 0;
        width: 100%;
    }

    .header-menu-sub li > a img {
        margin-right: 9px;
    }

    .header-menu-sub li > a span {
        width: calc(100% - 42px);
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-right-mobile-open .header-menu-block-mobile {
        width: 100vw;
    }

    .btn {
        padding: 8px 16px;
        height: 40px;
        font-size: 12px;
        line-height: 20px;
        display: inline-block;
    }

    .header-menu-button .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        height: 32px;
        font-size: 12px;
    }

    .header-menu-button .btn.header-right-mobile-button {
        height: 40px;
        padding: 0;
        margin-left: 12px;
    }

    .header-menu-button-mobile {
        display: none;
    }

    .cookies-container-block {
        width: 670px;
    }

    .cookies-block {
        width: 80%;
    }

    .cookies-block-link a {
        width: auto;
        max-width: 280px;
        padding-right: 10px;
    }

    .cookies-button {
        right: 20px;
    }

    .slick-initialized .slick-slide {
        margin-right: 30px;
        max-width: 590px;
    }

    .footer-block {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        padding: 16px;
    }

    .footer-right {
        max-width: inherit;
        margin-bottom: 24px;
    }

    .footer-block-copyright-container {
        padding-top: 4px;
    }

    .footer-menu-mobile {
        display: block;
    }

    .footer-menu {
        display: block;
    }

    .footer-menu .footer-menu-block ~ .footer-menu-block {
        margin-left: 0;
    }

    .home-main-block {
        display: block;
    }

    .home-main-block-left {
        width: 100%;
        margin-right: 0;
        padding: 24px;
        height: auto;
        margin-bottom: 12px;
    }

    .home-main-block-right {
        width: 100%;
        height: 360px;
    }

    .home-main-block-right-image {
        height: 360px;
    }

    .home-main-block-left-text h1 {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .home-main-block-left-text h2 {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .home-main-container {
        margin-bottom: 20px;
    }

    .home-program-block-title, .home-help-block-title, .help-block-title, .home-news-block-title, .home-address-fees-block-title, .home-report-block-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 24px;
    }

    .home-program-block-list {
        display: none;
    }

    .home-program-block-list-mobile {
        display: block;
    }

    .home-program-block-list-item {
        padding: 16px;
        margin: 0 auto 12px auto;
    }

    .home-program-block-list-item-image {
        height: 160px;
        margin-bottom: 20px;
    }

    .home-program-block-list-item-title {
        font-size: 20px;
        line-height: 24px;
    }

    .home-program-block-list-item-description {
        font-size: 13px;
        line-height: 24px;
    }

    .home-program-block-button .btn, .home-news-block-button .btn, .home-address-fees-block-button .btn, .home-report-block-button .btn {
        width: 100%;
    }

    .home-program-container, .home-help-container, .help-container, .home-news-container, .home-address-fees-container, .home-about-container {
        margin-bottom: 20px;
    }

    .home-news-block-list-item-image {
        height: 120px;
    }

    .home-news-block-list-item-title {
        font-size: 14px;
        line-height: 20px;
    }

    .home-news-block-list-item:nth-child(2n) {
        margin-right: 0;
    }

    .home-news-block-list-item:nth-child(3) {
        display: none;
    }

    .home-news-block-list {
        margin-bottom: 16px;
    }

    .home-about-block {
        display: block;
    }

    .home-about-block-left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .home-about-block-left-image {
        height: 320px;
        margin-bottom: 12px;
    }

    .home-about-block-right {
        padding: 24px;
        height: auto;
        width: 100%;
        background-color: var(--surface-soft);
    }

    .home-about-block-right-text-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px;
    }

    .home-about-block-right-text-description {
        font-size: 13px;
        line-height: 24px;
    }

    .home-report-block-list-item {
        font-size: 13px;
        line-height: 24px;
        padding: 16px;
        width: 100%;
        margin-right: 0;
    }

    .home-report-block-list {
        margin-bottom: 4px;
    }

    .footer-block-copyright-container {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 17.07px;
    }

    .footer-contact-social svg {
        width: 32px;
        height: 32px;
    }

    .footer-contact-social a:not(.btn) {
        margin-bottom: 16px;
    }

    .footer-docs {
        margin-bottom: 24px;
    }

    .footer-block .footer-menu-block-links a {
        margin-bottom: 8px;
    }

    .footer-menu {
        margin-bottom: 24px;
    }

    .page-block-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .page-block-program-list {
        display: block;
        margin-bottom: 16px;
    }

    .page-block-program-list-item {
        max-width: 480px;
        padding: 16px;
        margin: 0 auto 12px auto;
    }

    .page-block-program-list-item-image {
        height: 160px;
        margin-bottom: 20px;
    }

    .page-block-program-list-item-title {
        font-size: 20px;
        line-height: 24px;
    }

    .page-block-program-list-item-description {
        font-size: 13px;
        line-height: 24px;
    }

    .page-block-program-list-item:nth-child(2n) {
        margin-right: auto;
    }

    .page-block-news-list-item-image {
        height: 120px;
    }

    .page-block-news-list-item-title {
        font-size: 14px;
        line-height: 20px;
    }

    .page-block-news-list {
        margin-bottom: 0;
    }

    .page-block-news-list-item {
        width: calc(50% - 10px);
        margin-bottom: 20px;
        margin-right: 20px;
    }

    .page-block-news-list-item:nth-child(3n) {
        margin-right: 20px;
    }

    .page-block-news-list-item:nth-child(2n) {
        margin-right: 0;
    }

    .page-block-address-fees-list-item-image {
        height: 120px;
    }

    .page-block-address-fees-list-item-title {
        font-size: 14px;
        line-height: 20px;
    }

    .page-block-address-fees-list {
        gap: 20px;
        margin-bottom: 20px;
    }

    .page-block-address-fees-list-item {
        width: calc(50% - 10px);
        padding: 16px;
    }

    .page-block-commands-list-item-image {
        height: 120px;
        width: 120px;
    }

    .page-block-commands-list-item-title {
        font-size: 14px;
        line-height: 20px;
    }

    .page-block-commands-list {
        gap: 20px;
        margin-bottom: 20px;
    }

    .page-block-commands-list-item {
        width: calc(50% - 10px);
        padding: 16px;
    }

    .page-block-awards-list-item-title {
        font-size: 20px;
        line-height: 24px;
    }

    .page-block-awards-list {
        margin-bottom: 20px;
    }

    .page-block-awards-list-item {
        padding: 16px;
    }

    .contact-block {
        padding: 16px;
        margin-bottom: 20px;
    }

    .page-block-contact-content {
        font-size: 14px;
        line-height: 24px;
    }

    .page-block-report-list-item, .page-block-report-list-item-main {
        font-size: 13px;
        line-height: 24px;
        padding: 16px;
        width: 100%;
        margin-right: 0;
    }

    .page-block-report-filter {
        margin-bottom: 16px;
    }

    .page-block-report-list-container {
        margin-bottom: 4px;
    }

    .page-block-docs-list-item {
        font-size: 13px;
        line-height: 20px;
        padding: 12px;
        width: calc(50% - 6px);
        margin-right: 12px;
        margin-bottom: 12px;
    }

    .page-block-docs-list-item:nth-child(3n) {
        margin-right: 12px;
    }

    .page-block-docs-list-item:nth-child(2n) {
        margin-right: 0;
    }

    .page-breadcrumbs {
        margin-bottom: 0;
    }

    .page-block-content-text {
        font-size: 13px;
        line-height: 24px;
    }

    .page-block-content-text h3 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .page-block-content-text p {
        margin-bottom: 16px;
    }

    .page-block-content-text li {
        margin-bottom: 16px;
    }

    .page-block-content-image {
        height: 360px;
        margin-bottom: 16px;
    }

    .page-block-content {
        margin: 0 auto 20px;
    }

    .page-block-news-list-mobile .page-block-news-list-item:nth-child(3) {
        display: none;
    }
}

@media (max-width: 767px) {
    .cookies-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .cookies-container-block {
        width: 100%;
    }

    .cookies-block-text {
        font-size: 15px;
        line-height: 20px;
    }

    .cookies-block-link a {
        font-size: 14px;
        line-height: 18px;
    }

    .cookies-button a {
        font-size: 15px;
        line-height: 24px;
    }

    .cookies-container-block {
        padding: 10px 16px;
    }

    .cookies-block {
        width: 70%;
    }

    .cookies-block-link {
        margin-top: 12px;
    }

    .cookies-button {
        right: 34px;
        top: 12px;
    }

    .slick-initialized .slick-slide {
        max-width: 440px;
    }

    .page-block-address-fees-list {
        gap: 16px;
    }

    .page-block-address-fees-list-item {
        width: 100%;
        max-width: 351px;
        margin: auto;
    }

    .home-address-fees-container .page-block-address-fees-list .page-block-address-fees-list-item:nth-child(3) {
        display: block;
    }
}

@media (max-width: 640px) {
    .slick-initialized .slick-slide {
        max-width: calc(100vw - 140px);
        margin-right: 8px;
    }

    .modal-content {
        left: 16px;
    }

    .home-main-block-right {
        height: 220px;
    }

    .home-main-block-right-image {
        height: 220px;
    }

    .home-about-block-left-image {
        height: 220px;
    }

    .page-block-content-image {
        height: 220px;
    }

    .page-block-commands-list {
        gap: 12px;
    }

    .page-block-awards-list {
        gap: 12px;
    }

    .page-block-awards-list-item {
        display: block;
    }

    .page-block-awards-list-item-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .header-menu-block, .header-menu-block-mobile ul {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 560px) {
    .cookies-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cookies-button {
        right: inherit;
        top: inherit;
        position: relative;
        text-align: center;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .cookies-block {
        width: 100%;
    }

    .slick-initialized .slick-slide {
        max-width: calc(100vw - 40px);
    }
}

@media (max-width: 560px) {
    .page-block-commands-list-item {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 470px) {
    .page-block-content-image img, .home-program-block-list-item-image img, .home-news-block-list-item-image img, .page-block-news-list-item-image img, .page-block-commands-list-item-image img, .home-about-block-left-image img, .page-block-program-list-item-image img {
        display: block;
        width: auto;
        height: 100%;
        position: absolute;
        top: 0;
        left: -100%;
        right: -100%;
        bottom: 0;
        margin: auto;
        max-width: inherit;
    }
}

@media (max-width: 440px) {
    .btn.header-menu-button-mobile-mini {
        padding-left: 16px;
    }

    .header-menu-button-mobile-mini span {
        display: none;
    }
}

@media (max-width: 400px) {
    .cookies-block-link a {
        font-size: 12px;
        width: 60%;
    }
}

@media (max-width: 390px) {
    .cookies-block-link a {
        display: block;
        padding: 4px 10px;
        width: 100%;
    }
}

@media (max-width: 360px) {
    .header-menu-logo a {
        height: 18px;
    }
}

@media (max-width: 340px) {
    .btn.header-menu-button-mobile-mini {
        display: none;
    }
}