.demarche h1 {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.demarche h3 {
    color: var(--purple-light);
}

.demarche__icon {
    width: 15rem;
}

.icon__process {
    width: 100%;
}

.circle__grid div {
    border: 4px dashed var(--purple-light);
    background-color: white;
    padding: 1rem 0.75rem;
    font-weight: bold;

    margin-bottom: 2rem;
}

.demarche__steps-icons {
    display: none;
}

.demarche__step {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    text-align: center;
    border-radius: 50%;
    color: white;
    background-color: var(--orange);

    top: -1.25rem;
}

.card-service {
    position: relative;
    border: 2px dashed var(--purple-light);
    margin-bottom: 2rem;
    padding: 2rem;
}

.service-step {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -8%;
    width: 2rem;
    height: 2rem;
    text-align: center;
    border-radius: 50%;
    color: white;
    background-color: var(--purple-light);
}
.service-step.dark {
    background-color: var(--purple-dark);
}

.card-service.bg-purple-light {
    color: white;
    background-color: var(--purple-light);
}
.card-service.bg-purple-light h5 {
    color: white;
}
.card-service.bg-blue-light {
    background-color: var(--blue-light);
}

@media screen and (min-width: 1024px) {
    .icon__process {
        width: 60%;
    }
}

@media screen and (min-width: 1300px) {
    .demarche__icon{
        width: auto;
    }
    .container-demarche {
        max-width: 1180px;
    }
}

@media screen and (min-width: 1440px) {
    .base__circle {
        margin-top: 1rem;
        margin-left: 3rem;
        height: 450px;
        width: 450px;
    }
    
    .circle {
        position: relative;
        height: 100%;
        box-shadow: 0px 0px 25px #ccc;
        border-radius: 50%;
        background-color: var(--pink-lighter);
    }
    
    .rectangles {
        display: grid;
        height: 100%;
        position: absolute;
        left: -28%;
        grid-template:
            ". . . . a a a a a . . . ." auto
            ". . h h . . . . . e e . ." auto
            ". . h h . . . . . e e . ." auto
            ". . h h . i i i . e e . ." auto
            "d d d d . i i i . b b b b" auto
            ". . g g . i i i . f f . ." auto
            ". . g g . . . . . f f . ." auto
            ". . g g . . . . . f f . ." auto
            ". . . . c c c c c . . . ." auto;
    }
    
    .rectangles div {
        white-space: nowrap;
        border: 4px solid var(--purple-light);
        background-color: white;
        z-index: 5555;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        font-weight: bold;
        font-size: 1.2rem;
    }
    
    .a {
        grid-area: a;
    }
    .b {
        grid-area: b;
    }
    .c {
        grid-area: c;
    }
    .d {
        grid-area: d;
    }
    .e {
        grid-area: e;
    }
    .f {
        grid-area: f;
    }
    .g {
        grid-area: g;
    }
    .h {
        grid-area: h;
    }
    .i {
        grid-area: i;
    }
    
    .rectangles .e {
        height: 100%;
        grid-area: e;
    }
    .rectangles .f {
        height: 100%;
        grid-area: f;
        transform: rotate(60deg);
    }
    .rectangles .g {
        height: 100%;
        grid-area: g;
        transform: rotate(180deg);
    }
    .rectangles .h {
        height: 100%;
        grid-area: h;
        transform: rotate(240deg);
    }

    .demarche__step {
        top: unset;
    }

    .step__bottom-center {
        position: absolute;
        bottom: -12%;
        right: 47%;
    }

    .step__top-left {
        position: absolute;
        top: -9%;
        left: -4%;
    }
    
    .step__top-right {
        position: absolute;
        top: -9%;
        right: -4%;
    }

    .base__circle--large {
        height: 705px;
        width: 705px;
    }
    
    .base__circle--large .circle {
        box-shadow: none;
    }
    
    .circle__grid {
        display: grid;
        height: 100%;
        position: absolute;
        left: -40%;
        grid-template:
            ". . . . a a a a a a . . . ." auto
            ". . . . a a a a a a . . . ." auto
            ". . . . . . . . . . . . . ." 3rem
            "g g g g g . . . . b b b b b" auto
            "g g g g g . i i . b b b b b" auto
            ". . . . . . i i . . . . . ." 2rem
            "f f f f f . i i . c c c c c" auto
            "f f f f f . . . . c c c c c" auto
            ". . . . . . . . . . . . . ." 3rem
            ". e e e e e . . d d d d d ." auto
            ". e e e e e . . d d d d d ." auto;
    }
    
    .circle__grid div {
        z-index: 5555;
        font-size: 1.2rem;
        min-width: 27.5rem;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: space-around;

        margin-bottom: 0;
    }

    .circle__grid p {
        display: flex;
        justify-content: center;
        box-shadow: 0px 0px 25px #ccc;
        background-color: #fff;
        border-radius: 50%;
        width: 208px;
        height: 208px;
    }
    
    .circle__grid .i {
        position: relative;
    }
    
    .demarche__steps-icons {
        display: block;
    }

    .circle__grid .logo--short {
        max-width: 140px;
    }
    
    .circle__grid .arrow--top {
        position: absolute;    
        top: -25%;
        transform: rotate(-3deg);
    }
    .circle__grid .arrow--bottom {
        position: absolute;    
        bottom: -25%;
        transform: rotate(175deg);
    }
}
