.section_1 {
    background-repeat: no-repeat;
    background-size: cover;
}

.h_100 {
    height: 100%;
}

.bg_e1e7f5 {
    background-color: #e1e7f5;
}

.capCard {
    border-radius: 20px;
    overflow: hidden;
    padding: 25px 20px;
    min-height: 300px;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 2px;
        border-radius: inherit;
        background: linear-gradient(90deg, #2D9CE6 0%, #52B6EC 35%, #82D7F3 100%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .capCardIcon {
        width: 80px;
        height: 80px;
        padding-bottom: 15px;
        margin-bottom: 10px;
        position: relative;

        &::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, #0075b8 0%, #56b6c5 100%);
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    &.whiteBox {
        border: 2px solid #fff;
        min-height: 250px;

        &::before {
            content: normal;
        }

        .capCardIcon {
            &::after {
                background: #fff;
            }
        }
    }
}

.section_4 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.whiteBg {
    background-color: #fff;
}

.lifecycleDiv {
    padding: 30px;
    background: linear-gradient(90deg,
            #ffffff 0%,
            #fdfefe 35%,
            #eef8fb 65%,
            #d9f1f4 82%,
            #bfe8ee 100%);
}

.section_9{
    .imgBox{
        width: 100%;
        height: 300px;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }
    }
}

/* --------------------------------------------------------------------------------
   Responsive
-------------------------------------------------------------------------------- */

/* the min-heights keep the cards level while they sit side by side; stacked they
   only add dead space under two lines of copy */
@media (max-width: 767px) {
    .capCard {
        min-height: 0;
        padding: 20px 18px;

        .capCardIcon {
            width: 64px;
            height: 64px;
            padding-bottom: 12px;

            &::after {
                width: 80px;
            }
        }

        &.whiteBox {
            min-height: 0;
        }
    }

    .lifecycleDiv {
        padding: 20px;
    }

    .section_9 .imgBox {
        height: 220px;
    }
}