.apartment-exchange {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    background: #ffffff;
    border-radius: 20px;
    padding: 16px;
}

.apartment-exchange__item {}

.apartment-exchange__item-text {
    padding: 22px;
    width: 35%;
    display: flex;
    flex-direction: column;
}

.apartment-exchange__item-text .h2 {
    margin-bottom: 21px;
}

.apartment-exchange__item-text .button-primary {
    margin-top: auto;
}

.apartment-exchange__item-img {
    height: 567px;
    width: 50%;
}

.apartment-exchange__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .apartment-exchange {
        flex-direction: column;
    }

    .apartment-exchange__item-text {
        width: 100%;
    }

    .apartment-exchange__item-text .button-primary {
        margin-top: 50px;
    }

    .apartment-exchange__item-img {
        height: 367px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .apartment-exchange__item-text {
        padding: 0;
    }
}