.tutoriel-page{
    width: 100%;
    margin-left: 330px;
    overflow-x: hidden;  
    overflow-y: auto; 
}

.tutoriel-page .title{
    font-weight: 500;
    font-size: 34px;
}

.tutoriel-content{
    display: flex;
}

.tutoriel-content .tutoriel-nav {
    height: calc(100vh - 150px);
    width: 300px;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #E2E2E2;
}

.tutoriel-content .tutoriel-nav ol{
    list-style: none; 
    counter-reset: li-counter;
    padding: 0;
}

.tutoriel-content .tutoriel-nav ol li{
    padding: 8px;
    border-radius: 10px;
    font-size: 18px;
    counter-increment: li-counter;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tutoriel-content .tutoriel-nav ol li a, .tutoriel-content .tutoriel-nav ol li a:active { 
    color: #34495E; 
    text-decoration: none;
}

.tutoriel-content .tutoriel-nav ol li.active{
    background-color: #34495E12;
    color: #34495E;
    font-weight: 500;
}

.tutoriel-content .tutoriel-nav ol li::before{
    width: 26px;
    height: 26px;
    content: counter(li-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background-color: #34495E12;
    border-radius: 5px;
    font-weight: bold;
    color: #34495E;
}

.tutoriel-content .tutoriel-nav ol li.active::before{
    background-color: #FFF;
    color: #FF5C00;
}

.tutoriel-content .tutoriel-nav ol li a{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.tutoriel-content .step-list{
    width: calc(100% - 300px);
    padding-right: 30px;
}

.tutoriel-step h2{
    font-size: 26px;
    font-weight: 500;
}

.tutoriel-step h3{
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}

.tutoriel-step p{
    font-size: 18px;
    line-height: 130%;
}

.info-box{
    width: 100%;
    margin: 20px auto;
    display: block;
    background: #34495E12;
    padding: 30px;
    border-radius: 15px;
    font-size: 18px;
}
.info-box p{ margin: 0; }

.info-box.warning{
    background: #E93A2312 !important;
    color: #FF5C00 !important;
}

.validate-step{
    display: flex;
    align-items: center;
    gap: 10px;
}

.validate-step input{
    width: 28px;
    height: 28px;
    border-radius: 6px;
    margin: 0 !important;
    accent-color: #FF5C00;
}
.validate-step label{ margin: 0; }

.tuto-button, .tuto-button:hover{
    min-width: 180px;
    display: inline-block;
    font-size: 18px;
    padding: 10px 18px;
    text-align: center;
    color: #FFF !important;
    background-color: #FF5C00;
    border-radius: 100px;
}

.tuto-submit{
    background-color: #3CBAC4 !important;
    border: none;
}

.tuto-button.previous{
    background: #34495E12;
    color: #34495E !important;
}

.tuto-nav-buttons{
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.team-list .row{
    display: flex;
    gap: 30px;
    margin: 40px 0 40px -25px;
}

.team-member{
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    background: #FFFFFF;
    border: 5px solid #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 30px 180px 10px #0000001A;
}

.team-member img{
    width: 90px;
    height: 90px;
    margin-top: -30px;
    border-radius: 100%;
}

.team-member .contact{
    background: #F8F8F8;
    border-radius: 15px;
    margin-top: 20px;
    padding: 14px;
    font-size: 16px;
    font-weight: 400;
}

.team-member .contact p{ 
    text-align: left;
    line-height: 100%;
    font-size: 16px;
}

.team-member .name{
    color: #34495E;
    font-size: 18px;
    font-weight: 500;
}

.team-member p{
    text-align: center;
    margin: 5px 0; 
}

.team-member .grey{
    background: #34495E12;
    padding: 4px 6px;
    border-radius: 5px;
}

.tutoriel-page .checkbox-group { 
    width: 100%;
    font-size: 18px !important;
}
.tutoriel-page .checkbox-group span{
    font-size: 18px !important;
}

p.highlight{
    padding: 20px;
    font-family: Fraunces;
    font-weight: 400 !important;
    font-size: 26px !important;
    line-height: 100% !important;
}

.info-box .demo-row{
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-box .demo-row p{
    width: 50%;
    text-align: left;
}

.info-box .bold{
    margin-bottom: 20px;
    font-weight: bold;
}

.info-box .btn-container{
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.video-entete{
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.video-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 56.25%; /* ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1260px) {
    .tutoriel-page{
        margin-left: 0;
    }

    .tutoriel-content{
        flex-direction: column;
        margin-bottom: 20px;
    }

    .tutoriel-content .tutoriel-nav{
        width: 100%;
        height: auto;
        border: none;
    }

    .tutoriel-content .tutoriel-nav ol{
        display: flex;
        overflow-x: auto;  
        overflow-y: hidden; 
        white-space: nowrap;
        gap: 12px;
    }

    .tutoriel-content .tutoriel-nav ol li{
        height: 42px;
        white-space: nowrap;
        font-weight: 500;
        font-size: 15px;
    }

    .tutoriel-content .step-list{
        width: 100%;
        padding: 0;
    }

    .tuto-nav-buttons{
        justify-content: space-between;
    }

    .tuto-nav-buttons a,
    .tuto-nav-buttons a:hover,
    .tuto-nav-buttons a:active,
    .tuto-nav-buttons button{
        min-width: 165px !important;
        width: 165px !important;
        font-size: 16px;
    }

    .info-box .tuto-button{
        margin-top: 20px;
        width: 100%;
    }


    .info-box{
        padding: 15px;
        font-size: 15px;
    }

    .info-box .demo-row{
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
        font-size: 15px;
    }

    .video-entete{
        flex-direction: column;
        font-size: 15px;
    }

    .info-box .btn-container{
        flex-direction: column;
        gap: 0;
    }   
    
    .team-list .row{
        flex-direction: column;
        margin: 0;
    }

    .team-member{
        width: calc(100% - 40px);
        margin: 0 20px;
    }
}