html{
    scroll-behavior: smooth;
}

#navAbout{
    text-transform: uppercase;
    font-weight: bold;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    margin-left: calc(50% + var(--marge));
    padding: var(--marge) 0;
    margin-bottom: calc(2* var(--longmarge));
    width: calc(50% - (3 * var(--marge)));
}

#navAbout a{
    margin-right: var(--longmarge);
    cursor: pointer;
    display: inline-block;
    position: relative;
}


.tl{
    display: block;
    position: absolute;
    opacity: 0;
    margin-left: 0 !important;
    left: 0;
    top: 0;
    width: fit-content;
    word-break: keep-all;
    line-height: 1.3;
    font-style: italic;
}
 .na:hover{
    color: white;
}

.na:hover .tl{
    opacity: 1;
    color: black;
}


#propos{
    display: flex;
    gap: var(--longmarge);
}

section{
    font-family: Signifier;
    margin: 0 var(--longmarge);
}

section strong{
    font-weight: bold;
    font-family: Founders;
}

.col{
    width: 50%;
}

.col img{
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

#approche{
    display: flex;
        gap: var(--longmarge);

}

#approche strong{
    display: block;
    margin-bottom: var(--marge);
}


.linkMenu{
    padding-bottom: var(--longmarge);
}

h1{
    /* border-top: 1px solid black; */
    border-bottom: 1px solid black;
    text-align: center;
    font-weight: bold;
    margin: 0 var(--longmarge);
    padding: calc(2* var(--longmarge)) 0  var(--marge) 0;
    margin-top: calc(4* var(--longmarge));
    margin-bottom: calc(4* var(--longmarge));
    font-size: var(--lfs);
}

#studio{
    display: flex;
        gap: var(--longmarge);
}

p{
    width: 80%;
}

p::after{
    display: block;
    white-space: pre;
    content: " ";
}

#clients{
    display: block;
    column-count: 3;
}

.country{
    display: inline-block;
    width: 100%;
}
.country::after{
    display: block;
    content: " ";
    white-space: pre;
}

.country h2{
    font-weight: bold;
    font-family: Founders;
    font-size: calc(var(--rfs) * 1.1);
    margin-left: calc(2 * var(--longmarge));
}

#jury{
    display: block;
    column-count: 3;
}

.year{
    display: inline-block;
    width: 100%;
}

.year p::after{
    display: none;
}

.year::after{
    display: block;
    content: " ";
    white-space: pre;
}

.year h5{
    display: block;
    font-family: founders;
    font-weight: bold;
    font-size: calc(var(--rfs) * 1.1);
    border-bottom: 1px solid black;
    margin-bottom: calc(var(--marge) / 2);
    padding-bottom: calc(var(--marge) / 2);
    padding-left:  calc(2 * var(--longmarge));
}

.year strong{
    display: block;
    margin-left: calc(var(--longmarge) * 2);
}

.year ul::after{
    display: block;
    content: " ";
    white-space: pre;
}

li{
    position: relative;
    display: inline-block;
    width: calc(100% - (2 * var(--longmarge)));
    line-height: 1.3;
    margin-left: calc(2 * var(--longmarge)) ;
    
}


li::before{
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(var(--longmarge) * 2);
    content: "·";
    transform: translate(-100% , 0);
    text-align: center;
}

strong{
    font-size: calc(var(--rfs) * 1.1 );
}



@media (orientation:portrait){

    #navAbout{
        display: none;
        margin-left: var(--longmarge);
        margin-bottom: calc( var(--longmarge));
        width: calc(100% -  2*(var(--longmarge)));
    }

    #navAbout a{
        display: block;
    }

    #propos{
        display: block;
        padding-top: var(--longmarge);
    }

    #approche{
        display: block;
    }

    #studio{
        display: block;
    }

    .col{
        width: 100%;
    }

    p{
        width: 100%;
    }

    #clients{
        display: block;
        column-count: 1;
    }

    .country h2{
        margin-left: var(--longmarge);
    }

    #jury{
        display: block;
        column-count: 1;
    }

    .year h5{
        padding-left:  calc(var(--longmarge));
    }

    .year strong{
        margin-left: calc(var(--longmarge));
    }


    li::before{
        width: calc(var(--longmarge));
        text-align: left;
    }


    li{
        width: calc(100% - (var(--longmarge)));
        margin-left: calc(var(--longmarge)) ;
        
    }





}