@font-face {
    font-family: "regular";
    src: url(../fonts/regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}


:root {
    --theme-pallete-white: #ffffff;
    --theme-pallete-black: #000000;
    --theme-pallete-orange: #b35c39;
    --theme-pallete-bronze: #b35c39;
    --theme-pallete-red: #5b0a0a;
    --theme-font-family-regular: "regular", Helvetica, Arial, sans-serif;
    --theme-primary-color: var(--theme-pallete-orange);
    --theme-secondary-color: var(--theme-pallete-bronze);
    --theme-page-background-color: var(--theme-pallete-red);
    --theme-text-color: var(--theme-pallete-white);
    --theme-title-font-family-regular: var(--theme-font-family-regular);
    --theme-button-color: var(--theme-primary-color);
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.header__mobile_bg {
    display: none;
}

.banner {
    display: block;
    width: 100%;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover
}

.name {
    font-size: 30px;
    font-weight: 200;
    color: var(--theme-page-background-color);
    margin-top: 30px;
}

.subname {
    font-size: 16px;
    color: var(--theme-page-background-color);
    margin-top: 15px;
    opacity: 0.5;
    margin-bottom: 30px;
}

h1 {
    text-transform: uppercase;
    font-family: var(--theme-font-family-regular);
    color: var(--theme-page-background-color);
    font-size: 60px;
    font-weight: 400;
    margin: 60px 0 60px 0;
    padding: 0px;
    line-height: 1;
}

h2 {
    text-transform: uppercase;
    font-family: var(--theme-font-family-regular);
    color: var(--theme-text-color);
    font-size: 30px;
    font-weight: 400;
}

h3 {
    text-transform: uppercase;
    font-family: var(--theme-font-family-regular);
    color: var(--theme-text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    padding: 0 0 20px 0;
    margin: 0;
}

.bottitle {
    opacity: 0.5;
    padding: 0 0 10px 0;
    margin: 0;
}

.page {
    font-family: var(--theme-font-family-regular);
    color: var(--theme-text-color);
    background-color: var(--theme-page-background-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    margin: 0px;
}

main {
    font-size: 16px;
    line-height: 150%;
    background-color: white;
    color: black;
}

.header {
    min-height: 100vh;
    display: grid;
}


.page__header {
    margin-bottom: 60px
}


.page__row-filter {
    display: flex;
    justify-content: space-between
}

.page__sort {
    margin-left: 60px
}


.page__title {
    margin: 0 0 10px 0
}

.page__pagination {
    margin-top: 60px
}


.page__bottom-content-block {
    margin-top: 60px;
    margin-bottom: -15px
}

.page__article {
    margin-bottom: 60px
}


body.into .header {
    height: 200px;
    min-height: 200px;
}

body.into .top-block {
    grid-template-columns: 300px 1fr;
}

body.into .top-block ._left .__menu {

    position: absolute;
    left: 0px;
    top: 210px;
    width: 100vw;
    padding: 10px;
}

body.into .top-block ._left .__menu * {
    color: var(--theme-page-background-color);
    font-size: 16px;
}

body.into .top-block ._left .__menu .buttondiv {
    display: none;
}

body.into .top-block ._left .__menu>.container>.menu .menu__list {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 70px;
}

body.into .top-block .right-imgs {
    grid-template-columns: repeat(2, 1fr);
    height: 200px;
}

body.into .top-block .right-imgs .one {
    grid-template-columns: repeat(4, 1fr);
    height: 200px;
}

body.into .top-block .right-imgs .two {
    grid-template-columns: repeat(1, 1fr);
    height: 200px;
}

body.into .top-block .right-imgs img {
    height: 200px;
}

body.into main {
    background-color: white;
    padding-top: 20px;
}

body.into ._inner {
    padding: 60px;

    margin: 0 auto;
}



.top-block {
    display: grid;
    grid-template-columns: 1fr 3fr;

}



.top-block ._left {
    padding: 60px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 60px;
    box-sizing: border-box;
}

.top-block ._left .logo {
    width: 100%;
    display: block;
    flex: 0 0 100px;
}

.top-block ._left .logo img {
    width: 100%;
    display: block;
}


.top-block ._left .__menu {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-block ._left .__menu .menu__item {
    margin-bottom: 10px;
}

.right-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.right-imgs .one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: stretch;
}

.right-imgs .two {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: stretch;
}

.right-imgs img {
    width: 100%;
    object-fit: cover;
}

.header__menu {
    position: relative;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100vw;
    box-sizing: border-box;
    background-color: var(--theme-page-background-color);
    border-bottom: 1px solid transparent;
    padding: 60px;
}

.header__menu--fixed {
    position: fixed;
    border-bottom-color: var(--theme-secondary-color)
}

.header__row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0 60px;
    align-items: center;
    padding: 60px 60px 0 60px;
}




.header__contacts {
    text-align: right
}

.header__contact {
    margin: 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 13px;
    text-align: right;
    color: var(--theme-pallete-black)
}


.header__phone {
    position: relative;
    display: inline-block;
    padding-right: 35px;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 22px;
    text-decoration: none;
    color: var(--theme-pallete-black);
    transition: color .22s ease
}


.header__phone::after {
    content: "";
    position: absolute;
    top: -2px;
    right: 0;
    bottom: 0;
    width: 25px;
    height: 25px;
    margin: auto;
    background: url(../img/phone-icon.png) center no-repeat;
    background-size: contain;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: scale-down;
    object-fit: scale-down
}

.header__phone:hover {
    color: var(--theme-primary-color)
}

.header__email {
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 13px;
    text-decoration: none;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--theme-pallete-black);
    transition: color .22s ease
}


.header__email:hover {
    color: var(--theme-primary-color)
}

.h_menu {
    display: none;
}

.header__mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px
}


.header__logo-mobile {
    max-width: 100px;
    margin-left: auto;
    margin-right: auto
}

.header__phone-mobile {
    display: block;
    width: 28px;
    height: 28px;
    background: url(../img/phone-icon.png) center no-repeat;
    background-size: contain;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: scale-down;
    object-fit: scale-down
}

.container {
    box-sizing: border-box;
    max-width: 100vw;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.container-conc {
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    margin-left: 0;
    margin-right: 0;
    align-content: center;
    background-image: url('../img/bg-concept.jpg');
    background-size: cover;
    background-color: #b35c39;
    color: white;
}

.container-white {
    box-sizing: border-box;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    align-content: flex-start;
    background-color: #fff;
    color: #5b0a0a;
}

.container-person {
    box-sizing: border-box;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    align-content: center;
    background-color: #fff;
    color: #5b0a0a;
    min-height: 100vh;
}

h2.red {
    color: #5b0a0a;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

div.sub {
    color: #5b0a0a;
    opacity: 0.5;
    padding-bottom: 30px;
}


.footer {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    position: relative;
}




.footer a {
    color: white;
    text-decoration: none;
}

.footer .soc-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
}

.footer .soc-list>a {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 10px;
    align-items: center;
    font-size: 18px;
}

.footer .soc-list>a ._img {
    padding: 8px;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: white;
}

.footer .soc-list>a ._img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.addr-tels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

._mini_logo {
    width: 180px;
    position: absolute;
    bottom: 70px;
}

.button {
    display: inline-block;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px 50px;
    border: none;
    border-radius: 10px;
    font-family: var(--theme-title-font-family-regular);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    color: var(--theme-pallete-white);
    transition: opacity .26s ease-in-out;
    cursor: pointer;
    color: var(--theme-pallete-white);
    border: 2px solid var(--theme-pallete-white);
}

.buttondiv {
    margin-top: 80px;
    margin-bottom: 30px;
}

.buttondiv2 {
    margin-top: 80px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.button2 {
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px 60px;
    border: none;
    border-radius: 10px;
    font-family: var(--theme-title-font-family-regular);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    color: var(--theme-pallete-white);
    transition: opacity .26s ease-in-out;
    cursor: pointer;
    color: var(--theme-pallete-red);
    border: 2px solid var(--theme-pallete-red);
}

.button--search::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    background: url(../img/search-icon-white.png) center no-repeat;
    background-size: contain
}

.button--fluid {
    max-width: 100%;
    width: 100%
}

.button:hover {
    opacity: .8
}

.logo {
    display: block
}

.logo__image {
    display: block;
    width: 100%;
    max-width: 200px;
    height: auto
}

.content-grid-three-cols {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    padding: 60px 0 120px
}

@media screen and (max-width:1199.98px) {
    .content-grid-three-cols {
        gap: 30px;
        padding: 30px 0 60px
    }
}

@media screen and (max-width:991.98px) {
    .content-grid-three-cols {
        grid-template-columns: 1fr
    }
}

@media screen and (max-width:991.98px) {
    .content-grid-three-cols__col-left {
        order: 2
    }
}

@media screen and (max-width:991.98px) {
    .content-grid-three-cols__col-middle {
        order: 0
    }
}

@media screen and (max-width:991.98px) {
    .content-grid-three-cols__col-right {
        order: 1
    }
}

.catalog-card {
    position: relative;
    display: block;
    background-color: var(--theme-pallete-white);
    transition: box-shadow .26s ease
}

.catalog-card:hover {
    box-shadow: 0 25px 100px 0 rgba(196, 157, 101, .5)
}

.catalog-card__link-wrap {
    display: block;
    text-decoration: none
}

.catalog-card__image {
    display: block;
    width: 100%;
    height: 170px;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover
}

.catalog-card__inner {
    box-sizing: border-box;
    padding: 15px 45px 15px 15px
}

.catalog-card__name {
    margin: 0 0 15px 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    text-decoration: none;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--theme-primary-color)
}

.catalog-card__text {
    margin: 0 0 15px 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    text-decoration: none;
    color: var(--theme-pallete-black)
}

.catalog-card__cost {
    margin: 0 0 5px 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 23px;
    line-height: 1;
    text-decoration: none;
    color: var(--theme-pallete-black)
}

.catalog-card__area {
    margin: 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    color: var(--theme-pallete-black)
}

.catalog-card__like {
    position: absolute;
    right: 15px;
    bottom: 33px
}

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

.list-blocks__item {
    margin: 0 0 30px 0;
    padding: 0
}

.list-blocks__item:last-child {
    margin-bottom: 0
}

.button-like {
    display: block;
    width: 22px;
    height: 20px;
    padding: 0;
    background: transparent url(../img/heart.png) center no-repeat;
    background-size: contain;
    border: none;
    cursor: pointer
}

.button-like--active {
    background-image: url(../img/heart-fill.png)
}

.block-title {
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2
}


.block-title--icon--build {
    display: flex;
    align-items: center
}

.block-title--icon--build::after {
    content: "";
    flex-shrink: 0;
    display: block;
    width: 45px;
    height: 45px;
    margin-left: 15px;
    background: var(--theme-secondary-color) url(../img/build.png) center no-repeat;
    background-size: 15px;
    border-radius: 50%
}

.block__title {
    margin: 0 0 30px 0
}

.article-card {
    display: block;
    box-sizing: border-box;
    padding-bottom: 30px;
    text-decoration: none;
    border-bottom: 1px solid var(--theme-secondary-color)
}

.article-card:hover .article-card__title {
    color: var(--theme-primary-color)
}

.article-card__image {
    display: block;
    width: 100%;
    height: 170px;
    margin-bottom: 10px;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover
}

.article-card__title {
    margin: 0 0 10px 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.25;
    text-decoration: none;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--theme-pallete-black);
    transition: color .22s ease
}

.article-card__text {
    margin: 0 0 10px 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    text-decoration: none;
    color: var(--theme-pallete-black)
}

.article-card__date {
    display: inline-block;
    margin: 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 10px;
    line-height: 1;
    color: var(--theme-secondary-color)
}

.main-article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
    margin: 0;
    padding: 0;
    list-style: none
}

.main-article-grid__item {
    margin: 0;
    padding: 0
}

.main-article-grid__item:first-child {
    grid-area: 1/1/2/3
}

.add-ad {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: var(--theme-primary-color) url(../img/add-ad-bg.jpg) center no-repeat;
    background-size: cover
}



.add-ad__inner {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.add-ad__text {
    margin: 0 25px 0 0;
    text-align: left;
    color: var(--theme-pallete-white)
}

.add-ad__icon {
    display: block;
    width: 45px;
    height: 45px;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: contain;
    object-fit: contain
}

.graph {
    display: block;
    transition: box-shadow .26s ease
}

.graph:hover {
    box-shadow: 0 25px 100px 0 rgba(196, 157, 101, .5)
}

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

.item-heading {
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 12px;
    color: var(--theme-pallete-black);
    opacity: .5
}

.item-value {
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 15px;
    color: var(--theme-pallete-black)
}

.ticket-price {
    margin: 0;
    padding: 0;
    list-style: none
}

.ticket-price__item {
    margin: 0 0 10px 0;
    padding: 0
}

.ticket-price__item:last-child {
    margin-bottom: 0
}

.ticket-price__heading {
    margin: 0 0 5px 0
}

.ticket-price__value {
    margin: 0
}

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

.price-list__item {
    display: flex;
    align-items: center;
    margin: 0 0 5px 0;
    padding: 0
}

.price-list__item:last-child {
    margin-bottom: 0
}

.price-list__heading,
.price-list__value {
    flex-basis: 50%;
    box-sizing: border-box;
    max-width: 50%;
    margin: 0
}

.price-list__heafing {
    padding-right: 10px
}

.dynamic {
    display: inline-flex;
    align-items: center;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #888481
}

.dynamic--down,
.dynamic--up {
    display: inline-block
}

.dynamic--down::before,
.dynamic--up::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 5px;
    margin-right: 3px;
    transform: translateY(-2px)
}

.dynamic--up::before {
    background: url(../img/green-arrow-up.svg) center no-repeat;
    background-size: contain
}

.dynamic--down::before {
    background: url(../img/red-arrow-up.svg) center no-repeat;
    background-size: contain;
    transform: translateY(-2px) rotate(180deg)
}

.grid-tile-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none
}

.grid-tile-banners__item {
    margin: 0;
    padding: 0
}

.tile-banner {
    display: block;
    max-width: 100%;
    height: 132.5px;
    -o-object-position: center right;
    object-position: center right;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (max-width:991.98px) {
    .tile-banner {
        height: auto
    }
}

.main-content__block {
    padding: 60px;
    position: relative;
    width: 100%;
    box-sizing: border-box;

}

.main-conc__block {
    max-width: 1200px;
    padding: 60px;
}

.content__block_with_big_img {
    padding: 60px;
    padding-left: 0px;
}

@media screen and (max-width:1199.98px) {
    .main-content__block {}
}

.main-content__block--last {
    margin-bottom: 0
}

.main-content__block-title {
    margin: 0 0 60px 0
}

@media screen and (max-width:1199.98px) {
    .main-content__block-title {
        margin-bottom: 30px
    }
}

.main-content__two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px
}

.main-content__two-cols .big_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:575.98px) {
    .main-content__two-cols {
        grid-template-columns: 1fr
    }
}

._img_title {
    width: 400px;
    margin-top: 30px;
    margin-bottom: 60px;
    display: block;
}

._img_title2 {
    width: 530px;
    margin-top: 30px;
    margin-bottom: 60px;
    display: block;
}

._img_title._centered {
    margin: 0 auto;
    margin-bottom: 60px;
}

._img_title2._centered {
    margin: 0 auto;
    margin-bottom: 60px;
}

._img_title.under {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0px;
}

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

.list-links__item {
    margin: 0 0 25px;
    padding: 0
}

.list-links__item:last-child {
    margin-bottom: 0
}

.list-links__link {
    position: relative;
    display: block;
    padding-left: 70px;
    text-decoration: none
}

.list-links__link:hover .list-links__title {
    color: var(--theme-secondary-color)
}

.list-links__icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: block;
    width: 45px;
    height: 45px;
    margin: auto;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: scale-down;
    object-fit: scale-down
}

.list-links__title {
    margin: 0 0 5px 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--theme-primary-color);
    transition: color .22s ease
}

.list-links__text {
    margin: 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 12px;
    text-decoration: none;
    color: var(--theme-pallete-black)
}

.text-block__title {
    max-width: 540px;
    margin: 0 0 15px;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    color: var(--theme-pallete-black)
}

.text-block p:not(.text-block__title) {
    margin: 15px 0;
    font-family: var(--theme-font-family-regular);
    font-size: 13px;
    line-height: 1.1
}

.insurance-block {
    max-width: 540px
}

.insurance-block__header {
    position: relative;
    margin-bottom: 45px;
    padding-right: 135px
}

@media screen and (max-width:575.98px) {
    .insurance-block__header {
        margin-bottom: 15px;
        padding-right: 100px
    }
}

.insurance-block__title {
    margin: 0 0 10px 0
}

.insurance-block__highlight {
    display: inline-block;
    padding: 5px 2px;
    color: var(--theme-pallete-white);
    background-color: var(--theme-primary-color)
}

.insurance-block__text {
    margin: 0;
    font-family: var(--theme-font-family-regular);
    font-size: 13px;
    line-height: 1.1
}

.insurance-block__certificate {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    max-width: 100px;
    width: 100%;
    height: auto;
    margin: auto
}

@media screen and (max-width:575.98px) {
    .insurance-block__certificate {
        max-width: 80px
    }
}

.insurance-block__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none
}

@media screen and (max-width:575.98px) {
    .insurance-block__list {
        grid-template-columns: 1fr;
        gap: 15px
    }
}

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

.insurance-block__logo {
    flex-basis: 50px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: scale-down;
    object-fit: scale-down
}

.insurance-block__text-item {
    margin: 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.1;
    color: var(--theme-pallete-black)
}

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

@media screen and (max-width:991.98px) {
    .menu__list {
        flex-direction: column
    }
}

.menu__item {
    margin: 0;
    padding: 0
}

@media screen and (max-width:991.98px) {
    .menu__item {
        margin-bottom: 30px
    }

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

.menu__link {
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 21px;
    line-height: 1.5;
    text-decoration: none;
    color: var(--theme-pallete-white);
    transition: color .22s ease
}

@media screen and (max-width:1199.98px) {
    .menu__link {
        font-family: var(--theme-font-family-regular);
        font-weight: 400;
        font-size: 18px;
        line-height: 1.5;
    }
}

.menu__link:hover {
    color: var(--theme-primary-color)
}

.search__wrap {
    position: relative
}

.search__input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 15px 45px 15px 30px;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    color: var(--theme-pallete-black);
    background: 0 0;
    border: 2px solid var(--theme-secondary-color);
    border-radius: 30px
}

.search__input::-moz-placeholder {
    color: var(--theme-secondary-color)
}

.search__input::placeholder {
    color: var(--theme-secondary-color)
}

.search__input:focus {
    outline: 0;
    border-color: var(--theme-primary-color)
}

.search__button {
    position: absolute;
    top: 0;
    right: 17px;
    bottom: 0;
    width: 14px;
    height: 14px;
    padding: 0;
    margin: auto;
    background: url(../img/search-icon-black.png) center no-repeat;
    background-size: contain;
    border: none;
    cursor: pointer
}

.header-contacts {
    margin: 0;
    padding: 0;
    list-style: none
}

.header-contacts__item {
    margin: 0 0 10px 0;
    padding: 0
}

.header-contacts__item:last-child {
    margin-bottom: 0
}

.button-hamburger {
    position: relative;
    box-sizing: border-box;
    display: block;
    padding: 0;
    width: 28px;
    height: 28px;
    background: 0 0;
    border: none;
    cursor: pointer
}

.button-hamburger--active .button-hamburger__line {
    background-color: transparent
}

.button-hamburger--active .button-hamburger__line::before {
    transform: translateY(-2px) rotate(45deg)
}

.button-hamburger--active .button-hamburger__line::after {
    transform: translateY(1px) rotate(-45deg)
}

.button-hamburger__line {
    position: absolute;
    top: 50%;
    left: 0;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    opacity: 1;
    transition: .36s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.button-hamburger__line::after,
.button-hamburger__line::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    transition: .36s;
    opacity: 1
}

.button-hamburger__line::before {
    top: -8px;
    transform-origin: left top
}

.button-hamburger__line::after {
    top: 8px;
    transform-origin: left bottom
}

.title {
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 36px;
    line-height: 1
}

@media screen and (max-width:1199.98px) {
    .title {
        font-size: 32px
    }
}

@media screen and (max-width:991.98px) {
    .title {
        font-size: 30px
    }
}

@media screen and (max-width:767.98px) {
    .title {
        font-size: 26px
    }
}

@media screen and (max-width:575.98px) {
    .title {
        font-size: 22px
    }
}

.main-filter {
    padding-top: 60px;
    padding-bottom: 60px;
    color: var(--theme-pallete-white);
    background: var(--theme-pallete-black) url(../img/main-filter-bg.jpg) center no-repeat;
    background-size: cover
}

@media screen and (max-width:1199.98px) {
    .main-filter {
        padding-top: 30px;
        padding-bottom: 30px
    }
}

.main-filter__title {
    margin: 0 0 60px;
    text-align: center
}

@media screen and (max-width:1199.98px) {
    .main-filter__title {
        margin-bottom: 30px
    }
}

.main-filter__inner {
    max-width: calc(50% - 60px);
    margin-left: auto;
    margin-right: auto
}

@media screen and (max-width:1199.98px) {
    .main-filter__inner {
        max-width: calc(50% - 30px)
    }
}

@media screen and (max-width:991.98px) {
    .main-filter__inner {
        max-width: 100%
    }
}

.main-filter__menu {
    margin: 0 0 25px 0
}

@media screen and (max-width:575.98px) {
    .main-filter__menu {
        margin-bottom: 10px
    }
}

.main-filter__search {
    margin: 0 0 25px 0
}

.main-filter__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none
}

@media screen and (max-width:575.98px) {
    .main-filter__controls {
        justify-content: center
    }
}

.main-filter__controls-item {
    margin: 0 30px 0 0;
    padding: 0
}

@media screen and (max-width:575.98px) {
    .main-filter__controls-item {
        margin-right: 20px
    }
}

.main-filter__controls-item:last-child {
    margin-right: 0
}

.main-filter__controls-link {
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    color: var(--theme-pallete-white);
    border-bottom: 1px solid var(--theme-pallete-white);
    opacity: .4;
    transition: opacity .22s ease, border-bottom-color .22s ease
}

@media screen and (max-width:991.98px) {
    .main-filter__controls-link {
        font-size: 14px
    }
}

.main-filter__controls-link:hover {
    opacity: 1
}

.filter-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none
}

@media screen and (max-width:575.98px) {
    .filter-menu {
        flex-wrap: wrap
    }
}

.filter-menu__item {
    margin: 0 30px 0 0;
    padding: 0
}

@media screen and (max-width:575.98px) {
    .filter-menu__item {
        margin: 0 20px 10px 0
    }
}

.filter-menu__item:last-child {
    margin-right: 0
}

.filter-menu__link {
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    color: var(--theme-pallete-white);
    border-bottom: 1px solid var(--theme-pallete-white);
    opacity: .4;
    transition: opacity .22s ease, border-bottom-color .22s ease
}

@media screen and (max-width:991.98px) {
    .filter-menu__link {
        font-size: 14px
    }
}

.filter-menu__link--active {
    border-bottom-color: transparent;
    opacity: 1
}

.filter-menu__link:hover {
    opacity: 1
}

.search-filter {
    box-sizing: border-box;
    padding: 15px;
    background-color: var(--theme-pallete-white)
}

.search-filter__wrap {
    display: flex;
    align-items: center
}

@media screen and (max-width:575.98px) {
    .search-filter__wrap {
        flex-direction: column;
        align-items: flex-start
    }
}

.search-filter__item {
    margin-right: 15px
}

@media screen and (max-width:575.98px) {
    .search-filter__item {
        margin-right: 0;
        margin-bottom: 15px
    }
}

.search-filter__item:last-child {
    margin-right: 0
}

@media screen and (max-width:575.98px) {
    .search-filter__item:last-child {
        margin-bottom: 0
    }
}

.select {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 0 0 0 15px;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 13px;
    color: var(--theme-pallete-black);
    background: transparent url(../img/dropdown.svg) center left no-repeat;
    background-size: 8px;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.select:focus {
    outline: 0
}

.select-wrap {
    box-sizing: border-box;
    padding: 15px;
    background-color: var(--theme-pallete-white)
}

.content-grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    padding: 0 0 120px
}

@media screen and (max-width:1199.98px) {
    .content-grid-two-cols {
        gap: 30px;
        padding: 0 0 60px
    }
}

@media screen and (max-width:991.98px) {
    .content-grid-two-cols {
        grid-template-columns: 1fr
    }
}

@media screen and (max-width:991.98px) {
    .content-grid-two-cols__col-left {
        order: 1
    }
}

.content-grid-two-cols__col-right {
    overflow: hidden
}

@media screen and (max-width:991.98px) {
    .content-grid-two-cols__col-right {
        order: 0
    }
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    margin: 0;
    padding: 0;
    list-style: none
}

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

.breadcrumbs__item::after {
    content: "";
    display: inline-flex;
    width: 6px;
    height: 9px;
    margin-left: 10px;
    background: url(../img/arrow-right.png) center no-repeat;
    background-size: contain
}

.breadcrumbs__item:last-child {
    margin-right: 0
}

.breadcrumbs__item:last-child::after {
    content: none
}

.breadcrumbs__item:last-child .breadcrumbs__link {
    text-decoration: none;
    color: var(--theme-pallete-black)
}

.breadcrumbs__item:last-child .breadcrumbs__link:hover {
    color: var(--theme-pallete-black)
}

.breadcrumbs__link {
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 10px;
    text-decoration: none;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--theme-secondary-color);
    transition: .22s ease
}

.breadcrumbs__link:hover {
    color: var(--theme-pallete-orange)
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 0;
    padding: 0;
    list-style: none
}

@media screen and (max-width:1199.98px) {
    .catalog-grid {
        gap: 30px
    }
}

@media screen and (max-width:991.98px) {
    .catalog-grid {
        grid-template-columns: 1fr
    }
}

.catalog-grid__item {
    margin: 0;
    padding: 0
}

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

.pagination__item {
    margin: 0 5px 0 0;
    padding: 0
}

.pagination__item:last-child {
    margin-right: 0
}

.pagination__link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 7px 15px;
    width: 40px;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    color: var(--theme-pallete-black);
    background-color: var(--theme-pallete-white);
    transition: color .22s ease, background-color .22s ease
}

.pagination__link--current {
    color: var(--theme-pallete-white);
    background-color: var(--theme-pallete-orange)
}

.pagination__link:hover {
    color: var(--theme-pallete-white);
    background-color: var(--theme-pallete-orange)
}

.form__row {
    margin-bottom: 20px
}

.form__two-cols {
    display: flex;
    align-items: flex-end;
    justify-content: space-between
}

.form__line {
    flex-shrink: 0;
    width: 7px;
    height: 2px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: var(--theme-pallete-black);
    transform: translateY(-23px)
}

.form__group {
    position: relative;
    display: block;
    width: 100%
}

.form__name {
    display: inline-block;
    margin-bottom: 8px;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 11px;
    line-height: 1;
    color: var(--theme-pallete-black)
}

.form__input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 15px 20px;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    color: var(--theme-pallete-black);
    background: 0 0;
    border: 2px solid var(--theme-secondary-color);
    border-radius: 30px;
    transition: border-color .22s ease
}

.form__input::-moz-placeholder {
    color: var(--theme-secondary-color)
}

.form__input::placeholder {
    color: var(--theme-secondary-color)
}

.form__input:focus {
    outline: 0;
    border-color: var(--theme-primary-color)
}

.form__text {
    margin: 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 11px;
    line-height: 1.2;
    color: var(--theme-pallete-black)
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 60px;
    margin: 0;
    padding: 0;
    list-style: none
}

@media screen and (max-width:1199.98px) {
    .article-grid {
        gap: 30px
    }
}

@media screen and (max-width:767.98px) {
    .article-grid {
        grid-template-columns: 1fr
    }
}

.article-grid__item {
    margin: 0;
    padding: 0
}

.article__title {
    max-width: 540px;
    margin: 0 0 15px;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    color: var(--theme-pallete-black)
}

.article p:not(.article__title) {
    margin: 15px 0;
    font-family: var(--theme-font-family-regular);
    font-size: 13px;
    line-height: 1.1
}

.article img {
    display: inline-block;
    max-width: 245px;
    width: 100%;
    height: auto;
    margin: 0 0 60px 60px;
    float: right
}

@media screen and (max-width:1199.98px) {
    .article img {
        margin-bottom: 30px;
        margin-left: 30px
    }
}

@media screen and (max-width:576.98px) {
    .article img {
        float: none;
        display: block;
        max-width: 100%;
        margin: 0 auto 30px
    }
}

.article__date {
    display: inline-block;
    margin-top: 45px;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 10px;
    line-height: 1;
    color: var(--theme-secondary-color)
}

@media screen and (max-width:1199.98px) {
    .article__date {
        margin-top: 15px
    }
}

.sort-by {
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 10px;
    text-decoration: none;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    white-space: nowrap;
    color: var(--theme-secondary-color);
    transition: .22s ease
}

.sort-by:hover {
    color: var(--theme-pallete-orange)
}

.characteristics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 60px;
    margin: 0;
    padding: 60px;
    background-color: var(--theme-pallete-white);
    list-style: none
}

@media screen and (max-width:1199.98px) {
    .characteristics {
        gap: 10px 30px;
        padding: 30px
    }
}

@media screen and (max-width:767.98px) {
    .characteristics {
        grid-template-columns: 1fr;
        padding: 10px
    }
}

.characteristics__item {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0
}

.characteristics__name {
    box-sizing: border-box;
    display: inline-block;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.15;
    color: var(--theme-secondary-color)
}

@media screen and (max-width:575.98px) {
    .characteristics__name {
        flex-basis: 50%;
        max-width: 50%
    }
}

.characteristics__value {
    box-sizing: border-box;
    display: inline-block;
    margin-left: 15px;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.15;
    text-align: right;
    color: var(--theme-pallete-black)
}

@media screen and (max-width:575.98px) {
    .characteristics__value {
        flex-basis: 50%;
        max-width: 50%
    }
}

.object {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    background-color: var(--theme-pallete-white)
}

@media screen and (max-width:767.98px) {
    .object {
        grid-template-columns: 1fr
    }
}

.object__left-col {
    margin-right: 30px;
    padding-bottom: 25px;
    overflow: hidden
}

@media screen and (max-width:1199.98px) {
    .object__left-col {
        margin-right: 10px
    }
}

@media screen and (max-width:767.98px) {
    .object__left-col {
        margin-right: 0
    }
}

.object__right-col {
    box-sizing: border-box;
    padding: 60px 60px 60px 30px;
    text-align: center
}

@media screen and (max-width:1199.98px) {
    .object__right-col {
        padding: 20px 20px 20px 10px
    }
}

@media screen and (max-width:767.98px) {
    .object__right-col {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto
    }
}

.object__name {
    margin: 0 0 20px 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.1;
    text-align: left;
    color: var(--theme-pallete-black)
}

.object__top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    text-align: left
}

.object__info {
    margin-right: 15px
}

.object__price {
    margin: 0 0 5px 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 23px;
    line-height: 1;
    color: var(--theme-pallete-black)
}

.object__area {
    margin: 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: var(--theme-pallete-black)
}

.object__like {
    transform: translateY(2px)
}

.object__avatar {
    display: block;
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    border-radius: 50%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover
}

.object__manager-name {
    margin: 0 0 10px 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--theme-primary-color)
}

.object__manager-position {
    margin: 0 0 20px 0;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    color: var(--theme-pallete-black)
}

.object__manager-phone {
    display: inline-block;
    margin-bottom: 15px;
    font-family: var(--theme-font-family-regular);
    font-weight: 400;
    font-size: 22px;
    text-decoration: none;
    color: var(--theme-pallete-black);
    transition: color .22s ease
}

.object__manager-phone:hover {
    color: var(--theme-primary-color)
}

.object__gallery {
    margin-bottom: 25px
}

.object__thumbs {
    position: relative;
    padding-left: 50px;
    padding-right: 50px
}

@media screen and (max-width:991.98px) {
    .object__thumbs {
        padding-left: 30px;
        padding-right: 30px
    }
}

.object__gallery-arrow-next,
.object__gallery-arrow-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    width: 10px;
    height: 16px;
    margin: auto;
    padding: 0;
    background: transparent url(../img/arrow-right.png) center no-repeat;
    background-size: contain;
    border: none;
    cursor: pointer
}

.object__gallery-arrow-next::after,
.object__gallery-arrow-prev::after {
    content: none
}

.object__gallery-arrow-next {
    right: 20px
}

@media screen and (max-width:991.98px) {
    .object__gallery-arrow-next {
        right: 10px
    }
}

.object__gallery-arrow-prev {
    left: 20px;
    transform: scale(-1, -1)
}

@media screen and (max-width:991.98px) {
    .object__gallery-arrow-prev {
        left: 10px
    }
}

.messengers {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none
}

.messengers__item {
    margin: 0 5px 0 0;
    padding: 0
}

.messengers__item:last-child {
    margin-right: 0
}

.messengers__link {
    display: block;
    transition: opacity .22s ease
}

.messengers__link:hover {
    opacity: .8
}

.messengers__icon {
    display: block;
    width: 22px;
    height: 22px;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover
}


.map img {
    width: 100%
}

.swiper {
    width: 100%;
    aspect-ratio: 1.6;
}

.atmo-block {}

.atmo-block .swiper-slide {
    object-fit: cover;
}

.atmo-block ._img_title {
    z-index: 5;
    margin-top: 30px;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    opacity: 0.8;
}

.swiper-products {
    max-width: 1200px;
    margin: 0 auto;
}

.swiper-products .swiper-slide {}

.swiper-products .swiper-slide img {
    width: 100%;
}

.swiper-products .swiper-slide ._desc {
    margin-top: 15px;
}

.swiper-products .swiper-slide ._price {
    margin-top: 15px;
    font-size: 30px;
    font-weight: 200;
}

.swiper-products .swiper-slide ._price .weight {
    display: inline-block;
    padding-left: 15px;
    font-size: 18px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery A img {
    width: 100%;
    object-fit: cover;

}