body {
      font-family: "Source Sans Pro", Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.75;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center; /* Centrer horizontalement */
      align-items: center; /* Centrer verticalement */
      height: 98vh; /* Pleine hauteur de la fenêtre */
    }




/* horizontal scroll with mouse */


body.home{
	overflow: hidden;
	width: 20000px;/*la largeur du body doit être fixée à une valeur supérieure à la largeur maximum possible*/
}

body.home #main-container{
	margin: 0;
	height: 100%;/*le conteneur principal doit couvrir toute la hauteur du body*/
	padding: 0;
	width: auto;
}

#main-container{
	margin-top: 100px; /*on laisse la place pour le menu principal*/
	padding: 0;
}

.zone_home{
	height: 100%;
	display: block;
	float:left;/*toutes les zones sont flottantes*/
	position: relative;
	width : 100vw;/*toutes les zones ont par défaut la largeur de l'écran, ce comportement peut être modifié au cas par cas*/
}

#zone_home_principale{
	width: 100vw;
	height: 100%;
	overflow: hidden;
	background-size: cover;
	background-position: 0% 100%;
}



/* Important part */
.modal-dialog{
    overflow-y: initial !important
}
.modal-body{
    height: 80vh;
    overflow-y: auto;
}


/* horizontal scroll with mouse end */




/* ajustement */




.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #a2875e;
  --bs-btn-border-color: #a2875e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a2875e;
  --bs-btn-hover-border-color: #a2875e;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a2875e;
  --bs-btn-active-border-color: #a2875e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #a2875e;
  --bs-btn-disabled-border-color: #a2875e;
}





.container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.item {
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: start;
}

.titre {
color: #a2875e;
  position: absolute;
  top: 135px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  font-size: 2em;
}

.description {
font-size: 1.0em;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 215px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}


hr {
	width:50px;
	border:solid 2px #a2875e;
	margin-left: auto;
	margin-right: auto;
	opacity: 100;
}



.fullscreen-modal {
  z-index: 99999; /* Assure que le modal est au-dessus de tout le reste */
}

.fullscreen-modal .modal-dialog {
  margin: 0;
  max-width: none;
  width: 100%;
  height: 100%;
}

.fullscreen-modal .modal-content {
  height: 100%;
}

.fullscreen-modal .modal-body {
  overflow-y: auto;
  padding: 20px;
  height: calc(100% - 70px); /* Ajuste la hauteur en fonction de la taille de l'en-tête et des boutons */
}

/* fin ajustement */



   #logo {
  position: absolute; /* Position absolue pour placer le logo */
  top: 55px; /* Déplacer le logo vers le haut de 50% de la hauteur de la fenêtre */
  left: 50%; /* Déplacer le logo vers la gauche de 50% de la largeur de la fenêtre */
  transform: translate(-50%, -50%); /* Déplacer le logo de moitié de sa propre largeur et hauteur vers le haut et la gauche */
  z-index: 1001; /* Assurez-vous que le logo est au-dessus de la timeline */
}


    #timeline {
      display: flex;
      background-color: #031625;
      overflow-x: auto;
      /* white-space: nowrap; */
    }

 .tl-item {
  transform: translate3d(0, 0, 0);
  position: relative;
  width: 100%;
  min-width: 300px;
  height: 100vh;
  min-height: 600px;
  color: #fff;
  overflow: hidden;

}

.tl-item:hover {
  width: 30% !important;

}

	    .touch-hover:hover {
      /* Vos styles hover ici */
      transform: scale(1.1);
    }

	  

    .tl-bg {
      transform: translate3d(0, 0, 0);
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-size: cover;
      background-position: center center;
      transition: filter 0.5s ease;
      filter: grayscale(100%);
    }

    .tl-content {
      transform: translate3d(0, 0, 0) translateY(25px);
      position: relative;
      z-index: 1;
      text-align: center;
      margin: 0 1.618em;
      top: 55%;
      opacity: 0;
      transition: all 0.75s ease 0.5s;
    }

    @media only screen and (min-width: 600px) {
      .tl-item {
        width: 50%;
      }
		

    }

    @media only screen and (min-width: 900px) {
      .tl-item {
        width: 33.3333%;
      }
		
    }

    .tl-item:before, .tl-item:after {
      transform: translate3d(0, 0, 0);
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
    }

    .tl-item:after {
      background: rgba(3, 22, 37, 0.85);
      opacity: 1;
      transition: opacity 0.5s ease;
    }

    .tl-item:before {
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 75%);
      z-index: 1;
      opacity: 0;
      transform: translate3d(0, 0, 0) translateY(50%);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .tl-item:hover:after {
      opacity: 0;
    }

    .tl-item:hover:before {
      opacity: 1;
      transform: translate3d(0, 0, 0) translateY(0);
      transition: opacity 1s ease, transform 1s ease 0.25s;
    }

    .tl-item:hover .tl-content {
      opacity: 1;
      transform: translateY(0);
    }

    .tl-item:hover .tl-bg {
      filter: grayscale(0);
    }

    .tl-content h1 {
      font-family: "Pathway Gothic One", Helvetica Neue, Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      color: #a2875e;
      font-size: 1rem;
      font-weight: normal;
    }

    .tl-year {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
      z-index: 1;
      border-top: 1px solid #fff;
      border-bottom: 1px solid #fff;
    }

    .tl-year p {
    font-family: "Pathway Gothic One", Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 1.2rem;
      
    }

    button, hr, input {
      overflow: visible;
    }

    audio, canvas, progress, video {
      display: inline-block;
    }

    progress, sub, sup {
      vertical-align: baseline;
    }

    html {
      font-family: sans-serif;
      line-height: 1.15;
      -ms-text-size-adjust: 100%;
      -webkit-text-size-adjust: 100%;
    }

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

    h1 {
      font-size: 2em;
      margin: .67em 0;
    }

    figcaption, figure, main {
      display: block;
    }

    figure {
      margin: 1em 40px;
    }

    hr {
      box-sizing: content-box;
      height: 0;
    }

    code, kbd, pre, samp {
      font-family: monospace, monospace;
      font-size: 1em;
    }

    a {
      background-color: transparent;
      -webkit-text-decoration-skip: objects;
    }

    a:active, a:hover {
      outline-width: 0;
    }

    abbr[title] {
      border-bottom: none;
      text-decoration: underline;
      text-decoration: underline dotted;
    }

    b, strong {
      font-weight: bolder;
    }

    dfn {
      font-style: italic;
    }

    mark {
      background-color: #ff0;
      color: #000;
    }

    small {
      font-size: 80%;
    }

    sub, sup {
      font-size: 75%;
      line-height: 0;
      position: relative;
    }

    sub {
      bottom: -.25em;
    }

    sup {
      top: -.5em;
    }

    audio:not([controls]) {
      display: none;
      height: 0;
    }

    img {
      border-style: none;
    }

    svg:not(:root) {
      overflow: hidden;
    }

    button, input, optgroup, select, textarea {
      font-family: sans-serif;
      font-size: 100%;
      line-height: 1.15;
      margin: 0;
    }

    button, input {
      overflow: visible;
    }

    button, select {
      text-transform: none;
    }

    [type=submit], [type=reset], button, html [type=button] {
      -webkit-appearance: button;
    }

    [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
      border-style: none;
      padding: 0;
    }

    [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
      outline: 1px dotted ButtonText;
    }

    fieldset {
      padding: .35em .75em .625em;
    }

    legend {
      box-sizing: border-box;
      color: inherit;
      display: table;
      max-width: 100%;
      padding: 0;
      white-space: normal;
    }

    textarea {
      overflow: auto;
    }

    [type=checkbox], [type=radio] {
      box-sizing: border-box;
      padding: 0;
    }

    [type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
      height: auto;
    }

    [type=search] {
      -webkit-appearance: textfield;
      outline-offset: -2px;
    }

    [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
      -webkit-appearance: none;
    }

    ::-webkit-file-upload-button {
      -webkit-appearance: button;
      font: inherit;
    }

    details {
      display: block;
    }

    summary {
      display: list-item;
    }

    template {
      display: none;
    }

    [hidden] {
      display: none;
    }

	  
	  

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	/* padding:0 20px; */
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Group Styles */

.bloc-group{
	display:flex;
}
.bloc-tile-2{
	width:50%;
}
.bloc-tile-3{
	width:33.33333333%;
}
.bloc-tile-4{
	width:25%;
}
.bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
	width:100%;
}


/* Bloc Mask */

.bloc-bg-mask{
	position: absolute;
	width:100%;
	height: 100%;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
	align-items: flex-start;
}
.svg-mask{
	width:100%;
	height: 100%;
	fill-rule: evenodd;
	fill:#000000;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}
.texture-darken-strong::before{
	background: rgba(0,0,0,0.8);
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}
/* Dividers */

.b-divider{
	border-top:1px solid rgba(0,0,0,.1);
	border-bottom:1px solid rgba(0,0,0,.1);
}


/* = NavBar
-------------------------------------------------------------- */

/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}

/* Nav Special Classes */
.nav-special{
	overflow-y:scroll;
}
.nav-special .site-navigation{
	top:0;
	left:0;
	width:100%;
	position: relative!important;
	max-width: 100%!important;
	z-index: 1000;
}
.nav-special .nav > li{
	width:100%;
	background: none!important;
	border:0!important;
}
.nav-special.collapsing{
	-webkit-transition: none;
	transition: none;
	height:100%!important;
	background: none!important;
}
.nav-special .navbar-nav .dropdown-menu.show{
	position: relative!important;
	transform: none!important;
	float: none;
	width: 100%;
	margin-top: 0;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
}
.nav-special .nav .dropdown-menu .nav-link{
	color:#FFF;
}
.blocsapp-special-menu{
	position: absolute;
	z-index:10000;
}
.nav-special.fullscreen-nav .caret,.nav-special.fullscreen-nav .dropdown-menu .dropdown .caret{
	border-width: 8px;
}
.nav-special .navbar-nav .show>.nav-link{
	color:#FFF;
}

/* Animate Menu Symbol */
.navbar-toggle{
	transition: all .1s linear;
}
.selected-nav{
	opacity: 0;
	transform: scale(0.3);
	transition: all .1s linear;
}


/* Special Menu Close Button */
.close-special-menu{
	position: absolute;
	display: block;
	width: 25px;
	height:25px;
	top:16px;
	right:10px;
	z-index: 10000;
}
.nav-invert .sidebar-nav .close-special-menu{
	left:260px;
}
.close-special-menu .close-icon{
	display: block;
	width:100%;
	height:1px;
	transform: rotate(45deg);
	margin-top:12px;
}
.close-special-menu .close-icon:after{
	content:"";
	display:inherit;
	width:inherit;
	height:inherit;
	background: inherit;
	transform: rotate(90deg);
}
.lock-scroll{
	overflow:hidden;
	transition: background .3s linear;
}
.nav-special::-webkit-scrollbar{
	-webkit-appearance: none;
	width:0;
	height:0;
}
.nav-special .dropdown-menu .dropdown .caret{
	border-top-color: rgba(255,255,255,.8);
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	margin: 0 0 0 5px;
	float: none;
}
.blocsapp-special-menu .site-navigation.pull-right{
	float:none!important;
}

/* Nav Special Close Button */
.close-special-menu .close-icon{
	background:#fff;
}
.blocsapp-special-menu blocsnav{
	background: #000;
}

/* Full Screen Navigation */
.nav-special.fullscreen-nav{
	width: 100%;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	z-index: 1000;
	position: fixed;
	transition: all .2s linear;
}
 .nav-special.fullscreen-nav.open-up{
	transform: translateY(1000px);
}
 .nav-special.fullscreen-nav.open-down{
	transform: translateY(-1000px);
}
 .nav-special.fullscreen-nav.open-left{
	transform: translateX(-1000px);
}
 .nav-special.fullscreen-nav.open-right{
	transform: translateX(1000px);
}
 .nav-special.fullscreen-nav .nav > li a,.nav-special.fullscreen-nav .nav .dropdown-menu > li > a{
	color:rgba(255,255,255,.8);
	text-align: center;
	font-size: 28px;
}
 .nav-special.fullscreen-nav .nav > li a:hover{
	color:#FFF;
}
 .open.nav-special.fullscreen-nav{
	opacity: 1;
	transition: all .2s linear;
}
.nav-special.fullscreen-nav .site-navigation{
	text-align:center;
	margin-top:10%!important;
}
.nav-special.fullscreen-nav .close-special-menu{
	right:20px;
}
 .open.nav-special.fullscreen-nav.open-left,  .open.nav-special.fullscreen-nav.open-right,  .open.nav-special.fullscreen-nav.open-down, .open.nav-special.fullscreen-nav.open-up{
	transform: translateY(0);
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-clear{
	margin:0;
	text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-sq{
	border-radius: 0px;
}
.btn-style-none,.btn-style-none:hover,.btn-style-none:active,.btn-style-none:focus{
	background:none;
	box-shadow: none;
	padding:0;
}
.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}





/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}

/* = Forms
-------------------------------------------------------------- */

.form-control{
	border-color:rgba(0,0,0,.1);
	box-shadow:none;
}



/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

/* = Modal
-------------------------------------------------------------- */

.modal-fill{
	max-width: 60%;
}

@media (max-width: 576px) {
  .modal-dialog {
    margin-right: auto;
    margin-left: auto;
    max-width: 90%;
  }
}

.btntexte {
	color: #fff !important;
}


.close{
	color:#000;
	opacity:0.5;
}
.close:hover{
	opacity:1;
}
/* = Lightbox
-------------------------------------------------------------- */

a[data-lightbox]{
	position: relative;
	display: block;
	text-align: center;
}
a[data-lightbox]:hover::before{
	content:"+";
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial;
	font-size:32px;
	line-height: 42px;
	width:50px;
	height:50px;
	margin-left:-25px;
	border-radius: 50%;
	background:rgba(0,0,0,.5);
	color:#FFF;
	font-weight:100;
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
a[data-lightbox]:hover img{
	opacity: 0.6;
	-webkit-animation-fill-mode: none;
	animation-fill-mode:none;
}
.lightbox-caption{
	padding: 20px;
	color: #FFF;
	background: rgba(0,0,0,.5);
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 0px;
}
.close-lightbox:hover,.next-lightbox:hover, .prev-lightbox:hover{
	background:rgba(0,0,0,.5);
}
.next-lightbox, .prev-lightbox,.close-lightbox{
	position: absolute;
	padding:6px;
	background:rgba(0,0,0,.3);
	line-height:0;
	transition: background .2s ease-in-out;
	border-radius:.25rem;
	border:none;
	z-index:20;
}
.next-lightbox, .prev-lightbox{
	top:45%;
}
.close-lightbox{
	top:20px;
	right:20px;
}
.next-lightbox{
	right:25px;
}
.prev-lightbox{
	left:25px;
}
.lightbox-prev-icon,.lightbox-next-icon,.lightbox-close-icon{
	fill:none;
	stroke: #fff;
	stroke-width: 3px;
	fill-rule: evenodd;
	stroke-linecap:round;
}
.lightbox-close-svg{
	pointer-events:none;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Open Sans";
}
.container{
	max-width:1140px;
}
.hero-heading{
	font-size:85px;
}
.sub-header{
	font-size:20px;
}
.logo-style{
	font-size:20px;
	text-transform:uppercase;
	font-family:"Open Sans";
	font-weight:800;
	text-decoration:none;
}
.page-heading{
	font-size:60px;
}
.read-more-link{
	font-size:18px;
	text-decoration:none;
	text-transform:uppercase;
	border-style:double;
	border-width:0px 0px 0px 10px;
	padding-left:10px;
}
.bloc-border{
	border-color:var(--swatch-var-6728)!important;
	border-width:1px 1px 1px 1px;
	border-style:solid;
}
.section-heading{
	font-weight:800;
	font-size:40px;
}
.field-style{
	border-radius:0px 0px 0px 0px;
}
.uppercase-text{
	text-transform:uppercase;
}
.event-grid-style{
	grid-template-columns:1fr;
	row-gap:0px;
}
.grid-event-item{
	grid-template-columns:1fr 1fr 1fr 1fr;
	grid-template-rows:100px;
	justify-items:center;
	align-items:center;
	color:var(--swatch-var-7376)!important;
	column-gap:0px;
}
.black-bg{
	background-color:var(--swatch-var-7376);
	color:var(--swatch-var-6728)!important;
}
.outline-container{
	padding:20px 20px 20px 20px;
	border-style:solid;
	border-color:var(--swatch-var-6728)!important;
	border-width:2px 2px 2px 2px;
}
.gradient-text{
	background:linear-gradient(0deg, transparent  0%, #FFFFFF 64%);
	background-clip:text!important;
	-webkit-background-clip:text!important;
	color:transparent!important;
}
.hero-lower-section{
	margin-bottom:100px;
}
.overlap-grid{
	grid-template-rows:1fr;
	grid-template-columns:2fr 1fr;
	padding:20px 20px 20px 20px;
}
.overlap-col{
	position:absolute;
	top:-40px;
}
.secondary-top{
	border-color:var(--swatch-var-3191)!important;
	border-style:solid;
	border-width:15px 0px 0px 0px;
}
.box-card{
	padding:30px 20px 20px 20px;
}
.primary-top{
	border-width:15px 0px 0px 0px;
	border-color:var(--swatch-var-3409)!important;
	border-style:solid;
}
.price-card{
	padding:40px 40px 40px 40px;
	box-shadow:0.00px 0.00px 25px rgba(0,0,0,0.15);
}
.black-top{
	border-style:solid;
	border-color:var(--swatch-var-7376)!important;
	border-width:15px 0px 0px 0px;
}
.price-text{
	font-size:40px;
}
.price-header{
	font-size:40px;
}
h1,h2,h3,h4,h5,h6{
	font-family:"Open Sans";
	font-weight:800;
}
.overlay-title{
	position:absolute;
	left:0px;
	z-index:1;
	padding:10px 20px 10px 20px;
	background-color:var(--swatch-var-7376);
	bottom:0px;
}
.gallery-item{
	position:relative;
}
.bold-text{
	font-weight:800;
}
.overlay-text{
	font-size:26px;
	font-weight:800;
}
.hero-mask-svg-fill{
	fill:rgba(0,0,0,0.20);
}
.btn{
	font-weight:600;
	text-transform:uppercase;
}
.glass-bg{
	backdrop-filter:blur(10px);
	-webkit-backdrop-filter:blur(10px);
	background-color:rgba(0,0,0,0.30);
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-7376:rgba(0,0,0,1.00);
	
	--swatch-var-6728:rgba(255,255,255,1.00);
	
	--swatch-var-3409:rgba(166,45,195,1.00);
	
	--swatch-var-6691:rgba(45,39,47,1.00);
	
	--swatch-var-3191:rgba(69,174,241,1.00);
	
	--swatch-var-4494:rgba(255,255,255,0.50);
	
}


/* Background colour styles */

.bgc-3409{
	background-color:var(--swatch-var-3409);
}
.bgc-7376{
	background-color:var(--swatch-var-7376);
}
.bgc-6728{
	background-color:var(--swatch-var-6728);
}
.bgc-7376{
	background-color:var(--swatch-var-7376);
}

/* Text colour styles */

.tc-6728{
	color:var(--swatch-var-6728)!important;
}
.tc-3409{
	color:var(--swatch-var-3409)!important;
}
.tc-7376{
	color:var(--swatch-var-7376)!important;
}
.tc-4494{
	color:var(--swatch-var-4494)!important;
}
.tc-3191{
	color:var(--swatch-var-3191)!important;
}

/* Button colour styles */

.btn-c-7376{
	background:var(--swatch-var-7376);
	color:#FFFFFF!important;
}
.btn-c-7376:hover{
	background:#000000!important;
	color:#FFFFFF!important;
}
.btn-c-3409{
	background:var(--swatch-var-3409);
	color:#FFFFFF!important;
}
.btn-c-3409:hover{
	background:#730090!important;
	color:#FFFFFF!important;
}
.btn-c-3191{
	background:var(--swatch-var-3191);
	color:rgba(0,0,0,.5)!important;
}
.btn-c-3191:hover{
	background:#127BBE!important;
	color:rgba(0,0,0,.5)!important;
}

/* Link colour styles */

.ltc-6728{
	color:var(--swatch-var-6728)!important;
}
.ltc-6728:hover{
	color:#CCCCCC!important;
}
.ltc-3409{
	color:var(--swatch-var-3409)!important;
}
.ltc-3409:hover{
	color:#730090!important;
}

/* Bloc image backgrounds */

.bg-back-of-guy{
	background-image:url("img/back-of-guy.jpg");
	background-image: -webkit-image-set(url("img/back-of-guy.webp") 1x,
url("img/back-of-guy.webp") 2x);background-image: image-set(url("img/back-of-guy.jpg") 1x,
url("img/back-of-guy.jpg") 2x,url("img/back-of-guy.webp") 1x,
url("img/back-of-guy.webp") 2x);
}
.bg-dj{
	background-image:url("img/dj.jpg");
	background-image: -webkit-image-set(url("img/dj.webp") 1x,
url("img/dj.webp") 2x);background-image: image-set(url("img/dj.jpg") 1x,
url("img/dj.jpg") 2x,url("img/dj.webp") 1x,
url("img/dj.webp") 2x);
}
.bg-concert{
	background-image:url("img/concert.jpg");
	background-image: -webkit-image-set(url("img/concert.webp") 1x,
url("img/concert.webp") 2x);background-image: image-set(url("img/concert.jpg") 1x,
url("img/concert.jpg") 2x,url("img/concert.webp") 1x,
url("img/concert.webp") 2x);
}
.bg-decks{
	background-image:url("img/decks.jpg");
	background-image: -webkit-image-set(url("img/decks.webp") 1x,
url("img/decks.webp") 2x);background-image: image-set(url("img/decks.jpg") 1x,
url("img/decks.jpg") 2x,url("img/decks.webp") 1x,
url("img/decks.webp") 2x);
}
.bg-live-dj{
	background-image:url("img/live-dj.jpg");
	background-image: -webkit-image-set(url("img/live-dj.webp") 1x,
url("img/live-dj.webp") 2x);background-image: image-set(url("img/live-dj.jpg") 1x,
url("img/live-dj.jpg") 2x,url("img/live-dj.webp") 1x,
url("img/live-dj.webp") 2x);
}
.bg-hero-wide{
	background-image:url("img/hero-wide.jpg");
	background-image: -webkit-image-set(url("img/hero-wide.webp") 1x,
url("img/hero-wide.webp") 2x);background-image: image-set(url("img/hero-wide.jpg") 1x,
url("img/hero-wide.jpg") 2x,url("img/hero-wide.webp") 1x,
url("img/hero-wide.webp") 2x);
}

/* = Custom Bric Data
-------------------------------------------------------------- */



/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.grid-event-item{
		grid-template-rows:100px;
	}
	.hero-heading{
		font-size:70px;
	}
	.overlap-grid{
	}
	.hero-mask-svg-fill{
	}
	.btn{
	}
	
			.titre {
color: #a2875e;
  position: absolute;
  top: 135px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
font-size: 0.8em;
}
	
	
	
	.description {
font-size: 0.7em;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 235px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}
	
}

@media (max-width: 767px){
	.logo-style{
		font-size:25px;
	}
	.page-heading{
		font-size:50px;
	}
	.hero-heading{
		font-size:50px;
	}
	.grid-event-item{
		grid-template-rows:80px;
	}
	.overlay-text{
		font-size:22px;
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-6728)!important;
		fill:var(--swatch-var-6728)!important;
	}
	.hero-lower-section{
		margin-bottom:80px;
	}
	.hero-mask-svg-fill{
	}
	.glass-bg{
	}
	
	/* Small Text Margin Offsets */
	.mg-lg-sm{
		margin-top: 10px;
		margin-bottom:40px;
	}
	
			.titre {
color: #a2875e;
  position: absolute;
  top: 135px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
font-size: 0.8em;
}
	
	
	
	.description {
font-size: 0.7em;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 235px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}
	
	
	
}

@media (max-width: 575px){
	.page-heading{
		font-size:40px;
	}
	.logo-style{
	}
	.grid-event-item{
		grid-template-columns:1fr 1fr;
		grid-template-rows:50px 50px;
	}
	.sub-header{
		font-size:18px;
	}
	.hero-mask-svg-fill{
		fill:rgba(0,0,0,0.70);
	}
	.overlay-text{
		font-size:14px;
	}
	.overlap-col{
		top:-75px;
	}
	.price-card{
		padding:20px 20px 20px 20px;
	}
	.overlap-grid{
		grid-template-columns:1fr;
	}
	
			.titre {
color: #a2875e;
  position: absolute;
  top: 135px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
font-size: 0.8em;
}
	
	
	
	.description {
font-size: 0.7em;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 235px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}
	
}


	  