

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;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

* {
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*:focus {
    outline: none;
}

body {
  width: 100%;
  min-height: 100vh;
  position: absolute;
  padding: 0;
  margin: 0;
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.left-side {
    width: 50vw;
    opacity: 0;
    transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2.3s;
    min-height: 100vh;
    overflow: auto;
    height: auto;
}

.loaded .left-side {
    opacity: 1;
}

.right-side {
    padding: 100px;
    position: fixed;
    background: white;
    height: 100vh;
    width: 100vw;
    top: 0;
    right: 0;
    transition: 1.9s cubic-bezier(0.67, 0.02, 0.2, 0.97) 0.6s;
}

.loaded .right-side {
    width: 50vw;
    z-index: 999;
}

h1 {
  font-size: 36px;
  padding-bottom: 0;
  max-width: 480px;
}

h3 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h4 {
    font-size: 18px;
}

nav {
  width: 50vw;
  height: 330px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgb(255 255 255 / 98%);
  transition: all 600ms;
  z-index: 99;
}

.left-side p {
  margin: 30px 0;
  font-weight: 300;
  line-height: 1.7;
}

.right-side p {
    max-width: 50%;
    color: #ffffff;
    opacity: 0;
    transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2s;
}

span.underline:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    position: absolute;
    left: 0;
    bottom: 0;
}

span.underline {
    position: relative;
    padding-bottom: 6px;
}

a {
  color: inherit;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  line-height: 1.7;
}

a:after {
    content: '';
    background: #0a0a0a;
    height: 1px;
    left: 0;
    bottom: -3px;
    width: 0;
    position: absolute;
    transition: 0.6s cubic-bezier(0.67, 0.02, 0.2, 0.97);
}

.slide-content a:after {
    background: #ffffff;
    bottom: -1px;
}

a:hover:after {
    width: 100%;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
}

nav ul li {
    padding: 0 5px;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-left: -1px;
}

.slider {
    position: absolute !important;
    width: 50vw;
    height: 100vh;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2.2s;
    z-index: 1;
}

.loaded .slider {
    width: 50vw;
    height: 100vh;
    left: 0;
    top: 0;
    opacity: 1;
}

.slide-content {
    padding-top: 100px;
    position: relative;
    transform: translate3d(0%, 0%, 0);
    max-width: 350px;
    transform-origin: top left;
    transition: 0.2s cubic-bezier(0.67, 0.02, 0.2, 0.97);
    /* top: calc(100vh - 100px); */
    left: 50px;
    z-index: 99999;
}

.slick-current .slide-content {
    transform: translate3d(0%, 0%, 0);
}

.slide {
    /* padding-bottom: 20vw; */
    /* max-width: 740px; */
    position: relative;
}

.image-container,
.image-container-static {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: block;
    transition: 1s cubic-bezier(0.67, 0.02, 0.2, 0.97);
}

.slide-img.active {
    overflow: hidden;
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    background: #0a0a0a;
}

.slide.active {
    opacity: 1;
}

.loaded .right-side .slide p,
.loaded .right-side .slide h2 {
    opacity: 0.5;
    transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 0s;
}

.loaded .right-side .slick-current p,
.loaded .right-side .slick-current h2 {
    opacity: 1;
}

.slide-img img {
    height: 100vh;
    width: 25vw;
    object-fit: cover;
    right: 0;
    left: auto;
    /* position: absolute; */
    display: block;
    transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 0.65s;
}

.loaded .slide-img img {
    width: 62vw;
}

.slick-current.slide-img img {}

.loaded .slider .slide {
    overflow: initial;
    width: 38vw !important;
}

.slide-content a {
    color: #ffffff;
    font-size: 16px;
    padding-bottom: 2px;
    padding-top: 10px;
    display: inline-block;
    opacity: 0.5;
    position: relative;
}

.slide-content h3 {
  margin-bottom: 10px;
  color: white;
}

.slide-content h2 {
  text-transform: none;
}

.slick-current .slide-content a {
    opacity: 1;
}

p.copyright {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.loaded .right-side p {
    opacity: 1;
    position: relative;
    z-index: 1;
}




.left-side .container {
  width: 100%;
  padding: 100px 50px;
}

.right-side h2 {
    color: #ffffff;
}

.content-title {
    padding-bottom: 100px;
    max-width: 420px;
}

/* .info .content-title {
  padding-bottom: 30px;
} */

.content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.content-block {
  width: calc(50% - 10px);
  padding-bottom: 50px;
}

.image-container.affiche {
    left: 50vw;
}

.slider.affiche {}

.content.full {
    width: 100%;
}

.full .content-block {
    width: 100%;
}

.full .content-block h3 {
    opacity: 1;
    padding: 20px 0;
}

.content-title p {
    margin-top: 0;
    margin-bottom: 15px !important;
}

@media screen and (max-width:1180px) {
    .content-block {
        width: 100%;
    }
}

@media screen and (max-width:1080px) {

h2 {
  font-size: 24px;
  margin-left: 0px;
}

.content-block {
  padding-bottom: 25px;
}

.bande-top {
  width:100% !important;
  height: auto !important;
  left: 0px !important;
}

.left-side {
  width: 100vw;
  max-width: 540px;
  margin: 60px auto 0;
}

.left-side .container {
  padding: 70px 50px;
}

h1 {
  font-size: 26px;
}

.content-title {
  padding-bottom: 60px;
}

}

.slick-disabled {
    transform: scale(0);
}


@media screen and (min-width: 501px) and (max-width: 1080px) and (orientation: portrait) {

.left-side .container {
  justify-content: center;
  min-height: auto;
}

}

.bande-top {
    position: fixed;
    top: 0;
    width: 50vw;
    height: 50px;
    background: #0a0a0a;
    color: #ffffff;
    z-index: 999;
    padding: 10px;
    text-align: center;
    transition: 0.6s ease;
}

.bande-top a {
    font-size: 16px;
    border-bottom: 1px solid;
    margin: -2px 0px 0 20px;
    display: inline-block;
    vertical-align: middle;
}

.bande-top p {
    max-width: 460px;
    margin: 20px auto;
    text-align: center;
    font-size: 14px;
    opacity: 0;
    transition: 0.6s ease;
}

.bande-top:hover p {
    opacity: 1;
}

.flash {
	color:#DC143C;
	font-weight:bold;
}

@media screen and (max-width: 1280px) {
    .titre-bande {
        /* display: none; */
        font-size: 12px;
    }

    .bande-top a {
        margin: 0;
        padding-top: 5px
    }
}
