::-webkit-scrollbar-track 	{ -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); background-color: #CEA36F; }
::-webkit-scrollbar 		{ width: 8px; background-color: #CEA36F; }
::-webkit-scrollbar-thumb	{ background-color: #222; border: 1px solid #444; border-radius: 8px; }

body, html {font-family: 'Rajdhani', sans-serif; font-size: 16px; line-height: 19px; font-weight: 400; } 
body{ text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}

.default-font { font-family: 'Rajdhani', sans-serif!important; font-size: 16px!important; line-height: 19px!important; font-weight: 400!important; }

#toTopBtn { 
	position: fixed; display: none; bottom: 60px; right: 20px; width: 40px; height: 40px; line-height: 40px; text-align: center; 
	-webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; background-color: #5b5e44; transform-origin: 50% 50%; z-index: 999;
	-webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; 
}
#toTopBtn i { 
	font-size: 1em!important; color: #fff!important; transform: rotate(0); position: relative; 
	-webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-tra nsition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; 
}
#toTopBtn:hover { background-color: #fff; }
#toTopBtn:hover i { transform: rotate(360deg); color: #5b5e44; }

.tooltip:hover 	{ opacity: 1!important; -webkit-transition: .3s all ease; -o-transition: .3s all ease; transition: .3s all ease; }
.tooltip > .tooltip-inner { font-family: 'Rajdhani', sans-serif; text-align: left!important; -webkit-border-radius: 5px!important; -moz-border-radius: 5px!important; border-radius: 5px!important; border: none; line-height: 18px!important }

.img-aliasing { 
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated; /* Chrome */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
}

/* BOUNCE EFFECT */
.bounceAnimate {
    -webkit-animation-duration: 0.5s!important; animation-duration: 0.5s!important;
	-webkit-animation-fill-mode: both!important; animation-fill-mode: both!important;
	-webkit-animation-timing-function: ease-in-out!important; animation-timing-function: ease-in-out!important;
	-webkit-animation-name: bounceInUp!important; animation-name: bounceInUp!important; 
}
 
.bounceAnimate.in {
	-webkit-transition-duration: 0.3s!important; -o-transition-duration: 0.3s!important; transition-duration: 0.3s!important;
	-webkit-animation-duration: 0.3s!important; animation-duration: 0.3s!important;
	-webkit-animation-name: bounceInDown!important; animation-name: bounceInDown!important;
}

@-webkit-keyframes bounceInUp { 
    0% { opacity: 0; -webkit-transform: translateY(200px); } 
    20% { opacity: 1; -webkit-transform: translateY(-50px); } 
    40% { -webkit-transform: translateY(30px); } 
    60% { -webkit-transform: translateY(-15px); } 
    80% { -webkit-transform: translateY(10px); } 
    100% { -webkit-transform: translateY(0); } 
} 

@keyframes bounceInUp { 
	0% { opacity: 0; transform: translateY(200px); } 
    20% { opacity: 1; transform: translateY(-50px); } 
    40% { transform: translateY(30px); } 
    60% { transform: translateY(-15px); } 
    80% { transform: translateY(10px); } 
    100% { transform: translateY(0); } 
} 

@-webkit-keyframes bounceInDown {
	0% { opacity: 1; transform: translateY(0px); }
	50% { opacity: 1; transform: translateY(10px); }
	100% { opacity: 0; transform: translateY(-100px); }
}
 
@keyframes bounceInDown {
	0% { opacity: 1; -webkit-transform: translateY(0px); }
	50% { opacity: 1; -webkit-transform: translateY(10px); }
	100% { opacity: 0; -webkit-transform: translateY(-100px); }
}

@-webkit-keyframes Floating {
    from 	{ -webkit-transform: translateX(10px); }
    65% 	{ -webkit-transform: translateX(-10px); }
    to 		{ -webkit-transform: translateX(10px); }
}

@-moz-keyframes Floating {
    from 	{ -moz-transform: translateX(10px); }
    65% 	{ -moz-transform: translateX(-10px); }
    to 		{ -moz-transform: translateX(10px); }
}

.floating {
	transform-origin: center left!important;
    -webkit-animation-duration: 8s; -moz-animation-duration: 8s;
	-webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: ease-in-out;
    -moz-animation-iteration-count: infinite; -moz-animation-timing-function: ease-in-out;
    -webkit-animation-name: Floating; -moz-animation-name: Floating;
}


@-webkit-keyframes Floating2 {
    from 	{ -webkit-transform: translateY(10px); }
    65% 	{ -webkit-transform: translateY(-10px); }
    to 		{ -webkit-transform: translateY(10px); }
}

@-moz-keyframes Floating2 {
    from 	{ -moz-transform: translateY(10px); }
    65% 	{ -moz-transform: translateY(-10px); }
    to 		{ -moz-transform: translateY(10px); }
}

.floating2 {
	transform-origin: center left!important;
    -webkit-animation-duration: 6s; -moz-animation-duration: 6s;
	-webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: ease-in-out;
    -moz-animation-iteration-count: infinite; -moz-animation-timing-function: ease-in-out;
    -webkit-animation-name: Floating2; -moz-animation-name: Floating2;
}

.floatinga { -webkit-animation-duration: 8s!important; -moz-animation-duration: 8s!important; }
.floatingb { -webkit-animation-duration: 9s!important; -moz-animation-duration: 9s!important; }
.floatingc { -webkit-animation-duration: 6s!important; -moz-animation-duration: 6s!important; }
.floatingd { -webkit-animation-duration: 7s!important; -moz-animation-duration: 7s!important; }


/* LOADER */
.loader 				{ display: none; position: fixed; z-index: 99999; height: 100px; width: 100px; overflow: visible; margin: auto; top: 0; left: 0; bottom: 0; right: 0; border-radius: 100%; }
#loader1:before 	{ content: ''; display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.3); }
#loader1:after 		{ z-index: 99999; animation: spin 1s infinite; content: ""; position: absolute; background: url(../images/cercle_beige.svg) no-repeat center top; top: -10px; left: -10px; width: 100%; height: 100%; border-radius: 100%; border: 10px solid #ccc; border-top-color: #f9b123; }

@keyframes spin{
  0%	{ -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); }
  100%{ -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); }
}

.clearfix:after 		{ content: "."; visibility: hidden; display: block; height: 0; clear: both; }

video { max-width: 960px !important; width: 100% !important; height: auto !important; }																					   

.vcenter-item {
    display: flex!important;
    align-items: center!important;
}

button, input, optgroup, select, textarea {  font-family: 'Rajdhani', sans-serif; font-size: 1em!important; }

input:focus, textarea:focus, .input-group-prepend:focus , .input-group-prepend:focus {
	background: none!important; 
	-webkit-box-shadow: none!important;
    box-shadow: none!important; 
	border: solid 1px rgba(255,255,255,0.5)!important; }
}

.form-control:focus, .form-control + .input-group-text:focus, .form-control:focus, .form-control + .input-group-text:focus {
	border: solid 1px rgba(255,255,255,0.5)!important;
}

.form-control:focus + .input-group-text, .form-control:focus + .input-group-text {
	background: none!important;
	border-left: solid 1px rgba(255,255,255,0.5)!important; 
}

.input-group-prepend .input-group-text, .input-group-prepend .input-group-text {
	background: none!important;
	border-left: solid 1px rgba(255,255,255,0.5)!important;
}
 
 
/******************************** NAV *******************************************/

.navbar { 
	padding-top: 0.1rem; padding-bottom: 0.2rem; min-height: 90px; -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
	background: #5b5e44!important; -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2); box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2); font-family: 'Rajdhani', sans-serif; font-weight: 300;
}

.lang_picker a { text-decoration: none; }

.navbar.navbar-transparent { min-height: 140px; margin-top: 2px; padding-top: 0px; background: #5b5e44!important; }

/* LB */
.navbar.navbar-transparent .link-bar { position: absolute; right: 10px; bottom: 60px!important; }

.navbar .link-bar { position: absolute; right: 10px!important; right: 10px; bottom: -40px!important; -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.navbar .link-bar2 { position: absolute; right: auto; left: 10px; top: 0!important; text-align: center!important; }  

.navbar .navbar-brand  { position: absolute!important; z-index: 20!important; left: 0!important; top: -40px!important; width: 80px; height: 80px; background: url(../images/logo_lada_blanc.svg) no-repeat; background-position: center!important; background-size: contain; -webkit-transition: all 150ms linear; transition: all 150ms linear; }
.navbar .container.dark .navbar-brand { background-image: url(../images/logo_lada_blanc.svg); }
.navbar.navbar-transparent .container.dark .navbar-brand  { background-image: url(../images/logo_lada_blanc.svg); }
.navbar.navbar-transparent .navbar-brand  { width: 200px; height: 200px; background-image: url(../images/logo_lada_blanc.svg); top: -40px!important;  }

.navbar .logo_bl 	{ display: none; position: absolute; font-size: 0.9em; font-weight: 900; left: 0; right: 0; letter-spacing: 1px;  }
.navbar .logo_bl span { font-size: 1.5em; font-weight: 900; color: rgba(150, 150, 150, 1)!important; }
.navbar.navbar-transparent .logo_bl { display: inline-block; position: absolute;  }
 
.navbar .baseline 	{ display: none; position: absolute; font-size: 1.4em; line-height: 1.4em; font-weight: 400; left: 220px; top: 42%; text-transform: none; }
.navbar.navbar-transparent .baseline { font-family: 'Italiana', sans-serif!important; letter-spacing: 1.5px; display: inline-block; position: absolute;  }
 
/* NAV */
.navbar.navbar-transparent .navbar-nav { margin-left: auto!important; margin-top: 60px!important; }
.navbar .navbar-nav { margin-left: auto!important; margin-top: 0; }

.navbar a { vertical-align: middle; }
.navbar b, .navbar strong { font-weight: 600!important; } 

.dropdown-toggle::after { position: absolute!important; bottom: -5px!important; left: 48%!important; border: none!important; font: normal normal normal 10px/1 FontAwesome!important; content: "\f107"!important; color: #fff!important; }
.navbar .container.dark .dropdown-toggle::after { color: #fff; }

.navbar .nav-item {  display: flex!important; }
.navbar .nav-link { display: inline-block; margin: 0; font-size: 1em!important; text-transform: none!important; letter-spacing: 1px!important; font-weight: 300; color: #fff!important; -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }
.navbar .nav-item:hover > .nav-link, .navbar .nav-item.actif > .nav-link { color: #cea36f!important; background-color: rgba(150, 150, 150, 0.1)!important; border-radius: 0.1875rem!important; }

.navbar .container.dark .nav-link { color: #fff; }
.navbar .container.dark .nav-item:hover > .nav-link, .navbar .container.dark .nav-item.actif > .nav-link { background-color: rgba(34, 151, 185, 0.5)!important; }
.navbar .container.dark .nav-item.actif .nav-link, .navbar .container.dark .nav-item:hover .nav-link { color: #fff; }
.navbar.navbar-transparent .nav-link { font-size: 1em!important; }
.navbar.navbar-transparent .container.dark .nav-link { color: #fcfcfc; }

.navbar .dropdown .dropdown-menu { margin-top: 13px!important; min-width: auto!important; width: auto!important; }
.navbar.navbar-transparent .dropdown .dropdown-menu { margin-top: 23px!important; }
.navbar .dropdown.show .dropdown-menu { padding: 0!important; }
.navbar .dropdown.show .dropdown-menu .dropdown-item { line-height: 0.9em!important; font-size: 0.9em!important; margin: 0!important; padding: 10px 20px!important; }

.navbar .dropdown-item:hover { color: #000; }

.navbar-collapse:after { background: transparent; opacity: 0.5; filter: alpha(opacity=50); }


.btn { font-family: 'Rajdhani', sans-serif; font-weight: normal; text-transform: uppercase; font-size: 1em; padding: 8px 12px; -webkit-border-radius: 5px!important; -moz-border-radius: 5px!important; border-radius: 5px!important; }
.btn:hover { background-color: #ccc; color: #fff; }

.btn-secondary { background-color: #f9fae2; color: #5b5e44; }
.btn-third { background-color: #9c9532; color: #fff; border: solid 1px #fff; }

.btn-lg { font-size: 1.4em; padding: 10px 25px; }
.btn-lg.btn-simple { padding: 9px 24px; }

.btn-sm { font-size: 0.8em; border-radius: 0.1875rem; padding: 5px 15px; }
.btn-sm.btn-simple { padding: 4px 14px; }

.btn-circle	{ 
	width: 32px!important; height: 32px!important; padding: 0!important; line-height: 32px!important; font-size: 1em!important; text-align: center!important; 
	-webkit-border-radius: 50%!important; -moz-border-radius: 50%!important; border-radius: 50%!important; -webkit-transition: all 150ms linear; transition: all 150ms linear;
}

.rounded	{ -webkit-border-radius: 5px!important; -moz-border-radius: 5px!important; border-radius: 5px!important; }

.right-rounded {
	border-top-right-radius: 40px 40px!important;
	border-bottom-right-radius: 40px 40px!important;
}
.left-rounded {
	border-top-left-radius: 40px 40px!important;
	border-bottom-left-radius: 40px 40px!important;
}
.pill-rounded {
	border-radius: 40px 40px!important; 
}

.shadow	 { -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15)!important; -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15)!important; box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15)!important; }
.shadow-b { filter: drop-shadow(0 0 0.25rem #87c5dd); }
.shadow-o { filter: drop-shadow(0 0 -0.05rem #444); opacity: 0.85px; }

.shadow-soft	 { -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.1)!important; -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.1)!important; box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.1)!important; }
.shadow-strong	 { -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,1)!important; -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,1)!important; box-shadow: 0px 0px 50px 0px rgba(0,0,0,1)!important; }
.pe-none { pointer-events: none!important; }

.bg-black { background-color: #000!important; }

.ls-sm { letter-spacing: normal!important; }
.ls-md { letter-spacing: 1.3px!important; }
.ls-lg { letter-spacing: 1.8px!important; }

.opacity-0 { opacity:0!important; }
.opacity-1 { opacity:0.2!important; }
.opacity-2 { opacity:0.4!important; }
.opacity-3 { opacity:0.6!important; }
.opacity-4 { opacity:0.8!important; }
.opacity-5 { opacity:1!important; }

.blur-1 { filter: blur(0.5px)!important; }
.blur-2 { filter: blur(1.5px)!important; }
.blur-3 { filter: blur(3.5px)!important; }

.blend-multiply 	{ mix-blend-mode: multiply!important; }
.blend-screen   	{ mix-blend-mode: screen!important; }
.blend-overlay  	{ mix-blend-mode: overlay!important; }
.blend-darken  		{ mix-blend-mode: darken!important; }
.blend-lighten 		{ mix-blend-mode: lighten!important; }
.blend-dodge 		{ mix-blend-mode: color-dodge!important; }
.blend-burn 		{ mix-blend-mode: color-burn!important; }
.blend-hard 		{ mix-blend-mode: hard-light!important; }
.blend-soft 		{ mix-blend-mode: soft-light!important; }
.blend-difference  	{ mix-blend-mode: difference!important; }
.blend-exclusion 	{ mix-blend-mode: exclusion!important; }
.blend-hue 			{ mix-blend-mode: hue!important; }
.blend-saturation  	{ mix-blend-mode: saturation !important; }
.blend-color  		{ mix-blend-mode: color!important; }
.blend-luminosity  	{ mix-blend-mode: luminosity!important; }


/* INIT */
h1, h2, h3 { font-family: 'Italiana', sans-serif!important; letter-spacing: 1.5px!important; font-weight: 400!important; }

.no-bg {
    background: none !important
}

.rounded {
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
}

.no-rounded,
.no-rounded * {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

.top-rounded {
    -webkit-border-radius: 15px 15px 0 0 !important;
    -moz-border-radius: 15px 15px 0 0 !important;
    border-radius: 15px 15px 0 0 !important;
}

.bottom-rounded {
    -webkit-border-radius: 0 0 15px 15px !important;
    -moz-border-radius: 0 0 15px 15px !important;
    border-radius: 0 0 15px 15px !important;
}

.right-rounded {
    border-top-right-radius: 15px 15px !important;
    border-bottom-right-radius: 15px 15px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.left-rounded {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 15px 15px !important;
    border-bottom-left-radius: 15px 15px !important;
}

.tl-rounded {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    -webkit-border-top-left-radius: 15px !important;
    -moz-border-radius-topleft: 15px !important;
    border-top-left-radius: 15px !important;
}

.tr-rounded {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    -webkit-border-top-right-radius: 15px !important;
    -moz-border-radius-topright: 15px !important;
    border-top-right-radius: 15px !important;
}

.bl-rounded {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    -webkit-border-bottom-left-radius: 15px !important;
    -moz-border-radius-bottomleft: 15px !important;
    border-bottom-left-radius: 15px !important;
}

.br-rounded {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    -webkit-border-bottom-right-radius: 15px !important;
    -moz-border-radius-bottomright: 15px !important;
    border-bottom-right-radius: 15px !important;
}

.pill-rounded {
    border-radius: 30px 30px !important;
}

.shadow {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1) !important;
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1) !important;
}

.shadow-b {
    filter: drop-shadow(0 0 0.25rem var(--main-col5-m)) !important;
}

.shadow-g {
    filter: drop-shadow(0 0 0.25rem var(--main-col8-m)) !important;
}

.shadow-o {
    filter: drop-shadow(0 0 0.25rem var(--main-col7-m)) !important;
}

.no-shadow {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.shadow-strong {
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 1) !important;
    -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 1) !important;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 1) !important;
}

.img-shadow {
    -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.4));
}

.verti-center {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.horiz-center {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.vh-center {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.top-0 {
    top: 0 !important;
    bottom: none !important;
}

.top-10 {
    top: 10% !important;
    bottom: none !important;
}

.top-20 {
    top: 20% !important;
    bottom: none !important;
}

.top-25 {
    top: 25% !important;
    bottom: none !important;
}

.top-50 {
    top: 50% !important;
    bottom: none !important;
}

.bottom-0 {
    top: none !important;
    bottom: 0 !important;
}

.bottom-10 {
    top: none !important;
    bottom: 10% !important;
}

.bottom-20 {
    top: none !important;
    bottom: 20% !important;
}

.bottom-25 {
    top: none !important;
    bottom: 25% !important;
}

.pe-none {
    pointer-events: none !important;
}

.bg-black {
    background-color: #000 !important;
}

.ls-sm {
    letter-spacing: normal !important;
}

.ls-md {
    letter-spacing: 1.3px !important;
}

.ls-lg {
    letter-spacing: 1.8px !important;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-1 {
    opacity: 0.2 !important;
}

.opacity-2 {
    opacity: 0.4 !important;
}

.opacity-3 {
    opacity: 0.6 !important;
}

.opacity-4 {
    opacity: 0.8 !important;
}

.opacity-5 {
    opacity: 1 !important;
}

.font-10 {
    font-size: 10px !important;
    line-height: 13px !important;
}

.font-11 {
    font-size: 11px !important;
    line-height: 14px !important;
}

.font-12 {
    font-size: 12px !important;
    line-height: 15px !important;
}

.font-13 {
    font-size: 13px !important;
    line-height: 17px !important;
}

.font-14 {
    font-size: 14px !important;
    line-height: 18px !important;
}

.font-15 {
    font-size: 15px !important;
    line-height: 19px !important;
}

.font-16 {
    font-size: 16px !important;
    line-height: 20px !important;
}

.font-18 {
    font-size: 18px !important;
    line-height: 22px !important;
}

.font-20 {
    font-size: 20px !important;
    line-height: 24px !important;
}

.font-22 {
    font-size: 22px !important;
    line-height: 26px !important;
}

.font-24 {
    font-size: 24px !important;
    line-height: 28px !important;
}

.font-28 {
    font-size: 28px !important;
    line-height: 32px !important;
}

.font-32 {
    font-size: 32px !important;
    line-height: 36px !important;
}
.font-36 {
    font-size: 36px !important;
    line-height: 40px !important;
}

.lh-1 {
    line-height: 36px !important;
}

.lh-2 {
    line-height: 30px !important;
}

.lh-3 {
    line-height: 24px !important;
}

.lh-4 {
    line-height: 18px !important;
}

.lh-5 {
    line-height: 14px !important;
}

.lh-6 {
    line-height: 10px !important;
}

.lh-7 {
    line-height: 6px !important;
}

.w-20 {
    width: 20% !important;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.w-80 {
    width: 80% !important;
}

.w-33 {
    width: 33.3% !important;
}

.w-66 {
    width: 66.7% !important;
}

.row-eq-height {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

/****************** BANDEAU ACCUEIL ******************************/

.page-header { position: relative; }
.page-header:before {  background-color: rgba(0, 0, 0, 0); }
.page-header-image, .rellax-banner { background-repeat: no-repeat!important; background-size: contain!important; }
.rellax-header { position: absolute; top: -2%!important; bottom: -2%!important; left: -2%!important; right: -2%!important; z-index: 0!important; width: 104%!important; height: 104%!important; }
.rellax-text { z-index: 6!important; }
.rellax-picto { position: absolute; pointer-events: none; z-index: 999!important; background-size: contain; background-position: top center; }

.picto-1	{ 
	position: absolute; pointer-events: none; width: 125px!important; height: 250px!important; top: 40%!important; right: 3%!important; z-index: 25!important; 
	background: url(../images/p5.svg) no-repeat; background-size: contain!important; background-position: top center!important;
}
.picto-2	{ 
	position: absolute; pointer-events: none; width: 80px!important; height: 80px!important; top: 8%!important; right: 8%!important; z-index: 25!important; 
	background: url(../images/p14.svg) no-repeat; background-size: contain!important; background-position: top center!important;
}
.picto-3	{ 
	position: absolute; pointer-events: none; width: 100px!important; height: 125px!important; top: 17%!important; right: 15%!important; z-index: 25!important; 
	background: url(../images/p11.svg) no-repeat; background-size: contain!important; background-position: top center!important;
}

.picto-4	{ 
	position: absolute; pointer-events: none; width: 100px!important; height: 125px!important; top: 12%!important; right: 5%!important; z-index: 25!important; 
	background: url(../images/p10.svg) no-repeat; background-size: contain!important; background-position: top center!important;
}

.picto-5	{ 
	position: absolute; pointer-events: none; width: 100px!important; height: 125px!important; top: 25%!important; right: 12%!important; z-index: 25!important; 
	background: url(../images/p16.svg) no-repeat; background-size: contain!important; background-position: top center!important;
}

.picto-6	{ 
	position: absolute; pointer-events: none; width: 100px!important; height: 125px!important; top: 32%!important; right: 1%!important; z-index: 25!important; 
	background: url(../images/p13.svg) no-repeat; background-size: contain!important; background-position: top center!important;
}

.picto2-1	{ top: 25%!important; right: auto!important; left: 3%; }
.picto2-2	{ top: 8%!important; right: auto!important; left: 8%; }
.picto2-3	{ top: 27%!important; right: auto!important; left: 15%; }

.picto3-1	{ top: auto!important; bottom: 10%!important; right: 3%; background-size: 60%!important; background-position: top center!important; }
.picto3-2	{ top: auto!important; bottom: 10%!important; right: 8%; background-size: 80%!important; background-position: top center!important; }
.picto3-3	{ top: auto!important; bottom: 10%!important; right: 15%; background-size: 100%!important; background-position: top center!important; }
.picto3-4	{ top: auto!important; bottom: 0!important; right: 9%; background-size: 50%!important; background-position: top center!important; }

.picto4-1	{ top: 10%!important; left: auto!important; right: 2%!important; background-size: 30%!important; }
.picto4-2	{ top: 5%!important; left: auto!important; right: 10%!important; background-size: 50%!important; }
.picto4-3	{ top: 14%!important; left: auto!important; right: 6%!important; background-size: 70%!important; }

.rellax-banner { text-align: center!important; text-align: center; }
.rellax-banner img { display: inline-block; }

.mask		{ position: absolute; pointer-events: none; width: 100%; height: 600px; z-index: 18!important; }
.mask-white { background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%); }
.mask-black { background: linear-gradient(165deg, rgba(0,0,0, 1) 20%, rgba(0,0,0, 0) 50%); }

.visuelMD, .visuelSM { position: absolute; z-index: 0; width: 100%; height: 100%; background-repeat: no-repeat!important; background-size: contain!important; background-position: center bottom!important; }

.bloc-header	{ position: absolute; width: 100%; max-width: 1280px; bottom: 50%; left: 0; right: 0; margin: auto; z-index: 3; text-align: right; padding: 0 30px; }
.bloc-header .bloc-header-text {  display: inline-block; width: 50%; max-width: 550px; }
.bloc-header .h4-description { 
	background: rgb(255,255,255); background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.80) 50%, rgba(255,255,255,0) 100%); padding: 25px; 
	'Rajdhani', sans-serif!important; font-weight: 300; text-align: left; font-size: 21px; line-height: 26px; color: #000;
}

.bloc-cta	{ 
	position: absolute; width: 300px; height: 300px; z-index: 35!important; right: 10%; top: 50%; transform: translateY(-50%)!important; text-align: center;
	-webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; 
}
.bloc-cta .bloc-bg	 { 
	position: absolute; width: 100%; height: 100%; z-index: -1!important; top: 0; left: 0; opacity: 0.9;
	background-image: url(../images/rond_blanc.svg); background-size: contain; background-repeat: no-repeat; 
}

.bloc-cta .bloc-contour	 { 
	position: absolute; width: 92%; height: 92%; z-index: 0!important; top: 5%; left: 3%; 
	background-image: url(../images/cercle_beige.svg); background-size: contain; background-repeat: no-repeat;    
}
.bloc-cta .bloc-text { width: 100%; padding: 30px; color: #000!important; z-index: 30!important; font-size: 16px; line-height: 19px; }
.bloc-cta .bloc-text div { font-weight: 400!important; }

.bloc-picto { width: 40px; height: 40px; text-align: center; margin: 20px 10px; display: inline-block; }

.bloc-ateliers 					{ position: absolute; top: 50%; left: 5%; width: 400px; transform: translateY(-50%); z-index: 10; padding: 0; }
.bloc-ateliers h4 				{ font-family: 'Italiana', sans-serif; letter-spacing: 1.5px; font-size: 28px; color: #fff; text-shadow: 0 0 3px #000; margin: 10px 0; }
.bloc-ateliers .atelier-item 	{ position: relative; background: #D1CF94; margin-bottom: 10px; padding: 5px 100px 5px 5px; }
.atelier-item .atelier-date 	{ background: #5B5E44; padding: 6px; width: 65px; height: 65px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; color: #fff; text-align: center; line-height: 14px; }
.atelier-item .atelier-titre 	{ text-transform: uppercase; font-weight: 600; margin: 0 10px 0 10px; width: 180px; }
.atelier-item .atelier-picto 	{ width: 20px; height: 25px; background: url(../images/p3.svg); margin-right: 10px; opacity: 0.5; }
.atelier-item .atelier-btn {
	position: absolute; right: 10px; top: 10px; width: 120px; align-items: center; display: flex; justify-content: center;
    text-transform: uppercase; font-weight: 500; font-size: 18px; background: #F9FAE2;
    color: #000; height: 53px; padding: 0.15rem 0.3rem; filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
	-webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; 
}
.atelier-prix { 
	width: 36px; height: 36px; font-size: 17px; line-height: 26px; text-align: center; z-index: 21!important; padding: 5px; bottom: -10px; right: 140px; 
	position: absolute!important; background: #000; transform: rotate(30deg); filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
	-webkit-border-radius: 50%!important; -moz-border-radius: 50%!important; border-radius: 50%!important;	
	color: #fff;
}

.atelier-prix2 { 
	width: 50px; height: 50px; font-size: 24px; line-height: 40px; text-align: center; z-index: 21!important; padding: 5px; top: -10px; left: -10px; 
	position: absolute!important; background: #000; transform: rotate(30deg); filter: drop-shadow(0 0 10px rgba(0,0,0,0.5)); border: dotted 2px #fff;
	-webkit-border-radius: 50%!important; -moz-border-radius: 50%!important; border-radius: 50%!important;	
	color: #fff;
}

/* The triangle */
.atelier-item .atelier-btn::before {
    content: ''; border-color: transparent transparent transparent #F9FAE2;
    border-style: solid; border-width: calc(52px / 2) 0rem calc(52px / 2) calc(52px / 2) ;
    right: 0px; position: absolute; top: 0px; transform: translate(100%, 0px);
}

.bloc-ateliers .atelier-item:hover  .atelier-btn { right: -10px!important; }



.detail-atelier { -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }
.detail-atelier:hover { padding-left: 20px; color: #D1CF94; } 

/****************** INTRO ACCUEIL ******************************/


.bloc-intro { margin-top: -40px;  margin-bottom: -20px; }
.bloc-intro .container { 
	width: 100%; max-width: 1024px; margin: 0 auto!important;  text-align: left; z-index: 30!important; position: relative; background: #f9fae2; 
	transform: rotate(-1.3deg); -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; 
}
.bloc-intro .container .intro-content { width: auto; display: inline-block; margin: 0 auto; padding: 0 20px; color: #404040; font-family: 'Rajdhani', sans-serif; font-weight: 300; }

.bloc-intro .container .intro-visu { width: 95%; max-width: 400px; max-height: 500px; height: 100%; position: relative; padding-right: 10%; }


/****************** BLOC 3/4 BULLES ******************************/

.bloc-pictos { 
	width: 104%; text-align: left; z-index: 19!important; margin: 2% -2% 2% -2%!important; position: relative; background: #ededed; 
	transform: rotate(1.3deg); -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; 
}

.picto-lg { 
	height: 270px; background-color: transparent; background-size: contain!important; background-position: bottom center!important; background-repeat: no-repeat; 
	position: relative; transform: rotate(-4deg);
}
 
.picto-lg .picto-content { position: absolute; width: 100%; bottom: 30px; -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.picto-lg .picto img { display: inline-block; width: 55%; -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }

a:hover .picto-lg .picto img { width: 60%; }
a:hover .picto-lg .picto-content { bottom: 20px; }

/**************** GALERIE PHOTOS ***************************************/

.zoom_blc 		{ width: 100%!important; text-align: center!important; position: relative; height: 100%; vertical-align: middle; overflow: hidden; }
#zoom  			{ 
	border: solid 1px #eee; position: relative!important; max-width: 100%!important; width: auto!important; height: auto!important; max-height: 100%!important; 
	display: inline-block!important; margin: 0!important; }
#gallery		{ margin: 5px 0!important; text-align: left; }

#gallery .tn 	{ 
	position: relative!important; margin: 0 10px 10px 0; width: 80px!important; height: 80px; line-height: 80px; text-align: center; 
	vertical-align: middle!important; display: inline-block!important; padding-bottom: 1px!important; }
	
#gallery img.thumb2	{ 
	width: auto!important; height: auto!important; max-height: 100%!important; margin: 0 auto!important; display: inline-block!important; 
	image-rendering: auto; image-rendering: crisp-edges; image-rendering: pixelated; image-rendering: -webkit-optimize-contrast;
}
#gallery a		{ text-decoration: none!important; border: none!important; }

/**************************************************************************/

@media screen and (max-width: 991px) {
	.rellax-header, .page-header-image { background-size: cover!important; background-position: center 80px!important; }
	.rellax-header-logo { bottom: 45%; }
	.floating {	-webkit-animation-name: none; -moz-animation-name: none; }
	
	.bloc-header .bloc-header-text { width: 100%; }
	.bloc-header .h4-description { font-size: 18px; line-height: 21px; }
	
	.bloc-intro .intro-text { font-size: 14px; line-height: 18px; }
}	

.swiper-container 					{ width: 100%!important; max-width: 100%; }
.swiper-container .swiper-slide		{ overflow: hidden!important; }
.swiper-button-next, .swiper-button-prev { 
	width: 40px!important; height: 40px!important; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; background-color: #fff; transform-origin: 50% 50%;
	-webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; color: #fff;
	background-color: #5b5e44;
}
.swiper-button-next:after,.swiper-button-prev:after { 
	font-size: 1.5em!important; transform: rotate(0); color: #fff;
	-webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; 
}
.swiper-button-next 				{ right: 20px!important; }
.swiper-button-prev 				{ left: 20px!important; }
.swiper-button-next:hover, .swiper-button-prev:hover {  background-color: #fff; }
.swiper-button-next:hover:after,.swiper-button-prev:hover:after { transform: rotate(360deg); color: #5b5e44; }

.swiper-progress-bar 									{ position: absolute; width: 100%; top: 0; z-index: 999; height: 2px;  }
.swiper-progress-bar .slide_progress-bar 				{ position: absolute; height: 2px;	background: rgba(255, 255, 255, 0.2); width: auto; clear: both;	opacity: 0; top: 0; left: 0; right: 0; }
.swiper-progress-bar .slide_progress-bar:after 			{ position: absolute; top: 0; left: 0; background: #5b5e44; height: 100%; width: 0; content: ""; transition: 0.1s width linear; }
.swiper-progress-bar.active	.slide_progress-bar 		{ opacity: 1;}
.swiper-progress-bar.animate .slide_progress-bar:after 	{ transition: width linear; transition-delay: unset; width: 100%; transition-duration: 5s; }


/****************** MISC ******************************/

.bandeau_titre 		{ line-height: 32px; background: #fff; padding: 0 20px; margin: 20px 0 0 0; font-size: 20px; font-weight: 300; letter-spacing: 2px; }
.bandeau_titre div { vertical-align: middle; font-family: 'Italiana', sans-serif; letter-spacing: 1.5px; }
.bandeau_titre b, .bandeau_titre strong { font-family: 'Rajdhani-bold', sans-serif!important; font-weight: 700!important; }

.bandeau_titre2 { font-size: 21px!important; padding-top: 5px!important; }
.bandeau_titre2 a { text-decoration: none; }
.bandeau_titre2 a:hover * { color: #444!important; letter-spacing: 1px; -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }

.picto_titre { display: inline-block; overflow: hidden!important; width: 32px; height: 40px; vertical-align: middle; }
.picto_titre img { filter: drop-shadow(0px 50px 0 #999); transform: translateY(-50px); }

.picto_titre.white img { filter: drop-shadow(0px 50px 0 #fff); }
.picto_titre.black img { filter: drop-shadow(0px 50px 0 #000); }
.picto_titre.orange img { filter: drop-shadow(0px 50px 0 #FF9A63); }
.picto_titre.blue img { filter: drop-shadow(0px 50px 0 #07a8c6); }

.modal-content .modal-header button { right: 10px; top: 0; }
.modal-content .bandeau_titre { width: auto!important; }

.bloc-complete { 
	width: 140px; height: 40px; font-size: 18px; line-height: 30px; text-align: center; z-index: 21!important; padding: 5px 10px; top: 10px; right: 0; overflow: hidden; text-transform: uppercase;
	border: solid 1px #9c9532!important; position: absolute!important; background: rgba(221,193,145,1); transform: rotate(-30deg); filter: drop-shadow(0 0 10px rgba(0,0,0,0.5)); 
	text-shadow: 1px 0px 2px #000000; color: #fff; letter-spacing: 1.5px;
}
/****************** FOOTER  ******************************/

.small	{ font-size: 0.8em; line-height: 1.1em; font-weight: 300; }
.summary { font-size: 0.9em; line-height: 1.2em; }
.summary p.collapse:not(.show) { height: 42px!important; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.summary p.collapsing { min-height: 42px!important; }
.summary a.collapsed  {z-index: 999!important; }
.summary a.collapsed:after  { content: '+ Lire la suite'; }
.summary a:not(.collapsed):after { content: '- Fermer'; }
  
  
.contact-content 		{ position: relative; }
.contact-content .bloc 	{ display: inline-block; width: 100%; margin: 0; padding: 20px 30px; background: rgba(26, 26, 26, 1); color: #fff; }

.bloc-coord .bloc { max-width: 450px; }
.bloc-nl .bloc { max-width: 780px; color: #fff;}

.bloc-nl input, .bloc-nl textarea, .bloc-nl .input-group-append span, .bloc-nl .input-group-prepend  span { 
	border: 0 none!important; border-bottom: solid 1px #666!important;
	-webkit-border-radius: 0!important; -moz-border-radius: 0!important; border-radius: 0!important;
	border-bottom-left-radius: 5px 5px!important; border-bottom-right-radius: 5px 5px!important;
}

.bloc-nl .input-group-prepend  span { border-bottom-right-radius: 0!important; }
.bloc-nl input, .bloc-nl textarea { border-bottom-left-radius: 0!important; }

.bloc-nl .input-group-append *, .bloc-nl input::placeholder, .bloc-nl textarea::placeholder { color: #aaa!important; opacity: 1!important; } 

.form-check .form-check-sign::before, .form-check .form-check-sign::after { border: 1px solid #666; }
.form-check .form-check-sign::after { background-color: #fff; }
 
.select2-container--bootstrap4 { font-weight: 300; position: relative; text-align: left!important; }
.select2-container--bootstrap4 .select2-results__group { font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
.select2-container--bootstrap4 .select2-selection { 
	min-height: calc(2.25rem + 1px)!important; padding-right: 20px!important; border: none!important; -webkit-border-radius: 5px!important; -moz-border-radius: 5px!important; border-radius: 5px!important;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1)!important; -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1)!important; box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1)!important;
}
.select2-container--bootstrap4 .select2-dropdown { font-family: 'Rajdhani', sans-serif!important; -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1); -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1); box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1); z-index: 1003!important; padding: 0!important; }
.select2-container--bootstrap4 .select2-selection__clear { position: absolute!important; top: 10px!important; font-size: 24px!important; right: 30px!important; z-index: 999!important; border: solid 1px #337aaf; background-color:#fff; color: #337aaf; font-size: 24px; line-height: 18px; text-align: center; padding: 0; float: none;  margin: 0; }
.select2-container--bootstrap4 .select2-selection__clear:hover { background-color:#eee; }
.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow { height: 34px; width: 34px; top: 2px!important; right: 0!important; }
.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent #000 transparent !important; border-width: 0 4px 4px 4px !important; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-search__field { 
	font-family: 'Rajdhani', sans-serif!important; font-size: 1em!important; min-height: 30px!important; margin: 0 5px!important; width: 100%!important; border: dotted 1px #eee;
	z-index: 1; background: #fff; padding: 5px 10px!important; 
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered { border: none!important; display: block!important; line-height: 36px!important; padding: 5px!important; line-height: 16px!important; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice { 
  background-color: #eee!important; border: none!important; -webkit-border-radius: 15px!important; -moz-border-radius: 15px!important; border-radius: 15px!important; margin: 2px 4px!important;
  padding: 0 10px 0 24px!important; height: 20px!important; line-height: 18px!important; font-size: 1em!important; position: relative!important;
}
.select2.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  position: absolute!important; top: 0!important; left: 0!important; height: 18px!important; width: 18px!important; line-height: 18px!important; margin: 0!important; 
  text-align: center!important; color: #fff!important; font-weight: bold!important; font-size: 1em!important;
  -webkit-border-radius: 15px!important; -moz-border-radius: 15px!important; border-radius: 15px!important; border: 0; background: #337aaf!important;
}
.select2.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover { background: #444!important; }
.select2.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__clear { top: 10px!important; right: 35px!important; }

.input-group > .select2-container--bootstrap { width: auto; flex: 1 1 auto; }
.input-group > .select2-container--bootstrap .select2-selection--single { height: 100%; line-height: inherit; padding: 0.5rem 1.5rem; }

.select2-container--bootstrap4 .select2-results__option--disabled { color:#ccc!important; }
.select2-dropdown.modalDD, .select2-dropdown.dropdownCssClass { z-index: 1051!important; }
/****************** FOOTER  ******************************/

.footer2 { z-index: 25!important; width: 100%; height: auto; padding: 0; background: #cea36f url(../images/p5.svg) no-repeat center right; background-size: contain; background-blend-mode: screen; font-family: 'Rajdhani', sans-serif; }
.footer2 .container	{ width: 100%; max-width: 1024px; margin: 0 auto!important;  text-align: left; z-index: 20!important; 
	position: relative; background: #7e5f16;
	transform: rotate(1.5deg); -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;  }
footer { }
.footer { z-index: 30!important; position: relative; display: block!important; background: #fff!important; }
.footer .copyright { font-size: 1em; }
.footer .copyright img { max-width: 90px; }
.footer li { line-height: 1.4em; font-size: 1em; margin: 0 10px; }
.footer li a { text-transform: none!important; color: #fff; }
.grecaptcha-badge { z-index: 99999; bottom: 20px!important; visibility: hidden; }


/***********************************************************************************************************/


.modal h3.title { font-weight: 600; text-shadow: 0 0 0 rgba(0,0,0, 0), 0 0 10px rgba(0,0,0, 1); }

#article { position: relative; }
#article h1.bandeau_titre { font-size: 36px; min-height: 80px; padding: 0 0 0 80px; }
.bandeau_titre b, .bandeau_titre strong { font-family: 'Italiana', sans-serif!important; font-weight: 700!important; letter-spacing: 1.5px!important; }

span.puce { width: 30px!important; height: 30px!important; margin-right: 15px!important; }
span.puce img { width: 100%; max-width: 30px; }


#article .page-header-mini { position: relative!important; z-index: 20!important; min-height: 320px!important; height: 100%!important; }
#article .container { margin-top: 280px!important; max-width: 1280px!important; }

#article.contact-main .page-header-mini { min-height: 1024px!important; width: 100%!important; position: absolute!important; z-index: 20!important; }
#article.contact-main h1.bandeau_titre { position: absolute; z-index: 25; width: 100%; top: 150px; color: #fff; background-color: transparent; text-shadow: 0 0 5px #000; }
#article.contact-main .container { margin-top: 100px!important; /*min-height: auto!important;*/ }
#article.contact-main .card-contact { z-index: 25!important; }

#article .bloc-header { 
	width: 102%; max-width: 102%; height: 300px; text-align: left; z-index: 21!important; margin: -1% -1% 0 -1%!important; padding: 0; top: 30px; overflow: hidden;
	border-top: none; border-bottom: solid 15px rgba(221,193,145,1)!important; position: absolute!important; background: none; transform: rotate(-1.3deg); 
}
#article .bloc-visu { width: 100%; }

#noDatas { 
	padding: 30px; font-family: 'Rajdhani', sans-serif; font-size: 24px!important; font-weight: 200!important; text-align: center!important; text-transform: uppercase!important; 
	-webkit-border-radius: 35px; -moz-border-radius: 35px; border-radius: 35px;
}

.loader_small 		{ display: inline-block; width: 50px; height: 50px; margin-top: 25px!important; }
#loader:after 		{ position: relative; display: block; animation: spin 1s infinite; content: ""; background: url(../images/picto_red.png) no-repeat center; background-size: 35%; width: 50px; height: 50px; border-radius: 50%; border: 3px solid rgba(0,0,0,0.1); border-top-color: #f9b123; }

.section-image:after { background-color: transparent!important; }

#cal-week-box { display: none!important; }

.calend .evt-ve, .calend .evt-sg, .calend .evt-off { 
	width: 26px; height: 26px; font-size: 18px; line-height: 26px; text-align: center; 
	-webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; border: solid 1px #eee; background: none; 
}
.calend a.evt-ve:hover, .calend a.evt-ve:focus, .calend a.evt-sg:hover, .calend a.evt-sg:focus, .calend a.evt-off:hover, .calend a.evt-off:focus { text-decoration: none; }

.text-ve { color: #9C9532; }
.text-sg { color: #5B5E44; }
.text-off { color: #999; }

.event { background-color: #fff!important; -webkit-box-shadow: none!important; box-shadow: none!important; }

.calend .evt-ve			{ border-color: #9C9532!important; background-color: rgba(156,149,50,0.5)!important; } 
.calend .evt-ve::before	{ content: "Vé"; color: #fff!important; }
.calend .evt-sg			{ border-color: #5B5E44!important; background-color: rgba(91,94,68,0.5)!important; } 
.calend .evt-sg::before { content: "St"; color: #fff!important; }
.calend .evt-off		{ border-color: #999!important; background-color: rgba(192,192,192,0.5)!important; } 
.calend .evt-off::before { content: "∕"; color: #999!important; }

#cal-slide-content 					{ text-align: left; background: #f6f6f6!important; }
#cal-slide-content a.event-item 	{ font-size: 16px; line-height: 28px!important; color: #444!important; }
#cal-day-tick .icon-chevron-down 	{ font-family: "dripicons-v2"; font-size: 15px; }
#cal-day-tick .icon-chevron-down:before { content: "\54" }

.cal-row-head [class*="cal-cell"]:first-child, .cal-row-head [class*="cal-cell"] { font-weight: normal!important; font-size: 14px!important; }
.cal-month-day { height: 60px!important; }
.cal-month-box [class*="cal-cell"] { min-height: 60px!important; }

@media screen and (max-width: 1420px) {
	#article .container { max-width: 80%;  }
	
	#article h1.bandeau_titre {   }
}


@media screen and (max-width: 1199px) {
	.navbar.navbar-transparent .navbar-brand  { height: 100px; }

	.navbar .link-bar { right: 10px; top: 40px!important; }
	.navbar.navbar-transparent .link-bar { top: -10px!important;  }
	.navbar.navbar-transparent .navbar-nav  { margin-top: 30px; }	
	
	.navbar .logo_bl 	{ bottom: -80px; }
	.navbar .logo_bl span { font-size: 1.6em; font-weight: 600; color: rgba(150, 150, 150, 1)!important; }
	.navbar .logo_bl .baseline { font-size: 1.1em; font-weight: 700; color: rgba(150, 150, 150, 1)!important; }
	 
	.navbar .navbar-nav .nav-link:not(.btn) { font-size: 0.6em; margin: 0; padding: 0.1rem 0.6rem; line-height: 1.6rem; }
	.navbar .navbar-nav .nav-item:hover  {  }

	.waves { height: 300px; top: 0; }
	.mask-slide, .mask-slide-bk 	{ height: 80px; }
	
	.contactus-2 .card-contact { margin: 100px 0 100px 50px!important; max-width: 350px!important; }
	.contactus-2 .description p { font-size: 14px!important; }
	.contactus-2 .description h3 { font-size: 24px!important;}
	
	#article h1.bandeau_titre { }
	.container { max-width: 100%!important; }
	#article .container { min-height: 600px; }
	#actus .grid-item	{ 	width: 48.5%; }
	
}


@media screen and (max-width: 991px) {
	nav li { display: block!important; text-align: center; width: 100%!important; }
	
	.navbar .nav-item {  display: block!important; }
	
	.navbar { min-height: 70px; }
	.lang_picker a { text-decoration: none; }

	.navbar.navbar-transparent { min-height: 140px; margin-top: 2px; padding-top: 0px; background: #5b5e44!important; }
	.navbar-brand {}
	
	.navbar-toggler { position: absolute!important; left: auto; right: 20px!important; }
	.navbar-toggler-bar { background: #fff!important; }

	#LB { top: 140px!important; } 
	#main-nav { padding-top: 30px!important; }
	#main-nav { z-index: -1!important; background: url(../images/banners/10_banner1.jpg) no-repeat center!important; background-size: cover!important; }
	
	h1, h2 {font-size: 24px!important;}
	h3 {font-size: 24px!important;}
	
	.picto-g, .picto-o, .picto-, .rellax-picto { display: none; }
	
	.bloc-ateliers { margin-top: 45px;  }
	.bloc-header	{ bottom: none; }
	.bloc-header .bloc-header-text { width: 50%; max-width: 500px; }
	.bloc-header .h4-description { font-weight: 300; text-align: left; font-size: 15px; line-height: 20px; padding: 20px; -webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 50px; font-size: 14px; line-height: 19px; }
	
	.bandeau_titre 		{ height: auto; line-height: auto; padding: 0 15px; margin: 15px; font-size: 21px; line-height: 25px; width: 60%; }
	.bloc-fils { background-image: none; }
	.bloc-fils .bandeau_titre { }
	.bloc-fils .bloc-actus, .bloc-fils .bloc-li { min-height: auto; }
	.bloc-fils .bloc-actus .bloc-fil, .bloc-fils .bloc-li .bloc-fil{ min-height: 250px; background-color: rgba(128,128,128, 0.1); margin: 10px; }
	
	.fil-li .bloc-fil { margin: -15px 0 20px 20px!important; max-width: 100%!important; }

	#article h1.bandeau_titre {  position: relative; top: auto; }


	.bloc-cta { display: none; }
	.bloc-ateliers { position: absolute; top: 150px!important; left: 0!important; width: 100%!important; z-index: 10; padding: 15px; }

	
	/****************** EQUIPE ******************************/

	.bloc-equipe .swiper-container	 	{ max-width: 100%!important; }
	.swiper-button-next2 				{ right: 0!important; top: 40%!important; }
	.swiper-button-prev2				{ left: 0!important; top: 40%!important; }

	.swiper-button-next				{ right: 0!important; top: 60%!important; }
	.swiper-button-prev				{ left: 0!important; top: 60%!important; }


	.bloc-equipe .membre_item 			{ display: inline-block; padding: 10px 20px; }
	
	.bloc-compteur { height: 200px; }
	.mask-trame	{ height: 75%; background-size: contain; }
	.compteurs	{ padding: 0!important; }
	.compteurs h4	{ font-size: 16px; line-height: 18px; letter-spacing: 1.5px; font-family: 'Rajdhani', sans-serif; }
	.compteurs h1	{ font-size: 30px; line-height: 34px; }
	
	.footer { height: auto!important; line-height: auto; margin-top: 30px!important; }
	.footer nav { display: block!important; }
	.footer ul, .footer li { margin: 0 5px!important; }
	
	.visuelMD, .visuelSM { width: 100%!important; left: 0!important; bottom: 0!important; z-index: 0!important; background-repeat: no-repeat; background-size: 100%!important; background-position: center!important; }
	
	.contact-content .bloc { margin: 0; padding: 15px 20px; z-index: 999; }
	.bt_r { margin-left : 0;  }
	.bt_l { margin-right : 0; }

	.bloc-coord .bloc { width: 100%; max-width: 100%; margin: 0; float: none; }
	
	.modal h3.title { font-size: 21px; font-weight: 600; text-shadow: 0 0 5px rgba(0,0,0, 0.5), 0 0 10px rgba(0,0,0, 0.75), 0 0 20px rgba(0,0,0, 1); }
	
	.contactus-2 .card-contact { margin: 30px 0 120px 0!important; max-width: 100%!important; }
	.contactus-2 .card-contact img { max-width: 75%; }
	.contactus-2 .description p { font-size: 16px!important; }
	.contactus-2 .description h3 { font-size: 32px!important;}
	
	.item_equ .hovereffect { width: 320px; min-height: 320px; height: 320px; }
	.item_ref .hovereffect { width: 170px; min-height: 170px; height: 170px; padding: 15px; }

	.bloc-intro .intro-visu, #article .bloc-visu { width: 100%!important; max-width: 100%; position: relative; padding-right: 10%; }
	.bloc-intro .intro-visu .visu-cadre,  #article .bloc-visu .visu-cadre { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: solid 15px #fff; transform-origin: center; transform: rotate(-10deg); filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5)); }
}	
@media screen and (max-width: 768px ) {
	.page-header { min-height: 600px; }
	.bandeau_titre { width: 100%; font-size: 16px; }
	.page-header-mini, .bloc-header { display: none; }
	.bloc-fils .bandeau_titre { font-size: 18px; padding: 10px 15px; margin-top: 15px!important;  }
	.bloc-intro .intro-visu, #article .adherent { width: 100%; max-height: 150px; position: relative; padding-right: 10%; }
	.bloc-intro .intro-visu .visu-cadre,  #article .adherent .visu-cadre { border: solid 15px #fff; transform-origin: center; transform: rotate(-10deg); filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5)); }
	.intro-visu { min-height: 200px; margin: 0px; }
	
	.navbar .navbar-brand  { top: -30px!important; width: 70px; height: 70px; }
	 
	.navbar.navbar-transparent { min-height: 70px; bottom: 0; }
	.navbar.navbar-transparent .link-bar { right: 10px; bottom: 20px!important; }

	.navbar .logo_bl 	{ display: none; position: absolute; font-size: 0.9em; font-weight: 900; left: 0; right: 0; letter-spacing: 1px;  }

	.navbar .baseline 	{ display: none; position: absolute; font-size: 1.4em; line-height: 1.4em; font-weight: 400; left: 220px; top: 42%; text-transform: none; }
	.navbar.navbar-transparent .baseline { font-family: 'Italiana', sans-serif!important; letter-spacing: 1.5px; display: inline-block; position: absolute;  }
	 
	/* NAV */
	.navbar.navbar-transparent .navbar-nav { margin-left: auto!important; margin-top: 0px!important; }
	.navbar .navbar-nav { margin-left: auto!important; margin-top: 0; }

	.navbar a { vertical-align: middle; }
	.navbar b, .navbar strong { font-weight: 600!important; } 
	
	.modal .modal-dialog { margin: -10px!important; }
	.modal .modal-body { padding: 5px 20px!important; }
	
	#article { margin-top: 0!important; }
	#article .container { margin-top: 10px!important; min-height: auto!important; }
	#article .bandeau_titre { width: 100%; font-size: 16px; margin: 0!important;  }
	
	#actus .grid-item	{ 	width: 100%; }
	.footer nav { display: block!important; }
	.footer ul, .footer li { margin: 0 5px!important; padding: 0 auto; }
	
}