﻿@import url(vendor.css);

:root {
    --main-color: #45B97C;
    --main-color-light: #EDF8F2;
    --main-color-dark: #4C7A62;
    --dark-color: #4D4D4D;
}

/* Fonts */
@font-face {
    font-display: swap;
    font-family: 'Commissioner';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-300.woff2') format('woff2'), url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-300.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Commissioner';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-regular.woff2') format('woff2'), url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-regular.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Commissioner';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-500.woff2') format('woff2'), url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-500.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Commissioner';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-600.woff2') format('woff2'), url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-600.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Commissioner';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-700.woff2') format('woff2'), url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-700.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Commissioner';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-800.woff2') format('woff2'), url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-800.ttf') format('truetype');
}


@font-face {
    font-display: swap;
    font-family: 'Commissioner';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-900.woff2') format('woff2'), url('../fonts/commissioner/commissioner-v23-cyrillic-ext_latin-900.ttf') format('truetype');
}

/* Globals */
* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Commissioner', sans-serif;
    color: var(--dark-color);
    position: relative;
}

@media (max-width: 1279px) {
    html {
        font-size: 8.5px;
    }
}

body {
    font-size: 1.6rem;
}

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

svg {
    vertical-align: top;
}

a {
    color: currentColor;
    text-decoration: none;
}

a:not([class]) {
    text-decoration: none;
}

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

h2 {
    font-weight: bold;
    font-size: 2rem;
    line-height: 2.4rem;
}

h1,
.h1 {
    font-weight: bold;
    font-size: 3rem;
    line-height: 3.6rem;
}

[style*='background-image'] {
    background: no-repeat center;
    background-size: cover;
}

.nobr {
    white-space: nowrap;
}

.container {
    max-width: 147rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.svg-defs-global {
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
}

.-arrow-right {
    fill: var(--dark-color);
}

.-arrow-right-bg {
    fill: #285769;
}

.button-default {
    transition: .2s;
    background: var(--main-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    line-height: 1.25;
}

/*  Header */
.header {
    background: #fff;
    position: relative;
    color: var(--dark-color);
}

.header__background {
    position: relative;
    left: 0;
    right: 0;
    max-height: calc(100vh - 6rem);
    min-height: 83rem;
    overflow: hidden;
}

.header__slider-item {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 30%;
    background-color: var(--main-color-dark);
}

.header__slider-item {
    -webkit-transition: .2s;
    transition: .2s;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.header__slider-item.slick-active {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation: slideAnimation 8s 1 ease-in-out forwards;
    animation: slideAnimation 8s 1 ease-in-out forwards;
}

@keyframes slideAnimation {
    from {
        -webkit-transform: scale(1) translate(0);
    }

    to {
        -webkit-transform: scale(1.05) translate(0);
    }
}

@-webkit-keyframes slideAnimation {
    from {
        -webkit-transform: scale(1) translate(0);
    }

    to {
        -webkit-transform: scale(1.05) translate(0);
    }
}

.header__container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 4.6rem;
    max-width: 144rem;
    margin: 0 auto;
}

.header__columns {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 3rem 6rem;
    border-radius: 32px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
}

.header__columns-actions {
    flex: 1;
}

.header__top-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1.6rem;
}

.header__logo-wrap {
    display: flex;
    flex-direction: row;
}

.header__logo {
    display: flex;
    align-items: center;
    margin-right: 3.6rem;
}

.header__logo-image {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 10.2rem;
    height: 8.4rem;
    display: block;
    margin-right: 3.6rem;
}

.header__logo-text {
    display: flex;
    color: var(--dark-color);
    font-size: 2rem;
    line-height: 1.2;
    max-width: 260px;
}

.header__logo-text > span {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.header__logo-separate {
    display: flex;
    width: 1px;
    background: var(--dark-color);
    margin: 0 1.2rem;
}

.header__city {
    font-size: 1.6rem;
    line-height: 1.2rem;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}

.header__city-link {
    display: flex;
    align-items: center;
}

.header__city-link:hover {
    text-decoration: none;
    color: var(--main-color);
}

.header__city-name {
    border-color: transparent;
    transition: .2s;
}

.header__city-link:hover .header__city-name {
}

.header__city-icon {
    transition: .2s;
}

.header__city-icon svg {
    color: var(--main-color);
    margin-right: .8rem;
}

.header__city-link:hover .header__city-icon {
    color: var(--main-color-dark);
}

.header__city-popup {
    display: none;
    background: #fff;
    border-radius: 30px;
    color: var(--main-color);
    position: fixed;
    top: 50%;
    left: 50%;
    margin: 0 auto;
    padding: 2.7rem;
    width: 100%;
    max-width: 144rem;
    transform: translate(-50%, -50%);
    z-index: 100;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
}

.header__city-popup-close {
    position: absolute;
    right: 2.2rem;
    top: 4.2rem;
    fill: var(--dark-color);
    cursor: pointer;
    transition: .2s ease;
    z-index: 10;
}

.header__city-popup-close:hover {
    opacity: .95;
}

.header__city-popup-top {
    display: flex;
    gap: 3rem;
    padding-right: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.header__city-popup-search {
    position: relative;
    flex: 1;
}

.header__city-popup-input {
    width: 100%;
    padding-right: 2rem;
    background: #fff;
    border: 1px solid #A3A3A3;
    outline: none;
    border-radius: 32px;
    padding: 1.3rem 4.2rem 1.3rem 1.8rem;
    transition: .2s ease;
    color: var(--dark-color);
}

.header__city-popup-input::placeholder {
    color: var(--dark-color);
}

.header__city-popup-input:focus {
    background: var(--main-color-light);
}

.header__city-popup-button {
    position: absolute;
    right: 1.8rem;
    top: 1rem;
    cursor: pointer;
    border: none;
    background: none;
    transition: .2s ease;
    fill: var(--dark-color);
}

.header__city-popup-button:hover {
    opacity: .95;
}

.city-favorites__link {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.2rem;
    transition: .2s ease;
    cursor: pointer;
}

.city-favorites__link:hover {
    text-decoration: none;
    color: var(--main-color);
}

.header__city-popup-wrapper {
    max-height: 65vh;
    min-height: 300px;
    overflow-y: auto;
    padding-right: 2rem;
}

.header__city-popup-wrapper::-webkit-scrollbar {
    -webkit-appearance: none;
}

.header__city-popup-wrapper::-webkit-scrollbar:vertical {
    width: 6px;
}

.header__city-popup-wrapper::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: var(--main-color);
}

.header__city-popup-wrapper::-webkit-scrollbar-track {
    border-radius: 6px;
    background-color: var(--main-color-light);
}

.header__city-popup-list.city-list {
    columns: 4;
}

.city-list__group {
    white-space: nowrap;
    position: relative;
    padding-left: 3.4rem;
    font-size: 1.4rem;
    line-height: 1.7rem;
    margin-bottom: .5rem;
}

.city-list__group-letter {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    font-size: 2rem;
    color: #A3A3A3;
}

.city-list__group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.city-list__group ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 300;
    margin-bottom: .7rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.city-list__group ul li:last-child {
    padding-bottom: 2.8rem;
}

.city-list__group ul li a {
    transition: .2s ease;
    cursor: pointer;
}

.city-list__group ul li a:hover {
    text-decoration: none;
    color: var(--dark-color);
}

@media (max-width: 1480px) {

    .header__city-popup {
        max-width: 134rem;
    }

    .header__container {
        max-width: 134rem;
    }

    .header__logo-text {
        font-size: 1.6rem;
    }

    .header__city-popup-list.city-list {
        columns: 3;
    }

    .header__logo-image, .header__logo {
        margin-right: 2rem;
    }
}

@media (max-width: 991px) {
    .header__city-popup-list.city-list {
        columns: 2;
    }
}

@media (max-width: 767px) {
    .header__city-popup-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding-right: 4rem;
        margin-bottom: 3rem;
    }

    .header__city-popup-close {
        top: 3rem;
    }

    .header__city-popup-search {
        width: 100%;
    }

    .city-list__group {
        white-space: normal;
    }
}

@media (max-width: 500px) {
    .header__city-popup {
        border-radius: 0;
        height: 100%;
    }

    .header__city-popup-wrapper {
        max-height: calc(100% - 8rem);
    }

    .header__city-popup-list.city-list {
        columns: 1 !important;
    }
}

.header__toolbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header__mobile {
    display: none;
    text-align: right;
}

.header__mobile_city-login {
    display: none;
    flex-direction: row;
    justify-content: space-between;
}

.header__control-hamburger {
    display: none;
    transition: 0.2s;
    fill: currentColor;
}

.nav-modal__close {
    display: none;
    transition: 0.2s;
    fill: currentColor;
}

.header__socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header__socials-link {
    margin-left: 2.8rem;
    flex: 0 0 auto;
}

.header__socials-link:first-child {
    margin-left: 0;
}

.header__socials-link svg {
    transition: .2s;
    fill: currentColor;
}

.header__socials-link:hover svg {
    fill: var(--main-color);
}

.header__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.1rem;
}

.header__actions-eye {
    font-weight: 300;
    margin-left: 4rem;
}

.header__actions-eye-link:hover {
    text-decoration: none;
    color: var(--main-color-dark);
}

.header__actions-eye-text {
    border-bottom: 1px solid currentColor;
    transition: .2s;
}

.header__actions-eye-link:hover .header__actions-eye-text {
    border-color: transparent;
}

.header__actions-eye-icon {
    transition: .2s;
}

.header__actions-eye-icon svg {
    color: var(--main-color);
}

/*.header__actions-eye-link:hover .header__actions-eye-icon svg {
    color: var(--main-color-dark);
}*/

.header__actions-lang {
    margin-left: 4rem;
}

.header__actions-lang-link {
    display: flex;
    align-items: center;
    transition: .2s;
}

.header__actions-lang-link:hover {
    color: var(--main-color);
}

.header__actions-lang-link svg {
    margin-left: .8rem;
    color: var(--main-color);
}

.header__actions-lang-link.is-active {
    font-size: 1.45rem;
    font-weight: 500;
}

.header__actions-login {
    margin-left: 2.8rem;
}

.header__actions-login-link {
    display: flex;
    align-items: center;
    transition: .2s;
}

.header__nav-container {
    display: flex;
    flex: 1;
}

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

.header__nav .header__control-hamburger {
    display: block;
}

.header__nav-item {
    display: flex;
    flex: 1 1 auto;
    position: relative;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 1.4rem;
    font-size: 1.6rem;
    line-height: 1.2;
    text-transform: none;
    color: var(--dark-color);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobile-nav .header__nav-item {
    color: #525252;
}

.header__nav-item:first-child {
    padding-left: 0;
}

.header .header__nav-item:hover .header__nav-link {
    color: var(--main-color);
}

.header__nav-item-wrap {
    display: block;
    margin: 0 0.1rem;
}

.header__nav-link:hover {
    text-decoration: none;
}

.header__nav-item.is-active {
    color: var(--main-color);
}

.is-active > .header__nav-item-wrap > a, .is-active > .header__nav-item-wrap > span {
    color: var(--main-color)!important;
}

.header__nav-item.is-active:hover .header__nav-link {
    color: var(--dark-color);
}

.header__nav-item.is-active:before {
    width: 100%;
}

.header__nav-submenu {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 100%;
    width: 100%;
    min-width: 220px;
    font-weight: 400;
    font-size: 1.6rem;
    border-radius: 16px;
    line-height: 1.2;
    padding: 0 2rem;
    text-transform: none;
    background: #FFF;
    z-index: 5;
    transform: translate(-50%, 10px);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
}

.header__nav-submenu-link {
    display: block;
    margin: .5rem 0;
    padding: .5rem 0;
    text-align: left;
    color: var(--dark-color);
    transition: color .2s ease;
}

.header__nav-submenu-link:last-child {
    border-bottom: none;
}

.header__nav-submenu-link:hover {
    color: var(--main-color);
}

.header__nav-item:first-child .header__nav-submenu {
    width: calc(100% + 4rem);
}

.header__nav-item:first-child .header__nav-submenu-link.-programm {
    text-align: left;
    /*margin-left: 1rem;*/
    font-size: 1rem;
    line-height: 1.2rem;
}

@media (max-width: 1480px) {
    .header__nav-item {
        padding: 0 1rem;
    }
}
@media (max-width: 1279px) {
    .header__nav-item:first-child .header__nav-submenu-link.-programm {
        font-size: 1.2rem;
        line-height: 1.5rem;
        margin-bottom: 0.9rem;
    }

    .header__nav-submenu {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }
}

.header__nav-item:first-child .header__nav-submenu-link {
    text-align: left;
}

.header__title {
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 5rem 0 3.2rem;
}

.header__title-text {
    display: block;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
}

.header__title-text.-title-text-yellow {
    display: block;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--main-color);
}

@media (max-width: 767px) {
    .header__title {
        margin: 3rem 0 2.5rem;
        text-align: center;
    }

    .header__title-text {
        font-size: 2.2rem;
        line-height: 2.6rem;
    }
}

.header__search {
    margin: 0 0 3rem;
}

.header__search-container {
    max-width: 655px;
    position: relative;
    margin: 0 auto;
}

.header__search-input {
    width: 100%;
    background: #FFF;
    border-radius: 32px;
    border: 1px solid #fff;
    padding: 1.4rem 4rem 1.4rem 2.8rem;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
    color: var(--dark-color);
    outline: none;
    transition: .2s;
}

.header__search-input:focus {
    background: var(--main-color-light);
}

.header__search-input::placeholder {
    color: var(--dark-color);
}

.header__search-button {
    position: absolute;
    right: 2.2rem;
    top: 1.1rem;
    border: none;
    background: none;
    border: none;
    cursor: pointer;
}

.header__search-button svg {
    fill: var(--dark-color);
}

.header__search-button:hover {
    opacity: .9;
}

.header__desc {
    max-width: 70rem;
    margin: 0 auto;
}

.header__desc-text {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 auto;
    font-weight: 500;
    text-align: justify;
    max-width: 655px;
    color: #FFF;
}

.header__desc-text strong {
    font-weight: 700;
    color: var(--main-color)
}

.header__desc-text > div {
    margin-top: 1.5rem;
}

.header__desc-text > div {
    margin-top: 1.5rem;
}


.header__desc-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3.2rem;
}

/*.header__desc-link-map {
    display: flex;
    align-items: center;
    color: #DCAA44;
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.3rem;
    transition: .2s;
}

.header__desc-link-map:hover {
    opacity: .9;
}

.header__desc-link-map-arrow {
    margin-left: .5rem;
    display: flex;
}

.header__desc-link-map-arrow svg {
    fill: #DCAA44;
}*/

.mobile-nav {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: var(--main-color-light);
    color: var(--dark-color);
    transition: 0.2s;
    opacity: 0;
    z-index: 99;
}

.mobile-nav__container {
    max-width: 144rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 7.4rem;
}

.mobile-nav.is-visible {
    visibility: visible;
    opacity: 1;
}

.mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7.6rem 0 1rem;
    color: #525252;
}

.mobile-nav__xs-search {
    display: none;
}

.mobile-nav__header .header__search-container, .mobile-nav__xs-search .header__search-container {
    flex: 1 1 auto;
    max-width: 65%;
    margin: 0 3.6rem 0 0;
}

.mobile-nav__xs-search .header__search-container {
    max-width: 100%;
    padding-bottom: 4rem;
}

.mobile-nav__header .header__search-container form, .mobile-nav__xs-search .header__search-container form {
    margin: 0;
}

.mobile-nav__header .header__search-input, .mobile-nav__xs-search .header__search-input {
    background-color: #FFF;
    border-radius: 32px;
    border: 1px solid #A3A3A3;
    padding: 1.4rem 4rem 1.4rem 2.8rem;
    color: #525252;
}

.mobile-nav__header .header__search-input:focus, .mobile-nav__xs-search .header__search-input:focus {
    border-color: var(--main-color);
}

.mobile-nav__header .header__search-button, .mobile-nav__xs-search .header__search-button {
    right: 1.2rem;
}

.mobile-nav__header .header__search-button svg, .mobile-nav__xs-search .header__search-button svg {
    fill: #A3A3A3;
}

.mobile-nav__header .header__search-input::placeholder {
    color: #A3A3A3;
}

.mobile-nav__header .nav-modal__close {
}

.mobile-nav__social {
    padding: 0 1rem 0.5rem;
    display: flex;
    justify-content: flex-end;
    color: #fff;
}

.mobile-nav__xs-city-login {
    display: none;
}

.mobile-nav__list {
    padding: 1rem 1rem 0;
    overflow-y: auto;
    flex: 1;
    overflow-y: auto;
    column-count: 5;
}

.mobile-nav__list .header__nav-item {
    padding: .5rem 0;
    background: none;
    font-size: 2.4rem;
    font-weight: 500;
    page-break-inside: avoid;
    overflow: hidden;
}

.mobile-nav__list .header__nav-item:nth-child(3), .mobile-nav__list .header__nav-item:nth-child(5), .mobile-nav__list .header__nav-item:nth-child(6) {
    break-after: column;
}

.mobile-nav__list .header__nav-link {
    display: inline-block;
    padding: 0;
    margin-bottom: 1.4rem;
}

.mobile-nav__list .header__nav-link:hover {
    color: var(--main-color);
}

.mobile-nav__list .header__nav-item-wrap {
    width: 100%;
    margin-top: 1.4rem;
}

.mobile-nav__list .header__nav-submenu {
    position: static;
    padding-top: 2rem;
    display: block;
    font-weight: 400;
    max-width: auto;
    transform: none;
    background: none;
    box-shadow: none;
    padding: 0;
}

.mobile-nav__list .header__nav-item:first-child .header__nav-submenu {
    width: 100%;
}

.mobile-nav__list .header__nav-submenu-link {
    text-align: left;
    margin-bottom: .4rem;
    padding: .2rem 0;
    border-bottom: none;
}

.mobile-nav__list .header__nav-link:after, .mobile-nav__list .header__nav-link:before {
    display: none;
}

.mobile-nav__list .header__nav-item:before {
    display: none;
}

.mobile-nav .header__nav-item:first-child .header__nav-submenu-link:first-child {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.9rem;
    margin-bottom: 1.4rem;
}

.mobile-nav .header__nav-item:first-child .header__nav-submenu-link:last-child {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.9rem;
    margin-top: 1.4rem;
}

.mobile-nav__city {
    color: #fff;
}

.mobile-nav__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2.4rem 0 0;
    margin-top: 4.5rem;
    border-top: 1px solid #A3A3A3;
}

.mobile-nav__actions {
    color: var(--dark-color);
    display: flex;
    align-items: center;
    /*padding-left: 15rem;*/
    /*flex: 1;*/
    column-gap: 4rem;
}

.mobile-nav__actions .header__actions-eye-link {
    /*margin: 0 4rem;*/
}

.mobile-nav__login {
    color: #fff;
    display: flex;
}

.mobile-nav__login .header__actions-login-text {
    display: inherit;
}

.mobile-top-actions {
    display: none;
}

@media (max-width: 1480px) {
    .mobile-nav__container {
        max-width: 134rem;
    }
}
@media (max-width: 1100px) {
    .header__container {
        padding: 2rem;
    }

    .header__columns {
        padding: 2.4rem 2rem;
        align-items: center;
    }

    .mobile-nav {
        height: 100%;
    }

    .mobile-nav__container {
        padding: 2rem;
    }

    .mobile-nav__header {
        padding-top: 0;
    }

    .header__top-line {
        border-bottom: none;
        padding: 0;
        margin: 0;
    }

    .header__mobile_city-login {
        border-bottom: 1px solid #fff;
        padding: 1.2rem 0;
        align-items: center;
        font-size: 1.65rem;
    }

    .header__socials {
        display: none;
    }

    .header__mobile {
        display: block;
    }

    .header__mobile_city-login {
        display: flex;
    }

    .header__control-hamburger {
        display: block;
    }

    .nav-modal__close {
        display: none;
    }

    .header__top-line {
        justify-content: flex-end
    }

    .header__actions {
        margin-right: 3.3rem;
    }

    .header .header__city {
        font-size: 1.42rem;
    }

    .header__mobile_city-login .header__city-icon .svg-icon {
        width: 2.1rem !important;
        height: 2.1rem !important;
    }

    .header__actions .header__actions-eye, .header__actions .header__actions-lang {
        display: none;
    }

    body.has-nav-opened {
        overflow: hidden;
    }

    .header__nav {
        display: none;
    }

    .header__search {
        margin: 3rem 0;
    }

    .header__desc-text {
        font-size: 1.6rem;
        line-height: 1.9rem;
    }

    .header__toolbar {
        padding-top: .5rem;
        align-items: center;
        flex-direction: row-reverse;
    }

    .header__actions-login {
        margin-right: 2.8rem;
    }

    .mobile-nav__list .header__nav-item:nth-child(3) .header__nav-link:after {
        display: none;
    }
}
@media (max-width: 992px) {

    .header__mobile_city-login .header__actions-login-text {
        display: inline;
        font-size: 1.42rem;
    }

    .header__mobile_city-login .header__actions-login-link .svg-icon {
        width: 2.4rem !important;
        height: 2.4rem !important;
        margin-top: -0.2rem;
    }

    .header__slider-item {
        background-size: cover;
    }

    .header__logo-image {
        width: 87px;
        height: 72px;
        margin-right: 1.6rem;
    }
    
    .header__logo-text {
        font-size: 14px;
    }

    .header__logo-separate {
        margin: 0 .8rem;
    }

    .mobile-nav__list .header__nav-item:nth-child(3), .mobile-nav__list .header__nav-item:nth-child(5), .mobile-nav__list .header__nav-item:nth-child(6) {
        break-after: auto;
    }

    .mobile-nav__list {
        column-count: 4;
    }
}

@media (max-width: 767px) {
    .header__background {
        min-height: 65rem;
    }

    .header__toolbar .header__actions-login {
        display: none;
    }

    .header__columns {
        align-items: flex-start;
        flex-direction: column;
        justify-content: space-between;
    }

    .header__columns-actions {
        flex: 1;
        width: 100%;
    }

    .header__top-line {
        justify-content: space-between;
        column-gap: 3rem;
        margin-top: 1rem;
    }

    .header__actions-eye, .header__actions-lang {
        /*margin-right: 2rem;*/
    }

    .mobile-nav__list {
        column-count: 3;
    }

    .mobile-nav__actions {
        padding: 0 2rem;
    }
}

@media (max-width: 600px) {
    .header__background {
        max-height: 65vh;
    }

    .mobile-nav__header .header__search-container {
        display: none;
    }

    .mobile-nav__xs-search .header__search-container {
        margin: 2.8rem 0;
        padding-bottom: 0;
    }

    .mobile-top-actions {
        display: none;
        /*display: flex;*/
        justify-content: space-between;
        align-items: center;
        flex: 1;
        padding-right: 2rem;
        column-gap: 1rem;
    }

    .mobile-top-actions .mobile-nav__social .header__socials-link {
        margin-left: .5rem;
    }

    .mobile-top-actions .header__actions-lang-link {
        font-size: 0;
    }

    .mobile-top-actions .header__actions-lang-link .svg-icon {
        margin-left: 0;
    }

    .mobile-top-actions .mobile-nav__actions .header__actions-eye-link {
        /*margin-right: 1rem;*/
    }

    .mobile-top-actions .mobile-nav__social svg {
        width: 2.1rem !important;
        height: 2.1rem !important;
    }

    .mobile-nav .nav-modal__close .svg-icon {
        width: 2rem !important;
        height: 2rem !important;
    }

    .mobile-nav__xs-search {
        display: flex;
    }

    .mobile-nav__xs-city-login {
        display: flex;
        flex-direction: column-reverse;
        color: var(--dark-color);
        align-items: flex-start;
        row-gap: 20px;
        justify-content: space-between;
        padding-top: 4rem;
    }

    .mobile-nav__xs-city-login .header__actions-login-text {
        display: inline;
    }

    .mobile-nav__xs-city-login .lkb_top {
        width: 100%;
    }

    .mobile-nav__xs-city-login .header__actions-login-link {
        display: block;
        font-size: 1.8rem;
        text-align: center;
    }

    .mobile-nav__xs-search {
        display: flex;
    }

    .mobile-nav__list {
        column-count: 1;
        padding: 1rem 0;
    }

    .mobile-nav__list .header__nav-submenu {
        display: none;
    }

    .mobile-nav__list .header__nav-item {
        margin: 0 0 2.8rem;
        padding: 0;
        font-size: 1.6rem;
    }


    .mobile-nav__list .header__nav-link {
        padding: .5rem 0 1.3rem;
        display: block;
        margin: 0;
    }

    .mobile-nav__list .header__nav-link:after {
        content: "";
        background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgOUwxMiAxNUwxOCA5IiBzdHJva2U9IiNBM0EzQTMiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
        background-repeat: no-repeat;
        background-color: transparent;
        background-size: contain;
        opacity: .8;
        display: block;
        width: 2.1rem;
        height: 2.1rem;
        position: absolute;
        right: 0.1rem;
        top: 0.4rem;
    }

    .mobile-nav__list .header__nav-item:last-child .header__nav-link:after {
        display: block;
    }

    .mobile-nav__list .is-active .header__nav-link:after {
        transform: rotate(180deg);
        padding-top: 0;
        margin-right: 0;
    }

    .mobile-nav__list .header__nav-item-wrap {
        margin: 0;
    }

    .mobile-nav__footer {
        margin-top: 2rem;
        border-color: var(--dark-color);
    }

    .mobile-nav__footer .mobile-nav__city, .mobile-nav__footer .mobile-nav__login {
        display: none;
    }

    .mobile-nav__footer .mobile-nav__actions {
        order: 1;
        color: var(--dark-color);
        padding: 0;
    }

    .mobile-nav__actions .header__actions-eye-link {
        /*margin: 0 3rem;*/
    }

    .mobile-nav__footer .header__city-wrap {
        display: none;
    }
}

@media (max-width: 480px) {
    .header__actions-eye, .header__actions-lang {
        /*margin-right: 1.5rem;*/
    }

    .mobile-nav__city .header__city-icon {
        display: none;
    }
}

@media (max-width: 370px) {
    .header__background {
        max-height: 82vh;
        min-height: auto;
    }
}

/* Banners */
.banners {
    padding-top: 6rem;
}

.banners__container {
    max-width: 88.3rem;
}

.switch-banner-link {
    display: none;
}

.switch-banner-link.active {
    display: block;
}

.bannermobile {
    display: none;
    text-align: center;
    margin: 0 auto;
}

.bannermobile img {
    display: inline-block;
}

.top-banners__list {
    display: flex;
    justify-content: space-between;
    /*margin-bottom: 24px;*/
}

.top-banners__list-item {
    background: #fff;
    overflow: hidden;
}

.top-banners__list-separate {
    width: 2px;
    background: #285769;
}

.banner-mobile {
    display: none;
}

@media (max-width: 767px) {
    .banners__container {
        max-width: 58.6rem;
    }

    .banner {
        display: none;
    }

    .top-banners .nav-tools__container > .top-banners__list-item:not(.banner-mobile) {
        display: none;
    }

    .banner-mobile {
        display: block;
    }

    .bannermobile {
        display: block;
    }

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

    .top-banners__list-separate {
        display: none;
    }

    .top-banners__list-item {
        /*margin-bottom: 32px;*/
    }

    .top-banners__list-item.--scale-mobile a {
        display: block;
        overflow: hidden;
        padding-top: 5px;
    }

    .top-banners__list-item.--scale-mobile-temp img {
        transform: scale(1.4);
    }
}

/* News slider */
.news-slider {
    padding: 4rem 0 12rem;
    overflow: hidden;
}

.news-slider__container {
    max-width: 144rem;
}

.news-slider__title {
    font-size: 3.4rem;
    line-height: 3.9rem;
    font-weight: 700;
    margin: 0 0 4rem;
    text-align: center;
    color: var(--dark-color);
}

.news-slider__dots {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 4.3rem;
    max-width: 85rem;
    /*max-width: 90rem;*/
    margin: 0 auto;
}

.news-slider__dots-item {
    color: var(--dark-color);
    position: relative;
    padding-bottom: 5rem;
    width: 50%;
}

.news-slider__dots-title {
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 2.4rem;
    text-align: center;
    cursor: pointer;
}

.news-slider__dots-item.is-active .news-slider__dots-title {
    color: var(--main-color);
}

.news-slider__dots-round {
    width: 2.4rem;
    height: 2.4rem;
    background: var(--main-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    z-index: 2;
    cursor: pointer;
    transition: .2s;
}

.news-slider__dots-item.is-active .news-slider__dots-round:after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background: #FFF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news-slider__dots-progress {
    position: absolute;
    bottom: 1.1rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--main-color-dark);
}

.news-slider__dots-item:last-child .news-slider__dots-progress {
    display: none;
}

.news-slider__dots-progress:before {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 7s linear;
}

.news-slider__dots-item.transition-off .news-slider__dots-progress:before {
    transition: none;
}

.news-slider__dots-item.is-active .news-slider__dots-progress:before {
    background: var(--main-color);
    width: 100%;
}

.news-slider__dots-item.is-active.-no-progress .news-slider__dots-progress:before {
    background: var(--main-color);
    width: 0;
}

.news-slider__group {
    display: none;
}

.news-slider__group.is-active {
    display: block;
}


.news-slider__content {
    display: flex;
}

.news-slider__images-container {
    width: 45%;
    position: relative;
    padding-top: 32rem;
    padding-left: 11rem;
    min-height: 40rem;
    height: 100%;
}

.news-slider__images {
    position: relative;
    width: 100%;
    height: 100%;
}

.news-slider__images img {
    border-radius: 10px;
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, .5);
}

.news-slider__images-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-10%) scale(0.3);
    transition: all 1s ease;
    opacity: 0;
    z-index: -1;
    width: 100%;
    user-select: none;
    cursor: pointer;
}

.news-slider__images-item.next {
    left: 50%;
    transform: translateY(-90%) translateX(-60%) scale(1);
    opacity: 1;
    z-index: 2;
}

.news-slider__images-item.prev {
    left: 50%;
    transform: translateY(-60%) translateX(-75%) scale(1);
    opacity: 1;
    z-index: 1;
}

.news-slider__images-item.now {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(1);
    opacity: 1;
    z-index: 5;
}

.news-slider__text {
    width: 55%;
    padding-left: 5rem;
    padding-top: 5%;
}

.news-slider__text-item {
    display: none;
    -webkit-animation-name: newsSliderContent;
    animation-name: newsSliderContent;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.news-slider__text-item.is-active {
    display: block;
}

@-webkit-keyframes newsSliderContent {
    from {
        opacity: 0;
        -webkit-transform: translateX(15%);
        transform: translateX(15%)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@keyframes newsSliderContent {
    from {
        opacity: 0;
        -webkit-transform: translateX(15%);
        transform: translateX(15%)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

.news-slider__text-title {
    font-weight: 700;
    font-size: 2.1rem;
    line-height: 2.5rem;
    color: var(--dark-color);
    margin: 0 0 1.6rem;
}

.news-slider__text-caption {
    color: var(--dark-color);
    font-size: 1.7rem;
    line-height: 1.9rem;
}

.news-slider__text-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 5.4rem;
}

.news-slider__text-arrow {
    transition: .2s;
}

.news-slider__text-arrow:hover {
    opacity: .9;
}

.news-slider__link {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.6rem;
    color: var(--dark-color);
}

.news-slider__link svg {
    margin-left: 1rem;
}

.news-slider__all-news {
    font-size: 2rem;
    line-height: 2.3rem;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    margin-left: 1.8rem;
    padding-left: 1.8rem;
}

.news-slider__all-news a {
    transition: .2s;
    background: var(--main-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1.6rem;
    line-height : 1;
}

.news-slider__all-news a:hover {
    text-decoration: none;
    opacity: .9;
}

.news-slider__all-news-arrow {
    fill: #fff;
    margin-left: .5rem;
}

.news-slider__all-news-arrow svg {
    vertical-align: middle;
}

@media (max-width: 1480px) {
    .news-slider__container {
        max-width: 134rem;
    }
}
@media (max-width: 1000px) {
    .news-slider {
        padding: 6rem 0;
    }

    .news-slider__content {
        flex-direction: column;
    }

    .news-slider__dots {
        padding-bottom: 2.5rem;
        max-width: none;
        align-items: inherit;
    }

    .news-slider__dots-item {
        flex: 1;
    }

    .news-slider__images-container {
        width: 100%;
        padding: 16rem 0 0 7rem;
        min-height: auto;
    }

    .news-slider__images {
        padding-bottom: 35%;
    }

    .news-slider__images-item {
        width: auto;
    }

    .news-slider__text {
        padding-left: 0;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .news-slider__images-container {
        padding: 17rem 0 0 16%;
    }

    .news-slider__images {
        padding-bottom: 50%;
    }

    .news-slider__images-item {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .news-slider__dots-title {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    .news-slider__text-title {
        font-size: 1.6rem;
        line-height: 1.8rem;
    }

    .news-slider__all-news a {
        white-space: nowrap;
        font-size: 1.6rem;
    }
}

@media (max-width: 500px) {
    .news-slider__images-container {
        padding-top: 10rem;
    }
}

/* Nav tools */
.nav-tools {
    margin-top: -10rem;
    position: relative;
}

.nav-tools__container {
    max-width: 144rem;
}

.nav-tools__list {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    display: flex;
    padding: 0 3rem;
    min-height: 21.5rem;
}

.nav-tools__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    position: relative;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 700;
    color: var(--main-color-dark);
    transition: .2s;
    user-select: none;
}

.nav-tools__item:hover {
    z-index: 2;
}

.nav-tools__item svg {
    transition: transform .2s ease;
}


.nav-tools__item + .nav-tools__item:after {
    content: "";
    position: absolute;
    left: 3px;
    /*left: -2px;*/
    top: 50%;
    height: 30%;
    border-left: 2px solid #285769;
    transform: translate(0,-50%);
}

.nav-tools__item-icon {
    padding: 1rem;
}

.nav-tools__item-icon.-witch-bg {
    padding: 0;
}

.nav-tools__item-icon-bg {
    display: block;
    border-radius: 50%;
    background: var(--main-color);
    padding: 1rem;
    animation: pulseYellow 2s infinite
}

@keyframes pulseYellow {
    0% {
        box-shadow: 0 0 0 0 rgba(220,170,67,.7)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0,0,0,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0)
    }
}

.nav-tools__item-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 85%;
    padding-left: 10px;
    height: 100%;
    position: relative;
    transition: .2s ease;
}

.nav-tools__item-text {
    display: block;
    margin-top: 1.9rem;
    line-height: 1.1;
    transition: font-size .2s ease;
    position: relative;
    z-index: 2;
    min-height: 32px;
    text-transform: uppercase;
    padding-left: 5px;
}

.nav-tools__item-link:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 30px;
    z-index: 1;
    opacity: 0;
    transition: .2s ease;
}

.nav-tools__item-link:hover:before, .nav-tools__item-link.is-active:before {
    transform: scaleY(1.2) scaleX(1);
    /*transform: scaleY(1.2) scaleX(1.096);*/
    background: var(--main-color-light);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    border: 5px solid var(--main-color);
    height: 100%;
    opacity: 1;
}

.nav-tools__item-link.--idj:hover:before {
    background: #45B97C;
}

.nav-tools__item-link:hover, .nav-tools__item-link.is-active {
    color: var(--main-color);
    /*z-index: 3;*/
}

.nav-tools__item-link:hover .nav-tools__item-icon, .nav-tools__item-link.is-active .nav-tools__item-icon {
    transform: scale(1.3);
    opacity: 1;
    position: relative;
    z-index: 2;
}

.nav-tools__item-link svg {
    fill: #fff;
}

.nav-tools__item-link.-nav-victory svg {
    fill: var(--main-color-dark);
}

.nav-tools__item-icon.-witch-bg svg {
    fill: var(--dark-color);
}

.nav-tools__item-link:hover svg, .nav-tools__item-link.is-active svg {
    fill: transparent;
}

.nav-tools__item-link:hover svg.-dictionary, .nav-tools__item-link.is-active svg.-dictionary {
    stroke: #fff;
}

.nav-tools__item-link:hover .nav-tools__item-text, .nav-tools__item-link.is-active .nav-tools__item-text {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 1.5rem;
}

/*.nav-tools__item:hover:after, .nav-tools__item.is-active:after {
    display: none;
}*/

.nav-tools__item:nth-child(3) .nav-tools__item-text {
    max-width: 160px;
}

@media (max-width: 1480px) {
    .nav-tools__container {
        max-width: 134rem;
    }
}
@media (max-width: 1000px) {
    .nav-tools__list {
        padding: 0 1rem;
    }

    .nav-tools__list {
        min-height: 18rem;
    }

    .nav-tools__item {
        font-size: 1.2rem;
    }

    .nav-tools__item-link {
        padding: 3rem 0 4rem;
    }
}

@media (max-width: 767px) {
    .nav-tools {
        margin: 2rem 0 0;
    }

    .nav-tools__item-link.-nav-victory svg {
        max-width: 10rem;
        height: auto;
    }
}

@media (max-width: 600px) {
    .nav-tools__list {
        flex-wrap: wrap;
        justify-content: center;
        min-height: auto;
        padding: 4rem 2.2rem;
    }

    .nav-tools__item {
        width: 50%;
        order: 2;
        font-size: 16px;
        margin-bottom: 1rem;
    }

    .nav-tools__item:nth-child(3) {
        order: 1;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-tools__item:nth-child(3) .nav-tools__item-link {
        width: 55%;
    }

    .nav-tools__item-link {
        padding: 1rem 0;
    }

    .nav-tools__item-link:hover .nav-tools__item-icon, .nav-tools__item-link.is-active .nav-tools__item-icon {
        transform: scale(1.1);
    }

    .nav-tools__item-link:hover:before, .nav-tools__item-link.is-active:before {
        transform: scaleY(1.1) scaleX(1.096);
    }

    .nav-tools__item-text {
        font-weight: 500;
        margin-top: 0;
    }

    .nav-tools__item-link:hover .nav-tools__item-text, .nav-tools__item-link.is-active .nav-tools__item-text {
        font-size: 16px;
        min-height: auto;
    }

    .nav-tools__item + .nav-tools__item:after {
        display: none;
    }
}

/*  Region widget  */
.region-widget {
    overflow: hidden;
    background: var(--main-color-light);
}

.region-widget__container {
    max-width: 144rem;
    display: flex;
}

.region-widget__background {
    background: linear-gradient(90deg, #F4F5F9 40.5%, #D7E2E8 40.5%);
}

.region-widget__news {
    display: flex;
    flex-direction: column;
    padding: 6rem 0;
    width: 100%;
    background: #FFF;
    color: #285769;
    justify-content: space-between;
}

.region-widget__title {
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.region-widget__title-text {
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 500;
    color: var(--dark-color);
}

.region-widget__title > div {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.region-widget__title .button-default {
    display: inline-flex;
}

.region-widget__title .header__city-icon svg {
    color: var(--dark-color);
}

.region-widget__search {
    position: relative;
    margin-bottom: 4.4rem;
}

.region-widget__search form {
    margin: 0;
    padding: 0;
}

.region-widget__search-input {
    width: 100%;
    background: rgba(40, 87, 105, .75);
    border-radius: 2rem;
    border: none;
    padding: 1.2rem 4.6rem 1.2rem 2.6rem;
    font-size: 1.3rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #fff;
    outline: none;
    transition: .2s;
}

.region-widget__search-input:focus {
    background: rgba(40, 87, 105, 0.9)
}

.region-widget__search-input::placeholder {
    color: #fff;
}

.region-widget__search-button {
    position: absolute;
    right: 2.2rem;
    top: .9rem;
    border: none;
    background: none;
    border: none;
    cursor: pointer;
}

.region-widget__search-button svg {
    fill: #ffffff;
}

.region-widget__search-button:hover {
    opacity: .9;
}

.region-widget__search-popup {
    display: none;
    position: absolute;
    top: 100%;
    background: rgba(40, 87, 105, 0.95);
    padding: 0.5rem;
    z-index: 1;
    width: 100%;
}

.region-widget__search-popup-wrapper {
    max-height: 15rem;
    overflow-y: auto;
}

.region-widget__search-popup-wrapper::-webkit-scrollbar {
    -webkit-appearance: none;
}

.region-widget__search-popup-wrapper::-webkit-scrollbar:vertical {
    width: 6px;
}

.region-widget__search-popup-wrapper::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: var(--main-color);
}

.region-widget__search-popup-wrapper::-webkit-scrollbar-track {
    border-radius: 6px;
    background-color: var(--main-color-light);
}

.region-widget__search-popup-item {
    padding: 3px 10px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 3px;
    cursor: pointer;
    transition: .2s ease;
    color: #fff;
}

.region-widget__search-popup-item:last-child {
    border-bottom: none;
}

.region-widget__search-popup-item:hover {
    color: #DCAA44;
}

.region-widget__news-container {
    display: flex;
    flex-direction: column;
}

.region-widget__news-title {
    font-size: 2.2rem;
    line-height: 2.6rem;
    margin-bottom: 1.7rem;
    font-weight: 700;
}

.region-widget__news-title a:hover {
    text-decoration: none;
}

.region-widget__news-all-news {
    font-size: 2rem;
    font-weight: 500;
    position: relative;
    margin-left: 1.8rem;
    padding-left: 1.8rem;
}

.region-widget__news-all-news:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #285769;
}

.region-widget__news-all-news a {
    transition: .2s;
}

.region-widget__news-all-news a:hover {
    text-decoration: none;
    opacity: .9;
}

.region-widget__news-all-news-arrow {
    fill: #285769;
}

span.region-widget__news-all-news-arrow svg {
    vertical-align: middle;
}

.region-widget__news-list {
    display: flex;
    flex-direction: row;
    margin: 0 -1.5rem;
    padding-bottom: 5rem;
}

.region-widget__news-list .slick-list {
    display: flex;
    flex-direction: column;
}

.region-widget__news-list .slick-dots {
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

.region-widget__news-list .slick-dots li {
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    margin: 0 .8rem;
    background: #B7C6CE;
    cursor: pointer;
}

.region-widget__news-list .slick-dots li button {
    display: none;
}

.region-widget__news-list .slick-dots li.slick-active {
    background: var(--main-color);
}

.region-widget__news-item {
    flex-direction: column;
    display: flex;
    color: #285769;
    width: 50%;
    padding: 0 1.5rem;
}

.region-widget__news-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.region-widget__news-content {
    display: flex;
    flex-direction: column;
}

.region-widget__news-image {
    display: block;
    position: relative;
    margin-bottom: 1.1rem;
    overflow: hidden;
    border-radius: 16px;
}

.region-widget__news-image img {
    transition: transform 1s ease-in, transform .7s ease-out;
}

.region-widget__news-link:hover .region-widget__news-image img {
    transform: scale(1.15);
}

.region-widget__tags {
    display: flex;
    font-size: 1.4rem;
    line-height: 1;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.7rem 0;
}

.region-widget__tags-item {
    display: inline-flex;
    border: 1px solid var(--main-color);
    border-radius: 24px;
    padding: .8rem 2rem;
    color: var(--main-color);
}

.region-widget__news-desc {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 500;
    color: var(--dark-color);
}

.region-widget__news-arrow {
    margin-top: 1.7rem;
    transition: .2s;
}

.region-widget__news-link:hover .region-widget__news-arrow {
    opacity: .8;
}

.region-widget__all-news-mobile {
    display: none;
    margin-top: 2rem;
    width: 100%;
}

.region-widget__stats {
    padding: 6rem 0;
    width: 100%;
    background: var(--main-color-light);
}

.region-widget__stats .region-widget__title {
    margin-bottom: 0;
}

.region-widget__stats-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3.2rem;
}

.region-widget__stats-row {
    display: flex;
    gap: 4rem;
}

.region-widget__road-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 2.4rem;
    font-weight: 500;
}

.region-widget__road {
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 6rem;
    padding: 3.6rem 4rem;
    color: var(--dark-color);
    background: #FFF;
    border-radius: 20px;
}

.region-widget__road-m2 {
    width: 60%;
}

.region-widget__road-precent {
    width: 40%;
}

.region-widget__road-precent .region-widget__road-title {
    margin-bottom: 4rem;
}

.region-widget__numbers {
    display: flex;
    flex-wrap: wrap;
    row-gap: 2rem;
}

.region-widget__plan {

}

.region-widget__numbers-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
    position: relative;
}

.region-widget__separate {
    display: inline-flex;
    margin: 0 4rem;
    width: 3px;
    background: var(--main-color);
}

.region-widget__numbers-item svg {
    color: var(--main-color);
}

.region-widget__numbers-title {
    color: #5C625F;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.6rem;
    line-height: 1;
}

.region-widget__numbers-value {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}
.region-widget__numbers-value > span {
    font-size: 2.4rem;
}

.road-ready__percent {
    position: relative;
    padding-top: 20px;
}

.road-ready__percent-text {
    display: flex;
    align-items: center;
    position: absolute;
    top: -1.6rem;
    transform: translateX(calc(-100% + 19px));
}

.road-ready__percent-text > span:first-child {
    display: inline-block;
    text-align: right;
    font-weight: 500;
    font-size: 2rem;
    min-width: 52px;
}


.road-ready__percent-text svg {
    color: var(--main-color);
    margin-left: .2rem;
}

.road-ready__percent-icon {
    position: relative; 
}

.road-ready__percent-icon:before {
    content: "";
    display: block;
    position: absolute;
    right: 19px;
    bottom: -12px;
    width: 2px;
    height: 15px;
    background: var(--main-color);
}

.road-ready__percent-progress {
    border-radius: 20px;
    height: 16px;
    width: 100%;
    background: #F5F5F5;
    position: relative;
}

.road-ready__percent-filled {
    height: 16px;
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px 0 0 20px;
}

.region-widget__detail {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 3.6rem 4rem;
    color: var(--dark-color);
    background: #FFF;
    border-radius: 20px;
}

.region-widget__detail-list {
    position: relative;
}

.region-widget__detail-list-bg {
    background: #fff;
    position: absolute;
    right: -100vw;
    top: 0;
    width: 100vw;
    height: 100%;
}

.region-widget__detail-item {
    display: flex;
    flex-direction: column;
}

.region-widget__detail-item + .region-widget__detail-item {
    margin-top: 4.5rem;
}

.region-widget__detail-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 2.4rem;
    font-weight: 500;
}

.region-widget__detail-title svg {
    color: var(--main-color);
}

.region-widget__detail-row {
    position: relative;
}

.region-widget__detail-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    width: 4rem;
    margin-right: 2rem;
}

.region-widget__detail-text {
    display: flex;
    flex-direction: row;
    position: relative;
    font-size: 1.8rem;
    line-height: 2.1rem;
    color: rgba(0, 0, 0, .67);
    font-weight: 500;
}

/*.region-widget__detail-row + .region-widget__detail-row {
    padding-left: 4rem;
}

.region-widget__detail-row + .region-widget__detail-row:after {
    content: "";
    width: 3px;
    height: 100%;
    background: var(--main-color);
    position: absolute;
    left: 1.9rem;
    top: 0;
}*/

.region-widget__detail-wrap {
    display: flex;
    flex-direction: row;
}

.region-widget__detail-value {
    display: block;
    white-space: nowrap;
    font-size: 2rem;
}

.region-widget__detail-value > span {
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 500;
    color: var(--dark-color);
}

.region-widget__detail-notice {
    font-size: 1.6rem;
    line-height: 1;
    color: #5C625F;
    margin-top: 1.2rem;
}

.region-widget__actions {
    display: flex;
    flex-direction: column;
    min-width: 335px;
    gap: 2.4rem;
}

.region-widget__actions-item {
    color: #FFF;
}

.region-widget__actions-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    column-gap: .8rem;
}

.region-widget__actions-link:hover {
    background-color: var(--main-color-dark);
}

.region-widget__actions-icon {
    position: relative;
}

.region-widget__actions-icon > svg {
    transition: .3s;
    fill: #285769;
}


.region-widget__actions-text {
    font-size: 1.6rem;
    font-weight: 500;

}

.region-widget__actions-link:hover .region-widget__actions-text {
    opacity: 1;
    display: block;
}

@media (max-width: 1480px) {
    .region-widget__container {
        max-width: 134rem;
    }

    .region-widget__separate {
        margin: 0 2rem;
    }
}

@media (max-width: 1367px) {
    .region-widget__actions {
        min-width: auto;
    }
}
@media (max-width: 1100px) {
    .region-widget__road {
        flex-direction: column;
    }

    .region-widget__road-m2, .region-widget__road-precent {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .region-widget__background {
        background: #F4F5F9;
    }

    .region-widget__container {
        flex-direction: column;
    }

    .region-widget__news {
        width: 100%;
        padding: 3rem 0;
    }

    .region-widget__news .region-widget__title {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1.6rem;
    }

    .region-widget__news .region-widget__title > div {
        justify-content: space-between;
        width: 100%;
    }

    .region-widget__news-item img {
        width: 100%;
    }

    .region-widget__stats-row:last-child {
        flex-direction: column;
    }

    .region-widget__detail {
        width: 100%;
    }

    .region-widget__stats-row {
        gap: 3.2rem;
    }

    .region-widget__stats-container {
        gap: 3.2rem;
    }

    .region-widget__road, .region-widget__detail {
        padding: 2.8rem 3.2rem;
    }
}

@media (max-width: 767px) {

    .region-widget__title .header__city {
        font-size: 1.8rem;
    }

    .region-widget__all-news {
        display: none;
    }

    .region-widget__all-news-mobile {
        display: flex;
    }

    .region-widget__all-news-mobile .button-default {
        width: 100%;
        text-align: center;
    }

    .region-widget__stats-container {
        flex-direction: column;
    }

    .region-widget__stats .region-widget__title {
        text-align: center;
    }

    .region-widget__stats {
        padding: 3rem 0;
    }

    .region-widget__plan-value, .region-widget__graph-value {
        font-size: 2.8rem;
        line-height: 3rem;
    }

    .region-widget__numbers {
        flex-direction: column;
    }

    .region-widget__separate {
        margin: 2rem 0;
        height: 3px;
        width: 100%;
    }

    .region-widget__detail-text {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .region-widget__stats-row {
        flex-direction: column;
    }

    .region-widget__stats .region-widget__title {
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
        gap: 2.4rem;
    }
}

@media (max-width: 550px) {
    .region-widget__detail-list {
        display: flex;
        flex-direction: column;
    }

    .region-widget__detail-item + .region-widget__detail-item {
        margin-top: 3rem;
    }
}

/* Info project */
.info-project {
    background: #FFF;
    color: var(--dark-color);
    padding: 6rem 0 10rem;
}

.info-project__container {
    display: flex;
    gap: 4rem;
    max-width: 144rem;
}

.info-project__title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1;
    min-width: 330px;
    text-align: center;
    white-space: nowrap;
}

.info-project__nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 -2rem;
}

.info-project__nav:after {
    content: "";
    margin-left: auto;
}

.info-project__nav-item {
    display: flex;
    flex-direction: column;
    width: 33.333%;
    padding: 2rem;
}

.info-project__nav-link {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    padding: 2.8rem 2.8rem 5.8rem 2.8rem;
    background: #fff;
    transition: all 0.2s ease-in-out;
    border-radius: 20px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow: 0px 4px 20px 0px var(--main-color);
    }
}

/*.info-project__nav-link:hover {
    
}*/

.info-project__nav-link.is-active, .info-project__nav-link:hover {
    color: var(--main-color);
    animation: pulse-shadow 2s infinite;
}

.info-project__nav-icon {
    color: var(--main-color);
}

.info-project__nav-icon svg {
    transition: .2s;
}

.info-project__nav-link.is-active .info-project__nav-icon svg, .info-project__nav-link:hover .info-project__nav-icon svg {
    fill: var(--main-color);
    stroke: var(--main-color);
}

.info-project__nav-arrow {
    position: absolute;
    bottom: 2.8rem;
    right: 2.8rem;
}

.info-project__nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.info-project__nav-title {
    font-size: 2.1rem;
    line-height: 2.4rem;
    
}

.info-project__nav-desc {
    font-size: 1.6rem;
    line-height: 1.3;
}

@media (max-width: 1480px) {
    .info-project__container {
        max-width: 134rem;
    }
}

@media (max-width: 1201px) {
    .info-project__container {
        flex-direction: column;
    }

    .info-project__title {
        justify-content: flex-start;
    }
}
@media (max-width: 1100px) {
    .info-project {
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .info-project {
        padding: 5rem 0;
    }

    .info-project__nav {
        margin: 0 -1.5rem;
    }

    .info-project__nav-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .info-project__container {
        gap: 2rem;
    }

    .info-project__nav {
        margin: 0;
    }

    .info-project__nav-item {
        width: 100%;
        padding: 2rem 0;
    }
}

/* Media gallery */
.media__background {
    background: var(--main-color-light);
    padding: 6rem 0;
}

.media__container {
    max-width: 144rem;
    display: flex;
}

.media__search {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem 0 0;
    width: 50%;
}

.media__search-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 2.4rem;
    font-weight: 500;
}

.media__search-container {
    position: relative;
}

.media__search-container form {
    margin: 0;
}

.media__search-input {
    width: 100%;
    background: var(--main-color-light);
    border-radius: 2rem;
    border: 1px solid var(--main-color);
    padding: 1.2rem 4.6rem 1.2rem 2.6rem;
    font-size: 1.3rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: var(--main-color);
    outline: none;
    transition: .2s;
}

.media__search-input:focus {
    border-color: var(--main-color-dark);
}

.media__search-input::placeholder {
    color: var(--main-color);
}

.media__search-button {
    position: absolute;
    right: 2.2rem;
    top: .9rem;
    border: none;
    background: none;
    border: none;
    cursor: pointer;
}

.media__search-button svg {
    fill: var(--main-color);
}

.media__search-button:hover {
    opacity: .9;
}

.media__search-text {
    margin-top: 2.4rem;
    font-size: 1.6rem;
    line-height: 1.3;
}

.media__gallery {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 2rem;
    width: 50%;
}

.media__gallery-container {
    display: flex;
    flex-direction: row;
    margin: 0 -2rem;
}

.media__gallery-item {
    flex-direction: column;
    display: flex;
    font-weight: 500;
    color: #285769;
    width: 50%;
    padding: 0 2rem;
}

.media__gallery-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

.media__gallery-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.media__gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.media__gallery-image img {
    border-radius: 6px;
    transition: transform .5s ease-in, transform .3s ease-out;
}

.media__gallery-item:last-child .media__gallery-image img {
    filter: brightness(.8);
}

.media__gallery-link:hover .media__gallery-image img {
    transform: scale(1.3);
}

.media__gallery-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    column-gap: 1.2rem;
    color: #fff;
}

.media__gallery-icon {
    
}

.media__gallery-title {
    font-size: 2rem;
    line-height: 1;
    padding-bottom: .2rem;
}

.media__gallery-arrow {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    color: #FFF;
}

.media__gallery-link:hover .media__gallery-arrow {
    opacity: .8;
}

.media__gallery-description {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-top: 2rem;
}

@media (max-width: 1480px) {
    .media__container {
        max-width: 134rem;
    }
}

@media (max-width: 767px) {
    .media {
        overflow: hidden;
    }

    .media__background {
        padding: 2rem 0 4rem;
    }

    .media__container {
        flex-direction: column;
    }

    .media__search {
        width: 100%;
        padding: 4rem 0 4rem;
        position: relative;
    }

    .media__search > * {
        position: relative;
    }

    .media__gallery {
        width: 100%;
        padding: 0;
    }

    .media__gallery-container {
        margin: 0 -1.5rem;
    }

    .media__gallery-item {
        padding: 0 1.5rem;
    }

    .media__gallery-image img {
        width: 100%;
    }
}

@media (max-width: 480px) {

    .media__gallery-container {
        margin: 0;
        flex-direction: column;
        row-gap: 3.6rem;
    }

    .media__gallery-item {
        padding: 0;
        width: 100%;
    }
}

.footer {
    margin: 0;
    background: var(--main-color-dark);
}

.footer__body {
    padding: 6rem 0;
    color: #fff;
}

.footer__container {
    max-width: 144rem;
}

.footer__nav-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
    justify-content: space-between;
}

.footer__nav-link {
    display: flex;
    position: relative;
    padding: 1.1rem 1.5rem;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    transition: .2s;
}

.footer__nav-link:hover a {
    opacity: .8;
    text-decoration: none;
}

.footer__nav-link.is-active a {
    text-decoration: underline;
    opacity: 1;
}

.footer__nav-link.is-active:hover a {
    opacity: 1;
    text-decoration: underline;
}

.footer__partners-list {
    display: grid;
    grid-template-columns: repeat(5, auto);
    column-gap: 4rem;
    margin-top: 6rem;
    align-items: center;
}

.footer__partners-item {
    display: flex;
    flex: 0 1 auto;
    transition: .2s;
    padding-left: 0;
}

.footer__partners-item:hover {
    opacity: .8;
}

.footer__text {
    margin-top: 4rem;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 400;
    text-align: left;
}

.footer__text-notice {
    border-top: 1px solid #fff;
    margin-top: 1.7rem;
    padding-top: 1.7rem;
}

.footer__text a {
    color: var(--main-color);
}

@media (max-width: 1480px) {
    .footer__container {
        max-width: 134rem;
    }
}
@media (max-width: 1100px) {
    .footer__body {
        padding: 3rem 0 2rem;
    }

    .footer__nav-link {
        width: 50%;
    }

    .footer__partners-list {
        grid-template-columns: repeat(3, auto);
        grid-auto-rows: auto;
        column-gap: 4rem;
        row-gap: 4rem;
        margin-top: 6rem;
    }
}

@media (max-width: 767px) {
    .footer__body {
        padding: 2rem 0;
    }
}

@media (max-width: 600px) {

    .footer__partners-list {
        grid-template-columns: repeat(2, auto);
        grid-auto-rows: auto;
        column-gap: 4rem;
        row-gap: 4rem;
        margin-top: 6rem;
    }

    .footer__partners-item:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
    } 
}

@media (max-width: 480px) {
    .footer__partners-item:nth-child(5) img {
        max-height: 55px;
    }
}

/* letsee */
#letsee-panel {
    z-index: 10;
}

.letsee-active .header__city-name, .letsee-active .header__actions-eye-text {
    border: none;
}

.letsee-active .header__logo-text {
    flex-direction: column;
}

.letsee-active .region-widget__tags-item {
    border-color: currentColor;
}

.letsee-active .header__logo-image {
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    background-color: transparent !important;
}

.letsee-active.letsee-white .header__logo-image {
    filter: brightness(0);
}

.letsee-active:not(.letsee-white) .header__logo-image {
    filter: brightness(0) invert(1);
}

.letsee-active.letsee-white .info-project__nav-link, .letsee-active.letsee-white .header__top-line, .letsee-active.letsee-white .mobile-nav__list {
    border-color: currentColor;
}

.letsee-active.letsee-white .news-slider__dots-item.is-active .news-slider__dots-title {
    color: #000;
}

.letsee-active:not(.letsee-white) .news-slider__dots-item .news-slider__dots-title {
    color: #FFF;
}

.letsee-active.letsee-white .news-slider__dots-round {
    background: #000 !important;
}

.letsee-active:not(.letsee-white) .news-slider__dots-round {
    background: #fff !important;
}

.letsee-active:not(.letsee-white) .news-slider__dots-item.is-active .news-slider__dots-round:after {
    background: #000;
}

.letsee-active.letsee-white .news-slider__dots-progress {
    background: rgba(0,0,0, .5) !important;
}

.letsee-active:not(.letsee-white) .news-slider__dots-progress {
    background: rgba(255,255,255, .5) !important;
}

.letsee-active:not(.letsee-white) .nav-tools__item-link svg {
    fill: #000;
}

.letsee-active .header__socials-link svg {
    filter: grayscale(1);
}

.letsee-active .road-ready__percent-icon:before {
    background: currentColor;
}

.letsee-active .road-ready__percent-filled {
    background: currentColor;
}

.letsee-active .button-default, .letsee-active .info-project__nav-link {
    border: 1px solid currentColor;
}

.letsee-active:not(.letsee-white) .road-ready__percent-progress {
    background: #7a7a7a;
}

/*.letsee-active.letsee-white .footer__partners-item img {
    filter: brightness(0);
    background: none !important;
}

.letsee-active.letsee-white .footer__partners-item:last-child img {
    filter: brightness(.5);
}*/
.letsee-active.letsee-white .info-project__nav-icon svg {
    fill: currentColor;
}

.letsee-active .nav-tools__item-link:hover svg, .letsee-active .nav-tools__item-link.is-active svg, .letsee-active .nav-tools__item-link svg {
    stroke: currentColor;
}

.letsee-active .nav-tools__item-link:hover:before, .letsee-active .nav-tools__item-link.is-active:before {
    border-color: currentColor;
}

.letsee-active .nav-tools__item-link:hover:before, .letsee-active .nav-tools__item-link.is-active:before {
    background: #000;
    box-shadow: 0px 0px 6px 5px rgba(255, 255, 255, .25);
}

.letsee-active.letsee-white .nav-tools__item-link:hover:before, .letsee-active.letsee-white .nav-tools__item-link.is-active:before {
    background: #fff;
    box-shadow: 0px 0px 6px 5px rgba(0, 0, 0, .25);
}

.letsee-active .container {
    max-width: 95% !important;
}

.letsee-active .container.banners__container {
    max-width: 883px !important;
}

.letsee-active .news-slider__dots-round {
    background: currentColor !important;
}

.letsee-active .info-project__nav {
    margin: 0;
}

.letsee-active .info-project__nav-item {
    padding: 35px 1.5rem;
}

.letsee-active .header__nav-link {
    padding: 0;
}

.letsee-active .header__search-input,
.letsee-active .region-widget__search-input,
.letsee-active .header__city-popup-input,
.letsee-active .media__search-input {
    border: 1px solid currentColor;
}

.letsee-active input::placeholder {
    color: currentColor !important;
}

.letsee-active .header__city-popup-close .svg-icon {
    fill: currentColor;
}

.letsee-active form button svg, .letsee-active .header__city-popup-button svg {
    fill: currentColor !important;
    margin-top: 3px;
}

.letsee-active .header__city-popup-button {
    background-color: transparent !important;
}

.letsee-active .region-widget__graph-value {
    left: 50%;
    font-size: 2.8rem;
    background-color: transparent !important;
}

.letsee-active .region-widget__graph-value > span {
    background-color: transparent !important;
}

.letsee-active .region-widget__graph-arrow {
    left: 50%;
    background-color: transparent !important;
}

.letsee-active .region-widget__detail-text {
    flex-wrap: wrap;
}

.letsee-active .region-widget__detail-row + .region-widget__detail-row {
    padding-right: 0;
    padding-left: 0;
    margin-top: 1rem;
}

.letsee-active .region-widget__detail-row + .region-widget__detail-row:after {
    display: none;
}

.letsee-active .region-widget__stats:before, .letsee-active .media__search::before {
    background: inherit;
}

.media__gallery-icon:not(.letsee-guard),
.svg-icon:not(.letsee-guard),
.news-slider__dots-item:not(.letsee-guard),
.nav-tools__item-icon:not(.letsee-guard),
.region-widget__graph-arrow:not(.letsee-guard),
.region-widget__actions-arrow:not(.letsee-guard),
.nav-tools__item-icon-bg:not(.letsee-guard) {
    background-color: transparent !important;
}

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

@media (max-width: 1440px) {

    .letsee-active .region-widget__graph {
        padding-bottom: 0;
    }

    .letsee-active .region-widget__graph-value {
        font-size: 2.2rem;
        left: 50%;
    }

    .letsee-active .region-widget__graph-arrow {
        left: 50%;
    }

    .letsee-active .region-widget__graph-arrow .svg-icon {
        max-width: 60px;
    }

    .letsee-active .region-widget__actions-icon > .svg-icon {
        max-width: 72px;
    }

    .letsee-active .region-widget__actions-arrow > .svg-icon {
        max-width: 32px;
    }

    .letsee-active .region-widget__actions-arrow {
        right: -5px;
    }
}

@media (max-width: 1100px) {

    .letsee-active .mobile-nav__header .nav-modal__close .svg-icon, .header__control-hamburger .svg-icon {
        max-width: 36px;
    }

    .letsee-active .region-widget__graph-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .letsee-active .region-widget__detail-row + .region-widget__detail-row {
        padding-right: 1rem;
        padding-left: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    body.letsee-active {
        margin-top: 100px !important;
    }

    .letsee-active .header__logo-image {
        max-width: 130px;
        max-height: 150px;
    }

    .letsee-active .mobile-nav__city {
        top: .5rem;
        background: none !important;
        font-size: 1.2rem;
        text-align: left;
        padding-left: 2rem;
    }

    .letsee-active .header__city-icon {
        margin-left: 0;
    }

    .letsee-active .info-project__nav-item {
        width: 100%;
    }

    .letsee-active .mobile-nav__header .nav-modal__close {
        margin-top: 2rem;
    }

    .letsee-active .region-widget__graph-value, .letsee-active .region-widget__graph-arrow {
        left: 50%;
    }

    .letsee-active .region-widget__graph {
        padding-bottom: 3rem;
    }
}

@media (max-width: 600px) {
    .letsee-active .nav-tools__item {
        width: 50%;
    }

    .letsee-active .header__actions-login-link .svg-icon {
        display: none;
    }

    .letsee-active .mobile-nav__header {
        padding: 3rem 1rem 2rem;
    }

    .letsee-active .header__actions-eye, .letsee-active .header__actions-lang {
        margin-right: 1rem;
    }

    .letsee-active .news-slider__text-links {
        flex-direction: column;
    }

    .letsee-active .news-slider__all-news {
        margin-left: 0;
        padding-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .letsee-active .media__gallery-container {
        flex-direction: column;
    }

    .letsee-active .media__gallery-item {
        width: 100%;
    }

    .letsee-active .footer__nav-link {
        width: 100%;
        padding: 0;
        margin-bottom: .5rem;
    }

    .letsee-active .region-widget__detail-row + .region-widget__detail-row {
        padding-right: 0;
        padding-left: 0;
        margin-top: 1rem;
    }

    .letsee-active .region-widget__detail-text {
        flex-direction: column;
    }
}

@media (max-width: 350px) {
    body.letsee-active {
        margin-top: 130px !important;
    }

    .letsee-active .region-widget__actions {
        flex-direction: column;
        align-items: center;
    }

    .letsee-active .info-project__nav-item {
        padding: 35px 0;
    }
}
