:root {
  --couleur-principale: #00DFDE;
  --couleur-secondaire: #16A2A2;
  --couleur-noir: #000000;
  --couleur-clair: #ffffff;
  --couleur-gris: #EFEFEF;
}
@font-face {
    font-family: 'VisbyCF';
    src: url('../font/VisbyCF-DemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
} 



/************************************************
* TITLE SECTION
************************************************/
#title {
    text-align: center;
}

#subtitle {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

#subtitle p {
    margin: 0;
}


.section {
    width: 90%;
    margin: auto;
    font-size: 20px;
    text-align: center;
}

/************************************************
* INFOS SECTION
************************************************/

#section_infos {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    text-align: center;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

/* image en arrière-plan */
#section_infos::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/companySchema.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.4; /* OPACITÉ uniquement sur l'image */
    z-index: 0;
}

/* texte au-dessus */
#section_infos > * {
    position: relative;
    z-index: 1;
}

#section_infos_withImg div+div{
    margin-top: 20px;
}

#section_infos_withImg img{
    display: none;
}

#section_infos_delay {
    padding-top: 50px;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    width: 90%;
    margin: auto;
}

/************************************************
* VALUES SECTION
************************************************/
#section_values {
    color: var(--couleur-clair);
}

#section_values h2 {
    text-align: center;
    font-size: 32px;
    color: var(--couleur-principale);
    margin-bottom: 40px;
}

#section_values_winning_title {
    font-size: 22px;
}

#section_values_desc {
    font-size: 20px;
}

#section_values_winning_container {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section_values_winning_content {
    padding: 20px 50px;
    width: 60%;
    margin: auto;
    font-size: 16px;
    color: var(--couleur-noir);
    
}

.section_values_winning_content+.section_values_winning_content {
    margin-top: 20px;
}

#section_values_winning_strategic {
    background-color: var(--couleur-gris);
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
}

#section_values_winning_rigor {
    background-color: var(--couleur-principale);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.separator {
    width: 90%;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 60px;
    height: 1px;
    background-color: var(--couleur-clair);
}

#section_values_list {
    text-align: left;
    position: relative;
    width: 100%;
    overflow: hidden;
    
}

#section_values_list::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 50%;
    width: 130%;        /* agrandit l'image */
    height: 130%;       /* agrandit l'image */
    background-image: url("../img/values.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.2;
    z-index: 0;

    transform: translate(-50%, -50%) rotate(90deg); /* centrer puis tourner */
    transform-origin: center center;
}

#section_values_list > * {
    position: relative;
    z-index: 1;
}

.section_values_list_item {
    margin-top: 20px;
}

.section_values_list_item img {
    display: none;
}

.section_values_list_item h3 {
    color: var(--couleur-principale);
    font-size: 24px;
    margin-bottom: 10px;
}

.section_values_list_item p {
    width: 100%;
    margin: 0px;
    font-size: 16px;
}

/************************************************
* SPECIAL SECTION
************************************************/

#section_special h2 {
    color: var(--couleur-principale);
    font-family: 'VisbyCF', sans-serif;
}

#section_special_subtitle {
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 25px;
}

.section_special_content_item + .section_special_content_item {
    margin-top: 50px;
}

.section_special_content_item_text_title {
    font-size: 18px;
    font-weight: 600;
    
}

.section_special_content_item_text_desc {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    width: 80%;
    margin: auto;
    margin-top: 10px;
}


@media screen and (min-width: 992px) {

    #title {
        text-align: left;
    }
    #section_title {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 90%;
        margin: auto;
        align-items: center;
        text-align: left;
    }

    #subtitle {
        font-size: 27px;
        text-align: left;
    }

    /************************************************
    * INFOS SECTION
    ************************************************/

    #section_infos {
        width: 80%;
        margin: auto;
        flex-direction: column;
        font-size: 24px;
        align-items: center;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    #section_infos::before {
        background-image: none;
        opacity: 0;
    }

    #section_infos div+div {
        margin-top: 0px;
    }

    #section_infos_withImg {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }    

    #section_infos_withImg img {
        display: block;
    }

    #section_infos_delay {
        font-size: 24px;
    }

    /************************************************
    * VALUES SECTION
    ************************************************/

    #section_values h2 {
        text-align: left;
        font-size: 48px;
    }

    #section_values_winning_title {
        text-align: left;
        font-size: 28px;
        margin-bottom: 60px;
    }

    #section_values_desc {
        margin-top: 60px;
        font-size: 28px;
    }

    #section_values_winning_container {
        flex-direction: row;
    }

    .section_values_winning_content {
        font-size: 28px;
        width: 542px;
    }

    #section_values_winning_rigor {
        clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
        margin-top: 140px;
    }

    .separator {
        width: 70%;
    }

    #section_values_list {
        width: 100%;
        margin: auto;
        
    }

    #section_values_list::before {
        background-image: none;
        opacity: 0;
    }

    .section_values_list_row {
        display: flex;
        flex-direction: row;
    }

    #section_values_list_row_img {
        justify-content: center;
        margin-top: -100px;
        margin-left: -60px
    }

    #section_values_list_row_last {
        margin-top: -150px;
    }

    .section_values_list_item {
        width: 50%;
        margin-top: 20px;
        font-size: 28px;
    }

    #section_values_list_item_mission {
        width: 450px;
        z-index: 1;
    }

    #section_values_list_item_values {
        width: 350px;
        margin-top: 70px;
        margin-left: 15%;
        z-index: 1;
    }

    #section_values_list_item_vision {
        width: 620px;
        z-index: 1;
    }

    #section_values_list_item_personality {
        width: 292px;
        margin-top: -40px;
        margin-left: 10%;
        z-index: 1;
    }

    .section_values_list_item img {
        display: block;
        margin: auto;
        opacity: 0.4;
        z-index: 0;
    }

    .section_values_list_item h3 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .section_values_list_item p {
        font-size: 28px;
    }

    /************************************************
    * SPECIAL SECTION
    ************************************************/

    #section_special h2 {
        text-align: left;
    }

    #section_special_subtitle {
        font-size: 28px;
        margin-bottom: 50px;
        text-align: left;
    }

    #section_special_content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 50px;
    }

    .section_special_content_item {
        width: 45%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .section_special_content_item_icon {
        width: 20%;
    }

    .section_special_content_item_text {
        width: 80%;
    }

    .section_special_content_item + .section_special_content_item {
        margin-top: 0px;
    }

    .section_special_content_item_text_title {
        font-size: 24px;
        text-align: left;
    }

    .section_special_content_item_text_desc {
        text-align: left;
        font-size: 20px;
        margin: 0;
    }
    
}


@media screen and (min-width: 1200px) {
    #section_title {
        width: 90%;
    }

    #section_values_list_row_img {
        margin-left: 0;
    }

    #section_values_list_item_values {
        margin-left: 20%
    }

    #section_values_list_item_personality {
        margin-left: 15%;
    }
    
}

@media screen and (min-width: 1400px) {
    #section_values_list_item_values {
        margin-left: 30%;
    }

    #section_values_list_item_personality {
        margin-left: 25%;
    }
    
}

@media screen and (min-width: 1600px) {
    #section_values_list_item_values {
        margin-left: 30%;
    }

    #section_values_list_item_personality {
        margin-left: 25%;
    }
    
}

@media screen and (min-width: 1800px) {
    #section_values_list_item_values {
        margin-left: 40%;
    }

    #section_values_list_item_personality {
        margin-left: 35%;
    }
    
}