.image-text-list {
    position: relative;
}

.image-text-list__left {
    position: absolute;
    top: 0;
    left: 0;
}

.image-text-list__image {
    position: absolute;
    left: 0;
    width: 100%;
    height: 670px;
}

.image-text-list__image img {
    width: 100%;
    object-fit: cover;
}

.image-text-list__right {
    padding-top: 95px;
}

.image-text-list__top-title--wrapper, .image-text-list__bottom-title--wrapper {
    margin-bottom: 30px;
}

.image-text-list__top-title, .image-text-list__bottom-title {
    margin-bottom: 0;
    color: var(--gold);
}

.image-text-list__lead--wrapper {
    margin-bottom: 60px;
}

.image-text-list__lead {
    margin-bottom: 0;
    font-weight: var(--font-weight-thin);
}

.image-text-list__content {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.image-text-list__content:first-child {
    padding-top: 0;
}

.image-text-list__content--number {
    flex: 0 0 8%;
    margin-top: 3px;
    margin-right: 30px;
    margin-bottom: 0;
}

.image-text-list__content--text {
    margin-bottom: 0;
    font-weight: var(--font-weight-thin);
}

@media (max-width: 991px) {
    .image-text-list__left, .image-text-list__image {
        position: relative;
    }

    .image-text-list__image {
        max-height: 600px;
    }

    .image-text-list__right {
        padding-top: 30px;
    }

    .image-text-list__top-title--wrapper, .image-text-list__bottom-title--wrapper {
        margin-bottom: 20px;
    }

    .image-text-list__lead--wrapper {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .image-text-list__image {
        max-height: 400px;
    }
}