
/* général */ 
.gap {
    --bs-gutter-X: 1rem;
    --bs-gutter-y: 1rem;
}
/* //////////////////////////////////////////// section 1 */
.font_hero {
    font-family: "roc-grotesk", sans-serif;
    font-weight: 800;
    font-size : calc(40px + 6vw);
    color: #007bff;
    margin: 0;
}
.crochet_start, .crochet_end {
    border-top: calc(3px + 1vw) solid #000; 
    border-bottom: calc(3px + 1vw) solid #000; 
    width: calc(25px + 3vw);
}
.crochet_start {
    border-left: calc(3px + 1vw) solid #000; 
    border-radius: calc(10px + 1vw) 0px 0 calc(10px + 1vw);
}
.crochet_end {
    border-right: calc(3px + 1vw) solid #000; 
    border-radius: 0px calc(10px + 1vw) calc(10px + 1vw) 0px;
}
.text_barré {
    color: #c6c6c6;
    position: relative;
}
.text_barré::after {
    content: "";
    background: url("../assets/rature.svg") center center no-repeat;
    background-size: cover ;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
dotlottie-player {
    width: 200px; 
}

/* //////////////////////////////////////// section 2 : card */
.card {
    padding: 0;
    text-align: left;
    height: 370px;
    width: 100%;
    border: 5px solid #1E1C24;
    border-radius: 5px;
    background-size: 270px auto;
    background-position: center top;
    background-color: #DEDEDE;
}
.card div {
    padding:  18px 18px 34px;
    width: 100%;
    background-color: #fff;
    border-top: 5px solid #1E1C24;
    transition:  .3s ease-in-out;
}
.img_1 {
    background-image: url("../assets/ideation.svg");
}
.img_2 {
    background-image: url("../assets/maquettage.svg");
}
.img_3 {
    background-image: url("../assets/integration.svg");
}
.img_4 {
    background-image: url("../assets/debug.svg");
}

/*hover card*/
.card:hover {
    animation: backgroundResize 2s;
    div {
        background-color: #FFDE80;
        color: #000;
    }
}
@keyframes backgroundResize {
    0% {background-size: 270px auto;}
    50% {background-size: 340px auto;}
    100% {background-size: 270px auto}
}

/* modal */ 
.img_modal {
    max-width: 200px;
    max-height: 200px;
}

/* //////////////////////////////////////// section 3 : CTA */



/* //////////////////////////////////////// reserve */
/* ///// variante avec text défilant */
.scrolling_box {
    overflow: hidden;
}
.scrolling_text_ar, .scrolling_text_av {
    white-space: nowrap; /* Empêche le texte de revenir à la ligne */
    display: inline-block; /* Affiche le texte en ligne pour éviter les espaces blancs */
}
.scrolling_text_ar {
    animation: scrollTextAr 30s linear infinite; 
}
.scrolling_text_av {
    animation: scrollTextAv 30s linear infinite; 
}
@keyframes scrollTextAr {
    0% {
        transform: translateX(0%); 
    }
    100% {
        transform: translateX(-100%); /* Déplace le texte complètement à gauche */
    }
}
@keyframes scrollTextAv {
    0% {
        transform: translateX(-100%); 
    }
    100% {
        transform: translateX(0%); /* Déplace le texte complètement à gauche */
    }
}