/*-----------------------------------------
    A PROPOS
------------------------------------------*/
main{
    width: 100%;
    height: 100%;
    margin-top: 200px;
}

.section-about{
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.section-about .video-container{
    width: 70%;
    height: 500px;
    position: relative;
    border-radius: 15px;
}

.section-about  .video-bloc{
    display: flex;
    width: 100%;
    justify-content: center;
}

.section-about .video-bloc .video-container .video{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border: 5px solid;
    border-radius: 15px;
    animation: borderColorAnimation 5s linear infinite;
}
@keyframes borderColorAnimation {
    0% {
        border-color: #FF6A3D;
    }
    25% {
        border-color: #FF8A3D;
    }
    50% {
        border-color: #6A4CFF;
    }
    75% {
        border-color: #FF3DA6;
    }
    100% {
        border-color: #FF6A3D;
    }
}

.section-about .against-harassment{
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 170px;
}
.section-about .video-bloc .video-informations{
    display: flex;
    margin-left: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}

.section-about .video-bloc .video-informations h1{
    background: linear-gradient(to left, #FF6F61 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 45px;
    font-family: 'Source Sans 3', sans-serif;
}




.section-about .our-vision{
    display: flex;
    flex-direction: column;
    padding-top: 150px;
    font-size: 45px;
    margin-left: 80px;
    justify-content: flex-start;
    animation: ourVisionAnimation linear;
    animation-timeline: view();
    animation-range-start : cover 0%;
    animation-range-end : contain 50%;
}

.section-about .our-vision h1{
    background: linear-gradient(to left, #FF6F61 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-about .our-vision .our-vision-paragraph li {
    position: relative;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    color: white;
}
.section-about .our-vision .our-vision-paragraph li::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(to left, #FF6F61 0%, #FFFFFF 100%);
}

.section-about .our-vision .our-vision-paragraph p {
    font-size: 20px;
    font-weight: 400;
    max-width: 700px;
    color: white;
    font-style: normal;
    line-height: 30px;
}



.section-about .our-team{
    display: flex;
    flex-direction: column;
    padding-top: 150px;
    font-size: 45px;
    justify-content: flex-end;
    align-items: flex-end;
    margin-right: 80px;
    animation: ourTeamAnimation linear;
    animation-timeline: view();
    animation-range-start : cover 0%;
    animation-range-end : contain 50%;
}

.section-about .our-team h1{
    background: linear-gradient(to left, #FF6F61 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-about .our-team .our-team-paragraph li {
    position: relative;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    color: white;
    list-style-position: inside;
    padding-left: 35px;
}
.section-about .our-team .our-team-paragraph li::before {
    content: "";
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(to left, #FF6F61 0%, #FFFFFF 100%);
}

.section-about .our-team .our-team-paragraph p {
    font-size: 20px;
    font-weight: 400;
    max-width: 700px;
    color: white;
    font-style: normal;
    line-height: 30px;
}



@keyframes ourVisionAnimation {
    from {
        margin-left: 0;
        opacity: 0;
    }
    to {
        margin-left: 80px;
        opacity: 1;
    }
}

@keyframes ourTeamAnimation {
    from {
        margin-right: 0;
        opacity: 0;
    }
    to {
        margin-right: 80px;
        opacity: 1;
    }
}

.section-about .join-our-team{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-bottom: 150px;
}

.section-about .join-our-team .join-our-team-container{
    height: 500px;
    width: 80%;
    border-radius: 15px;
    background-color: white;
}

@media screen and (max-width: 768px) {
    .section-about .video-container {
        width: 90%;
        height: 500px;
        position: relative;
        border-radius: 15px;
    }

    .section-about .against-harassment {
        display: flex;
        margin-top: 50px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .section-about .video-container .against-harassment{
        width: 90%;
        align-items: center;
    }
    .section-about .against-harassment .video-bloc{
        display: flex;
        flex-direction: column;
    }

}