.fw-bg-image {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.fw-bg-image::before {
    content: '';
    background: linear-gradient(#fff 0%, rgba(231, 239, 245, 0.6) 80%, rgba(231, 239, 245, 0) 100%);
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 660px;
    height: 100%;
    z-index: 1;
}

.fw-bg-image::after {
    content: '';
    bottom:  -50px;
    left: 0;
    width: 100%;
    background: linear-gradient(rgba(11, 29, 44, 0) 0%, #0b1d2c 70.87%, #0b1d2c 84.23%, rgba(11, 29, 44, 0) 100%);
    position: absolute;
    height: 250px;
}

.fw-bg-image__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fw-bg-image .section__intro {
    position: relative;
    z-index: 2;
}

.fw-bg-image .section__intro :where(p) {
    color: rgba(0, 0, 0, 0.5);
}

@media ( min-width: 768px ) {
    .fw-bg-image::before {
        background: linear-gradient(#fff 0%, rgba(231, 239, 245, 0.65) 80%, rgba(231, 239, 245, 0) 100%);
        height: 830px;
    }
}

@media ( min-width: 1025px ) {
    .fw-bg-image::before {
        height: 660px;
    }
}

@media ( min-width: 1200px ) {
    .fw-bg-image {
        padding: 120px 0 555px;
    }

    .fw-bg-image::before {
        height: 70%;
    }
}