.dko-key-points {
    padding: var(--global-vertical-padding) var(--global-lateral-padding);
}

.dko-key-points__title {
    margin-bottom: 40px;
}
.dko-key-points__title,
.dko-key-points__keypoint__title,
.dko-key-points__keypoint__text {
    text-align: center;
}

.dko-key-points__keypoints-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}



.dko-key-points__keypoint {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    row-gap: 5px;
    width: 386px;
}
.dko-key-points__keypoint--blue {
    background-color: var(--crf--shiny-blue);
    color: var(--crf--white);
    
    position: relative;
}
.dko-key-points__keypoint--blue::before {
    content: "";
    position: absolute;
    display: block;
    inset: 0px;
    background-image: url('./../../assets/images/svg/logo-carrefour--white.svg');
    background-size: 300% 100%;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
}
.dko-key-points__keypoint--blue:nth-child(1)::before {
    background-position: 0%;
}
.dko-key-points__keypoint--blue:nth-child(2)::before {
    background-position: 50%;
}
.dko-key-points__keypoint--blue:nth-child(3)::before {
    background-position: 100%;
}

.dko-key-points__keypoint--white {
    
}

.dko-key-points__key-point__img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.dko-key-points__keypoint--blue > .dko-key-points__key-point__img {
    filter: brightness(10);
}

.dko-key-points__keypoint--white > .dko-key-points__key-point__img {
}

.dko-key-points__keypoint__text {
    font-size: 16px;
    line-height: 24px;
}
@media screen and (max-width: 991px) {
    .dko-key-points__title {
        font-size: 32px;
        line-height: 36px;
    }
    .dko-key-points__keypoint__title {
        font-size: 24px;
        line-height: 36px;
    }
}
@media screen and (min-width: 992px) {
    .dko-key-points__title {
        font-size: 48px;
        line-height: 64px;
    }
    .dko-key-points__keypoint__title {
        font-size: 32px;
        line-height: 36px;
    }
}