@media all {
    .catalog-card {
        box-shadow: 0 2px 4px 0 transparent;
        position: relative;
        background-color: #fff;
        border-radius: 20px;
        transition: box-shadow .3s;
    }

    .catalog-card:hover {
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    }

    .catalog-card__image-w {
        position: relative;
    }

    .catalog-shares-label {

    }

    .catalog-card__image {
        height: 453px;
        display: block;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 20px 20px 0 0;
    }

    .catalog-card__body {
        padding: 20px;
    }

    .catalog-card__content {

    }

    .catalog-card__name.h3 {
        display: block;
        margin-bottom: 20px;
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 20px;
        line-height: 110%;
        letter-spacing: 0.02em;
        color: var(--dark-blue) !important;
        text-decoration: none;
        text-transform: none;
    }

    .catalog-card__desc {
        margin-bottom: 51px;
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: rgba(29, 46, 74, 0.7);
    }

    .catalog-card__address {
        transition: .2s ease-in-out;
    }

    .catalog-card:hover .catalog-card__address {
        min-height: 0 !important;
    }

    .catalog-card__address .map-link {
        text-decoration: none;
        display: inline-block;
        max-width: 100%;
        font-size: 13px;
        line-height: 1.4;
        max-height: 36px;
        overflow: hidden;
        padding-left: 15px;
        transition: .2s ease-out;
    }

    .catalog-card:hover .catalog-card__address .map-link {
        max-height: 1000px !important;
        transition: .2s ease-in;
    }

    .catalog-card__address .map-link__icon {
        position: absolute;
        margin-top: 2px;
        margin-left: -15px;
    }

    .catalog-card__hidden-content {
        max-height: 0;
        overflow: hidden;
        transition: .2s ease-out;
    }

    .catalog-card:hover .catalog-card__hidden-content {
        padding: 10px 0 0;
        max-height: 20em;
        transition: .2s ease-in;
    }

    .catalog-card__date {
        font-size: 13px;
        color: #888888;
    }

    .catalog-card__properties {
        font-size: 13px;
        color: #333;
        margin: 10px 0 12px;
    }

    .catalog-card__property {
        display: flex;
        justify-content: space-between;
    }

    .catalog-card__property + .catalog-card__property {
        margin-top: 11px;
    }

    .catalog-card__property-name {
        margin-right: 3px;
    }

    .catalog-card__property-value {
        color: #888888;
    }

    .catalog-card__footer {
        position: relative;
        max-height: 59px;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        font-size: 23px;
        margin-top: 12px;
    }

    .catalog-card__footer:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        display: block;
        width: calc(100% - 40px);
        height: 1px;
        transform: translateX(-50%);
        background-color: #e0dfe4;
    }

    .catalog-card__price {
        display: block;
        line-height: .8;
        max-width: 100%;
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 16px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--dark-blue);
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .catalog-card__favorite-link {
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .catalog-card__image {
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .catalog-card__image {
        height: 280px;
    }
}

@media (max-width: 560px) {
    .catalog-card__name.h3 {
        font-size: 20px;
        text-align: left;
    }

    .catalog-card__image {
        height: 259px;
    }

    .section__header h1 {
        font-size: 30px !important;
    }
}

