
.full-width-image-text {
    position: relative;
    min-height: 400px;
    background-color: var(--blue); /* TODO: Please update the background color */
}

.full-width-image-text__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.full-width-image-text__content {
    position: relative;
    z-index: 2;
    margin: var(--section-margins) -22px;
    background-color: rgba(237,244,250,0.95);
    padding: 50px 22px;
}

.full-width-image-text__headline {
    margin-top: 0;
}

.full-width-image-text__description :last-child {
    margin-bottom: 0;
}

.full-width-image-text__content-text p:not(.sub-title) {
    font-size: 14px;
    color: #062D49;
    line-height: 1.428em;
}

.full-width-image-text__content-text .check-list {
    margin-bottom: 20px;
}

.full-width-image-text__content-text .check-list ul li {
    font-size: 16px;
    margin: 0 0 8px;
}

.full-width-image-text-form {
    padding: 25px 20px 35px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,50,98,0.2);
}

.form-col-btn {
    text-align: center;
    margin-top: 10px;
}

.full-width-image-text-form h3 {
    margin-bottom: 20px;
}

.full-width-image-text-right-form {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .full-width-image-text__content {
        padding: 70px 52px;
        margin-left: -52px;
        margin-right: -52px;
    }

    .full-width-image-text__content-text .check-list ul li {
        font-size: 18px;
    }

    .full-width-image-text__content-text p:not(.sub-title) {
        font-size: 16px;
    }

    .full-width-image-text__content-text .check-list {
        margin-bottom: 15px;
    }

    .full-width-image-text-right-form {
        margin-top: 40px;
    }

    .full-width-image-text-form {
        padding: 30px 25px 40px;
    }

    .full-width-image-text-form h3 {
        font-size: 26px;
    }

    .form-col-btn {
        text-align: left;
    }
}

.form-text {
    position: relative;
    background-color: #edf4fa;
}

@media (min-width: 1200px) {
    .full-width-image-text__content {
        margin-left: 0;
        margin-right: 0;
        padding: 65px 108px;
        border-radius: 10px;
    }

    .form-text--content-sidebar .full-width-image-text__content-flex {
        display: flex;
        justify-content: space-between;
    }

    .form-text--content-sidebar .full-width-image-text__content-text {
        width: calc(100% - 400px);
        padding-right: 60px;
        max-width: 671px;
    }

    .form-text--content-sidebar .full-width-image-text-right-form {
        width: 400px;
        margin: 0;
    }

    .full-width-image-text-form {
        padding: 33px 54px 45px;
    }
}


/* Full-Width Image + Text - Direct Text Overlay */
.full-width-image-text--direct-overlay .full-width-image-text__content {
    padding: 0 20px;
}

.full-width-image-text--direct-overlay .full-width-image-text__content {
    padding: 0 20px;
}

.full-width-image-text--direct-overlay .full-width-image-text__headline,
.full-width-image-text--direct-overlay .full-width-image-text__description p {
    color: #fff;
}

@media (min-width: 768px) {
    /* Overlay Color */
    .full-width-image-text--direct-overlay:before {
        content: '';
        position: absolute;
        z-index: 2;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: .75;
        background-color: #021A3C; /* TODO: Please update the background color */
        display: block;
    }
}

.form-text--no-image .full-width-image-text__content {
    padding-top: 0;
    padding-bottom: 0;
}