section.nos-videos{
    background: var(--canard);
    display: flex;
    flex-direction: column;
    position: relative;
}

section.nos-videos .right{
    display: flex;
    flex-direction: column;
    position: relative;
}

section.nos-videos .right figure {
    display: flex;
    width: 100%;
    height: 100%;
}

section.nos-videos .right figure img{
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

section.nos-videos .right .content-video{
    position: absolute;
    background: #0000004D;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 16px;
    cursor: pointer;
}

section.nos-videos .right .content-video .play-video {
    display: flex;
}

section.nos-videos .right .content-video h3{
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 22px;
}

section.nos-videos .right .content-video span{
    font-family: 'Lora';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: var(--perle);
    text-decoration: underline;
    cursor: pointer;
    text-underline-offset: 3px;
}

section.nos-videos .left{
    padding-top: 30px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.nos-videos .left h2{
    z-index: 2;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    background: var(--canard);
    color: var(--perle);
    padding: 0 20px;
    font-family: 'Cormorant Garamond';
    line-height: 110.00000000000001%;
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
}

section.nos-videos .left .title{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.nos-videos .left .title:after{
    content: '';
    position: absolute;
    width: 100%;
    display: block;
    height: 1px;
    top: 50%;
    background: var(--bleu-hague-mid);
}

section.nos-videos .left .articles{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.nos-videos .left .articles .article{
    display: flex;
    flex-direction: row;
    gap: 0;
    cursor: pointer;
}

section.nos-videos .left .articles .article figure{
    display: flex;
    width: 50%;
}

section.nos-videos .left .articles .article figure img{
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

section.nos-videos .left .articles .article .article-content{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: flex-start;
    border: 1px solid var(--canard-mid);
    border-left: 0;
    width: 50%;
}

section.nos-videos .left .articles .article .article-content h3{
    font-family: 'Lora';
    font-weight: 400;
    font-size: 17px;
    line-height: 120%;
    vertical-align: middle;
    color: var(--perle);
}

/*section.nos-videos .modal{
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    background: var(--canard);
    z-index: 9999999;
}

section.nos-videos .modal .close{
    cursor: pointer;
    display: flex;
    margin: 0 0 0 auto;
}

section.nos-videos .modal .modal-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    grid-gap: 16px;
    padding: 16px;
}

section.nos-videos .modal .modal-content div:not(.close){
    position: relative;
    padding-bottom: 52.25%;
    height: 100%;
    width: 100%;
}

section.nos-videos .modal.active{
    display: block;
    overflow: scroll;
}

section.nos-videos .modal .modal-content h3{
    font-size: 17px;
    font-family: 'Lora';
    font-weight: 400;
    line-height: 120%;
    color: var(--perle);
}

section.nos-videos .modal .close svg line{
    stroke: var(--perle);
}

section.nos-videos .modal .modal-content iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}*/

section.nos-videos .modal .modal-content {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding: 0 16px;
}

section.nos-videos .modal .modal-content .wrapper{
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
    width: 100%;
}

section.nos-videos .modal .modal-content .wrapper div{
    height: 100%;
}

section.nos-videos .modal .close {
    display: flex;
    height: 10vh;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
}

section.nos-videos .modal .close svg{
    cursor: pointer;
}

section.nos-videos .modal .close svg path{
    stroke: #FFF;
}

section.nos-videos .modal h3{
    text-align: center;
    color: #fff;
}

section.nos-videos .modal iframe{
    width: 100%;
    height: 80%;
}

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

    section.nos-videos{
        flex-direction: row-reverse;
    }

    section.nos-videos .left{
        width: 50%;
        padding: 90px 100px;
        justify-content: center;
        gap: 30px;
    }

    section.nos-videos .left h2{
        font-size: 38px;
    }

    section.nos-videos .left .articles .article figure{
        width: 35.19%;
    }

    section.nos-videos .left .articles .article .article-content{
        width: 64.81%;
    }

    section.nos-videos .left .articles{
        gap: 20px;
    }
    section.nos-videos .left .articles .article .article-content{
        padding: 30px;
        gap: 20px;
    }

    section.nos-videos .left .articles .article .article-content h3{
        font-size: 20px;
    }

    section.nos-videos .right{
        width: 50%;
    }

    section.nos-videos .right .content-video{
        padding: 120px;
        gap: 20px;
    }

    section.nos-videos .right .content-video h3{
        font-size: 45px;
    }

    section.nos-videos .right .content-video span{
        font-size: 12px;
    }

    section.nos-videos .modal .modal-content h3{
        font-size: 30px;
    }

    /*section.nos-videos .modal .modal-content{
        grid-gap: 32px;
        padding: 32px;
    }*/

    section.nos-videos .modal .modal-content {
        padding:0 120px;
    }

}