:root {
    --main-orange: #eb6418;
    --main-orange-hover: #ffa04a;
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(720deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

html {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    color: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: #212121;
}

* {
    outline: none;
}

*, *:before, *:after {
    box-sizing: inherit;
}

p {
    padding: 0;
    margin: 0 0 10px 0;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.5s, border-bottom 0.5s;
}

a:hover {
    color: var(--main-orange);
}

figure {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

h1 {
    padding: 0;
    margin: 0 0 40px 0;
    font-weight: bold;
    font-size: 3.75rem;
    line-height: 4.5rem;
}

h2 {
    padding: 0;
    margin: 0 0 40px 0;
    font-weight: bold;
    font-size: 3rem;
    line-height: 3.8125rem;
}

h3 {
    padding: 0;
    margin: 0 0 30px 0;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 3.625rem;
}

h4 {
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: bold;
    font-size: 1.875rem;
    line-height: 2.75rem;
}

h5 {
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 2.375rem;
}

h6 {
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1.8125rem;
}

ul {
    padding: 0;
    margin: 0;
}

.ul{
	padding-left: 20px;
}

.ul.ul_disc, .ul.ul_disc li{
	list-style: disc;
}

section {
    padding: 40px 0;
}

.d-none {
    display: none !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.text-orange {
    color: var(--main-orange);
}

.section__header-span {
    padding-left: 10px;
    color: var(--main-orange);
}
header.header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #212121;
}
.section__header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.75rem;
    letter-spacing: normal;
    color: #fff;
}

.section__header::before {
    content: '';
    display: inline-flex;
    width: 38px;
    height: 2px;
    margin-right: 24px;
    background-color: var(--main-orange);
}

.section__header::after {
    content: '';
    display: inline-flex;
    width: 38px;
    height: 2px;
    margin-left: 24px;
    background-color: var(--main-orange);
}

.container {
    padding: 0 8px;
    margin: 0 auto;
    max-width: 1150px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 25px;
    margin: 0;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1rem;
    color: #fff;
    background-color: var(--main-orange);
    transition: color 0.5s, background-color 0.5s;
    cursor: pointer;
}

.btn::after {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 9px;
    height: 15px;
    margin-left: 10px;
    background-image: url('/upload/icons/btn-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.btn:focus {
    color: #fff;
    background-color: var(--main-orange-hover);
}

.btn:hover {
    color: #fff;
    background-color: var(--main-orange-hover);
}

.btn-more {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 25px;
    margin: 0;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1rem;
    color: #fff;
    background-color: var(--main-orange);
    transition: color 0.5s, background-color 0.5s;
    cursor: pointer;
}

.btn-more::before {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-image: url(/upload/icons/btn-arrow.svg);
    background-size: 33%;
    background-repeat: no-repeat;
    background-position: 8px center;
    transform: rotate(90deg);
}

.btn-more:focus {
    color: #fff;
    background-color: var(--main-orange-hover);
}

.btn-more:hover {
    color: #fff;
    background-color: var(--main-orange-hover);
}

.btn-no-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 25px;
    margin: 0;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1rem;
    color: #fff;
    background-color: var(--main-orange);
    transition: color 0.5s, background-color 0.5s;
    cursor: pointer;
}

.btn-no-arrow:focus {
    color: #fff;
    background-color: var(--main-orange-hover);
}

.btn-no-arrow:hover {
    color: #fff;
    background-color: var(--main-orange-hover);
}

/*----- Чекбокс ------*/
.checkbox {
    display: block;
    margin: 0 0 10px 0;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.checkbox input[type=checkbox] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

.checkbox span {
    display: inline-block;
    position: relative;
    padding: 0 0 0 35px;
    font-size: 1rem;
    line-height: 180%;
}

.checkbox span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    display: inline-block;
    width: 18px;
    height: 18px;
    transition: background 0.3s ease;
    background: url('/upload/icons/checkbox.svg') 0 0 no-repeat;
}

/* Checked */
.checkbox input[type=checkbox]:checked+span:before {
    background-image: url('/upload/icons/checkbox-active.svg');
}

/* Focus */
.focused span:before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

/* Hover */
.checkbox span:hover:before {
    filter: brightness(110%);
}

/* Active */
.checkbox span:active:before {
    filter: brightness(80%);
}

/* Disabled */
.checkbox input[type=checkbox]:disabled+span {
    color: #666;
    cursor: default;
}

.checkbox input[type=checkbox]:disabled+span:before {
    filter: grayscale(100%);
    opacity: 0.6;
}

.checkbox span a {
    text-decoration: underline;
}
/*----- Конец чекбокса ------*/

.video-frame.video-frame-16by9 {
	padding-bottom: 56.25%;
}
 
.video-frame.video-frame-4by3 {
	padding-bottom: 75%;
}
 
.video-frame{
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden;
	width:100%;
}
 
.video-frame .video-frame-item, .video-frame iframe, .video-frame embed, .video-frame object{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/*----- Шапка сайта -----*/
.header-mobile {
    display: none;
}

.header-top {
    padding: 20px 0;
}

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

.header-top__list {
    display: flex;
    align-items: center;
    list-style: none;
}

.header-top__item {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.header-top__item:last-child {
    margin-right: 0;
}

.header-top__item-icon {
    margin-right: 10px;
}

.header-top__item-text {
    font-size: 0.8125rem;
    line-height: 0.9375rem;
    color: #fff;
}

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

.header-bottom__logo-img {
    max-height: 38px;
}

.header-bottom__right {
    display: flex;
    align-items: center;
}

.header-bottom__menu-list {
    display: flex;
    align-items: center;
    list-style: none;
}

.header-bottom__menu-item {
    height: 60px;
    margin-right: 10px;
}

.header-bottom__menu-item:last-child {
    margin-right: 0;
}

.header-bottom__menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    text-transform: uppercase;
    font-size: 0.875rem;
    line-height: 1rem;
    color: #fff;
    transition: color 0.5s, background-color 0.5s;
}

.header-bottom__menu-link:hover {
    background-color: var(--main-orange);
    color: #fff;
}

.header-bottom__menu-link_active {
    background-color: var(--main-orange);
}

.header-bottom__search-link {
    padding: 0 0 0 10px;
}

/*----- Конец шапки сайта -----*/

/*----- Слайдер на главной -----*/
.main-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 148px);
    min-height: 400px;
}

.main-slider__item {
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.main-slider__item-container {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding-bottom: 150px;
}

.main-slider__item-video {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slider__item-video-bg-gradient {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(360deg, #212121 0%, rgba(47, 47, 47, 0.45) 100%);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.09);
}

.main-slider__item-header {
    padding: 0;
    margin: 0 0 25px 0;
    font-weight: 900;
    font-size: 1.75rem;
    line-height: 2rem;
    letter-spacing: 0.02em;
    color: #fff;
}

.main-slider__item-text {
    max-width: 655px;
    margin-bottom: 40px;
    line-height: 180%;
    color: #dcdcdc;
}

.main-slider__item_bg-gradient::before {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(360deg, #212121 0%, rgba(47, 47, 47, 0.45) 100%);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.09);
}

.main-slider__bottom-container {
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 60px;
    left: calc((100% - 1150px) / 2);
    max-width: 1150px;
    width: 100%;
    padding: 0 8px;
}

.main-slider__carousel-arrow-left {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    padding: 0;
    margin: 0 25px 0 0;
    background: none;
    border-radius: 50%;
    border: 1px solid #d0d5dd;
    cursor: pointer;
    transition: border 0.5s, color 0.5s, background-color 0.5s;
}

.main-slider__carousel-arrow-left:hover {
    border: 1px solid var(--main-orange);
    background-color: var(--main-orange);
}

.main-slider__carousel-arrow-right {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    padding: 0;
    margin: 0;
    background: none;
    border-radius: 50%;
    border: 1px solid #d0d5dd;
    cursor: pointer;
    transition: border 0.5s, color 0.5s, background-color 0.5s;
}

.main-slider__carousel-arrow-right:hover {
    border: 1px solid var(--main-orange);
    background-color: var(--main-orange);
}

.main-slider__socials-list {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-slider__socials-list::before {
    content: '';
    display: inline-flex;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    background-color: var(--main-orange);
    border-radius: 50%;
}

.main-slider__socials-item {
    display: flex;
    vertical-align: center;
}

.main-slider__socials-item:not(:last-child)::after {
    content: '|';
    padding: 0 8px;
    margin: -1px 0 0 0;
    line-height: 1;
    text-transform: uppercase;
    color: #bababa;
}

.main-slider__socials-link {
    line-height: 1;
    text-transform: uppercase;
    color: #bababa;
}

.main-slider__dots .owl-dot {
    width: 33px;
    height: 2px;
    padding: 0;
    margin: 0 16px 0 0;
    background-color: #fff;
    border: none;
    cursor: pointer;
}

.main-slider__dots .owl-dot:last-child {
    margin-right: 0;
}

.main-slider__dots .owl-dot.active {
    width: 88px;
    background-color: var(--main-orange);
}

/*----- Конец слайдера на главной -----*/

/*----- Акции на главной -----*/
.main-actions__container {
    position: relative;
}

.main-actions__all-link {
    position: absolute;
    top: 9px;
    right: 13px;
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1;
    color: #fff;
}

.main-actions__all-link::after {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background-position: 6px center;
    background-repeat: no-repeat;
    background-size: 30%;
    background-image: url('/upload/icons/btn-arrow.svg');
    border-radius: 50%;
    border: 1px solid #fff;
    transition: background-color 0.5s, border 0.5s;
}

.main-actions__all-link:hover::after {
    background-color: var(--main-orange);
    border: 1px solid var(--main-orange);
}

.main-actions__items {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 32px;
}

.main-actions-item {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: calc((100% - 32px) / 2);
    height: 436px;
    margin: 0;
    overflow: hidden;
}

.main-actions-item::before {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, #212121 0%, rgba(47, 47, 47, 0.15) 85.89%);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.09);
}

.main-actions-item__img {
    z-index: -2;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.main-actions-item__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
}

.main-actions-item__name {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.625rem;
}

.main-actions-item__preview {
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 150%;
}

.main-actions-item__bottom-row {
    display: flex;
}

.main-actions-item__date {
    display: inline-flex;
    align-items: center;
    margin-right: 26px;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
    text-align: center;
}

.main-actions-item__date::before {
    content: '';
    width: 19px;
    height: 14px;
    margin-right: 6px;
    background-image: url('/upload/icons/action-calendar.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.main-actions-item__detail-link {
    position: relative;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
}

.main-actions__more-row {
    display: flex;
    justify-content: center;
    width: 100%;
}
/*----- Конец акций на главной -----*/

/*----- Новости на главной -----*/
.main-news__container {
    position: relative;
}

.main-news__all-link {
    position: absolute;
    top: 9px;
    right: 13px;
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1;
    color: #fff;
}

.main-news__all-link::after {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background-position: 6px center;
    background-repeat: no-repeat;
    background-size: 30%;
    background-image: url('/upload/icons/btn-arrow.svg');
    border-radius: 50%;
    border: 1px solid #fff;
    transition: background-color 0.5s, border 0.5s;
}

.main-news__all-link:hover::after {
    background-color: var(--main-orange);
    border: 1px solid var(--main-orange);
}

.main-news__items {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 32px;
}

.main-news-item {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: calc((100% - 32px) / 2);
    height: 436px;
    margin: 0;
}

.main-news-item::before {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, #212121 0%, rgba(47, 47, 47, 0.15) 85.89%);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.09);
}

.main-news-item__img {
    z-index: -2;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.main-news-item__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
}

.main-news-item__name {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.625rem;
}

.main-news-item__preview {
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 150%;
}

.main-news-item__bottom-row {
    display: flex;
}

.main-news-item__date {
    display: inline-flex;
    align-items: center;
    margin-right: 26px;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
    text-align: center;
}

.main-news-item__date::before {
    content: '';
    width: 19px;
    height: 14px;
    margin-right: 6px;
    background-image: url('/upload/icons/action-calendar.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.main-news-item__detail-link {
    position: relative;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
}

.main-news__more-row {
    display: flex;
    justify-content: center;
    width: 100%;
}
/*----- Конец новостей на главной -----*/

/*----- Хлебные крошки -----*/
.breadcrumbs {
    padding: 0 0 40px 0;
}

.breadcrumbs__header-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumbs__header {
    display: inline-flex;
    align-items: center;
    padding: 40px 0;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 2.1875rem;
    letter-spacing: normal;
    color: #fff;
}

.breadcrumbs__header::before {
    content: '';
    display: inline-flex;
    width: 38px;
    height: 2px;
    margin-right: 24px;
    background-color: var(--main-orange);
}

.breadcrumbs__header::after {
    content: '';
    display: inline-flex;
    width: 38px;
    height: 2px;
    margin-left: 24px;
    background-color: var(--main-orange);
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

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

.breadcrumbs__link {
    display: flex;
    text-decoration: underline;
    font-weight: 300;
}

.breadcrumbs__span {
    display: flex;
    font-weight: 300;
}

.breadcrumbs__arrow {
    padding: 0 5px;
}

/*----- Конец хлебных крошек -----*/

/*----- Бренды на главной -----*/
.main-brands-carousel-item {
    display: flex;
}

/*----- Конец брендов на главной -----*/

/*----- Карта на главной -----*/
.main-maps__container {
    position: relative;
    height: 720px;
    margin-bottom: 40px;
    border-radius: 5px;
    overflow: hidden;
}

.main-maps__map {
    display: none;
}

.main-maps__map_active {
    display: block;
}

.main-maps__sections-list {
    z-index: 10;
    position: absolute;
    top: 46px;
    left: calc(50% - 190px);
    display: flex;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
    list-style: none;
    overflow: hidden;
}

.main-maps__sections-item {
    display: flex;
}

.main-maps__sections-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 52px;
    background-color: #fff;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.3125rem;
    color: #212121;
    transition: background-color 0.5s, color 0.5s;
}

.main-maps__sections-link:focus {
    background-color: var(--main-orange);
    color: #fff;
}

.main-maps__sections-link:hover {
    background-color: var(--main-orange);
    color: #fff;
}

.main-maps__sections-link_active {
    background-color: var(--main-orange);
    color: #fff;
}

/*----- Конец карты на главной -----*/

/*----- СЕО блок на главной -----*/
.main-seo__btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 20px;
}

.main-seo__showmore {
    font-weight: 400;
    font-size: 1rem;
    line-height: 180%;
    color: #dcdcdc;
}

/*----- Конец СЕО блока на главной -----*/

/*----- Подвал сайта -----*/
.footer-top {
    position: relative;
    display: flex;
    min-height: 420px;
    padding: 20px 0 0 0;
    border-top: 1px solid #3a3a3a;
}

.footer__logo-img {
    max-height: 54px;
}

.footer-top__left {
    width: 468px;
}

.footer-top__center {
    padding: 40px 0;
    margin-right: 80px;
}

.footer-top__right {
    padding: 40px 0;
}

.footer-menu__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu__item {
    position: relative;
    padding-left: 17px;
    margin-bottom: 24px;
}

.footer-menu__item:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    display: inline-flex;
    width: 5px;
    height: 5px;
    background-color: var(--main-orange);
}

.footer-menu__item:last-child {
    margin-bottom: 0;
}

.footer-menu__link {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.4375rem;
    color: #fff;
}

.footer-top__lamp {
    position: absolute;
    top: 0;
    left: 270px;
}

.footer-top__chair {
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-top__p {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
}

.footer-top__p:last-child {
    margin-bottom: 0;
}

.footer-top__p_icon_address::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 16px;
    background-image: url('/upload/icons/header-map.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.footer-top__p_icon_hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url('/upload/icons/header-clock.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.footer-top__p_icon_phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background-image: url('/upload/icons/header-phone.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.footer-top__p_icon_email::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 12px;
    background-image: url('/upload/icons/header-email.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 34px 0 70px 0;
    border-top: 1px solid #3a3a3a;
}

.footer-bottom__left {
    flex-shrink: 0;
    width: 48%;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1rem;
}

.footer-bottom__right {
    flex-shrink: 0;
    width: 50%;
    text-align: right;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1rem;
}

/*----- Конец подвала сайта -----*/

/*----- Новости -----*/
.news {
    padding-top: 0;
}

.news__container {
    position: relative;
}

.news__items {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 32px;
}

.news__all-link {
    position: absolute;
    top: 9px;
    right: 13px;
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1;
    color: #fff;
}

.news__all-link::after {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background-position: 6px center;
    background-repeat: no-repeat;
    background-size: 30%;
    background-image: url('/upload/icons/btn-arrow.svg');
    border-radius: 50%;
    border: 1px solid #fff;
    transition: background-color 0.5s, border 0.5s;
}

.news__all-link:hover::after {
    background-color: var(--main-orange);
    border: 1px solid var(--main-orange);
}

.news__items {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 32px;
}

.news-item {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: calc((100% - 32px) / 2);
    height: 436px;
    margin: 0;
    overflow: hidden;
}

.news-item::before {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, #212121 0%, rgba(47, 47, 47, 0.15) 85.89%);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.09);
}

.news-item__img {
    z-index: -2;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.news-item__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
}

.news-item__name {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.625rem;
}

.news-item__preview {
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 150%;
}

.news-item__bottom-row {
    display: flex;
}

.news-item__date {
    display: inline-flex;
    align-items: center;
    margin-right: 26px;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
    text-align: center;
}

.news-item__date::before {
    content: '';
    width: 19px;
    height: 14px;
    margin-right: 6px;
    background-image: url('/upload/icons/action-calendar.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.news-item__detail-link {
    position: relative;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
}

.news__more-row {
    display: flex;
    justify-content: center;
    width: 100%;
}
/*----- Конец новостей -----*/

/*----- Детальная страница новостей -----*/
.news-detail {
    padding-top: 0;
}

.news-detail__banner-wrapper {
    z-index: 1;
    position: relative;
    margin-bottom: 44px;
    border-radius: 5px;
}

.news-detail__banner-wrapper::before {
    z-index: 1;
    /*content: '';*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(33, 33, 33, 0.89) 0%, rgba(47, 47, 47, 0.19) 100%);
}

.news-detail__banner-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.news-detail__banner-header {
    z-index: 1;
    position: relative;
    padding: 0 0 0 13px;
    margin: 0;
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 2.1875rem;
    color: #fff;
}

.news-detail__banner-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 3px;
    height: 100%;
    margin-right: 10px;
    background-color: var(--main-orange);
}

.news-detail__date-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.news-detail__date {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
}

.news-detail__date::before {
    content: '';
    width: 19px;
    height: 14px;
    margin-right: 6px;
    background-image: url('/upload/icons/action-calendar.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.news-detail__share {
    display: flex;
    align-items: center;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
}

.news-detail__share::before {
    content: '';
    width: 19px;
    height: 14px;
    margin-right: 6px;
    background-image: url('/upload/icons/share.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.news-detail__text-block {
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.1875rem;
    color: #fff;
}

.news-detail__text-block p {
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.1875rem;
    color: #fff;
}

.news-detail__more-header {
    z-index: 1;
    position: relative;
    padding: 0 0 0 13px;
    margin: 0 0 40px 0;
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 2.1875rem;
    color: #fff;
}

.news-detail__more-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 3px;
    height: 100%;
    margin-right: 10px;
    background-color: var(--main-orange);
}

.catalog-detail__social-link svg path {
    fill: #fff;
    transition: fill 0.5s;
}

.catalog-detail__social-link:hover svg path {
    fill: var(--main-orange);
}

.news-more__wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 32px;
}
/*----- Конец детальной страницы новостей -----*/

/*----- Акции -----*/
.actions {
    padding-top: 0;
}

.actions__container {
    position: relative;
}

.actions__page-description{
	padding: 50px 0;
}

.actions__page-description h3{
	margin-top: 20px;
}

.actions__page-description p, .actions__page-description li{
	text-align: justify;
	font-weight: 300;
	font-size: 11pt;
	line-height: 1.4;
}

.actions__all-link {
    position: absolute;
    top: 9px;
    right: 13px;
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1;
    color: #fff;
}

.actions__all-link::after {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background-position: 6px center;
    background-repeat: no-repeat;
    background-size: 30%;
    background-image: url('/upload/icons/btn-arrow.svg');
    border-radius: 50%;
    border: 1px solid #fff;
    transition: background-color 0.5s, border 0.5s;
}

.actions__all-link:hover::after {
    background-color: var(--main-orange);
    border: 1px solid var(--main-orange);
}

.actions__items {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 32px;
}

.actions-item {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: calc((100% - 32px) / 2);
    height: 436px;
    margin: 0;
    overflow: hidden;
}

.actions-item::before {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, #212121 0%, rgba(47, 47, 47, 0.15) 85.89%);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.09);
}

.actions-item__img {
    z-index: -2;
    position: absolute;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.actions-item__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
}

.actions-item__name {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.625rem;
}

.actions-item__preview {
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 150%;
}

.actions-item__bottom-row {
    display: flex;
}

.actions-item__date {
    display: inline-flex;
    align-items: center;
    margin-right: 26px;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
    text-align: center;
}

.actions-item__date::before {
    content: '';
    width: 19px;
    height: 14px;
    margin-right: 6px;
    background-image: url('/upload/icons/action-calendar.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.actions-item__detail-link {
    position: relative;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
}

.actions__more-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

/*----- Конец акций -----*/

/*----- Детальная страница акций -----*/
.actions-detail {
    padding-top: 0;
}

.actions-detail__banner-wrapper {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: auto;
    padding: 0;
    margin-bottom: 44px;
    border-radius: 5px;
}

.actions-detail__banner-wrapper::before {
    z-index: 1;
    /*content: '';*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(33, 33, 33, 0.89) 0%, rgba(47, 47, 47, 0.19) 100%);
}

.actions-detail__banner-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.actions-detail__banner-img-mobile {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.actions-detail__banner-header {
    z-index: 1;
    position: relative;
    padding: 0 0 0 13px;
    margin: 0;
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 2.1875rem;
    color: #fff;
}

.actions-detail__banner-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 3px;
    height: 100%;
    margin-right: 10px;
    background-color: var(--main-orange);
}

.actions-detail__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(227, 232, 243, 0.38);
}

.actions-detail__logo {
    flex-shrink: 0;
    max-width: 194px;
    height: auto;
}

.actions-detail__name {
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3125rem;
}

.actions-detail__floor {
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3125rem;
}

.actions-detail__corpus {
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3125rem;
}

.actions-detail__date {
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
    white-space: nowrap;
}

.actions-detail__date::before {
    content: '';
    width: 19px;
    height: 14px;
    margin-right: 6px;
    background-image: url('/upload/icons/action-calendar.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.actions-detail__scheme {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3125rem;
}

.actions-detail__scheme::before {
    content: '';
    width: 26px;
    height: 20px;
    background-image: url('/upload/icons/header-map.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.actions-detail__text-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 180%;
}

.actions-detail__text-block p {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 180%;
}

.actions-detail__text-block-left {
    width: 100%;
}

.actions-detail__text-block-right {
    width: 49%;
}

.actions-detail__right-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/*----- Конец детальной страницы акций -----*/

/*----- Страница каталога -----*/
.catalog {
    padding-top: 0;
}

.catalog-filter__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.catalog-filter__wrapper {
    position: relative;
}

.catalog-filter__input {
    width: 220px;
    height: 40px;
    padding: 0 0 0 20px;
    background: transparent;
    border-radius: 5px;
    border: 1px solid #747474;
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
}

.catalog-filter__input::placeholder {
    color: #fff;
}

.catalog-filter__search-icon {
    position: absolute;
    top: 12px;
    right: 15px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.catalog-filter__select {
    width: 220px;
    height: 40px;
    padding: 0 20px;
    background: transparent;
    border-radius: 5px;
    border: 1px solid #747474;
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
}

.catalog-filter__select_salons {
    position: relative;
    display: flex;
    align-items: center;
    width: 200px;
    overflow: hidden;
}

.catalog-filter__select_salons::after {
    content: "";
    height: 0;
    width: 0;
    border-style: solid;
    border-color: #fff transparent transparent;
    border-width: 5px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none;
}

.catalog-filter__select_floors {
    width: 140px;
}

.catalog-filter__select_corpus {
    width: 160px;
}

.catalog-filter__salons-wrapper {
    position: relative;
}

#catalog-filter-salons-menu {
    z-index: 4000;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #222;
    border-radius: 5px;
    font-size: 0.875rem;
    line-height: 1rem;
    color: #fff;
    opacity: 0;
}

#catalog-filter-salons-menu ul {
    width: 200px;
    background-color: #222;
    border-radius: 5px;
    font-size: 0.875rem;
    line-height: 1rem;
    color: #fff;
}

#catalog-filter-salons-menu .ui-icon, .ui-widget-content .ui-icon {
    background-image: url("images/ui-icons_ffffff_256x240.png");
}

#catalog-filter-salons-menu .ui-menu-item-wrapper {
    padding: 9px 14px;
    border-radius: 0;
}

#catalog-filter-salons-menu .ui-menu-item-wrapper:hover {
    background-color: var(--main-orange);
    border-color: var(--main-orange);
}

#catalog-filter-salons-menu .ui-menu-item:first-child>.ui-menu-item-wrapper:hover {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#catalog-filter-salons-menu .ui-menu-item:last-child>.ui-menu-item-wrapper:hover {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#catalog-filter-salons-menu .ui-menu-item-wrapper.ui-state-active {
    background-color: var(--main-orange);
    border-color: var(--main-orange);
}

#catalog-filter-salons-menu .ui-menu-item-wrapper .ui-menu-icon {
    color: #fff;
}

.choices {
    width: 220px;
    height: 40px;
    margin: 0;
    background: transparent;
    border-radius: 5px;
    border: 1px solid #747474;
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
}

.choices.is-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.choices[aria-labelledby=section] {
    width: 200px;
}

.choices[aria-labelledby=floor] {
    width: 140px;
}

.choices[aria-labelledby=corpus] {
    width: 160px;
}

.choices__inner {
    padding: 0 20px;
    margin: 0;
    background: transparent;
    border: none;
}

.choices__list--single {
    display: inline-flex;
    align-items: center;
    padding: 0;
    width: 100%;
    height: 40px;
}

.choices[data-type*=select-one]::after {
    right: 20px;
    border-color: #fff transparent transparent;
}

.choices[data-type*=select-one].is-open::after {
    border-color: transparent transparent #fff;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
    visibility: hidden;
    z-index: 1;
    position: absolute;
    width: calc(100% + 2px);
    background-color: #222;
    border: 1px solid #747474;
    border-top: none;
    top: 100%;
    margin: -1px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
    word-break: normal;
    will-change: visibility;
}

.choices__item--disabled {
    display: none;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background-color: var(--main-orange);
}

.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
    max-height: unset;
}

.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
    padding: 10px 20px;
}

.choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 20px;
}

.catalog-filter__btn {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 160px;
    height: 40px;
    padding: 0 20px;
    background: transparent;
    border-radius: 5px;
    border: 1px solid #747474;
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
}

.catalog-filter__btn_active {
    background-color: var(--main-orange);
    border: 1px solid var(--main-orange);
}

.catalog-filter__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.catalog-filter__letter-empty {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    line-height: 1;
    color: #747474;
    cursor: default;
}

.catalog-filter__letter, .catalog-filter__letter-all {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    font-size: 0.875rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    transition: color 0.5s, border-color 0.5s;
}

.catalog-filter__letter_active {
    border-color: var(--main-orange);
    color: var(--main-orange);
}

.catalog-filter__letter:hover, .catalog-filter__letter-all:hover {
    border-color: var(--main-orange);
    color: var(--main-orange);
}
.catalog-filter__letter-all {
    display: none;
}
.catalog-filter__letter-all.active {
    display: block;
}

.catalog-items {
    display: flex;
    flex-wrap: wrap;
}

.catalog-item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 112px) / 5);
    margin: 0 28px 28px 0;
    border-radius: 5px;
    border: 1px solid #747474;
    transition: box-shadow 0.5s;
    overflow: hidden;
}

.catalog-item:hover {
    box-shadow: 0px 0px 10px 0px#747474;
}

.catalog-item:nth-child(5n) {
    margin-right: 0;
}

.catalog-item__img-wrapper {
    max-height: 136px;
    border-bottom: 1px solid #747474;
}

.catalog-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-item__bottom {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    text-align: center;
}

.catalog-item__name {
    margin-bottom: 26px;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.625rem;
    color: #fff;
}

.catalog-item__position {
    margin-top: auto;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
    color: #fff;
}

.catalog-items__letter-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24px;
    border: 1px solid rgba(227, 232, 243, 0.38);
    border-top: none;
    border-right: none;
}

.catalog-items__letter-block:first-child {
    padding-top: 0;
}

.catalog-items__letter-block:last-child {
    border-bottom: none;
}

.catalog-items__letter {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.catalog-items__table {
    width: 100%;
    column-width: 33%;
    column-count: 3;
    column-gap: 4%;
}

.catalog-items__company-link {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1rem;
}

/*----- Конец страницы каталога -----*/

/*----- Детальная страница каталога -----*/
.catalog-detail {
    padding-top: 0;
    padding-bottom: 40px;
}

.catalog-detail__top-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.catalog-detail__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 530px;
}

.catalog-detail__right {
    width: 560px;
}

.catalog-detail__carousel-wrapper {
    position: relative;
}

.catalog-detail__carousel {
    margin-bottom: 28px;
}

.catalog-detail__carousel-arrow-left {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 84px;
    height: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: linear-gradient(90deg, rgba(33, 33, 33, 0.4) 0%, rgba(47, 47, 47, 0.19) 100%);
    cursor: pointer;
}

.catalog-detail__carousel-arrow-left svg path {
    fill: #d0d5dd;
    transition: fill 0.5s;
}

.catalog-detail__carousel-arrow-left:focus svg path {
    fill: #d0d5dd;
}

.catalog-detail__carousel-arrow-left:hover svg path {
    fill: var(--main-orange);
}

.catalog-detail__carousel-arrow-right {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 84px;
    height: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: linear-gradient(-90deg, rgba(33, 33, 33, 0.4) 0%, rgba(47, 47, 47, 0.19) 100%);
    cursor: pointer;
}

.catalog-detail__carousel-arrow-right svg path {
    fill: #d0d5dd;
    transition: fill 0.5s;
}

.catalog-detail__carousel-arrow-right:focus svg path {
    fill: #d0d5dd;
}

.catalog-detail__carousel-arrow-right:hover svg path {
    fill: var(--main-orange);
}

.catalog-detail__carousel-img {
    border-radius: 5px;
}

.catalog-detail__carousel-nav .slick-slide {
    position: relative;
    margin-left: 30px;
}

.catalog-detail__carousel-nav .slick-list {
    margin-left: -30px;
}

.catalog-detail__carousel-nav-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
}

.catalog-detail__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(227, 232, 243, 0.1);
}

.catalog-detail__top-logo {
    width: 110px;
    height: auto;
    border-radius: 5px;
}

.catalog-detail__top-floor {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.125rem;
}

.catalog-detail__top-corpus {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.125rem;
}

.catalog-detail__top-phone-block {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(227, 232, 243, 0.1);
}

.catalog-detail__top-phone-icon {
    content: '';
    width: 21px;
    height: 21px;
    margin-right: 18px;
    background-image: url('/upload/icons/catalog-detail-phone.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.catalog-detail__top-phones {
    display: flex;
}

.catalog-detail__top-phone {
    display: inline-flex;
    margin: 0 16px 10px 0;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.125rem;
}

.catalog-detail__top-phone:nth-child(3n) {
    margin-right: 0;
}

.catalog-detail__top-phone:nth-last-child(-n+3) {
    margin-bottom: 0;
}

.catalog-detail__top-scheme {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 126px;
    height: 32px;
}

.catalog-detail__top-scheme::before {
    content: '';
    width: 21px;
    height: 32px;
    margin-right: 6px;
    background-image: url('/upload/icons/header-map.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}

.catalog-detail__props-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(227, 232, 243, 0.1);
}

.catalog-detail__props-left {
    flex-shrink: 0;
    width: 320px;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 180%;
    color: var(--main-orange);
}

.catalog-detail__props-right {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: calc(100% - 320px);
    font-weight: 400;
    font-size: 1rem;
    line-height: 180%;
}

.catalog-detail__props-right_socials {
    flex-direction: row;
    align-items: center;
}

.catalog-detail__sections-row {
    display: flex;
    flex-direction: column;
    padding: 15px 0 0 0;
    border-bottom: 1px solid rgba(227, 232, 243, 0.1);
}

.catalog-detail__sections-header {
    flex-shrink: 0;
    width: 320px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 180%;
    color: var(--main-orange);
}

.catalog-detail__sections {
    display: flex;
    flex-wrap: wrap;
}

.catalog-detail__section-link {
    display: inline-flex;
    padding: 10px 18px;
    margin: 0 10px 15px 0;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1rem;
    border: 1px solid var(--main-orange);
    border-radius: 50px;
    color: var(--main-orange);
    transition: background-color 0.5s, border-color 0.5s, color 0.5s;
}

.catalog-detail__section-link:focus {
    background-color: #fff;
    border: 1px solid #fff;
    color: var(--main-orange);
}

.catalog-detail__section-link:hover {
    background-color: #fff;
    border: 1px solid #fff;
    color: var(--main-orange);
}

.catalog-detail__text {
    font-weight: 300;
    font-size: 1rem;
    line-height: 180%;
    color: #fff;
    overflow: hidden;
}

.catalog-detail__more-text {
    display: inline-flex;
    margin-top: 25px;
    border-bottom: 1px solid transparent;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1rem;
    color: var(--main-orange);
    transition: border-bottom 0.5s;
}

.catalog-detail__more-text:focus {
    border-bottom: 1px solid var(--main-orange);
}

.catalog-detail__more-text:hover {
    border-bottom: 1px solid var(--main-orange);
}

.catalog-detail__link-wrapper {
    display: flex;
    padding-top: 40px;
}

.catalog-detail__return-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 25px;
    margin: 0;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1rem;
    color: #fff;
    background-color: var(--main-orange);
    transition: color 0.5s, background-color 0.5s;
    cursor: pointer;
}

.catalog-detail__return-link::before {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 9px;
    height: 15px;
    margin-right: 10px;
    background-image: url('/upload/icons/btn-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}

.catalog-detail__return-link:hover {
    color: #fff;
    background-color: var(--main-orange-hover);
}

.catalog-detail-actions__container {
    position: relative;
}

.catalog-detail-actions__row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 32px;
}

.actions-more__wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 32px;
}

.catalog-detail-actions-item {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: calc((100% - 32px) / 2);
    height: 436px;
    margin: 0;
    border-radius: 5px;
}

.catalog-detail-actions-item::before {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, #212121 0%, rgba(47, 47, 47, 0.15) 85.89%);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.09);
}

.catalog-detail-actions-item__img {
    z-index: -2;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.catalog-detail-actions-item__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
}

.catalog-detail-actions-item__name {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.625rem;
}

.catalog-detail-actions-item__preview {
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 150%;
}

.catalog-detail-actions-item__bottom-row {
    display: flex;
}

.catalog-detail-actions-item__date {
    display: inline-flex;
    align-items: center;
    margin-right: 26px;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
    text-align: center;
}

.catalog-detail-actions-item__date::before {
    content: '';
    width: 19px;
    height: 14px;
    margin-right: 6px;
    background-image: url('/upload/icons/action-calendar.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.catalog-detail-actions-item__detail-link {
    position: relative;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1rem;
}

.catalog-detail-actions__more-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.catalog-detail__social-link {
    margin-right: 20px;
}

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

/*----- Конец детальной страницы каталога -----*/

/*----- Страница 404 -----*/
.page-404 {
    padding-bottom: 0;
}

.page-404__container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
}

.page-404__header {
    margin-bottom: 30px;
    font-weight: 900;
    font-size: 7.625rem;
    line-height: 8.9375rem;
    color: var(--main-orange);
}

.page-404__subheader {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 2.875rem;
    line-height: 3.375rem;
}

.page-404__text {
    max-width: 480px;
    margin-bottom: 35px;
    font-weight: 400;
    font-size: 1.3125rem;
    line-height: 25px;
    color: #b0b0b0;
}

.page-404__btn {
    align-self: flex-start;
}

.page-404__img {
    position: absolute;
    bottom: 0;
    right: 0;
}

/*----- Конец страницы 404 -----*/

/*----- Страница о центре -----*/
.about-text {
    font-weight: 300;
    font-size: 1rem;
    line-height: 180%;
}

.about-list {
    padding: 0 0 0 20px;
    margin: 0;
}

.about-list__item {
    font-weight: 300;
    font-size: 1rem;
    line-height: 180%;
}

.about-top {
    padding-top: 0;
}

.about-top__banner {
    z-index: 1;
    position: relative;
    margin-bottom: 40px;
}

.about-header {
    display: flex;
    padding: 0;
    margin: 0 0 40px 0;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.5rem;
}

.about-header::before {
    content: '';
    margin-right: 15px;
    border-right: 3px solid var(--main-orange);
}

.about-top__banner::before {
    z-index: 0;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, #212121 0%, rgba(47, 47, 47, 0.15) 85.89%);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.09);
}

.about-top__banner-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.about-top__banner-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    padding: 0 26px 28px 26px;
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 2.1875rem;
}

.about-top__banner-caption::before {
    content: '';
    margin-right: 15px;
    border-right: 3px solid var(--main-orange);
}

.about-features {
    padding: 0 0 40px 0;
}

.about-features__row {
    display: flex;
    justify-content: space-between;
}

.about-features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 160px / 5);
    margin-right: 40px;
}

.about-features__item:last-child {
    margin-right: 0;
}

.about-features__icon {
    height: 44px;
    text-align: center;
    margin-bottom: 30px;
}

.about-features__header {
    margin-bottom: 32px;
    text-align: center;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.125rem;
}

.about-features__text {
    margin-bottom: 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 180%;
    color: var(--main-orange);
}

.about-cafe {
    padding: 0 0 40px 0;
}

.about-cafe__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.about-cafe__item {
    z-index: 1;
    position: relative;
    height: auto;
    overflow: hidden;
}

.about-cafe__item::before {
    z-index: 0;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, #212121 0%, rgba(47, 47, 47, 0.15) 85.89%);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.09);
}

.about-cafe__item_half {
    width: 550px;
}

.about-cafe__item_small {
    width: 362px;
}

.about-cafe__item-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.about-cafe__item-caption {
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px 24px;
    margin: 0;
    width: 100%;
    background: rgba(33, 33, 33, 0.8);
    border-radius: 5px 5px 0px 0px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.625rem;
}

.about-brands {
    padding-top: 0;
}

.about-contacts {
    padding-top: 0;
}

.about-contacts__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.about-contacts__item {
    z-index: 1;
    position: relative;
    height: auto;
}

.about-seo__showmore{
 overflow:hidden;
}

.about-contacts__item::before {
    z-index: 0;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, #212121 -6.3%, rgba(33, 33, 33, 0) 63.66%);
}

.about-contacts__item_half {
    width: 550px;
}

.about-contacts__item_small {
    width: 362px;
}

.about-contacts__item-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.about-contacts__text {
    text-align: center;
}

/*----- Конец страницы о центре -----*/

/*----- Страница контактов -----*/
.contacts {
    padding-top: 0;
}

/*----- Конец страницы контактов -----*/

/*----- Страница арендаторам -----*/
.arenda {
    padding-top: 0;
}

.arenda__header {
    display: flex;
    padding: 0;
    margin: 0 0 40px 0;
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 2.1875rem;
}

.arenda__header::before {
    content: '';
    display: block;
    margin-right: 10px;
    border-left: 2px solid var(--main-orange);
}

#arenda-accordion .ui-accordion-header {
    position: relative;
    display: flex;
    padding: 24px;
    margin: 40px 0 0 0;
    background-color: transparent;
    border: 1px solid #747474;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.625rem;
    color: #fff;
}

#arenda-accordion .ui-accordion-header:first-child {
    margin-top: 0;
}

#arenda-accordion .ui-accordion-header::before {
    content: '';
    display: block;
    margin-right: 10px;
    border-left: 2px solid var(--main-orange);
}

#arenda-accordion .ui-accordion-header::after {
    content: '';
    position: absolute;
    right: 24px;
    display: flex;
    align-self: center;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #fff;
    transition: transform 0.5s;
}

#arenda-accordion .ui-accordion-header.ui-state-active {
    border-bottom: 1px solid #3a3a3a;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#arenda-accordion .ui-accordion-header.ui-state-active::after {
    transform: rotate(180deg);
}


#arenda-accordion .ui-accordion-header-icon {
    display: none;
}

#arenda-accordion .ui-accordion-content {
    padding: 24px;
    background-color: transparent;
    border: 1px solid #747474;
    border-top: none;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    color: #fff;
}

.arenda-form__row {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.arenda-form__row_margin_bottom {
    margin-bottom: 40px;
}

.arenda-form__input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 52px;
}

.arenda-form__input-wrapper:last-child {
    margin-right: 0;
}

.arenda-form__label {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.1875rem;
}

.arenda-form__label-required {
    color: #ff1111;
}

.arenda-form__input {
    display: flex;
    align-items: center;
    width: 254px;
    height: 38px;
    padding-left: 24px;
    background-color: transparent;
    border: 1px solid #747474;
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    transition: border-color 0.5s;
}

.arenda-form__input::placeholder {
    font-size: 1rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
}

.arenda-form__input:focus {
    border-color: var(--main-orange);
}

.arenda-form__input:hover {
    border-color: var(--main-orange);
}

.arenda-form__header {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 10px;
    margin: 0 0 40px 0;
    border-left: 2px solid var(--main-orange);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.625rem;
}

.arenda-form__header-desc {
    font-weight: 400;
    font-size: 1rem;
    line-height: 180%;
}

.arenda-form__textarea {
    display: flex;
    align-items: center;
    width: 555px;
    height: 210px;
    padding: 16px 24px;
    background-color: transparent;
    border: 1px solid #747474;
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    transition: border-color 0.5s;
}

.arenda-form__textarea::placeholder {
    font-size: 1rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
}

.arenda-form__textarea:focus {
    border-color: var(--main-orange);
}

.arenda-form__textarea:hover {
    border-color: var(--main-orange);
}

#arenda-form-file {
    display: none;
}

.arenda-form__file-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 555px;
    min-height: 50px;
    padding: 0 20px;
    border: 1px dashed rgba(229, 231, 235, 0.4);
    border-radius: 4px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.5s, border-color 0.5s;
}

.arenda-form__file-label:focus {
    color: var(--main-orange);
    border-color: var(--main-orange);
}

.arenda-form__file-label:hover {
    color: var(--main-orange);
    border-color: var(--main-orange);
}

.arenda-form__file-label svg {
    margin-right: 10px;
}

.arenda-areas__items {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.arenda-areas__item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 25px) / 2);
    margin: 0 25px 25px 0;
}

.arenda-areas__item:nth-child(2n) {
    margin-right: 0;
}

.arenda-areas__item:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.arenda-areas__item-img {
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
    border-radius: 5px;
    object-fit: cover;
}

.arenda-areas__item-desc {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
}

.arenda-areas__call {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.75rem;
}

.ui-widget-content a {
    color: #fff;
}

.ui-widget-content a:hover {
    color: var(--main-orange);
}

.arenda-areas__more-wrapper {
    padding-top: 25px;
}

/*----- Конец страницы арендаторам -----*/

/*----- Схема -----*/
.scheme {
    padding-top: 0;
}

.scheme__list-row {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.scheme-list {
    display: flex;
    list-style: none;
}

.scheme-list__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 248px;
    height: 42px;
    border: 1px solid #fff;
    border-right: none;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1;
    color: #fff;
    transition: color 0.5s, background-color 0.5s, border-color 0.5s;
    cursor: pointer;
}

.scheme-list__item:first-child {
    border-right: 1px solid #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.scheme-list__item:last-child {
    border-right: 1px solid #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.scheme-list__item:focus {
    background-color: var(--main-orange);
    border-color: var(--main-orange);
}

.scheme-list__item:hover {
    background-color: var(--main-orange);
    border-color: var(--main-orange);
}

.scheme-list__item_active {
    background-color: var(--main-orange);
    border-right: 1px solid var(--main-orange) !important;
    border-color: var(--main-orange);
}

.scheme-tabs-container {
    position: relative;
}

.scheme-map__tab {
    position: relative;
    display: none;
    margin-bottom: 20px;
}

.scheme-map__tab_active {
    display: block;
}

.scheme-map__wrapper {
    width: 100%;
    height: 400px;
}

.map-wrapper {
    position: relative;
}

.map-wrapper__img {
    max-width: unset;
}

.map-wrapper__svg {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}

.company-path {
    opacity: 0;
    fill: #fff;
    transition: opacity 0.3;
    cursor: pointer;
}

.company-path:hover {
    opacity: 0.7;
}

.company-path.start-opacity {
    opacity: 0.7;
}

.scheme-company-info {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    width: 156px;
    min-height: 154px;
    padding: 4px;
    background-color: var(--main-orange);
}

.scheme-company-info::after {
    content: ''; 
    position: absolute;
    left: calc(50% - 10px);
    bottom: -20px;
    border: 10px solid transparent;
    border-top: 10px solid var(--main-orange);
}

.scheme-company-info__img-wrapper {
    display: block;
    width: 100%;
    height: 112px;
    margin-bottom: 6px;
    background-color: #000;
}

.scheme-company-info__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scheme-company-info__name {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.125rem;
}

.map-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

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

.scheme-panel__icon-detail {
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.scheme-panel__icon-detail:hover {
    color: var(--main-orange);
}

.scheme-panel__icon-img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    object-fit: contain;
}

.scheme-panel__buttons {
    display: flex;
}

.scheme-panel__buttons_mobile {
    display: none;
}

.scheme-panel__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 54px;
    padding: 0;
    margin: 0;
    background: none;
    border: 1px solid #fff;
    border-right: none;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.scheme-panel__button:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.scheme-panel__button:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-right: 1px solid #fff;
}

.scheme-panel__button:hover {
    background-color: var(--main-orange);
}

.scheme-sections {
    padding-top: 40px;
}

.scheme-section {
    display: flex;
    flex-direction: column;
}

.scheme-section__list {
    display: flex;
    width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom: 1px solid var(--main-orange);
    list-style: none;
}

.scheme-section__item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    text-align: center;
    font-size: 14px;
    color: #585858;
    transition: color 0.3s, background-color 0.3s;
    cursor: pointer;
}

.scheme-section__item:hover {
    background-color: var(--main-orange);
    color: #fff;
}

.scheme-section__item:first-child {
    border-top-left-radius: 6px;
}

.scheme-section__item:last-child {
    border-top-right-radius: 6px;
}

.scheme-section__item_active {
    background-color: var(--main-orange);
    color: #fff;
}

.scheme-section__item_active:hover {
    background-color: var(--main-orange-hover);
    color: #fff;
}

.scheme-section__firms-list {
    display: none;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    padding: 25px 20px;
    background-color: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-left: 1px solid var(--main-orange);
    list-style: none;
}

.scheme-section__firms-list_active {
    display: flex;
}

.scheme-section__firms-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    color: #585858;
    transition: color 0.3s, background-color 0.3s;
}

.scheme-section__firms-link:focus {
    border: 1px solid var(--main-orange);
    color: var(--main-orange);
}

.scheme-section__firms-link:hover {
    background-color: var(--main-orange);
    color: #fff;
}

.scheme-section__firms-link:active {
    background-color: var(--main-orange);
    color: #fff;
}

.mobile-scheme-sections {
    display: none;
}
/*----- Конец схемы -----*/

/*----- Поиск в шапке сайта -----*/
.search {
    display: none;
    padding: 95px 0;
    background-color: #fbfbfb;
}

.search__header {
    padding: 0;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1;
    color: var(--main-orange);
}

.search-form__label {
    position: relative;
    height: 60px;
}

.search-form__input {
    width: 100%;
    height: 60px;
    padding-left: 20px;
    background-color: #fff;
    border: 1px solid #eae8e7;
    border-radius: 2px;
}

.search-form__submit {
    position: absolute;
    top: 18px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.search-form__submit svg path {
    fill: #333;
    transition: fill 0.3s;
}

.search-form__submit:hover svg path {
    fill: var(--main-orange);
}
/*----- Конец поиска в шапке сайта -----*/

/*----- Страница поиска -----*/
.search-page__form {
    margin-bottom: 40px;
}
/*----- Конец страницы поиска -----*/

/*----- Модальное окно схемы магазинов -----*/
#map-modal {
    width: 1200px;
    min-height: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    color: #000;
    overflow: hidden;
}

.map-modal {
    display: flex;
}

.map-modal__left {
    width: 335px;
}

.map-modal__logo {
    display: block;
    background-color: #000;
    border-radius: 10px;
}

.map-modal__logo-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.map-modal__right {
    display: flex;
    flex-direction: column;
    width: calc(100% - 335px);
    padding: 0 0 0 20px;
}

.map-modal__name {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    font-size: 32px;
    line-height: 36px;
}

.map-modal__phone {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.map-modal__phone::before {
    content: '';
    width: 21px;
    height: 21px;
    margin-right: 8px;
    background-image: url('/upload/icons/catalog-detail-phone.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.map-modal__preview {
    margin-bottom: 20px;
}

.map-modal__preview ul {
    padding-left: 20px;
}

.map-modal__detail {
    color: var(--main-orange);
}

.map-modal__detail:hover {
    text-decoration: underline;
}
/*----- Конец модального окна схемы магазинов -----*/