* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    min-height: 100vh;
}

.arrow {
    position: fixed;
    bottom: 100px;
    background-color: #ff9500;
    transition: .4s all;
    border-radius: 50%;
    left: 50px;
    z-index: 1000;

    &:hover {
        cursor: pointer;
        transform: scale(1.3);
        transition: .4s all;
    }
}

.calltoaction {
    background-color: rgba(36, 170, 157, 1);
    border-radius: 10px;
    color: white;
    border: none;
    padding: .7em;
    margin-top: 3em;
}

.center {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#titre_accueil {
    font-size: 60px;
    text-align: center;
}

#soustitre_accueil {
    font-size: 30px;
    text-align: center;
}

.diamond {
    width: 50px;
    height: 50px;
    background-color: #ffe9cc;
    transform: rotate(45deg);
}

.perf_container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 2em 0;
    flex-wrap: wrap;
}

.perf_feature {
    display: flex;
    align-items: center;
    background-color: #ffeacc;
    border-radius: 50px;
    border: 2px solid orange;
    padding: 5px;
    padding-right: 50px;

    & img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    & .perf_text {
        color: #ff9500;
        font-size: 16px;
        font-style: italic;
        white-space: nowrap;
    }
}

.p_accueil {
    font-size: 16px;
    font-style: italic;
    text-align: center;
    margin: 1em 0;
}

.button {
    color: white;
    background: linear-gradient(to right, #FF7528, #FF9500);
    padding: .5em 4.5em;
    border-radius: 50px 30px 30px 10px;
    border: none;
    transition: all .7s;
    position: relative;
    font-weight: bold;
    margin: .5em;
    text-align: center;
}

.iframe_video {
    margin: 1.5em;
    width: 80%;
    aspect-ratio: 16 / 7;
}

.image_en_cours {
    border-radius: 0 15px;
    border: solid #FF9500 6px;
}

#titre_slider {
    font-weight: 300;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
}

.slide-track {
    display: flex;
    gap: 10px;
    justify-content: center;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 50px;
    margin: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
    position: relative;
}

.slide img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0;
}

.partenariat_container {
    display: flex;
    justify-content: center;
}

.partenariat_text {
    font-size: 10px;
    padding: 2px 10px;
    text-align: center;
    background: linear-gradient(to right, #1E1C25E6, #343253E6);
    color: white;
    border-radius: 20px;
    display: inline-block;
    width: auto;
}

.method-image {
    width: 97vw;
}

.execution-method {
    width: 100%;
    height: 100vh;
    background-color: #1e1c25;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 40px 0;
}

.method-title {
    color: black;
    background: white;
    padding: 0 1em;
    border-radius: 50px 30px 30px 10px;
    border: none;
    font-size: 40px;
    margin-top: 3.5vh;
}

.method-subtitle {
    color: white;
    margin-top: 20px;
}

.method-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4vh 0;
}

.method-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 4em;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    width: 250px;
    height: 250px;
    margin: 0 15px;
    padding: 20px;
    border-radius: 0 15px;
    border: solid #FF9500 3px;
    margin: 0 60px;
    box-shadow: 0 1px 6px #FF9500;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-top: 15px;
    font-style: italic;
    font-weight: bold;
}

.card p {
    font-size: 11px;
    color: #333;
    text-align: center;
}

.card img {
    width: 40px;
    height: 40px;
    margin-top: 20px;
    align-self: center;
}

.card .step-title {
    position: absolute;
    top: -20px;
    transform: translateX(5%);
    background-color: #FF9500;
    color: white;
    padding: 5px 60px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 15px;
    z-index: 2;
}

.impact_container {
    margin: 20vh 10% 3em 10%;
    display: flex;
    flex-direction: column;
    width: 80%;

    & p {
        font-style: italic;
        margin-bottom: 1em;
    }

    & a {
        width: 25%;
    }
}

#real-title {
    color: white;
    background: #1E1C25;
    padding: 0 1em;
    border-radius: 50px 30px 30px 10px;
    border: none;
    font-size: 40px;
    margin-top: 3.5vh;
    text-align: center;
}

#real-subtitle {
    font-style: italic;
    font-weight: 300;
    margin-top: 10px;
}

.real_part {
    margin-top: 2em;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.button_real {
    color: white;
    background: linear-gradient(to right, #FF7528, #FF9500);
    padding: 0.5em 3em;
    border-radius: 40px 0 40px 0;
    border: none;
    margin: 3em 1em 5em 1em;
    text-align: center;
    font-size: 1em;
    cursor: pointer;
}

/********** PORTFOLIO **********/

.project {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4em;
    gap: 5em;
}

.card-project {
    background-color: white;
    width: 350px;
    /* largeur fixe */
    height: 500px;
    /* hauteur fixe */
    padding: 20px;
    border-radius: 0 15px;
    border: 3px solid #FF9500;
    box-shadow: 0 1px 6px #FF9500;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-header {
    text-align: left;
}

.titre-project {
    font-size: 25px;
    margin: 0;
    color: #333;
}

.project-type {
    font-size: 16px;
    margin: 5px 0 0 0;
    color: #555;
    font-style: italic;
}

.project-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin: 10px 0;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-cate {
    display: flex;
    justify-content: space-between;
    margin: 7px 0;
}

.cate {
    font-size: 9px;
    border-radius: 20px;
    background: linear-gradient(to right, #1E1C25E6, #343253E6);
    color: white;
    padding: 0.5em 2.5em;
    margin: 0 5px;
    border: none;
}

.orange-line {
    border: 0;
    border-top: 3px solid #FF9500;
    width: 100%;
    margin: 10px 0;
}

.calltoproject {
    background: linear-gradient(to right, #FF7528, #FF9500);
    border-radius: 50px 30px 30px 10px;
    color: white;
    border: none;
    padding: 0.7em;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

/* Texte de partenariat */
.partenariat {
    font-size: 9px;
    text-align: center;
    margin-top: 10px;

    border-radius: 20px;
    background: linear-gradient(to right, #1E1C25E6, #343253E6);
    color: white;
    padding: 0.5em 1em;
    border: none;
}



/*  */

.choix_collab {
    color: white;
    background: #1E1C25;
    padding: 0 1em;
    border-radius: 50px 30px 30px 10px;
    border: none;
    font-size: 40px;
    margin-top: 3.5vh;
    width: 90%;
    text-align: center;
}

.temoignage_client {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    gap: 20px;
    padding: 20px;
}

.temoignage_client_img {
    width: 50%;
    height: 50vh;
    border-radius: 10px;
    object-fit: cover;
}

.temoignage_text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.temoignage_text h5 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FF9500;
}

.temoignage_text p {
    font-size: 14px;
    color: black;
    line-height: 1.6;
    margin-bottom: 20px;
}

.partenariat_temoignage {
    font-size: 10px;
    padding: 2px 10px;
    text-align: center;
    background-color: #1e1c25;
    color: white;
    border-radius: 20px;
    display: inline-block;
    width: auto;
}

.intro {
    color: black;
    width: 75%;
    font-size: 20px;
    text-align: center;
    padding: 2em;
}

.desc {
    color: black;
    width: 40%;
    font-size: 14px;
    text-align: center;
    font-style: italic;
    font-weight: 200;
    padding: 2em;
}

.tilted-underline {
    display: inline-block;
    position: relative;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 1em;
}

.tilted-underline::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ff9500;
    position: absolute;
    left: 0;
    bottom: -10px;
    transform: rotate(-2deg);
    transform-origin: left;
}

.petit {
    font-size: 15px;
    font-weight: 300;
}

.slider-container {
    margin: 20px 0;
    text-align: center;

    & h2 {
        font-size: 15px;
        font-style: italic;
        margin-bottom: 10px;
    }
}

.section {
    margin: 2em;
    font-size: 30px;
    margin-top: 10em;
}

.sous-parti {
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 2em;
    text-align: center;
    font-style: italic;
}

/*********** Services ***********/

.services {
    display: flex;
    width: 80%;
    justify-content: space-between;
    gap: 20px;
    margin: 20px;
    margin-top: 4em;
    align-items: start;

    & img {
        width: 40%;
        border-radius: 20px;
    }
}

.hidden {
    display: none;
}

.phrase {
    cursor: pointer;
    font-weight: 700;
    margin-bottom: 1em;
}

.paraCache {
    margin-bottom: 2em;
    font-size: 14px;
    color: rgb(84, 84, 84);
}

.plus {
    margin-right: 10px;
    color: rgba(36, 170, 157, 1);
}

/********** FAQ ***********/

.list_faq {
    display: flex;
    width: 80%;
    flex-direction: column;
    justify-content: left;
}

/********** OFFRES ***********/

.offres_partie {
    width: 100%;
    height: auto;
    /* a modifier */
    background-color: #1e1c25;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 40px 0;
}

.offre_container {
    display: flex;
    gap: 150px;
    justify-content: center;
    margin-top: 5em;
    /* margin-bottom: 10em; */
    flex-wrap: wrap;
}

.card_offre {
    background: white;
    border-radius: 0 15px;
    padding: 20px;
    width: 320px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: black 4px solid;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card_offre:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.popular {
    border: #ff9500 4px solid;
    transform: scale(1.1);
    box-shadow: 0 10px 20px #ff9500;
}

.badge {
    background: linear-gradient(to right, #FF9500, #FF7528);
    color: white;
    padding: 5px 50px;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
}

.card_offre h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 900;
}

.section_offres {
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    text-align: left;
}

.section_offres p {
    font-size: 11px;
    margin: 5px 0;
    padding-left: 5px;
    position: relative;
    display: flex;
    align-items: center;
}

.section_offres.orange {
    background: rgba(255, 165, 0, 0.2);
}

.section_offres.grey {
    background: rgba(200, 200, 200, 0.3);
}

.price {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
}

.price span {
    font-size: 30px;
}

.check-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.info-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.card_offre button {
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    transition: background 0.3s ease, transform 0.2s ease;

    background: linear-gradient(to right, #FF7528, #FF9500);
    border-radius: 40px 0 40px 0;
    text-align: center;
    font-size: 1em;
    cursor: pointer;
}

.card_offre button:hover {
    background-color: #ff8700;
    transform: scale(1.05);
}



/****** calendly *******/

.calendly_section {
    width: 100%;
    height: 120vh;
    background-color: #F9F7F7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-top: 25em;
}

#calendly_title {
    font-size: 50px;
    padding-top: .5em;
    padding-bottom: 1em;
}

.calendly_container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 90%;
}

.calendly_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calendly_text h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 1em;
}

.calendly_text p {
    margin-bottom: 4em;
    font-size: 20px;
}

#calendly_engagement {
    font-size: 15px;
    font-style: italic;
}

.calendly_text button {
    width: 70%;
    font-size: 20px;
    padding: .5em 1.5em;
}

.calendly-inline-widget {
    flex: 1;
    min-width: 320px;
    min-height: 900px;
    height: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    /* display: inline-block; */
    /* width: 100%; */
    /* height: 100%; */
}

/***** PROJECT PAGE ******/

.intro_project {
    display: flex;
    width: 90%;
    margin: 0 5%;
    justify-content: space-around;
    flex-wrap: wrap;
}

.text_intro_project {
    flex: 2;
    /* margin-right: 10em; */
    display: flex;
    align-items: center;
    flex-direction: column;
}

.text_intro_project div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3em;
    background-color: #1E1C25;
    border-radius: 30px;
}

.text_intro_project div p {
    color: white;
}

.text_intro_project button {
    margin-top: 1em;
    color: white;
    border: none;
    padding: 12px;
    width: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
    background: linear-gradient(to right, #FF7528, #FF9500);
    border-radius: 40px 0 40px 0;
    text-align: center;
    font-size: 1em;
    cursor: pointer;
}

.text_intro_project div h5 {
    color: white;
    padding: 0 0 1em 0;
    font-size: 30px;
}

.intro_project img {
    flex: 1;
    padding: 3em;
    width: 100%;
}

.title_project_page {
    display: flex;
    width: 100%;
    height: 50px;
    background-color: #1E1C25;
    color: white;
    align-items: center;
    justify-content: center;
}

.all_project {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2em 0;
    gap: 5em;
}

.group_project {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5em;
}


/***** OTHER PROJECTS *****/

.other_project_container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.other_project_separator {
    width: 100%;
    height: 2px;
    background-color: #00A99D;
    margin-bottom: 20px;
}

.other_project_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3em 0;
}

.other_project_header h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.other_project_button {
    background-color: #FF9500;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.other_project_button:hover {
    background-color: #e67e00;
}

.other_project_container_card {
    display: flex;
    gap: 10vw;
    justify-content: center;
    flex-wrap: wrap;
}

.other_project_card {
    background-color: white;
    border: 6px solid #FF8C00;
    border-radius: 0 50px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 10px 20px #ff9500;
}

.other_project_card img {
    width: 100%;
    border-radius: 5px;
    margin: 10px 0;
}

.other_project_tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.other_project_tag {
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 9px;
}

.other_project_orange_separator {
    /* add */
    width: 100%;
    height: 3px;
    background-color: #FF9500;
    margin: 1em 0;
}

.other_project_button_card {
    background: linear-gradient(to right, #FF7528, #FF9500);
    color: white;
    border: none;
    padding: 10px 20px;
    width: 100%;
    border-radius: 50px 30px 30px 10px;
    cursor: pointer;
    margin-bottom: 1em;
    font-weight: bold;
    display: block;
    align-items: center;
}

.other_project_button_card:hover {
    background-color: #e67e00;
}

.other_project_p {
    width: 100%;
    font-size: 9px;
    text-align: center;
    padding: .5em;
    background: linear-gradient(to right, #1E1C25, #343253);
    border-radius: 15px;
    color: white;
}

.other_project_card_p {
    font-size: 15px;
    font-style: italic;
}

/****** PATERN 1 ******/
.project_section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.project_title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.patern1 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 3em;
    margin-bottom: 3em;
}

.reel_container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.instagram-media {
    /* width: 250px;
    height: 450px; */
    border-radius: 10px;
    overflow: hidden;
}

.tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.tag {
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 9px;
}

.appointment_button {
    background-color: #FF8C00;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
}

.appointment_button:hover {
    background-color: #e67e00;
}

/* fc25 */
/* icewatch */
/****** PATERN 2 ******/
/* mathieu pimort */
/* magedusea */
/* fojow = hors champs */

/****** PATERN 3 ******/
/* enzo farné */
/* kurdali */
/* mouflard */

/****** PATERN 4 ******/
/* xavier rodriguez */

/****** DOCUMENTAIRE ******/
/* gospel */

@media (max-width: 1350px) {
    .calendly_section {
        margin-top: 32em;
    }
}

@media (max-width: 1200px) {

    .method-cards {
        row-gap: 50px;
    }
}

@media (max-width: 800px) {

    .calendly_container {
        flex-direction: column;
        align-items: center;
    }

    .calendly_section {
        height: 220vh;
    }
}

@media (max-width: 600px) {

    .video_youtube {
            width: 300px;
            height: 450px;
    }
}

@media (max-width: 1000px) {

    .value,
    .services {
        flex-direction: column;
    }

    .impact_container {
        align-items: center;

        & a {
            width: auto;
        }
    }

    .temoignage_client {
        width: 100%;
        flex-wrap: wrap;
    }

    .temoignage_text, .temoignage_client_img {
        width: 100%;
    }


    #calendly_title {
        text-align: center;
    }


}

@media screen and (max-width: 768px) {

    #titre_accueil {
        font-size: 30px;
    }

    .method-title {
        text-align: center;
    }

    .diamond {
        margin-top: 20px;
        margin-bottom: 20px;
    }


}

@media screen and (max-width: 480px) {

    .calendly_text h3 {
        font-size: 20px;
    }

    .center {
        align-items: center;
    }

    .calendly_section {
        height: 280vh;
    }
}