не работает position absolute

не могу понять в чем беда, использовал position relative на секции чтобы сделать его родителем для absolute, указал отступ, но все равно absolute не применяется( sass проекта

html проекта

что получается что должно получится

.uber_car {
    position: relative;
    min-height: 896px
}

.uber_car .possibilities {
    height: 499px;
    background-color: #070716;
    padding: 57px 0 138px 0
}

.uber_car .possibilities .title {
    width: 112px;
    height: 24px;
    background-color: #fff;
    font-size: 11px;
    font-weight: 100;
    text-transform: uppercase;
    color: #070716;
    text-align: center;
    margin: 0 auto;
    padding: 5px 0 5px 0
}

.uber_car .possibilities .subtitle {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-top: 32px
}

.uber_car .possibilities .description {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-top: 19px
}

.uber_car .possibilities .uber_car_img {
    position: absolute;
    top: 232px
}
<section class="uber_car">
        <div class="possibilities">
            <div class="title">
                Возможности
            </div>
            <div class="subtitle">
                Выбор - отличная штука!
            </div>
            <div class="description">
                Закажите автомобиль, который подходит вам по стилю и бюджету
            </div>
        </div>
        <div class="uber_car_img"></div>
            <img src="img/bg/uber_car.png" alt="uber_car_img">
        </div>
        <div class="subdescription">
            Машины на каждый день. <br>
            Лучше, быстрее и дешевле, чем такси
        </div>


Ответы (0 шт):