@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

html, body {
    overflow-x: hidden;
}

.compensate-for-scrollbar {
    padding-right: 0 !important;
}

.flex {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.container {
    width: 1320px;
    margin: 0 auto;
    position: relative;
}

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

input::-moz-placeholder {
    color: #000;
}

/* Firefox 19+ */
input:-moz-placeholder {
    color: #000;
}

/* Firefox 18- */
input:-ms-input-placeholder {
    color: #000;
}

a {
    display: block;
    outline: none;
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

button {
    display: block;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

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

svg {
    display: block;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

input,
textarea,
select {
    display: block;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
}

li {
    display: block;
    list-style: none;
}

label {
    display: block;
}

.preloader {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
}

.preloader__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.preloader__logo img {
    width: 100%;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

header {
    padding-top: 18px;
    padding-bottom: 26px;
    position: relative;
    z-index: 100;
}

.header__logo {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.header__logo img {
    width: 64px;
}

.header__logo span {
    display: block;
    padding-left: 30px;
    width: 390px;
    font-weight: 300;
    color: #191E39;
    font-size: 18px;
}

.header__btns {
    margin-right: 20px;
}

.header__btns a {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    border-radius: 4px;
    border: 1.5px solid #E7E7E7;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.header__btns a:last-child {
    margin-right: 0;
}

.header__btns a svg {
    fill: #C9C9C9;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.header__btns a:hover {
    border-color: #191E39;
}

.header__btns a:hover svg {
    fill: #191E39;
}

.header__tel a {
    color: #191E39;
    font-size: 24px;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
}

.header__tel a:hover {
    -webkit-text-decoration-color: #191E39;
    text-decoration-color: #191E39;
}

.navbar {
    display: none;
}

.menu {
    display: none;
    padding-top: 15px;
    padding-bottom: 15px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10000;
}

.menu ul {
    margin-bottom: 20px;
}

.menu ul li {
    padding-left: 5px;
    margin-bottom: 10px;
}

.menu ul li:last-child {
    margin-bottom: 0;
}

.menu ul li a {
    display: inline;
    font-size: 13px;
    color: #000;
    font-family: "Gilroy-Regular";
    line-height: 120%;
}

.menu__link {
    margin-bottom: 15px;
    font-size: 25px;
    font-family: "Gilroy-Semibold";
    font-weight: 600;
    color: #000;
    line-height: 120%;
}

.main {
    position: relative;
    padding-top: 62px;
    padding-bottom: 112px;
}

.main:after {
    position: absolute;
    display: block;
    content: "";
    height: 100%;
    width: 4000px;
    top: 0;
    left: 50%;
    margin-left: 200px;
    background: #F7F7F7;
    -webkit-transform: skew(-40deg, 0deg);
    -ms-transform: skew(-40deg, 0deg);
    transform: skew(-40deg, 0deg);
    z-index: 1;
}

.main__info {
    width: 700px;
    position: relative;
    z-index: 2;
}

.main__info .list {
    margin-bottom: 100px;
}

.main__title {
    margin-bottom: 40px;
    font-family: "Gilroy-Medium";
    font-weight: 500;
    color: #1E1E1E;
    font-size: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 135%;
}

.list li {
    margin-bottom: 18px;
    padding-left: 45px;
    position: relative;
    color: #262626;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    background: url(../img/checkmark.svg) left top no-repeat;
    background-size: 25px 25px;
}

.list li:last-child {
    margin-bottom: 0;
}

.list.list_small li {
    font-size: 16px;
    margin-bottom: 5px;
    padding-left: 38px;
}

.main__btns {
    padding-right: 30px;
}

.main__btns .btn {
    margin-bottom: 12px;
    width: calc(50% - 7px);
}

.main__btns .btn span {
    padding: 12px 15px;
}

.btn {
    border-radius: 2px;
    background: #191E39;
    border: 1px solid #191E39;
    color: #fff;
    padding: 5px;
    display: block;
}

.btn span {
    display: block;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    padding: 12px 40px;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 24px;
    font-family: "Gilroy-Bold";
    font-weight: 700;
    border-radius: 2px;
    border: 1px solid #333750;
    text-align: center;
}

.btn span.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn span small {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: block;
    max-width: calc(100% - 20px);
    padding-left: 15px;
    font-family: "Gilroy-Bold";
    font-weight: 700;
}

.btn:hover span {
    border-color: #fff;
}

.btn_2 {
    background: #fff;
}

.btn_2 span {
    border-color: transparent;
    color: #191E39;
}

.btn_3 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #191E39;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    color: #191E39;
    font-size: 16px;
    padding: 18px;
}

.btn_3 span {
    font-weight: 700;
    display: block;
}

.btn_3 svg {
    fill: #fff !important;
    margin-right: 10px;
}

.btn_3:hover {
    color: #fff;
    background: #191E39;
}

.btn_3:hover svg {
    fill: #fff;
}

.question-btn__icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    border: 1px solid #E6E6E6;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.question-btn__text {
    display: block;
    padding-left: 16px;
    color: #262626;
    font-size: 18px;
    letter-spacing: 0.9px;
    max-width: 165px;
}

.question-btn {
    position: relative;
    z-index: 5;
}

.question-btn:hover .question-btn__icon {
    border-color: #191E39;
}

.expert {
    width: 620px;
}

.expert__photo {
    padding: 80px;
    position: relative;
    width: 620px;
    height: 620px;
}

.expert__photo:before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid #68DDDD;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 500px;
    z-index: 0;
}

.expert__photo:after {
    position: absolute;
    display: block;
    content: "";
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    top: 40px;
    left: 40px;
    border: 1px solid #68DDDD;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 500px;
    z-index: 2;
}

.expert__photo img {
    position: absolute;
    width: calc(100% - 160px);
    bottom: 80px;
    z-index: 5;
}

.expert__bottom {
    position: relative;
    z-index: 5;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.expert__block {
    margin-right: 20px;
}

.expert__name {
    padding-left: 24px;
    margin-bottom: 10px;
    color: #191E39;
    font-size: 24px;
    font-weight: 500;
    position: relative;
    z-index: 5;
}

.expert__name:before {
    position: absolute;
    display: block;
    content: "";
    width: 64px;
    height: 2px;
    background: #191E39;
    -webkit-transform: rotate(-49deg);
    -ms-transform: rotate(-49deg);
    transform: rotate(-49deg);
    left: 30px;
    top: -40px;
}

.expert__position {
    position: relative;
    z-index: 2;
    padding-left: 24px;
    max-width: 255px;
    color: #262626;
    font-size: 16px;
    line-height: 140%;
}

.expert__info {
    text-align: center;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 32px;
    margin-top: -160px;
    position: relative;
    z-index: 10;
    max-width: 382px;
    margin-left: auto;
    margin-right: auto;
}

.expert__info .expert__name {
    padding-left: 0;
}

.expert__info .expert__name:before {
    display: none;
}

.expert__info .expert__position {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
}

.main_mobile {
    display: none;
}

.mobile-btn {
    display: none;
}

.stat {
    padding-top: 90px;
    padding-bottom: 90px;
}

.stat__items {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.stat__item {
    width: 330px;
}

.stat__item p {
    color: #7A7A7A;
    font-size: 18px;
}

.stat__value {
    position: relative;
    padding-left: 78px;
    margin-bottom: 30px;
}

.stat__value svg {
    position: absolute;
    top: 12px;
    left: 0;
}

.stat__value b {
    display: block;
    margin-bottom: 10px;
    color: #1E1E1E;
    font-size: 55px;
    line-height: 65px;
}

.stat__value span {
    color: #1E1E1E;
    font-size: 30px;
}

section {
    padding-top: 65px;
    padding-bottom: 65px;
}

section.pt-sm {
    padding-top: 20px;
}

section.pb-sm {
    padding-bottom: 20px;
}

section.pt-big {
    padding-top: 120px;
}

section.pb-big {
    padding-bottom: 120px;
}

.section__top {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.section__top small {
    padding: 8px 20px;
    color: #1E1E1E;
    font-size: 14px;
    border-radius: 20px;
    display: inline-block;
    background: #E8EEF2;
    line-height: 20px;
    position: relative;
    display: block;
    margin-bottom: 35px;
    margin-right: auto;
}

.section__top .section__title {
    margin-right: 20px;
}

.section__title {
    margin-bottom: 40px;
    color: #1E1E1E;
    font-size: 45px;
    line-height: 120%;
    font-family: "Gilroy-Regular";
}

.section__title.mb-small {
    margin-bottom: 20px;
}

.section__title.mb-xsmall {
    margin-bottom: 4px;
}

.section__title.section__title_mobile {
    display: none;
}

.section__title span {
    color: #55D0D0;
    font-family: "Gilroy-Regular";
}

.team__content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.team__content .section__title {
    width: 700px;
}

.team__description {
    margin-bottom: 70px;
    margin-top: 70px;
    width: 480px;
}

.team__description p {
    color: #262626;
    font-size: 20px;
    line-height: 155%;
    font-weight: 300;
    margin-bottom: 15px;
}

.team__description p:last-child {
    margin-bottom: 0;
}

.team__img {
    width: 100%;
}

.team__img img {
    width: 100%;
}

.service__content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.service__info {
    width: 600px;
}

.service__info .list {
    margin-bottom: 40px;
}

.service__description {
    margin-bottom: 40px;
}

.service__description p {
    margin-bottom: 20px;
    color: #262626;
    font-size: 20px;
    line-height: 155%;
    font-weight: 300;
}

.service__description p:last-child {
    margin-bottom: 0;
}

.service__description p b {
    font-weight: 700;
}

.service__img {
    width: 648px;
    position: relative;
}

.service__img:before {
    position: absolute;
    display: block;
    content: "";
    width: 130px;
    height: 130px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 20px;
    left: 20px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
}

.service__img:after {
    position: absolute;
    display: block;
    content: "";
    width: 130px;
    height: 130px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    bottom: 20px;
    right: 20px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
}

.service__img img {
    width: 100%;
}

.reviews__top .section__title {
    width: calc(100% - 450px);
}

.reviews__slider {
    overflow: hidden;
}

.review {
    padding: 30px;
}

.review__avatar {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 80px;
    margin-bottom: 40px;
}

.review__avatar img {
    width: 100%;
}

.review__user-info {
    width: calc(100% - 80px);
    padding-left: 20px;
    margin-bottom: 40px;
}

.review__name {
    margin-bottom: 8px;
    font-size: 18px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    width: 100%;
}

.review__link {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    color: #191E39;
    font-size: 13px;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
}

.review__link:hover {
    -webkit-text-decoration-color: #191E39;
    text-decoration-color: #191E39;
}

.review__link img {
    width: 20px;
}

.review__link span {
    display: block;
    max-width: calc(100% - 20px);
    padding-left: 8px;
}

.review__text p {
    margin-bottom: 20px;
    color: #262626;
    font-size: 16px;
    line-height: 140%;
}

.review__text p:last-child {
    margin-bottom: 0;
}

.reviews__controls {
    margin-bottom: 40px;
}

.reviews__arrow,
.news__arrow {
    cursor: pointer;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.reviews__arrow.swiper-button-disabled,
.news__arrow.swiper-button-disabled {
    opacity: 0.5;
    cursor: default;
}

.reviews__dots {
    padding-left: 30px;
    padding-right: 30px;
    overflow: hidden;
    width: auto !important;
    max-width: 280px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.reviews__dots span {
    display: block;
    width: 35px;
    height: 3px;
    opacity: 1;
    cursor: pointer;
    border-radius: 0px;
    margin-left: 10px !important;
    margin-right: 10px !important;
    background: #E4E4E4;
}

.reviews__dots span.swiper-pagination-bullet-active {
    background: #68DDDD;
}

.news__item-img {
    display: block;
    margin-bottom: 15px;
    overflow: hidden;
}

.news__item-img img {
    width: 100%;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.news__item-title {
    color: #262626;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    display: block;
    margin-bottom: 10px;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.news__item:hover .news__item-title {
    -webkit-text-decoration-color: #262626;
    text-decoration-color: #262626;
}

.news__item-description {
    display: block;
    color: #7A7A7A;
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
}

.news__arrows {
    padding-top: 40px;
}

.question {
    position: relative;
}

.question:before {
    position: absolute;
    display: block;
    content: "";
    height: 100%;
    width: 4000px;
    top: 0;
    right: 50%;
    margin-right: 200px;
    background: #F7F7F7;
    -webkit-transform: skew(40deg, 0deg);
    -ms-transform: skew(40deg, 0deg);
    transform: skew(40deg, 0deg);
    z-index: 1;
}

.question .expert {
    margin-left: -55px;
}

.question__info {
    width: 700px;
    position: relative;
    z-index: 2;
}

.question__description {
    margin-bottom: 60px;
}

.question__description p {
    margin-bottom: 20px;
    color: #262626;
    font-size: 20px;
    font-weight: 300;
    line-height: 140%;
}

.question__description p:last-child {
    margin-bottom: 0;
}

.question__btns {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.question__btns .btn {
    margin-right: 30px;
    margin-bottom: 30px;
}

.question__btns .question-btn {
    margin-right: 15px;
    margin-bottom: 30px;
}

.question__btns .question-btn:last-child {
    margin-right: 0;
}

.contacts__items {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: -50px;
    margin-right: -50px;
}

.contacts__items .section__title {
    padding: 50px;
    margin-right: auto;
}

.contacts__item {
    padding: 50px;
    max-width: 370px;
}

.contacts__item p {
    color: #262626;
    font-size: 20px;
    font-weight: 300;
    line-height: 155%;
}

.contacts__item p a {
    color: #262626;
    display: inline;
    font-weight: 300;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
}

.contacts__item p a:hover {
    -webkit-text-decoration-color: #262626;
    text-decoration-color: #262626;
}

.contacts__item-title {
    margin-bottom: 20px;
    color: #262626;
    font-weight: 600;
    line-height: 155%;
}

.connect {
    margin-top: 100px;
    padding-top: 130px;
    border-top: 1px solid #DEDFE1;
    position: relative;
}

.connect__icon {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.connect__title {
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #1E1E1E;
    font-size: 50px;
    line-height: 135%;
    letter-spacing: 1.5px;
    font-family: "Gilroy-Regular";
    text-align: center;
}

.connect__tel {
    margin-bottom: 45px;
    text-align: center;
}

.connect__tel a {
    display: inline;
    color: #1E1E1E;
    font-family: "Gilroy-Regular";
    font-size: 45px;
    line-height: 135%;
    letter-spacing: 1.35px;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
}

.connect__tel a:hover {
    -webkit-text-decoration-color: #262626;
    text-decoration-color: #262626;
}

.connect__tel .contacts__item-title {
    display: none;
}

.connect__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.connect__links a {
    width: 40px;
    height: 40px;
    margin-left: 12px;
    margin-right: 12px;
    position: relative;
}

.connect__links a img {
    width: 100%;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.connect__links a img:nth-child(1) {
    position: relative;
    z-index: 1;
}

.connect__links a img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.connect__links a:hover img:nth-child(1) {
    opacity: 0;
}

.connect__links a:hover img:nth-child(2) {
    opacity: 1;
}

.map iframe {
    display: block;
    width: 100%;
    height: 550px;
}

footer {
    background: #191E39;
    padding-top: 70px;
    padding-bottom: 70px;
    color: #fff;
}

.footer__content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer__logo {
    width: 107px;
    margin-right: 100px;
    margin-bottom: 30px;
}

.footer__logo img {
    width: 100%;
}

.footer__info {
    margin-right: 45px;
    width: 290px;
    margin-bottom: 30px;
}

.footer__info p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 155%;
}

.footer__info p:last-child {
    margin-bottom: 0;
}

.footer__menu {
    width: 330px;
    margin-right: auto;
    margin-bottom: 30px;
}

.footer__menu li {
    margin-bottom: 12px;
}

.footer__menu li:last-child {
    margin-bottom: 0;
}

.footer__menu li a {
    display: inline;
    color: #fff;
    font-size: 13px;
    line-height: 155%;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
}

.footer__menu li a:hover {
    -webkit-text-decoration-color: #fff;
    text-decoration-color: #fff;
}

.footer__contacts {
    margin-bottom: 30px;
    text-align: right;
}

.footer__tel a {
    display: inline;
    color: #fff;
    text-decoration: underline;
    font-size: 20px;
    line-height: 155%;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
}

.footer__tel a:hover {
    -webkit-text-decoration-color: #fff;
    text-decoration-color: #fff;
}

.footer__contacts-btns {
    padding-top: 18px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer__contacts-btns a {
    border: 1px solid #333750;
    border-radius: 2px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    width: 35px;
    height: 35px;
    margin-left: 8px;
}

.footer__contacts-btns a:hover {
    border-color: #fff;
}

.modal-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    width: 100%;
    height: 100vh;
}

.modal__block {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.modal__blackout {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
}

.modal {
    position: relative;
    z-index: 2;
    background: #fff;
    width: 870px;
    border-radius: 25px;
}

.modal__container {
    width: 100%;
    overflow-y: auto;
    max-height: calc(100vh - 40px);
    padding: 10px;
}

.modal.modal_thanks {
    width: 710px;
}

.modal.modal_thanks .modal__container {
    padding: 20px;
}

.modal_1 .form {
    width: 300px;
}

.modal_1 .form .btn {
    width: 100%;
}

.modal__content {
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.modal_thanks .modal__content {
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #F7F7F7;
    background: #F7F7F7;
    text-align: center;
}

.modal__info {
    width: calc(100% - 345px);
    padding: 30px;
}

.modal__img {
    width: 345px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.modal__info_wide {
    width: calc(100% - 280px);
}

.modal__info_wide + .modal__img {
    width: 280px;
}

.modal__title {
    color: #1E1E1E;
    font-family: "Gilroy-Semibold";
    font-size: 30px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 24px;
}

.modal__description {
    margin-bottom: 35px;
}

.modal__description p {
    color: #262626;
    font-size: 16px;
    line-height: 155%;
    margin-bottom: 15px;
}

.modal__description p:last-child {
    margin-bottom: 0;
}

.form .btn {
    margin-bottom: 10px;
}

.form .btn span {
    padding-left: 20px;
    padding-right: 20px;
    text-transform: none;
}

.input {
    display: block;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 2px;
    border: 1px solid #CACACA;
    color: #262626;
    font-size: 16px;
    font-weight: 300;
    padding-left: 20px;
    padding-right: 20px;
}

select.input {
    padding-right: 35px;
    background: url(../img/select-arrow.svg) right 10px center no-repeat;
    background-size: 25px 25px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

.form.flex .input {
    margin-right: 10px;
    width: calc(100% - 240px);
}

.form.flex .btn {
    width: 230px;
}

.modal__close {
    cursor: pointer;
    position: absolute;
    width: 16px;
    height: 16px;
    top: -20px;
    right: -20px;
}

.modal__close:before, .modal__close:after {
    position: absolute;
    display: block;
    content: "";
    width: 22px;
    height: 2px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    background: #fff;
    border-radius: 2px;
}

.modal__close:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Страница поиска */
.breadcrumbs {
    padding-top: 10px;
}

.breadcrumbs ul li {
    display: inline;
    font-weight: 300;
    font-size: 14px;
    color: #262626;
}

.breadcrumbs ul li a {
    display: inline;
    font-weight: 500;
    color: #262626;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
}

.breadcrumbs ul li a:hover {
    -webkit-text-decoration-color: #262626;
    text-decoration-color: #262626;
}

.search.search__d-none {
    display: none;
}

.search__content {
    background: url(../img/search-bg.webp) #dce8f6 right center no-repeat;
    background-size: cover;
    padding: 50px 250px 85px 50px;
}

.filter__items {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.filter__item {
    margin-bottom: 10px;
    margin-right: 10px;
    position: relative;
    border-radius: 2px;
}

.filter__select {
    position: relative;
    cursor: pointer;
    padding: 15px 60px 15px 15px;
    color: #262626;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    z-index: 2;
    font-weight: 500;
    background: #F9FEFF;
    z-index: 11;
}

.filter__select:after {
    position: absolute;
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    right: 10px;
    top: 50%;
    margin-top: -12px;
    background: url(../img/select-arrow.svg) center center no-repeat;
    background-size: 100% 100%;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.filter__select.active:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.filter__block,
.sort__block {
    position: absolute;
    min-width: 100%;
    z-index: 20;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 12px 0 rgba(25, 30, 57, 0.12);
    box-shadow: 0 0 12px 0 rgba(25, 30, 57, 0.12);
    padding: 14px 0px;
    display: none;
}

.radio input {
    display: none;
}

.radio label {
    padding: 6px 45px 6px 15px;
    cursor: pointer;
    color: #262626;
    font-size: 16px;
    line-height: 24px;
    position: relative;
}

.radio label b {
    display: block;
    font-weight: 500;
}

.radio label span {
    display: block;
    color: #888888;
    font-weight: 500;
    font-size: 14px;
}

.radio input:checked + label {
    background: #F8F8F8;
}

.radio input:checked + label:after {
    position: absolute;
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    top: 5px;
    right: 15px;
    background: url(../img/checkmark.svg) center center no-repeat;
    background-size: 100% 100%;
}

.checkbox input {
    display: none;
}

.checkbox label {
    position: relative;
    padding: 6px 15px 6px 54px;
    font-size: 16px;
    line-height: 24px;
    color: #262626;
    display: block;
    cursor: pointer;
}

.checkbox label:before {
    position: absolute;
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 6px;
    left: 15px;
    border-radius: 2px;
    border: 1px solid #DDE2E3;
    background: #F9FEFF;
}

.checkbox input:checked + label:after {
    position: absolute;
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/checkmark.svg) center center no-repeat;
    background-size: 100% 100%;
    top: 6px;
    left: 15px;
    z-index: 2;
}

.range {
    width: 360px;
    padding: 5px 15px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.range input {
    width: calc(50% - 5px);
    height: 55px;
    border-radius: 2px;
    border: 1px solid #DDE2E3;
    color: #262626;
    font-size: 16px;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 15px;
}

.filter__btns {
    padding-top: 15px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.filter__btns a, .filter__btns button {
    margin-right: 10px;
    margin-bottom: 10px;
}

.filter__map-link {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 2px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.filter__map-link svg {
    margin-right: 10px;
}

.filter__map-link span {
    display: block;
    color: #191E39;
    font-size: 20px;
    font-weight: 500;
}

.filter__objects-link {
    padding: 16px 40px;
    border-radius: 2px;
    border: 2px solid #191E39;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.filter__objects-link svg {
    margin-right: 10px;
}

.filter__objects-link span {
    display: block;
    text-transform: uppercase;
    color: #191E39;
    font-size: 20px;
    font-weight: 600;
}

.filter__cancel {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 16px 20px;
}

.filter__cancel svg {
    margin-right: 10px;
}

.filter__cancel span {
    display: block;
    color: #A7A7A7;
    font-size: 14px;
}

.sort {
    position: relative;
    margin-bottom: 40px;
    margin-left: auto;
}

.sort__open {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    cursor: pointer;
}

.sort__open span {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    color: #1E1E1E;
    font-size: 16px;
}

.sort__open svg {
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.sort__open.active svg.sort__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sort__block {
    left: auto;
    right: 0;
    width: 320px;
    top: calc(100% + 10px);
}

.cards {
    margin-left: -12px;
    margin-right: -12px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.card {
    margin-left: 12px;
    margin-right: 12px;
    width: calc(25% - 24px);
    margin-bottom: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.card p {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 140%;
    color: #1E1E1E;
}

.card p b {
    font-size: 18px;
    font-weight: 600;
}

.card p span {
    font-weight: 600;
}

.card p small {
    color: #878787;
}

.card__info {
    width: 100%;
}

.card__img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 4px;
}

.card__links {
    padding-top: 15px;
    width: 100%;
}

.card__links .btn {
    margin-bottom: 12px;
}

.card__links .btn span {
    font-size: 16px;
    padding-left: 25px;
    padding-right: 25px;
}

.card__more {
    color: #1E1E1E;
    font-size: 14px;
    border-bottom: 1px dotted #1E1E1E;
    line-height: 155%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
}

.pagination {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.pagination a,
.pagination span {
    margin-left: 3px;
    margin-right: 3px;
    text-align: center;
    display: block;
    min-width: 40px;
    color: #1E1E1E;
    font-size: 20px;
    border-radius: 4px;
    line-height: 32px;
    white-space: nowrap;
    padding: 4px;
}

.pagination a:nth-child(1),
.pagination span:nth-child(1) {
    margin-right: 9px;
    margin-left: 0;
}

.pagination a:nth-child(1) svg,
.pagination span:nth-child(1) svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pagination a:last-child,
.pagination span:last-child {
    margin-right: 0;
    margin-left: 9px;
}

.pagination a.active,
.pagination span.active {
    color: #fff;
    background: #191E39;
}

.pagination a.pagination__arrow,
.pagination span.pagination__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    background: #E8EEF2;
}

.pagination a.pagination__arrow.disabled,
.pagination span.pagination__arrow.disabled {
    opacity: 0.6;
}

/* Страница Объект */
.links {
    padding-top: 20px;
}

.links__back {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 12px;
    margin-right: 12px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.links__back svg {
    margin-right: 10px;
}

.links__back span {
    display: block;
    color: #878787;
    font-size: 16px;
    font-weight: 500;
}

.links__back span span {
    display: inline;
}

.links__filter {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 12px 30px;
    background: url(../img/search-bg-mobile.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.links__filter svg {
    margin-right: 10px;
}

.links__filter span {
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 500;
}

.object__title {
    margin-bottom: 20px;
    line-height: 120%;
    color: #1E1E1E;
    font-size: 36px;
    font-weight: 600;
}

.object__content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.object__col {
    width: calc(50% - 20px);
    margin-bottom: 40px;
}

.object__slider-wrapper {
    margin-bottom: 20px;
    position: relative;
}

.object__slider {
    overflow: hidden;
}

.object__slider img {
    width: 100%;
    border-radius: 4px;
}

.object__arrow {
    position: absolute;
    top: calc(50% - 30px);
    z-index: 5;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: #f9f9f7;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.object__arrow.swiper-button-disabled {
    display: none;
}

.object__arrow_prev {
    left: 20px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.object__arrow_next {
    right: 20px;
}

.object__thumbs {
    overflow: hidden;
}

.object__thumbs .swiper-slide {
    position: relative;
    cursor: pointer;
}

.object__thumbs .swiper-slide:before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid #191E39;
    z-index: 2;
    opacity: 0;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.object__thumbs .swiper-slide.swiper-slide-thumb-active:before {
    opacity: 1;
}

.object__thumbs .swiper-slide img {
    width: 100%;
    cursor: pointer;
}

.object__price {
    margin-bottom: 30px;
}

.object__price b {
    color: #1E1E1E;
    font-size: 36px;
    font-weight: 600;
    display: block;
}

.object__price small {
    font-size: 16px;
    color: #878787;
}

.object__btns {
    margin-bottom: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.object__btns .btn, .object__btns .btn_3 {
    width: calc(50% - 12px);
}

.share {
    width: calc(50% - 12px);
    position: relative;
}

.share__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #191E39;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    color: #191E39;
    font-size: 16px;
    padding: 18px;
}

.share__link span {
    font-weight: 700;
    display: block;
}

.share__link svg {
    fill: #fff;
    margin-right: 10px;
}
.share__link svg path{
    stroke: #191E39;
}

.share__link:hover {
    color: #fff;
    background: #191E39;
}

.share__link:hover svg {
    fill: #fff;
    border-radius: 4px;
}

.share__link:hover svg path{
    stroke: none;
}

.share__block {
    padding: 25px;
    position: absolute;
    z-index: 10;
    background: #fff;
    -webkit-box-shadow: 0 0 18px 0 rgba(25, 30, 57, 0.15);
    box-shadow: 0 0 18px 0 rgba(25, 30, 57, 0.15);
    border-radius: 4px;
    left: -10px;
    width: calc(100% + 20px);
    top: calc(100% + 15px);
    display: none;
}

.share__copy {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #E8F7F8;
    padding: 8px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-radius: 6px;
}

.share__copy svg {
    margin-right: 8px;
}

.share__copy span {
    display: block;
    color: #1E1E1E;
    font-size: 15px;
    font-weight: 500;
}

.share__links {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.share__links a {
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 10px;
    width: 60px;
}

.share__links a img {
    width: 100%;
}

.share__links-title {
    width: 100%;
    text-align: center;
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.share__cancel {
    padding-top: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.share__cancel a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    color: #A7A7A7;
    font-size: 14px;
}

.share__cancel a svg {
    margin-right: 8px;
}

.share__cancel a span {
    display: block;
}

.object__title2 {
    margin-bottom: 15px;
    color: #1E1E1E;
    font-size: 32px;
    font-weight: 600;
    line-height: 140%;
}

.object__info {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.object__info-col {
    width: calc(50% - 15px);
}

.object__info-col p {
    margin-bottom: 12px;
    color: #878787;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
}

.object__info-col p span {
    font-weight: 500;
    color: #1E1E1E;
}

.object__text {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 155%;
}

.object__map iframe {
    display: block;
    width: 100%;
    height: 380px;
}

/* Страница Каталог */
.catalog .pagination {
    padding-top: 30px;
}

.item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 40px;
}

.item__slider-wrapper {
    width: 49%;
    position: relative;
}

.item__slider {
    overflow: hidden;
}

.item__slider img {
    width: 100%;
}

.item__controls {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    left: 40px;
    width: calc(100% - 80px);
}

.item__arrow {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    width: 45px;
    height: 45px;
    border-radius: 45px;
    background: #f9f9f7;
    cursor: pointer;
}

.item__arrow.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
    cursor: default;
}

.item__pagination {
    width: auto;
    color: #191E39;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 20px;
    font-size: 15px;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}

.item__content {
    background: -o-linear-gradient(313deg, #e8f9fa 0%, #e7f4f5 78.5%);
    background: linear-gradient(137deg, #e8f9fa 0%, #e7f4f5 78.5%);
    width: 51%;
    padding: 20px 50px;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.item__title {
    color: #1E1E1E;
    font-size: 28px;
    font-weight: 500;
    line-height: 155%;
}

.item__location {
    padding-left: 26px;
    background: url(../img/location-icon.svg) left top no-repeat;
    background-size: 20px 20px;
    line-height: 20px;
    margin-bottom: 10px;
    color: #1E1E1E;
    font-size: 14px;
}

.item__description {
    padding-bottom: 15px;
}

.item__description p {
    margin-bottom: 15px;
    color: #1E1E1E;
    font-size: 14px;
    font-weight: 500;
    line-height: 155%;
}

.item__info {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 18px;
}

.item__info-col {
    width: calc(50% - 20px);
    margin-bottom: 12px;
}

.item__info-col span {
    display: block;
    color: #878787;
    font-size: 16px;
    line-height: 140%;
}

.item__info-col b {
    display: block;
    color: #1E1E1E;
    font-size: 20px;
    font-weight: 600;
    line-height: 155%;
}

/* Поиск города */

/*#modal-location {
  display: block;
}*/

.location__areas {
    margin-bottom: 40px;
}

.modal.location {
    border-radius: 0px;
    width: 900px;
    padding: 15px 30px;
}

.modal.location .modal__title {
    font-size: 36px;
    margin-bottom: 16px;
    margin-top: 0;
}

.modal.location .modal__container {
    padding: 20px;
}

.cities__search-container {
    position: relative;
    width: 100%;
    z-index: 10;
    margin-bottom: 30px;
}

.cities__input-wrapper {
    position: relative;
}

.cities__input-wrapper input {
    font-weight: 400;
    color: rgba(38, 38, 38, 1);
}

.cities__clear-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
    width: 12px;
    height: 12px;
}

.cities__clear-btn:before,
.cities__clear-btn:after {
    position: absolute;
    display: block;
    content: "";
    width: 2px;
    height: 16px;
    background: rgba(167, 167, 167, 1);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -1px;
    transform: rotate(-45deg);
}

.cities__clear-btn:after {
    transform: rotate(45deg);
}


.district__clear-btn:before,
.district__clear-btn:after {
    position: absolute;
    display: block;
    content: "";
    width: 2px;
    height: 16px;
    background: rgba(167, 167, 167, 1);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -1px;
    transform: rotate(-45deg);
}

.district__clear-btn:after {
    transform: rotate(45deg);
}

.cities__suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cities__suggestions div {
    padding: 12px 20px;
    cursor: pointer;
}

.cities__suggestions div:nth-child(1) {
    margin-top: 12px;
}

.cities__suggestions div:last-child {
    margin-bottom: 12px;
}

.cities__suggestions div:hover {
    background-color: #0078ff;
    color: #fff;
}

.cities__region {
    color: rgba(167, 167, 167, 1);
}

.modal__title_2 {
    color: #1E1E1E;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}

.location__areas .checkbox label {
    padding-left: 41px;
}

.location__areas .checkbox label:before,
.location__areas .checkbox input:checked + label:after {
    left: 0;
}

/* Стили для районов в два столбца */
.location__areas.many-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow-y: auto;
}

.location__areas.many-areas .modal__title_2 {
    width: 100%;
    flex-basis: 100%;
}

.location__areas.many-areas .checkbox {
    width: calc(50% - 10px);
    margin-bottom: 15px;
}

/* Каталог дополнение */

.catalog__info {
    margin-bottom: 35px;
    padding: 30px 495px 30px 40px;
    background: url(../img/catalog-info-img.png) #e8f9fa right bottom no-repeat;
    background-size: 347px auto;
}

.catalog__info-text {
    margin-bottom: 20px;
    color: #1E1E1E;
    line-height: 130%;
    font-weight: 500;
    font-size: 20px;
}

.search-city-link {
    margin-bottom: 24px;
}

.search-city-link:last-child {
    margin-bottom: 0;
}

.search-city-link a {
    flex-wrap: nowrap;
    color: #262626;
    font-size: 16px;
}

.search-city-link a svg {
    margin-right: 8px;
    transition: all ease 0.3s;
}

.search-city-link a:hover svg {
    transform: scale(1.2);
}

.search-city-link a span {
    display: block;
    font-weight: 500;
}

.search-city-link_underline a span {
    border-bottom: 1px solid #737171;
}

.search-city-link a span small {
    color: rgba(167, 167, 167, 1);
    font-weight: 500;
}

/************    *************/
@media screen and (min-width: 577px) {
    .hide-pc {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .popup-open {
        overflow: hidden;
    }

    .modal-location .modal {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        height: 100vh;
        position: relative;
    }

    .modal-location .modal__title {
        display: none;
    }

    .modal-location .modal__title_2 {
        display: none;
    }

    .modal-location .modal__btn {
        display: block;
        position: absolute;
        width: calc(100% - 40px);
        bottom: 70px;
        display: none;
    }

    .cities__search-container {
        position: absolute;
        top: 10px;
        width: calc(100% - 40px);
        left: 20px;
        justify-content: space-between;
        gap: 10px;
        transform: translateY(-170px);
        transition: transform 0.5s;
    }

    .location__areas {
        display: none !important;
    }

    .cities__search-container.active {
        display: flex;
        transform: translateY(0px);
        transition: transform 0.3s;
    }

    .location.active .modal-location-navigation__header {
        transform: translateY(-100vh);
        transition: transform 0.3s;
    }

    .location:not(.active) .modal-location-navigation__header {
        transform: translateY(0vh);
        transition: transform 0.3s;
    }

    .location.active .cities__input-wrapper {
        width: 100%;
    }

    .cities__search-container.active .input {
        background: #fff;
        margin-bottom: 0;
    }

    .location.active .cities__suggestions {
        border: none;
        border-top: none;
        border-radius: 0;
        max-height: none;
        overflow-y: auto;
        box-shadow: none;
    }

    .location.active .cities__region {
        display: block;
    }

    .location.active .cities__suggestions div {
        padding: 10px 0px;
    }

    .cities__suggestions {
        font-size: 14px;
    }

    .location.active .modal-location-navigation__content {
        transform: translateY(-100vh);
        transition: transform 0.3s;
    }

    .location:not(.active) .modal-location-navigation__content {
        transform: translateY(0vh);
        transition: transform 0.3s;
    }

    .cities__suggestions:empty {
        border: none;
        box-shadow: none;
    }


    .location__areas-contanier.active {
        display: block;
        position: absolute;
        top: 10px;
        width: calc(100% - 40PX);
        left: 20px;
        justify-content: space-between;
        gap: 10px;
    }

    .location__areas-contanier:not(.active) {
        transform: translateY(-100vh);
        transition: transform 0.3s;
    }

    .location__areas-contanier.active {
        transform: translateY(0vh);
        transition: transform 0.3s;
    }

    .location__areas-contanier.active .district__search-container {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .location__areas-contanier.active .cities__input-wrapper input {
        margin-bottom: 0;
    }

    .location__areas-contanier.active .location__areas {
        display: block !important;
        margin-top: 30px;
        max-height: calc(100vh - 200px);
    }

    .location__areas-contanier.active .location__areas.many-areas .checkbox {
        width: 100%;
        margin-bottom: 5px;
    }

    .cities__search-container.active .cities__suggestions {
        overflow: auto;
        max-height: calc(100vh - 210px);
    }

}

.modal-location-navigation {

}

.modal-location-navigation__header {
    display: flex;
    justify-content: space-between;
    margin-top: -10px;
    margin-bottom: 16px;
}

.modal-location-navigation__back {
}

.modal-location-navigation__title {
    padding: 5px;
    font-size: 16px;
}

.modal-location-navigation__reset {
    font-size: 14px;
    margin-right: 4px;
    text-decoration: underline;
    color: #000;
}

.modal-location-navigation__item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    color: #000;
}

.modal-location-navigation__item span {
    font-size: 14px;
}

.modal-location-navigation__item img {
    transform: rotate(-90deg);
}

.modal-location-navigation__item + .modal-location-navigation__item {
    margin-top: 10px;
}

.modal-location-navigation__subtitle {
    font-weight: 500;
}

.modal-location-navigation__content {
    margin-top: 20px;
}

.modal-location-navigation__list {
    margin-top: 20px;
}

/*****************************************************/
/******************** POPUP EXPERT ********************/
/*****************************************************/
.popup-expert {
    bottom: 50px;
    z-index: 299;
    position: fixed;
    width: 100%;
    pointer-events: none;
}
.popup-expert__container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-right: 24px;
}
.popup-expert__broker-wrapp {
    display: none;
    border-radius: 100em;
}
.popup-expert__broker-wrapp__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    background: rgba(25, 30, 57, 0.85);
    backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 22px 0 rgba(255, 255, 255, 0.6);
    z-index: 1;
    transition: 0.25s;
    cursor: pointer;
    pointer-events: visible;
}
.popup-expert__broker-wrapp__inner:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background: #50e57a;
    box-shadow:
            1px 1px 2px rgba(66, 204, 105, 0.2) inset,
            -1px -1px 2px rgba(66, 204, 105, 0.4) inset,
            0 0 4px 1px #50e57a;
    bottom: 4px;
    right: 12px;
    z-index: 3;
    animation: pulse 2s infinite;
    transition: 0.25s opacity;
}
.popup-expert__broker {
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 100em;
    position: relative;
}
.popup-expert__broker-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
@keyframes pulse {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 #aaff3fb3;
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 0.4em #aaff3f00;
    }

    to {
        transform: scale(0.8);
        box-shadow: 0 0 #aaff3f00;
    }
}

.popup-expert__body {
    display: block;
    position: relative;
}
.popup-expert__body-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: visible;
}
.popup-expert__info {
    position: relative;
    box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.08);
    /*background: url(../img/popup-bg.svg) center center no-repeat;*/
    background-color: #fff;
    width: 197px;
    height: 234px;
    padding: 50px 20px 20px;
    text-align: center;
}
.popup-expert__broker {
    position: absolute;
    cursor: pointer;
    overflow: hidden;
    border-radius: 1000px;
    backdrop-filter: blur(12px);
    background: #191e39;
    width: 70px;
    height: 70px;
    top: -40px;
    z-index: 1;
}
.popup-expert__close {
    position: absolute;
    border-radius: 100px;
    width: 22px;
    height: 22px;
    box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.08);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    right: 0;
    cursor: pointer;
    transition: 0.25s;
}
.popup-expert__close:hover {
    transform: rotate(90deg);
}
.popup-expert__name {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #191e39;
    margin-bottom: 8px;
}
.popup-expert__description {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #525252;
    margin: 0 -5px;
}
.popup-expert__soc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.popup-expert__soc-item {
    display: block;
    width: 26px;
    height: 26px;
    cursor: pointer;
    transition: 0.25s;
}
.popup-expert__soc-item:hover {
    transform: scale(1.1);
}
.popup-expert__soc-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.popup-expert__phone {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #191e39;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    transition: 0.25s;
}
.popup-expert__phone:hover {
    -webkit-text-decoration-color: #191e39;
    text-decoration-color: #191e39;
}
.popup-expert__broker-wrapp,
.popup-expert__body {
    display: none;
    opacity: 0;
    transform: scale(0.5);
    transform-origin: bottom right;
    transition:
            opacity 0.2s ease,
            transform 0.2s ease;
}

.popup-expert__broker-wrapp,
.popup-expert__broker-wrapp * {
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.popup-expert__active {
    display: block !important;
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 760px) {
    .popup-expert {
        bottom: 15px;
    }
    .popup-expert__container {
        padding-right: 15px;
    }
    .popup-expert__broker-wrapp__inner {
        width: 68px;
        height: 68px;
    }
    .popup-expert__broker-wrapp__inner:before {
        width: 10px;
        height: 10px;
        bottom: 5px;
        right: 6px;
    }
    .popup-expert__info {
        background: url(../img/popup-bg-mobile.svg) center center no-repeat;
    }
    .popup-expert__broker {
        width: 67px;
        height: 67px;
        top: -33px;
    }
    .popup-expert__close {
        top: -35px;
    }
    .popup-expert__info {
        width: 170px;
        height: 210px;
        padding: 50px 10px 16px;
    }
    .popup-expert__name {
        font-size: 15px;
    }
    .popup-expert__description {
        font-size: 11px;
    }
    .popup-expert__soc {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .popup-expert__soc-item {
        width: 22px;
        height: 22px;
    }
    .popup-expert__phone {
        font-size: 14px;
    }
}