:root {
    --font-family: 'Manrope', sans-serif;

    --black: #333;
    --white: #fff;
    --accent: #E63842;

    --dop-text-grey: #777777;
    --dop-text-grey-2: #616161;
    --dop-text-white: rgba(255, 255, 255, 0.7);

    --bg-grey: #f3f3f4;

    --line-grey-on-white: #ECECEC;

    --dark-filter: rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
}

html,
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

footer {
    flex-shrink: 0;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: var(--black);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    border: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    clip-path: inset(100%) !important;
    clip: rect(0 0 0 0) !important;
    overflow: hidden !important;
}

.grey-bg {
    background: var(--grey-bg);
}

.header {
    padding: 0;
}


.header {
    background: var(--white);
}

.header__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding: 0;
    position: relative;
}

.header__content::after {
    position: absolute;
    content: "";
    width: 580px;
    height: 1px;
    background: var(--line-grey-on-white);
    bottom: 20px;
    right: 0;
}

.header__content::before {
    position: absolute;
    content: "";
    width: 580px;
    height: 1px;
    background: var(--line-grey-on-white);
    bottom: 20px;
    left: 0;
}

.header__menu-mobile {
    padding-top: 20px;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 5px 0 0 0;
}

.logo__img {
    width: 195px;
    height: 115px;
}

.header__menu {
    display: flex;
    justify-content: center;
    padding-block: 20px;
    padding-right: 15px;
}

.menu__list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list__item {
    position: relative;
}

.menu-list__link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.menu-list__link:hover {
    color: var(--accent);
}

.menu-button {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 15px;
    background: var(--accent);
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
    height: 60px;
    width: 210px;
}

.nav-button {
    display: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    color: var(--dop-text-grey);

    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    border-radius: 15px;
    background: var(--bg-grey);
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
    height: 60px;
    width: 124px;
}

.nav-button__link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__menu-button {
    padding-top: 20px;
    position: relative;
}

.header__menu-dropdown-items {
    position: absolute;
    top: calc(100% + 11px);
    left: 0;
    width: max-content;
    background: var(--bg-grey);
    border-radius: 0 15px 15px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
}

.header__menu-dropdown-items::before {
    content: '';
    position: absolute;
    top: -12px;
    width: 276px;
    left: 0;
    height: 12px;
}

.header__menu-dropdown-items.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    padding: 20px 30px;
}

.menu-dropdown__link {
    display: block;
    padding: 5px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--black);

    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-dropdown__link:hover {
    color: var(--accent);
}

.menu-button.active {
    background: var(--black);
}

.menu-button:focus-visible {
    outline: none;
    background: var(--black);
}


.header__contacts {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-block: 20px;
}

.header__contacts-list {
    display: flex;
    align-items: center;
    height: 60px;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__contacts-item {
    text-align: right;
}

.header__contacts-item .separator {
    width: 1px;
    height: 26px;
    background: var(--line-grey-on-white);
}

.header__contacts-name {
    text-align: start;
    font-size: 14px;
    color: var(--dop-text-grey);
    font-family: var(--font-family);
}

.header__contacts-phone a {
    font-size: 18px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-family);
    transition: color 0.3s ease;
}

.header__contacts-phone a:hover {
    color: var(--accent);
}

.header__social {
    padding-top: 20px;
    flex-shrink: 0;
}

.social__list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social__list-link {
    display: flex;
    transition: transform 0.3s ease;
}

.social__list-link--wa:hover svg rect,
.social__list-link--tg:hover svg rect {
    fill: var(--accent);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--black);
    border-radius: 3px;
    transition: all 0.3s ease;
}




@media only screen and (min-width: 1260px) and (max-width: 1439px) {
    .header__content {
        gap: 15px;
    }

    .menu-button {
        width: 200px;
    }

    .menu__list {
        gap: 20px;
    }

    .header__contacts {
        gap: 20px;
    }

    .menu-button {
        padding: 12px 20px;
    }

    .header__menu {
        padding-right: 0px;
    }

    .header__contacts-list {
        gap: 20px;
    }

    .logo__img {
        width: 160px;
        height: auto;
    }

    .header__content::after {
        width: 520px;
        bottom: 0;
    }

    .header__content::before {
        width: 520px;
        bottom: 0;
    }

    .header__contacts {
        padding-left: 20px;
    }

}

@media (min-width: 1025px) {
    /* .menu-button:hover {
        background: var(--black);
    } */
}

@media only screen and (min-width: 960px) and (max-width: 1259px) {
    .header__content {
        gap: 0 15px;
    }

    .header__logo {
        order: 2;
    }

    .nav-button {
        display: flex;
    }

    .header__menu-mobile {
        order: 4;
    }

    .header__menu {
        display: none;
    }

    .header__contacts {
        display: none;
    }

    .header__social {
        order: 3;
    }

    .menu__list {
        justify-content: center;
    }

    .logo__img {
        width: 180px;
        height: 105px;
    }

    .header__content::after {
        width: 370px;
        bottom: 10px;
    }

    .header__content::before {
        width: 370px;
        bottom: 10px;
    }

    .header__menu-button {
        padding-right: 59px;
    }

}

@media(max-width: 959px) {
    .header__content {
        gap: 0 15px;
    }

    .header__logo {
        order: 2;
    }

    .nav-button {
        display: flex;
    }

    .header__menu-mobile {
        order: 4;
    }

    .header__menu {
        display: none;
    }

    .header__contacts {
        display: none;
        /* order: 2; */
    }

    .header__social {
        order: 3;
    }

    .menu__list {
        justify-content: center;
    }

    .logo__img {
        width: 170px;
        height: 100px;
    }

    .header__content::after {
        width: 280px;
        bottom: 5px;
    }

    .header__content::before {
        width: 280px;
        bottom: 5px;
    }

    .header__menu-button {
        padding-right: 59px;
    }

}

@media(max-width: 767px) {

    .header__content {
        position: relative;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        padding-bottom: 15px;
    }

    .header__content:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--line-grey-on-white);
    }

    .header__content:before {
        content: "";
        position: absolute;
        bottom: 86px;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--line-grey-on-white);
    }

    .header__menu-button {
        margin-top: 0;
        padding-top: 15px;
        padding-right: 0;
        max-width: 216px;
        width: 100%;
        order: 3;
    }

    .header__menu-mobile {
        margin-top: 0;
        padding-top: 15px;
    }

    .header__logo {
        flex-basis: 50%;
        order: 1;
        margin: 0;
        justify-content: flex-start;
    }

    .menu-button {
        max-width: 216px;
        height: 56px;
        width: 100%;
    }

    .header__social {
        order: 2;
    }

    .nav-button {
        margin-right: auto;
        height: 56px;
    }

    .social__list {
        display: flex;
        gap: 10px;
        margin: 0;
    }

    .social__list-link svg {
        width: 56px;
        height: 56px;
    }

    .logo__img {
        width: 170px;
        height: auto;
    }

}

@media(max-width: 575px) {

    .header__logo {
        order: 1;
    }

    .header__contacts {
        order: 2;
        padding: 20px 0;
    }

    .burger-menu {
        order: 3;
        margin-right: auto;
    }

    .social {
        order: 4;
        margin-left: auto;
    }

    .header__contacts-list {
        gap: 15px;
    }

    .social__list {
        gap: 8px;
    }

}


/* @media(max-width: 480px) {

    .header__logo {
        order: 1;
    }

    .header__contacts {
        order: 2;
        padding: 5px 0;
    }

    .burger-menu {
        order: 3;
        margin-right: auto;
    }

    .social {
        order: 4;
        margin-left: auto;
    }

    .header__contacts-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .header__contacts-item {
        text-align: left;
    }
    .header__contacts-item:nth-child(2) {
        display: none;
    }

    .social__list {
        gap: 8px;
    }

} */



/* Активное состояние бургера */
.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}





/* Активное состояние бургера */
.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/*---моб-меню--*/

.mobile-menu {
    display: none;
}


@media (max-width: 1260px) {


    .mobile-menu__items--menu {
        position: relative;
        padding-block: 40px;
    }

    .mobile-menu__items--menu::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 95%;
        height: 1px;
        color: var(--line-grey-on-white);
        background: var(--line-grey-on-white);
        transform: translateX(-50%);
    }

    .mobile-menu__items--contacts {
        margin-bottom: 30px;
    }

    .mobile-menu__items .social__list {
        justify-content: center;
    }

    .mobile-menu__link {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 16px;
        color: var(--black);
        text-decoration: none;
        padding: 12px 0;
        display: block;
        transition: color 0.3s ease;
    }

    .mobile-menu__link:hover {
        color: var(--accent);
    }

    .mobile-menu__contacts-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        font-family: var(--font-family);
    }

    .mobile-menu__contacts-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu__contacts-name {
        font-weight: 400;
        font-size: 15px;
        color: var(--dop-text-grey);
    }

    .mobile-menu__contacts-phone a {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 18px;
        color: var(--black);
    }

    .mobile-menu__contacts-phone a:hover {
        color: var(--accent);
    }



    .mobile-menu.active {
        display: block;
        text-align: center;

    }

    .mobile-menu {
        position: fixed;
        background-color: var(--white);
        padding: 15px 0 0 0;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 100;
        overflow: scroll
    }

    .mobile-menu__header {
        position: fixed;
        width: 80px;
        top: 0;
        right: 0;
        background-color: var(--white);
        z-index: 110;
        padding: 35px 30px;
    }

    .close-btn {
        position: fixed;
        right: 15px;
        top: 15px;
        z-index: 120;

        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu__items {
        padding: 0;
    }

    .mobile-menu__items--logo {
        margin-bottom: 20px;
    }

    .mobile-menu__list {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding-block: 20px;
    }

    .mobile-menu__items-contacts {
        background: var(--grey-bg);
        padding: 30px 0;
    }

    .mobile-menu__contacts-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

}

@media only screen and (max-width: 767px) {

    .mobile-menu {
        padding: 15px;
    }
}


/*------*/





/*----*/

.category__list {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px 20px;
}

.category-list__item {
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
}

.category-card {
    font-family: var(--font-family);
    position: relative;
    padding: 0;
    border-radius: 30px 30px 0 30px;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.category-card__number {
    position: absolute;
    top: 40px;
    left: 40px;
    font-weight: 400;
    font-size: 14px;
    line-height: 105%;
    color: var(--dop-text-white);
    z-index: 2;
    transition: color 0.3s ease;
}

.category-card__tittle {
    max-width: 80%;
    position: absolute;
    top: 80px;
    left: 40px;
    font-weight: 700;
    font-size: 33px;
    line-height: 112%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--white);
    z-index: 2;
    transition: color 0.3s ease;
}

.category-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 129%;
    overflow: hidden;
    border-radius: 30px;
}

.category-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.category-card__icon {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16.3%;
    aspect-ratio: 1;
    z-index: 2;
}

.category-card__icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.category-card:hover .category-card__icon svg rect {
    fill: var(--accent);
}

.category-card:hover .category-card__icon svg path {
    stroke: var(--white);
}

.category-slider.slick-slider {
    margin-bottom: 0;
}

.category-slider-wrapper {
    position: relative;
}

.category-slider .slick-list.draggable {
    margin: 0 -10px
}

.category-list__item {}

@media (max-width: 1259px) {
    .category-slider-wrapper {
        position: relative;
    }

    .category-slider .slick-list {
        overflow: visible;
    }
}

@media only screen and (max-width: 1259px) {

    .category__list.category-slider {
        display: block;
        margin: 0;
        padding: 0;
    }

    .category-slider .slick-track {
        display: flex;
    }

    .category-slider .slick-slide {
        height: auto;
    }

    .category-slider .slick-slide:last-child {
        margin-right: 0;
    }
}

@media only screen and (min-width: 1260px) and (max-width: 1439px) {
    .category-card__tittle {
        top: 75px;
        font-size: 30px;
    }
}


@media only screen and (min-width: 960px) and (max-width: 1259px) {

    .category-card__tittle {
        font-size: 30px;
        top: 60px;
        left: 30px;
    }

    .category-card__number {
        top: 30px;
        left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {

    .category-card__tittle {
        font-size: 25px;
        top: 60px;
        left: 30px;
    }

    .category-card__number {
        top: 30px;
        left: 30px;
    }
}

@media (max-width: 767px) {

    .category-card__tittle {
        font-size: 30px;
        top: 55px;
        left: 30px;
    }

    .category-card__number {
        top: 30px;
        left: 30px;
    }
}

@media (max-width: 575px) {


    .category-card__tittle {
        font-size: 24px;
        top: 55px;
        left: 30px;
    }

    .category-card__number {
        top: 30px;
        left: 30px;
    }

    .category-slider .slick-list {
        overflow: hidden;
    }
}



@media (max-width: 1259px) {
    .first-screen .container {
        margin: 0 0 0 calc((100vw - 960px) / 2 + 10px);
        min-width: 100%;
        overflow-x: auto;
        padding: 0;
        max-width: 960px;

        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;

        overflow-x: scroll;

        display: block;

    }

    .category__list {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        padding-right: calc(100vw - 940px);
        scroll-behavior: smooth;
        width: max-content;
        margin-left: 0;

        min-width: 100%;

    }

    .category-list__item {
        flex: 0 0 auto;
        width: calc(37.333vw - 40px);
        min-width: 300px;
        max-width: 460px;

        flex-shrink: 0;

    }

    .first-screen .container::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 959px) {
    .first-screen .container {
        margin: 0 0 0 calc((100vw - 768px) / 2 + 10px);
        max-width: 768px;
        overflow-x: scroll;
    }

    .category__list {
        padding-right: calc(100vw - 748px);
        min-width: 100%;
    }

    .category-list__item {
        width: calc(40.333vw - 40px);
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .first-screen .container {
        margin: 0 0 0 calc((100vw - 570px) / 2 + 15px);
        max-width: 570px;
        overflow-x: scroll;
    }

    .category__list {
        padding-right: calc(100vw - 540px);
        min-width: 100%;
    }

    .category-list__item {
        width: calc(65.333vw - 40px);
        flex-shrink: 0;
    }
}

@media (max-width: 575px) {
    .first-screen .container {
        margin: 0 0 0 calc((100vw - 100%) / 2 + 10px);
        max-width: 100%;
        overflow-x: scroll;
    }

    .category__list {
        padding-right: calc(100vw - (100% - 20px));
        min-width: 100%;
    }

    .category-list__item {
        width: calc(95.333vw - 40px);
        flex-shrink: 0;
    }
}




/*---*/


.button-application {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 8px;
    border: 1px solid #dbdadf;
    border-radius: 78px;
    padding: 18px 35px;
    width: 147px;
    height: 55px;
    cursor: pointer;

    transition: background 0.3s ease, border 0.3s ease, color 0.3s ease;
}

.button-application__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    color: var(--black);

    transition: color 0.3s ease;
}

.button-application__icon {
    display: flex;
    align-items: center;
    max-width: 18px;
}

.button-application__icon svg {
    width: 100%;
}

.button-application__icon svg path {
    transition: fill 0.3s ease;
}

.button-application:hover {
    background: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
}

.button-application:hover .button-application__text {
    color: var(--white);
}

.button-application:hover .button-application__icon svg path {
    fill: var(--white);
}


.button-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
    border: 1px solid var(--blue);
    border-radius: 78px;
    padding: 18px 35px;
    width: 100%;
    height: 55px;
    cursor: pointer;
    background: var(--blue);

    transition: background 0.3s ease, border 0.3s ease, color 0.3s ease;
}

.button-menu__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--white);

    transition: color 0.3s ease;
}

.button-menu__icon {
    display: flex;
    align-items: center;
    max-width: 28px;
}

.button-menu__icon svg path {
    transition: fill 0.3s ease;
}

.button-menu:hover {
    background: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
}

.button-menu:hover .button-menu__text {
    color: var(--white);
}

.button-menu:hover .button-menu__icon svg path {
    fill: var(--white);
}








.category {
    flex: 1 1 50%;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--grey-line-whitebc);
}

.category.active {
    border-bottom: 1px solid var(--blue);
}

.category__link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
}

.category.active .category__link {
    color: var(--blue);
}




/*---section--*/

.bg-grey {
    background: var(--bg-grey);
}

.section {
    padding: 60px 0;
}

.section.first-screen {
    padding-bottom: 80px;
}

.section--pages {
    padding: 0 0 80px 0;
}

.section--buyers {
    padding-top: 50px;
}

.section--object-info {
    padding-top: 40px;
}

.section--rescomp-advantages {
    padding-top: 0;
}

.section--layout {
    padding-bottom: 100px;
}

.section:last-child {
    padding-bottom: 100px;
}

.section.section--rescomp-object {
    padding-bottom: 60px;
}

.first-screen {
    padding-top: 20px;
}

.page__header {
    margin-block: 50px 40px;
}

.page__title {
    text-align: center;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--black);
}

.page__title--detail-object {
    text-align: start;
    margin-bottom: 5px;
}

.page__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 120%;
    color: var(--dop-text-grey-2);
}

#gotovye-zhilye-obekty .moduletable>h3 {
    display: none;
}

#pomeshcheniya-dlya-biznesa .moduletable>h3 {
    display: none;
}

.section__header {
    margin-bottom: 30px;
}

.section__title {
    text-align: center;

    font-family: var(--font-family);
    font-weight: 700;
    font-size: 30px;
    line-height: 125%;
    color: var(--black);
}

.section__subtitle p {
    margin: 0;
    text-align: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: var(--dop-text-grey-2);
}

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

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

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

@media(max-width: 575px) {
    .first-screen {
        padding-top: 30px;
    }

}


/*---/section--*/

/*---footer---*/

.footer {
    background: var(--black);
}

.footer__top-inner {
    display: flex;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
}

.footer__item {
    position: relative;
    flex: 1 1 33%;
    min-width: 0;
    padding: 40px;
}

.footer__item:first-child {
    padding-left: 0;
}

.footer__item:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__item::before {
    content: '';
    height: 0%;
    width: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.25);
    transition: height 2.5s;
}

.footer__menu-title,
.footer__contacts-title {
    margin-bottom: 40px;

    font-family: var(--font-family);
    font-weight: 600;
    font-size: 25px;
    line-height: 112%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--white);
}

.footer__menu-list {
    display: flex;
    flex-direction: column;
    gap: 7px 7px;
    white-space: nowrap;
}

.footer__menu-link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--white);

    transition: color 0.3s ease;
}

.footer__menu-link:hover {
    color: var(--accent);
}

.footer__contacts-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 20px 10px;
}

.footer__contacts-item:first-child {
    flex: 1 1 100%;
    width: 100%;
}

.footer__contacts-item {
    display: block;
    font-family: var(--font-family);
}

.footer__contacts-name {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: var(--dop-text-white);
}

.footer__contacts-phone a {
    font-weight: 600;
    font-size: 19px;
    color: var(--white);

    transition: color 0.3s ease;
}

.footer__contacts-phone a:hover {
    color: var(--accent);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
}

.policy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.policy-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.copyright-text,
.privacy-policy-link,
.site-creator-link {
    text-align: center;
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 112%;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.privacy-policy-link,
.site-creator-link {
    transition: color 0.3s ease;
}

.privacy-policy-link:hover,
.site-creator-link:hover {
    color: var(--accent);
}

@media only screen and (min-width: 960px) and (max-width: 1259px) {
    .footer__item {
        padding: 40px 20px 40px 20px;
    }

    .footer__menu-title,
    .footer__contacts-title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 960px) and (max-width: 1259px) {
    .footer__item {
        padding: 40px 20px 40px 20px;
    }

    .footer__menu-title,
    .footer__contacts-title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    .footer__item {
        flex: 1 1 50%;
    }

    .footer__item {
        padding-block: 40px;
        padding-right: 0;
    }

    .footer__item:nth-child(3) {
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer__item:nth-child(2) {
        border-right: 0;
    }

    .footer__menu-title,
    .footer__contacts-title {
        margin-bottom: 30px;
    }

}

@media(max-width: 767px) {
    .footer__item {
        flex: 1 1 100%;
    }

    .footer__item {
        padding-inline: 0;
    }

    .footer__item:nth-child(2) {
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-right: 0;
    }

    .footer__item:nth-child(3) {
        padding-left: 0;
    }

    .policy-container {
        align-items: flex-start;
    }

    .policy {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__menu-title,
    .footer__contacts-title {
        margin-bottom: 30px;
    }
}

@media(max-width: 575px) {

    .copyright-text,
    .privacy-policy-link,
    .site-creator-link {
        text-align: left;
    }
}

/*---/footer---*/




.category-objects__list {
    margin-bottom: 50px;
}

.category-objects__list:last-child {
    margin-bottom: 0;
}

.category-objects__title {
    margin-bottom: 25px;
    text-align: center;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 25px;
    color: var(--black);
}

.category-objects__title span {
    color: var(--accent);
    margin-right: 15px;
}

.objects__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
}

.objects-list__item {
    display: flex;
}

.objects-list__link {
    display: flex;
}

.object-card {
    font-family: var(--font-family);
    line-height: 125%;
    color: var(--black);
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-grey-on-white);
}

.object-card__img-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.object-card__img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 30px;
}

.object-card__icon {
    display: flex;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 30px;
    right: 30px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.object-card__icon svg {
    width: 50px;
    height: 50px;
}

.object-card__tittle {
    margin-bottom: 6px;
    font-size: 21px;
    line-height: 110%;
    font-weight: 600;
}

.object-card:hover .object-card__img {
    filter: brightness(0.85);
}

.object-card:hover .object-card__icon {
    opacity: 1;
    visibility: visible;
}

.object-card__address p {
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 120%;
    color: var(--dop-text-grey);
}

@media only screen and (min-width: 1260px) and (max-width: 1439px) {}

@media only screen and (min-width: 960px) and (max-width: 1259px) {

    .objects__list {
        grid-template-columns: repeat(2, 1fr);
        ;
    }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {

    .objects__list {
        grid-template-columns: repeat(2, 1fr);
        ;
    }
}

@media(max-width: 767px) {

    .objects__list {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 575px) {
    .category-objects__title {
        font-size: 20px;
    }

    .object-card__tittle {
        font-size: 18px;
    }

    .object-card__address p {
        font-size: 16px;
    }
}






.banks__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.banks__item {
    display: flex;
    flex: 0 1 calc(25% - 20px);
    height: 223px;
    /* width: 340px; */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 30px;
    background: var(--white);
    list-style: none;
}

.banks__item img {
    object-fit: contain;
    height: 223px;
}


@media(max-width: 1259px) {

    .banks__item {
        flex: 0 1 calc(33% - 20px);
    }
}

@media(max-width: 767px) {

    .banks__item {
        flex: 0 1 calc(50% - 20px);
    }

}

@media(max-width: 575px) {
    .banks__item {
        flex: 0 1 100%;
    }
}



.object-gallery {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.object-gallery__slides.slick-initialized.slick-slider {
    margin-bottom: 0px;
}

.object-gallery__slides--rescomp.slick-initialized.slick-slider {
    margin-bottom: 0px;
}

.object-gallery__slides .slick-track {
    display: flex;
    justify-content: start;
    margin: 0;
}

.object-gallery__slides--rescomp .slick-track {
    display: flex;
    justify-content: start;
    margin: 0;
}

.object-gallery__slides .slick-list {
    display: flex;
}

.object-gallery__slides--rescomp .slick-list {
    display: flex;
}

.object-gallery__slides .slick-list.draggable {
    margin: 0 -10px
}

.object-gallery__slides--rescomp .slick-list.draggable {
    margin: 0 -10px
}

.object-gallery__slide {
    padding-right: 10px;
    padding-left: 10px;
}

.object-gallery__image {
    width: 100%;
    object-fit: cover;
}

.object-gallery__image {
    border-radius: 30px;
}


.object-gallery__controls {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    width: 151px;
    height: 76px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 15px;
    z-index: 2;
    background: var(--white);
    border-top-left-radius: 30px;
}

.object-gallery__controls::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem var(--white);
}

.object-gallery__controls::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem var(--white);
}

.slick-arrow {
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.slick-arrow svg {
    width: 100%;
    height: 100%;
}

.slick-arrow svg rect {
    transition: fill 0.3s ease;
}

.slick-arrow:hover svg rect {
    fill: var(--accent);
}

.slick-arrow:hover svg path {
    stroke: var(--white);
}


.section__content--rescomp-object {
    display: flex;
    gap: 20px;
}

.object-info__card {
    max-width: 940px;
    background: var(--white);
    border-radius: 30px;
}

.object-info__card--rescomp-object {
    flex: 1 1 calc(50% - 20px);
    max-width: 100%;
}

.object-info__image-despription {
    position: relative;
    flex: 1 1 calc(50% - 20px);
}

.object-info__image-despription picture {
    width: 100%;
}

.object-info__image-despription picture img {
    position: sticky;
    top: 0;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;

}

.object-info__inner {
    padding: 40px;
}

.object-characteristics__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.object-characteristics__list--rescomp-object {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 35px 20px;
}

.object-characteristics__list-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.object-characteristics__list-item--rescomp-object {
    flex: 1 1 calc(50% - 20px);
}

.object-characteristics__icon {
    display: flex;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.object-characteristics__icon img {
    width: 100%;
    height: 100%;
}

.object-characteristics__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.object-characteristics__name {
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 17px;
}

.object-characteristics__value {
    text-wrap: balance;
}

.object-info__description {
    position: relative;
    padding-top: 25px;
}

.object-info__description::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--line-grey-on-white);
}

.object-description h3 {
    margin-bottom: 16px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 150%;
    color: var(--black);
}

.object-description__text p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 170%;
    color: var(--black);
    margin-bottom: 12px;
}

.object-description__text {
    max-height: 144px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
}

.object-description__text--rescomp-object {
    max-height: 280px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
}

.object-description__text:not(.expanded) {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.object-description__text--rescomp-object:not(.expanded) {
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
}

.object-description__text.expanded {
    max-height: max-content;
    display: block;
    -webkit-line-clamp: unset;
}

.object-description__text--rescomp-object.expanded {
    max-height: max-content;
    display: block;
    -webkit-line-clamp: unset;
}

.object-description__toggle-button {
    display: block;
    border: none;
    border-bottom: 1px solid #000;
    background-color: transparent;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 15px;
    line-height: 150%;
    color: var(--black);
    margin-top: 12px;
}

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

@media(max-width: 1259px) {
    .object-gallery__controls {
        width: 130px;
        height: 65px;
    }

    .slick-arrow {
        width: 50px;
        height: 50px;
    }

    .object-characteristics__list--rescomp-object {
        gap: 20px 20px;
    }

    .object-characteristics__list-item--rescomp-object {
        flex: 1 1 100%;
    }
}

@media(max-width: 959px) {
    .section__content--rescomp-object {
        flex-wrap: wrap;
    }

    .object-info__card--rescomp-object,
    .object-info__image-despription {
        flex: 1 1 100%;
    }

    .object-characteristics__list--rescomp-object {
        gap: 20px 20px;
    }

    .object-characteristics__list-item--rescomp-object {
        flex: 1 1 calc(50% - 20px);
    }
}


@media(max-width: 767px) {
    .object-gallery__controls {
        gap: 8px;
    }

    .object-gallery__controls {
        width: 123px;
        height: 65px;
    }

    .slick-arrow {
        width: 50px;
        height: 50px;
    }
}


@media(max-width: 575px) {

    .object-gallery__controls {
        width: 123px;
        height: 65px;
    }

    .object-characteristics__list-item--rescomp-object {
        flex: 1 1 100%;
    }
}






.advantages__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.advantages__list-item {
    flex: 1 1 calc(25% - 20px);
}

.advantage-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 40px;
    border: 1px solid var(--line-grey-on-white);
    border-radius: 30px;
}

.advantage-card__icon {
    max-width: 53px;
    width: 100%;
    height: 53px;
}

.advantage-card__icon svg {
    width: 100%;
    height: 1005;
}


@media(max-width: 1259px) {
    .advantages__list {
        flex-wrap: wrap;
    }

    .advantages__list-item {
        flex: 1 1 calc(50% - 20px);
    }

    .advantage-card {
        justify-content: flex-start;
    }
}

@media(max-width: 767px) {
    .advantages__list-item {
        flex: 1 1 100%;
    }
}





/*-Переопределение старых стилей--*/


nav ul li:first-child {
    padding-left: 0;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    border-right: none;
    padding: 0;
}

nav ul li a {
    display: inline;
    padding: 0;
}

nav ul li:first-child {
    padding-left: 0;
}

nav ul li:last-child {
    border: 0;
    padding-right: 0;
}

nav ul li:last-child a {
    color: var(--black);
}

.bg-2 {
    background: none;
    padding-bottom: 0;
}



/*----*/

.section--layout #layout h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
}

.apartaments-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.apartaments-table td a {
    color: var(--black);
    text-decoration: underline;
}

.apartaments-table td {
    padding: 4px 10px 4px 5px;
}

div.itemImageBlock {
    padding: 10px 0;
    margin: 0 0 50px 0;
}

.apartaments-table td {
    color: var(--black);
}

.apartaments-table .table-head {
    background: linear-gradient(to bottom, var(--accent) 39px, rgba(230, 56, 66, 0.5) 39px);
}

div.moduleItemExtraFields ul li span.moduleItemExtraFieldsValue {
    color: var(--black);
}

div.moduleItemExtraFields ul li span.moduleItemExtraFieldsLabel {
    display: block;
    float: left;
    font-weight: bold;
    margin: 0 4px 0 0;
    width: 45%;
    color: var(--black);
    font-size: 19px;
    text-transform: none;
    line-height: 1;
}

div.k2ItemsBlock ul li.floor-item div.moduleItemIntrotext.floor-scroll {
    height: 340px;
    width: 1440px;
    overflow: auto;
}

.category-house .itemImageBlock .floor-selection .highlighting:hover,
.category-house .itemImageBlock .floor-selection .highlighting.active {
    background: rgba(230, 56, 66, 0.5);
}

.apartaments-table .table-head td {
    color: var(--white);
}

.category-house div.itemHeader h2.itemTitle,
#choise-floor h2,
.apartament-item h2 {
    background: var(--line-grey-on-white);
    text-align: center;
    text-transform: uppercase;
    color: var(--black);
    padding: 10px 0;
}

map area,
.choice-flat map area.active {
    fill: var(--dop-text-grey);
    fill-opacity: 0.75;
}

.category-house .itemImageBlock .floor-selection .highlighting {
    width: 680px;
    height: 20px;
    background: transparent;
    text-align: right;
    margin-bottom: 4px;
    padding: 3px 20px 2px 0;
    cursor: pointer;
    box-sizing: content-box;
}

.category-house .itemImageBlock .floor-selection {
    position: absolute;
    top: 79px;
    right: 330px;
}

/* 
::-webkit-scrollbar {
    width: 10px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(115, 117, 115, 0); 
    border-radius: 5px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px #5e5858;
    background: #5e5858;
} */


#apartaments-table {
    margin-top: 50px;
}

.choose-flat a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px 15px 25px;
    text-decoration: none;
    color: var(--white);
    border: none;
    border-radius: 10px;
    background: var(--accent);
    width: 260px;
    font-size: 20px;
    text-wrap: nowrap;
    height: 60px;
    transition: background 0.3s ease;
    text-transform: none;
}

.choose-flat a:hover {
    background: var(--black);
}

#pop-up-window h2,
#pop-up-window-1 h2,
#pop-up-window-2 h2 {
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    padding: 20px 0 30px 0;
    text-align: center;
    margin: 0;
    color: var(--black);
}

#pop-up-window p,
#pop-up-window-1 p,
#pop-up-window-2 p {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: justify;
}

#pop-up-window .ya-form-wrapper,
#pop-up-window-1 .ya-form-wrapper,
#pop-up-window-2 .ya-form-wrapper {
    box-sizing: content-box;
}

#pop-up-window input,
#pop-up-window-1 input,
#pop-up-window-2 input {
    box-sizing: content-box;
}

#pop-up-window textarea,
#pop-up-window-1 textarea,
#pop-up-window-2 textarea {
    box-sizing: content-box;
}

#pop-up-window .wrapCallSubmit input,
#pop-up-window-1 .wrapCallSubmit input {
    background: var(--accent);
    color: var(--white);
    width: 260px;
    padding: 10px 0;
    cursor: pointer;
    height: 40px;
}

div.k2ItemsBlock ul li.floor-item div.moduleItemIntrotext.floor-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(230, 56, 66, 0.5);
    background: rgba(230, 56, 66, 0.5);
}

@media(max-width: 1439px) {
    .category-house .itemImageBlock .floor-selection {
        right: 250px;
    }

    div.k2ItemsBlock ul li.floor-item div.moduleItemIntrotext.floor-scroll {
        width: 1260px;
    }

    div.k2ItemsBlock ul li.floor-item div.moduleItemIntrotext.floor-scroll::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(230, 56, 66, 0.5);
        background: rgba(230, 56, 66, 0.5);
    }

}

@media(max-width: 1259px) {
    .category-house .itemImageBlock .floor-selection {
        right: 110px;
    }

    div.k2ItemsBlock ul li.floor-item div.moduleItemIntrotext.floor-scroll {
        width: 960px;
    }
}

@media(max-width: 959px) {
    .category-house .itemImageBlock .floor-selection {
        right: 25px;
    }

    div.k2ItemsBlock ul li.floor-item div.moduleItemIntrotext.floor-scroll {
        width: 768px;
    }

    .apartaments-table .table-head {
        background: linear-gradient(to bottom, var(--accent) 60px, rgba(230, 56, 66, 0.5) 39px);
    }

    div.k2ItemsBlock ul li.apartament-item div.moduleItemIntrotext,
    div.k2ItemsBlock ul li.apartament-item div.moduleItemExtraFields {
        width: 100%;
    }

    #choise-apartament div.k2ItemsBlock ul {
        padding: 0;
    }

    #choise-apartament div.k2ItemsBlock ul li div.moduleItemIntrotext {
        padding: 0;
        margin-bottom: 30px;
    }
}

@media(max-width: 767px) {
    .apartaments-table {
        width: 900px;
        margin: 0 auto;
    }

    #layout .category-house div.itemImageBlock {
        padding: 10px 0;
        margin: 0 0 90px 0;
    }

    .category-house .itemImageBlock .floor-selection {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        right: 0px;
        top: 100%;
    }

    .category-house .itemImageBlock .floor-selection .highlighting {
        width: 8.5%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px 8px 5px 8px;
        font-size: 18px;
    }

    .category-house .itemImageBlock .floor-selection .highlighting:before {
        content: "[";
    }

    .category-house .itemImageBlock .floor-selection .highlighting:after {
        content: "]";
    }

    div.k2ItemsBlock ul li.floor-item div.moduleItemIntrotext img {
        max-width: none;
    }

    .floor-scroll {
        overflow: auto;
    }

    div.moduleItemExtraFields ul li span.moduleItemExtraFieldsLabel {
        width: 60%;
    }

    div.k2ItemsBlock ul li.floor-item div.moduleItemIntrotext.floor-scroll {
        width: 535px;
    }

    .category-house .itemImageBlock .floor-selection .highlighting:hover,
    .category-house .itemImageBlock .floor-selection .highlighting.active {
        background: transparent;
        color: var(--accent);
        font-size: 20px;
    }

    .apartaments-table .table-head {
        background: linear-gradient(to bottom, var(--accent) 39px, rgba(230, 56, 66, 0.5) 39px);
    }

    #apartaments-table {
        display: block;
    }

    .apartaments-table__wrapper.floor-scroll {
        width: 535px;
    }

    #apartaments-table {
        margin-top: 0;
    }

}

@media(max-width: 575px) {
    #layout .category-house div.itemImageBlock {
        padding: 10px 0;
        margin: 0 0 120px 0;
    }

    div.k2ItemsBlock ul li.floor-item div.moduleItemIntrotext.floor-scroll {
        width: 100%;
    }

    div.k2ItemsBlock ul li.apartament-item div.moduleItemExtraFields {
        width: 100%;
        margin: 0 auto;
    }

    #choise-apartament div.k2ItemsBlock ul li {
        margin: 0 0 15px 0;
    }

    .choose-flat a {
        margin-top: 20px;
        font-size: 17px;
        height: 56px;
        width: 240px;
    }

    .apartaments-table__wrapper.floor-scroll {
        width: 100%;
    }

    div.moduleItemExtraFields ul li span.moduleItemExtraFieldsLabel {
        font-size: 17px;
    }
}