/* RESET CSS */

html, body, div, span, applet, object, iframe,

h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

* {
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* BASE */

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

.fade-delay-1 {
    opacity: 1;
    -moz-animation: fadein 500ms linear; /* Firefox */
    -webkit-animation: fadein 500ms linear; /* Safari and Chrome */
    -o-animation: fadein 500ms linear;/* Opera */
    animation: fadein 500ms linear;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    margin: 0;
}

img {
    border: 0;
}

ul {
    padding-left: 0;
    list-style-type: none;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:active, a:focus {
    color: inherit;
    outline: none;
}

input, select {
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    width: 100%;	
    outline: none;		
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: inherit;
}
::-moz-placeholder { /* Firefox 19+ */
    color: inherit;
}
:-ms-input-placeholder { /* IE 10+ */
    color: inherit;
}
:-moz-placeholder { /* Firefox 18- */
    color: inherit;
}

#navigation {
    max-width: 2880px;
    margin: 0 auto;
    position: relative;
    transition: opacity 0.5s;
}

@font-face {
    font-family: 'Saol Display regular';
    font-style: normal;
    font-weight: normal;
    src: local("MADE Canvas Black"), url("../fonts/SaolDisplay-Regular.woff") format("woff");
}

@font-face {
    font-family: 'Saol Display bold';
    font-style: normal;
    font-weight: normal;
    src: local("MADE Canvas Black"), url("../fonts/SaolDisplay-Bold.woff") format("woff");
}

@font-face {
    font-family: 'Saol Display';
    font-style: normal;
    font-weight: normal;
    src: local("MADE Canvas Black"), url("../fonts/SaolDisplay-Medium.woff") format("woff");
}

@font-face {
    font-family: 'Signerica';
    font-style: normal;
    font-weight: normal;
    src: local("MADE Canvas Black"), url("../fonts/Signerica_Medium.woff") format("woff");
}


.clear {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

/* SLICK */

.slick-slider {
    margin-bottom: 0;
}

.slick-prev, .slick-next {
    top: 48%;
    top: -webkit-calc(50% - 15px);
    top: -moz-calc(50% - 15px);
    top: calc(50% - 15px);
}

.slick-prev, .slick-prev:hover, .slick-prev:focus{
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23333333'%2F%3E%3C%2Fsvg%3E") 0;
    width: 27px;
    height: 44px;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity:1;
    -khtml-opacity: 1;
    opacity: 1;
    left: -50px;
    z-index: 999;
}

.slick-prev:before {
    content: ""
}

.slick-next, .slick-next:hover, .slick-next:focus{
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23333333'%2F%3E%3C%2Fsvg%3E") 0;
    width: 27px;
    height: 44px;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity:1;
    -khtml-opacity: 1;
    opacity: 1;
    right: -50px;
    z-index: 999;
}

.slick-next:before {
    content: ""
}


/* ____________________________________
GRID & UTILS */

body {
    padding-top: 19px;
    padding-left: 32px;
    padding-right: 32px;
}


.d-none {
    display: none!important;
}
.align-self-center {
    -ms-flex-item-align: center!important;
    align-self: center!important;
}

.mb-3 {
    margin-bottom: 30px;
}


.container-content .mb-3 {
    margin-bottom: 20px;
}

.row {
    margin-right: -5.5px;
    margin-left: -5.5px;
}
.row:after {
    display: table;
    content: " ";
    clear: both;
}

/* 10 col */
.col-2, .col-5, .col-md-2, .col-8 {
    float: left;
    padding-left: 5.5px;
    padding-right: 5.5px;
}
.col-2 {
    width: 20%;
}
.col-8 {
    width: 80%;
}

.col-5 {
    width: 50%;
}

.col-3 {
    width: 33.33%;
}

    body {
        padding: 0;
    }
    .row {
        margin-right: -20px;
        margin-left: -20px;
    }

    .col-2, .col-6, .col-md-2, .col-8, .col-3 {
        float: left;
        padding-left: 10px;
        padding-right: 10px;
    }

    .d-md-flex {
        display: flex!important;
    }

    .col-md-2 {
        width: 20%;
    }

    .container-content {
        max-width: 67.5%;
        margin-left: auto;
        margin-right: auto;
        min-width: 1040px;
    }


/* ____________________________________
MENU */

.space{
    height: 40px;
    background: white;
    position: relative;
    z-index: 9999;
}

.menu {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 190px 0 190px;
    z-index: 990;
    background: white;
    transition: all .3s;
    opacity: 1;
    transition:  1s;
    height: 80px;
    position: fixed;
    width: 100%;
    /* Correction pour le bug d'overlap lors d'un scroll rapide et que le menu est en position fixed */
    /*overflow-x: hidden;*/
    /*overflow-y:auto;*/
    /*-webkit-transform: translate3d(0,0,0);*/
    /*-webkit-overflow-scrolling: touch;*/
}

.locked {
    display: block;
    width: 100%;
    height: 5px;
    transition: 0.5s;
    position: relative;
    z-index: 9999;
    background: white;
    margin-bottom: -3px;
}


.smallMenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    padding: 10px 190px;
    z-index: 992;
    overflow: hidden;
    padding-bottom: 0px;
    transition: all .3s ease;
}



.smallMenu .menuLogo img{
    transform: scale(0.5) translateY(-20px);
}

.smallMenu .menuLogo h1 {
    height: 55px;
    overflow: hidden;
}

.menuNav{
    font-size: 0;
}

.menuNav.hover::after {
    content:'';
    position: fixed;
    z-index: 990;
    height: 80px;
    width: 100%;
    left: 0;
    right: 0;
    top:0;
    background: rgba(255,255,255, 0.9);
}

.menuNav.hoversearch::after {
    content:'';
    position: fixed;
    z-index: 950;
    height: 155px;
    width: 100%;
    left: 0;
    right: 0;
    top:0;
    background: white;
}

.menuSelected {
    font-weight: bold;
}

.menuLogo, .menuHamburger, .menuSearch{
    display: inline-block;
    font-size: 16px;
    vertical-align: top;
}

.menuSearch{
    width: 25%;
    text-align: right;
    padding-top: 15px;
    position: relative;
    z-index: 986;
    height: 50px;
    overflow: hidden;
    transition: all 0.3s;
}

.menuSearch.invisible {
    opacity: 0.3;
}

.menuSearch .icons {
    width:40px;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction:  column;
    -webkit-flex-direction: column;
    float: right;
    transition: 0.5s;
}

.menuSearch .icons.active {
    transform: translateY(-48px);
}

.menuSearch .fa-times {
    font-size: 40px;
}

.menuOverlaySocial {
    display: none;
}

.menuOverlaySocial {
    position: absolute;
    font-size:30px;
    bottom: 40px;
    min-width: 80%;
    left: 50%;
    z-index: 12;
    text-align: center;
    transform: translate(-50%, -50%);
}

.menuOverlaySocial a {
    margin: 0 25px;
}


.menuLogo{
    width: 50%;
    text-align: center;
    overflow: hidden;
    transition: all .3s ease;
    position: relative;
    z-index: 5;
}

.menuLogo.invisible {
    opacity: 0.2;
}

.menuLogo img{
    width: 300px;
    transition: 0.5s;
}

.menuHamburger{
    width: 25%;
    text-align: left;
    padding-top: 15px;
    position: relative;
    z-index: 999;
}

h1{
    margin: 0 !important;
}

.hamburger{
    padding: 2px 0px 0px 0px !important;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before{
    border-radius: 0px !important;
    height: 6px !important;
    width: 40px !important;
}

.menuList{
    text-align: center;
    padding-top: 200px;
    transition: 0.5s;
}

.menuList ul.primary {
    height: 30px;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-justify-content:  center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    font-weight: 400;
    font-family:'IBM Plex Mono', monospace;
}
.menuList ul.primary li {
    transition: 0.5s;
}

.menuList ul.primary li:hover {
    font-weight: 700;
}

.menuList li{
    display: inline-block;
    font-size: 9pt;
    letter-spacing: 8px;
    text-transform: uppercase;
    padding: 0 40px;
}
.menuListSub {
    display: none;
}
.menuSearch i{
    cursor: pointer;
}

.menuOverlay{
    background: rgba(255,255,255, 0.9);
    top: -100vh;
    left: 0;
    right: 0;
    z-index: 988;
    position: fixed;
    width: 100%;
    height: 100vh;
    transition: 0.5s;
}

.menuOverlay.active {
    top:0;
}


.searchOverlay {
    background: rgba(255,255,255, 1);
    top: -100vh;
    left: 0;
    right: 0;
    z-index: 985;
    position: fixed;
    width: 100%;
    height: 100vh;
    transition: 0.5s;
}

.backtotop {
    display: none;
}

.searchOverlay.active {
    top:0;
}

.closeOverlay, .closeSearchOverlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 11;
}

.menuOverlayContent{
    position: absolute;
    top: 50%;
    min-width: 80%;
    left: 50%;

    z-index: 12;
    transform: translate(-50%, -50%);

}

.menuOverlayList{
    text-align: center;
    text-transform: uppercase;
    font-size: 70px;
    font-family: 'Saol Display regular';
    margin-top: 15%;
}

.menuOverlayList li{
    padding: 15px 0;
    transition: 0.5s;
}

.menuOverlayList li:hover {
    font-family: 'Saol Display bold';
}

.submenu {
    position: absolute;
    top:30px;
    left:0;
    right: 0;
}

.listsub, .listtablet{
    text-align: center;
}

.listsub li, .listtablet li{
    display: inline-block;
    text-transform: uppercase;
    padding: 0 25px;
    font-style: italic;
    font-size: 9pt;
    letter-spacing: 8px;
}

.listsub li .menuSelected, .listtablet li .menuSelected{
    font-weight: 700;
}

.listtablet {
    display: none;
}

.container-content {
    margin-top:15px;
}

/*.menuList{*/
/*    padding: 50px 0 50px 0;*/
/*    width: 550px;*/
/*    margin: 0 auto;*/
/*    text-align: center;*/
/*    text-transform: uppercase;*/
/*    font-size: 0;*/
/*    transition: padding .3s ease;*/
/*}*/

/*.menuList li{*/
/*    display: inline-block;*/
/*    width: fit-content;*/
/*    padding: 0 50px;*/
/*    box-sizing: border-box;*/
/*    font-size: 20px;*/
/*    transition: opacity .3s ease;*/
/*}*/

/*.menuList li a:after{*/
/*    content: "";*/
/*    display: block;*/
/*    padding-bottom: 2px;*/
/*    border-bottom: 1pt solid black;*/
/*    width: 0;*/
/*    transition: all .3s ease;*/
/*}*/

/*.menuList li a:hover:after{*/
/*    width: 100%;*/
/*}*/

/*.searchIcon{*/
/*    display: inline-block;*/
/*    cursor: pointer;*/
/*}*/

/*#searchBar{*/
/*    display: inline-block;*/
/*}*/

/*.searchBarInput{*/
/*    display: none;*/
/*}*/

/*.searchBarInput input[type="search"]{*/
/*    border: none;*/
/*    border-bottom: 1pt solid black;*/
/*}*/

/*.menuOverlay{*/
/*    position: fixed;*/
/*    display: none;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    left: 0;*/
/*    z-index: 998;*/
/*    background: rgba(255, 255, 255, 0.95);*/
/*    color: black;*/
/*    font-size: 20pt;*/
/*}*/



/*.menuOverlayText{*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    z-index: 999;*/
/*    text-transform: uppercase;*/
/*}*/

/*#closeOverlay{*/
/*    position: absolute;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    z-index: 998;*/
/*}*/

/*.menuOverlayText ul li{*/
/*    padding: 15px 0;*/
/*}*/

/*.menuHiddenList{*/
/*    display: none;*/
/*}*/

/*#topLogo{*/
/*    width: 200px;*/
/*}*/

/*#bottomLogo{*/
/*    z-index: 0;*/
/*    display: none;*/
/*}*/

/*.menuLogoContainer{*/
/*    overflow: hidden;*/
/*    height: auto;*/
/*    transition: height .3s ease;*/
/*}*/

/*SMALL MENU*/



/* MENU MOBILE */

.menuMobile {
    display: none;
}


#mobile-logo {
    width: 163px;
    margin: 0 auto;
}

#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f2f2f2;
    z-index: 1;
    text-align: center;

    /* Correction pour le bug d'overlap lors d'un scroll rapide et que le menu est en position fixed */
    /*overflow-x: hidden;*/
    /*overflow-y:auto;*/
    /*-webkit-transform: translate3d(0,0,0);*/
    /*-webkit-overflow-scrolling: touch;*/
}

#mobile-menu-content{
    display: none;
    position: fixed;
    top: 76px;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    overflow: auto;
    background-color: white;
}
#mobile-search {
    position: absolute;
    top: 2px; right: 15px;
}
#mobile-search-close {
    display: none;
}

#nav {
    margin-top: 20px;
}

#nav > li > a {
    display: block;
    padding: 10px 18px;
}

#nav li ul {
    display: none;
    padding: 0 17px;
}

#nav li ul li {
    padding: 5px;
}


/* SEARCH */

/*#searchBar {*/
/*    display: none;*/
/*    margin-top: 74px;*/
/*}*/

/*#searchBar .searchBarInput {*/
/*    max-width: 300px;*/
/*    margin: 0 auto 30px;*/
/*    position: relative;*/
/*}*/
/*#searchBar .searchBarInput::placeholder, #searchBar .searchBarInput::-webkit-input-placeholder, #searchBar .searchBarInput::-moz-placeholder, #searchBar .searchBarInput:-ms-input-placeholder, #searchBar .searchBarInput::-moz-placeholder {*/
/*    color: #7e7e7e;*/
/*}*/

/*.searchModels {*/
/*    width: 100%;*/
/*    border-top: 0;*/
/*    border-left: 0;*/
/*    border-right: 0;*/
/*    text-align: center;*/
/*    line-height: 32px;*/
/*    outline: none;*/
/*}*/

/* FOOTER */
#footer {
    text-align: center;
    font-size: 12px;
    font-weight: 100;
}

 /*HOME*/

.homeElements{
    margin: 0 15%;
    box-sizing: border-box;

}

.homeElement{
    width: 33.3333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.homeElementPicture{
    overflow: hidden;
    position: relative;
}

.homeElementPicture img{
    width: 100%;
    transition-property: transform, filter;
    transition-duration: .3s;
    transition-timing-function: ease;
}

.homeElement .hoverelement.landscape .textfitted{
    max-width: 67%;
}

.homeElement:nth-of-type(3n) .hoverelement {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    color: #FF0000 !important;
    font-family:'IBM Plex Mono', monospace !important;
    font-weight: 700 !important;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s;
    display: block;

}

.homeElement:nth-of-type(odd) .hoverelement, .homeElement:first-of-type .hoverelement {
    color: #0000FF;
    font-family:'IBM Plex Mono', monospace;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.5s;
    position:absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    display:flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.homeElement:nth-of-type(odd) .hoverelement span, .homeElement:first-of-type .hoverelement span {
    transform:rotate(-90deg);
    max-width:100%;
    max-height:100%;
    width:auto;
    height: auto;
    font-size:3em;
    text-transform: uppercase;
    transform-origin: top left;

}

.homeElement:nth-of-type(odd) .portrait.hoverelement span, .homeElement:first-of-type .portrait.hoverelement span {
    font-size:4em;
}

.homeElement:nth-of-type(even) .hoverelement {
    transition: opacity 0.5s;
    color:#DAFF00;
    font-family: 'Saol Display';
    font-weight: 400;
    opacity: 0;
    position:absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    display:flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.homeElement:nth-of-type(even) .hoverelement span{
    transform:rotate(-90deg);
    max-width:100%;
    max-height:100%;
    width:auto;
    height: auto;
    font-size:3em;
    text-transform: uppercase;
    transform-origin: top left;
}

.homeElement:nth-of-type(even) .portrait.hoverelement span{
    font-size:4em;
}

.homeElement:nth-of-type(4n) .hoverelement {
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.5s;
    color:#00FF55;
    font-family: 'Saol Display';
    font-weight: 400;
    position:absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    display:flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.homeElement:hover .hoverelement {
    opacity: 1;
}

.homeElementTitle{
    font-weight: 100;
}

.homeElementName {
    text-transform: uppercase;
}

.homeElementContent{
    margin-top:20px;
    margin-bottom: 35px;
    font-size: 14px;
    text-transform: capitalize;
    text-align: center;
    padding: 0 25px;
}



.homeElementEffect{
    transform: translateY(50%);
    transition: transform 0.7s ease, opacity 0.3s;
    opacity: 0;
}

.homeSocial{
    position: fixed;
    right: 190px;
    top: 50%;
    transform: translateY(-50%);
}
.homeSocial li{
    padding: 5px 0;
}

    /*NEWS_DETAIL*/

.newsContentlist {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap:  wrap;
    -webkit-flex-wrap:  wrap;
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
}

.newsContentlist .newsElement {
    width: 50%;
    margin-bottom: 0px;
    overflow: hidden;
}

.newsContentlist .newsElement.center {
    margin: 0 auto;
}

.newsContentlist .newsElement.landscape {
    width: 100%;
}

.newsContentlist .newsElement img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin:5px;
}

.otherdetail .newsElementPicture img{
    width: 100%;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
}

.otherdetail .newsElement:hover .newsElementPicture img{
    opacity: 0.3;
}


.newsDetail {
    margin:20px 5px 0px 5px;
}

.newElements{
    font-size: 0;
    margin: 0 -20px;
}

.newElement{
    display: inline-block;
    vertical-align: top;
    padding: 0 20px 50px 20px;
    box-sizing: border-box;
}

.newLandScape{
    width: 100%;
}

.newPortrait{
    width: 50%;
}

.newElement img{
    width: 100%;
}

.newElementEffect{
    transform: translateY(50%);
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.pagination, #infscr-loading {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    display: none;
}

.newContent .col-8 {
    width:70%;
}

.otherdetail {
    width: 25%;
    margin-left: 5%;
}


.otherdetail .newsElement.display {
    display: none;
}

.newContent .otherdetail h3 {
    font-family:'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size:40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

.newsElement img {
    max-width: 100%;
    height: auto;
}

.newContent h3 {
    font-family: 'Saol Display';
    font-size:40px;
    letter-spacing: 1px;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-bottom:40px;
}

.newContent .homeElementName {
    font-family: 'Saol Display bold';
}

.newsDetail img {
    margin:20px 0;
}

.newsElementPicture {
    margin-bottom: 30px;
}


.newsElementContent {
    text-align: center;
    margin-bottom: 40px;
}

.newsElementContent .homeElementTitle{
    display: block;
    font-family:'IBM Plex Mono', monospace;
}

.newsElementContent .homeElementTitle .homeElementName {
    font-family:'IBM Plex Mono', monospace;
    font-weight: 400;
    line-height: 2;
}


    /*LIST*/

.listElementEffect{
    transform: translateY(50%);
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.listElementPicture{
    overflow: hidden;
    position: relative;
}

.listElementPicture img{
    width: 100%;
    height: auto;
    transition-property: filter, transform;
    transition-timing-function: ease;
    transition-duration: .3s;
}

.listElementNickname {
    font-size: 14px;
    text-transform: uppercase;
    padding-bottom: 8px;
    text-align: center;
}

.listElementOverlay{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity .5s ease;
    z-index: 1000;
    background: rgba(0,0,0,0.8);
}

.listElementEffect:hover .listElementOverlay{
    opacity: 1;
}

.listElementEffect:hover .listElementPicture img{
}

.listElement:hover .listElementPicture img{
    filter: brightness(20%);
    -webkit-filter: brightness(20%);
}

.listElementOverlayText{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: white;
    text-align: center;
    width: 100%;
}

.listElementInstagram{
    font-size: 18px;
}

.listElementContent{
    padding-top: 18px;
    text-align: center;
}

.listElementOverlayTextList li{
    padding: 5px 0;
}

.menuListCategories{
    text-align: center;
    padding-bottom: 30px;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 5px;
    font-weight: 500;
}
.menuListCategoriesList li{
    display: inline-block;
    padding: 0 30px;
}

.menuListCategoriesList li a:after{
    content: '';
    display: block;
    width: 0%;
    padding-bottom: 2px;
    border-bottom: 1pt solid black;
    transition: all .3s ease;
}

.menuListCategoriesList li a:hover:after{
    width: 100%;
}

#block-socials {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 10%;
    justify-content: center;
    z-index: 90;
}

#footer {
    margin-top:15px;
    margin-bottom: 20px;
}

/* BOOK */

.closeBook {
    position: fixed;
    top: 5%;
    right: 5%;
    font-size: 50px;
    cursor: pointer;
    z-index: 9999;
}

.closesearch {
    position: fixed;
    top: 5%;
    right: 5%;
    font-size: 50px;
    cursor: pointer;
    z-index: 9999;
}

.bookContainer {
    padding-bottom: 80px;
}

.bookContainerInList {
    background: white;
    width:100%;
    height: 100vh;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index:9999;
}

.bookContainerInList.invisible {
    display: none;
}


.model .name {
    font-size: 47px;
    text-transform: uppercase;
    margin-bottom: 115px;
    text-align: center;
    white-space: nowrap;
    margin-top: 80px;
    font-weight: 600;
    font-family:'IBM Plex Mono', monospace;
}

.instagram .listElementInstagram, .mensuration ul li, .onglets ul li, .pdf {
    font-size: 15px;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mensuration ul li {
    line-height: 1.2;
}
.onglets ul li, .pdf ul li {
    line-height: 1.8;
    cursor: pointer;
    transition: 0.5s;
}

.onglets ul li:hover {
    font-weight: bold;
}

.instagram, .mensuration, .onglets {
    margin-bottom: 30px;
}

.bookElementPicture {
    display: inline-block;
}

.content_news {

}
.content_news .bookElementPicture {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-justify-content:  center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-content: center;
    -ms-flex-line-pack:  center;
    -webkit-align-content: center;

}


.content_news .bookElementPicture {
    width: 100% !important;
    height: auto;
}

.content_news .bookElementPicture.first {
    height: 100%;
    width: auto !important;
}

.content_news .single, .content_news .double {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-justify-content:  center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-content: center;
    -ms-flex-line-pack:  center;
    -webkit-align-content: center;
}

.bottom_model {
    padding-top: 20px;
    border-top: 1px solid black;
    margin-top: 40px;
}

.top_model {
    padding-bottom: 50px;
}

.top_model .col-8.content_onglet {
    padding-right: 11px;
    max-width: 885px;
    position: relative;
    height: 600px;
}

.bookMobiletest {
    width: 100%;
    max-height: 600px;
}

.bookMobiletest .bookElementPicture {
    max-height: 500px;
}

.bookMobiletest .bookElementPicture img {
    height: auto;
    width: auto;
    max-height: 500px;
    max-width: 100%;
}

.content_news_pictures {
    text-align: center;
    vertical-align: middle;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction:  column;
    -webkit-flex-direction: column;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-justify-content:  center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}
.bookElementPicture img.portrait {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
}

.content_bottom_news {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap:  wrap;
    -webkit-flex-wrap:  wrap;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-justify-content:  center;
}
.content_bottom_news .newsElementModel {
    width:18.2%;
    margin:10px;
}

.newsContent {
    height: 100%;
    margin-bottom: 5px;
}

.newsContent a {
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction:  column;
    -webkit-flex-direction: column;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
}

.newsContent .newsDetailText {
    text-align: center;
}

.newsDetailText .newsCategory, .newsDetailText .homeElementTitle {
    font-size:9px;
}

.newsContent .newsDetailName {
    text-transform: uppercase;
    font-size: 14px;
    margin:5px 0;
}


.newsContent .newsDetailName .homeElementName {
    display: block;
    margin-bottom: 5px;
}

.newsContent .newsPicture {
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    max-width: 225px;
    overflow: hidden;
}

.content_bottom_news .newsElementModel img {
    width:100%;
    height: auto;
    transition-property: opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
}

.content_bottom_news .newsElementModel:hover .newsPicture img{
    opacity: 0.3;
}



.content_news_pictures .detail {
    position: absolute;
    bottom: 0;
    left:0;
    right: 0;
    width: 100%;
    background: white;
    text-transform: uppercase;
    font-size: 18px;
    padding:20px 0px;
}

.hidePicture, .hideLargePicture {
    display: none;
}

.content_news_mobile {
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 0;
    opacity: 0;
}

.content_news_pictures .detail span {
    display: block;
}

.content_news .bookElementPicture img.landscape {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 100%;
}

.loadMoreImages {
    font-size: 20px;
    text-align: center;
    margin:50px 0;
    cursor: pointer;
}

.listShows {
    margin:20px 0;
}

.content_shows {
    border-top:1px solid black;
    margin-bottom: 20px;
    padding-top:20px;
}

.listShows .showmasonry {
    max-width: 80%;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.listShows .showmasonry img {
    max-width: 100%;
    height: auto;
}

.listShows .bookElementPicture img {
    width:100%;
    height: auto;
}

h2.titlemobile {
    display: none;
}

.content_videos {
    padding-top:40px;
    padding-bottom: 20px;
    max-width: 58%;
    margin: 0 auto;
}


.content_videos .onevideo {
    position: relative;
}
.content_videos .onevideo img {
    z-index: 20;
    transform: scale(1);
    transition: 0.5s;
}

.content_videos .onevideo.active iframe {
    transform: scale(1);
    z-index: 999;
    opacity: 1;
}

.content_videos .onevideo.active img {
    transform: scale(0);
    opacity: 0;
}


.content_videos iframe {
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: 5;
    transform: scale(0);
    opacity: 0;
}

.polaroidsMobile, .showsMobile {
    display: none;
}

.listPolaroids {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding-top:20px;
    margin: 0 auto;
    padding-bottom: 20px;
    max-width: 1255px;
}
.listPolaroids .bookElementPicture {
    display: inline-block;
    width:18.7%;
    vertical-align: middle;
    margin: 13px;
}

.listPolaroids .bookElementPicture img {
    width: 100%;
    height: auto;
}

#polaroidsOpen, #showsOpen, #portfolioOpen{
    position: fixed;
    top:0;
    height: 100%;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    padding:50px;
    z-index: 9999;
}

.closeoverlayPolaroid, .closeoverlayshows, .closeoverlayPortfolio {
    position: fixed;
    background: rgba(0,0,0,0.7);
    top:0;
    height: 100%;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    padding:50px;
    z-index: 990;
}

#polaroidsOpen .polaroidOpenElements .bookElementPicture img,
#showsOpen .showsOpenElements .bookElementPicture img,
#portfolioOpen .portfolioOpenElements .bookElementPicture img {
    max-height:88vh;
}

#polaroidsOpen .polaroidOpenElements,
#showsOpen .showsOpenElements,
#portfolioOpen .portfolioOpenElements {
    max-width: 65%;
    margin: 0 auto;
    position: relative;
    z-index: 999;
}
#polaroidsOpen .slick-arrow,
#showsOpen .slick-arrow,
#portfolioOpen .slick-arrow {
    color:white;
}

#polaroidsOpen .polaroidsOpenedPrev,
#showsOpen .showsOpenedPrev,
#portfolioOpen .portfolioOpenedPrev {
    position: absolute;
    top:50%;
    left: 10%;
    font-size: 80px;
    cursor: pointer;
    z-index: 9999;
}
#polaroidsOpen .polaroidsOpenedNext,
#showsOpen .showsOpenedNext,
#portfolioOpen .portfolioOpenedNext{
    position: absolute;
    top:50%;
    right: 10%;
    cursor: pointer;
    font-size: 80px;
    z-index: 9999;
}


#polaroidsOpen .closepolaroid,
#showsOpen .closeshows,
#portfolioOpen .closeportfolio {
    position: fixed;
    top: 5%;
    right: 5%;
    font-size: 50px;
    cursor: pointer;
    z-index: 9999;
    color:white;
    cursor: pointer;
}


.slick-initialized .slick-slide {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-justify-content:  center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
}

.slick-initialized .slick-slide {
    overflow: hidden;
}

/* CONTACT */

.newContent {
    margin: 0 15% auto;
}

.newContent .newsDetail {
    line-height: 1.5;
}

.contact, .newContent {
    margin-bottom: 160px;
}


.contact .maj {
    font-weight: 600;
    font-family:'IBM Plex Mono', monospace;
    text-transform: uppercase;
    font-size:16px;
    letter-spacing: 2px;
    line-height: 1.5;
}

.contact .name {
    font-weight: 500;
    font-family:'IBM Plex Mono', monospace;
    text-transform: uppercase;
    font-size:28px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contact .subtext {
    font-family:'IBM Plex Mono', monospace;
    font-size:14px;
    letter-spacing: 2px;
    line-height: 1.8;
}

.listcontact.last {
    margin-top:85px;
}

.city {
    margin-top: 50px;
    margin-bottom: 0px;
}


.city .col-3 {
    min-height: 90px;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction:  column;
    -webkit-flex-direction: column;
    justify-content: flex-end;
    -ms-flex-pack: end;
    -webkit-justify-content:  flex-end;
    position: relative;
}


.city .col-3 .bordermap {
    display: inline-block;
    position: relative;
    top: -20px;
}
.city .col-3 .map {
    background: black;
    border-radius: 100%;
    padding: 5px;
    text-transform: uppercase;
    font-size: 10px;
    width: 35px;
    height: 35px;
    color:white;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-justify-content:  center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    transition: 0.5s;
}

.city .col-3 .map:hover {
    background: #eee;
    color:black;
}

.contact h3 {
    font-family: 'Saol Display';
    font-size:80px;
    letter-spacing: 0px;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.contact h4 {
    font-family: 'Saol Display';
    font-size: 28px;
    margin: 40px 0;

}


/* BECOME */

.become {
    text-align: center;
    margin-bottom: 160px;
}
.become h3 {
    font-family: 'Signerica';
    font-size:52px;
    margin-top:-40px;
    margin-bottom: 60px;
}

.become p {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 300;
    letter-spacing: 2px;
    font-size:16px;
    max-width: 45%;
    min-width: 450px;
    line-height: 1.5;
    margin: 0 auto;
    padding-bottom: 40px;
}

a.mailto {
    background: black;
    color:white;
    padding:5px 10px;
    letter-spacing: 2;
    font-size:15px;
}

.separator {
    font-size:10px;
    margin:40px 0;
}

/* SEARCH */

.searchOverlayContent {
    position: absolute;
    top:0;
    bottom:0;
    left: 0;
    right: 0;
    width:100%;
    height: 100vh;
}

.topsearch {
    padding-top: 160px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 12;
}

#inputSearch{
    border: none;
    border-bottom: 1px solid black;
    background: none;
    border-radius: 0;
    width: 50%;
    text-align: center;
    font-size: 32px;
    padding-bottom: 10px;
    letter-spacing: 3px;
    -webkit-appearance: none;
}

.listSearch {
    width: 50%;
    position: relative;
    z-index: 12;
    margin: 0 auto;

}

.listSearch .page {
    margin: 20px 0;
    height: 100%;
    max-height: 420px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #000 transparent;
}

.listSearch .page::-webkit-scrollbar-thumb {
    width: 12px;
    border-radius: 0px;
    background-color: #000;
}


.listSearch .page::-webkit-scrollbar-track {
    background-color: transparent;
}

.listSearch .page::-webkit-scrollbar {
    width: 12px;
}

.listSearch .page .element .listText {
    font-size:25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    cursor: pointer;

}



.backtop, .backtopbook {
    background: white;
    font-size:20px;
    padding:15px;
    width:50px;
    height: 50px;
    position: fixed;
    bottom:3%;
    right:3%;
    z-index: -1;
    opacity: 0;
    transition: 0.5s;
    cursor: pointer;
    display: none;
}
.backtopbook {
    opacity: 1;
    z-index: 9999;
}
.backtop.active {
    opacity: 1;
    z-index: 980;
}