@charset "UTF-8";
/* CSS Document */

* {box-sizing:border-box;}

body {
	font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-style: normal;
    width: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    color: #0d1215;
    /* line-height: 17px; */
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1px;
}
body.modal-open header {
	padding-right: 20px;
}
img {
	border: none;
}
.container {
	/*
	max-width: 1250px;
	padding: 10px;
	*/
	margin: 0 auto;
}
a.chevron {
	cursor: pointer;
}
.breadcrumb {
    background: none;
}
a, a:hover {
    text-decoration: inherit;
    color: inherit;
}
.cb {
    clear: both;
}
p {
	font-size: 14px;
    line-height: 18px;
}
h1,h2  {
	font-size: 2.5rem;
}
h1 {
	font-size: 1.5rem;
	font-weight: 800;
    letter-spacing: 2px;
	text-transform: uppercase;
}
/* LOADER */
/* Fond d'écran pendant le chargement */
#loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: transform 0.8s ease-in-out;
}
#progress-bar {
	width: 0%;
	height: 5px;
	background-color: #000; 
	transition: width 0.2s ease-out;
	top: 0px;
	position: fixed;
}
#main-content {
	display: none; 
}

/* COULEURS */
.box-shadow {
    background-color: rgba(255, 255, 255,1);
    -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1); 
    -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1); 
    -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}
.bold {
	font-weight: 800;
}
.medium {
	font-weight: 600;
}
.black {
	color: #2d2f33;
}
.bg_black {
	background: #2d2f33;
}
.white {
	color: #fff;
}
.bg_white {
	background: #fff;
}
.blue {
	color: #172983;
}
.blue-bg {
	background: #172983;
}
.grey-bg {
	background-color: #E2E2E2;
}
.light-grey-bg {
	background-color: #f2f2f2;
}
/* TYPO */
.letter-spacing {
	letter-spacing: 2px;
}
.title-with-line {
	position: relative;
    padding-left: 49px;
}
b, strong {
	font-weight: 700;
}
.title-with-line::before {
	position: absolute;
    content: '';
    width: 40px;
    height: 6px;
    display: flex;
    background-color: #74bda6;
    left: 0px;
    top: 50%;
    transform: translateY(-3px);
}
p.with-line {
	position: relative;
	padding-top: 10px;
}
p.with-line::before {
	content: '';
	position: absolute;
	background-color: #35415e;
	display: flex;
	height: 1px;
	width: 100px;
	top: -10px;
	left: 15px;
}
.simple-line, .animated-line {
	display: flex;
	width: 20px;
	height: 1px;
	background-color: #20313e;
}
.animated-line {
	width: 0; /* Le trait commence à 0px */
	height: 1px;
	background-color: #20313e;
	opacity: 0;
	transition: width 2s ease-out, opacity 0.5s ease-out;
}
.cursor-pointer {
	cursor: pointer;
}
/* ACTION BUTTON */
.link {
	font-style: normal;
	position: relative;
    color: #35415e;
    margin-left: 15px;
	letter-spacing: 2px;
	text-decoration-line: underline;
  	text-decoration-thickness: 1px;
	text-underline-offset: 1px;
	display: inline-flex;
}
.link::before {
	content: '';
    position: absolute;
    display: flex;
    width: 9px;
    height: 9px;
    background-color: #35415e;
    left: -15px;
    top: 7px;
}
.btn-small {
	font-size: 11px;
}
.btn-small:hover, .btn:hover {
	color: #fff;
}
.btn:focus {
	box-shadow: none;
}
/* HEADER */
header {
	/* position: fixed;
	z-index: 30000; */
	position: relative;
	width: 100%;
	transition: .2s;
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* padding: 20px; */
    padding-top: 0px;
    height: 65px;
	background-color: rgba(255, 255, 255,1);
  
}
header .logo img {
	width: 160px;
	transition: .5s;
}
header .section-right .langues a {
	line-height: 15px;
    font-size: 12px;
}
header .section-right a:hover, header .section-right a.active {
	
}
header .section-right img {
	margin-right: 8px;
}
/*
header.menu-scroll .logo img {
	width: 140px;
}
*/
header nav.main {
    margin: 0 auto;
	z-index: 100;
}
header nav .main-content {
	height: 100%;
	width: 100%;
}
header nav .main-content .tel {
	font-size: 18px;
	display: flex;
	align-items: center;
}
header nav .main-content .tel span {
	margin-top: 2px;
}
header nav.main .menu {
	height: 100%;
}
header nav.main .nav_main {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
	padding: 30px 20px;
	position: relative;
}
header nav.main .nav_main:first-of-type {
	padding-right: 20px;
}
header nav.main .link_sub_menu {
	display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
	position: relative;
    width: 100%;
    text-align: center;
	color: #000;
	text-transform: uppercase;
	transition:.3s;
}
header nav.main .link_sub_menu::before {
	content: '';
	position: absolute;
	top: 40px;
	width: 0px;
	left: 0px;
	height: 2px;
	background-color: #000;
	transition: .5s;
}
header nav.main .link_sub_menu.active::before, header nav.main .link_sub_menu:hover::before {
	width: 100%;
}
header nav.main .nav_main:hover .sub_menu {
    display: flex;
	flex-direction: column;
}	
div.sub_menu {
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
	width:200px;
    background-color: #fff;
    padding: 40px 30px;
    margin: 0 auto;
    z-index: 999999;
	color: #000;
	-moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05); 
    -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05); 
    -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
	justify-content: flex-start;
	transition:.5s;
}
div.sub_menu.sub_menu_2 {
	padding: 20px;
}
header.menu-scroll img.black, header.bg_white img.black {
	display: inline-block;
}
header.menu-scroll img.white, header.bg_white img.white {
	display: none;
}
header.menu-scroll .button_container {
	top:30px;
}
header.menu-scroll .reseaux,header.bg_white .reseaux  {
	border-right: 2px solid #000000;
}
header.menu-scroll, header.bg_white {
	color: #000000;
	background-color: #fff;
	position: fixed;
    top: 0px;
	z-index: 1000;

}
header.menu-scroll {
   /*  height: 74px; */
}

/* MENU RESPONSIVE */
.button_container {
	position: absolute;
	right: 5%;
    top: 60px;
	height: 27px;
	width: 35px;
	cursor: pointer;
	z-index: 2000;
	transition: opacity .25s ease;
	transition: .3s;
}
.button_container.active {
	position: fixed;
}
.button_container:hover {
	opacity: .7;
}
.button_container.active .top {
	transform: translateY(11px) translateX(0) rotate(45deg);
	z-index: 2000;
}
.button_container.active .middle {
	opacity: 0;
	background: #FFF;
}
.button_container.active span {
	background: #000000;
}
.button_container.active .bottom {
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	z-index: 2000;
}
header .button_container span {
	background: #000;
	border: none;
	height: 1px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .35s ease;
	cursor: pointer;
}

header.menu-scroll .button_container span, header.bg_white .button_container span {
	background: #000;
}

.button_container span:nth-of-type(2) {
	top: 11px;
}
.button_container span:nth-of-type(3) {
	top: 22px;
}
.overlay {
	position: fixed;
	background: #fff;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
	z-index: 1000;
}
.overlay.open {
	opacity: 1;
	visibility: visible;
	height: 100%;
	right: 0px;
}
.overlay.open li {
	animation: fadeInRight .5s ease forwards;
	animation-delay: .35s;
	letter-spacing: .2rem;
}
.overlay.open li:nth-of-type(2) {
	animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
	animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
	animation-delay: .50s;
}
.overlay .logo {
	border-right: 1px solid #6a696b;
	padding-right: 90px;
	margin-right: 90px;
}
.overlay nav {
	position: relative;
	font-size: 25px;
	line-height: 25px;
	text-align: left;
	font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
}
.overlay nav .coordonnees {
	font-size: 17px;
	line-height: 30px;
	text-align: left;
}
.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	height: 100%;
}
.overlay ul li {
	display: block;
	position: relative;
	opacity: 0;
	margin-bottom: 10px;
}
.overlay ul li a {
	position: relative;
	color: #000000;
	text-decoration: none;
	overflow: hidden;
	transition: .6s;
	font-weight: 100;
}
.overlay a {
	transition: .6s;
}
.overlay ul li a:hover, .overlay a:hover {
	color: #172983;
}
.overlay ul li a.active {
	color: #172983;
	font-weight: 800;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
	width: 100%;
}
.overlay .languages {
	margin-top: 30px;
}
.overlay .languages a {
	display: inline-flex;
	margin: 0px 2px;
	border: 2px solid #fff;
	opacity: 0.6;
}
.overlay .languages a.active {
	border: 2px solid #172983;
	opacity: 1;
}
/* BLOC FIXE : Avis / Prix / Booking */
.block-fixed, .block-fixed-responsive {
	position: fixed;
    right: 50%;
    bottom: 60px;
    z-index: 100;
    display: flex;
	transform: translateX(50%);
}
.block-fixed .square, .block-fixed-responsive .square {
	width: auto;
    height: auto;
    background-color: #fff;
    margin-bottom: 10px;
    display: flex;
	padding: 7px 10px;
	border-radius: 15px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2); 
    -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2); 
    -o-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
	transition: .5s;
	margin: 0 5px;
}
.block-fixed-responsive .filtres {
	display: none;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.block-fixed-responsive .filtres.active {
	display: flex;
	opacity: 1;
	visibility: visible;
}
.block-fixed .square.active, .block-fixed .square:hover, .block-fixed-responsive .square.active, .block-fixed-responsive .square:hover {
    background-color: #000;
    color: #fff;
}
.block-fixed  {
	
}
.block-fixed .square:hover {
	
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.reveal-loaded .reveal [class*="reveal-"] {
    opacity: 1!important;
    transform: translateY(40px)!important;
    transition: 0s!important;
}

.reveal-loaded [class*="reveal-"]{
    transition: 2s cubic-bezier(.5, 0, 0, 1);
}

.reveal-loaded  .reveal-2 {
    transition-delay: .2s;
}

.reveal-loaded .reveal-3 {
    transition-delay: .4s;
}

.reveal-loaded .reveal-4 {
    transition-delay: .6s;
}
/* FOOTER */
footer {
	background-color: #000;
	height: auto;
	color: #fff;
	font-size: 13px;
	line-height:21px;
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	z-index: 1000;
}

footer .mail {
	transition:.5s
}
footer .mail:hover {
	color: #172983;
}
footer .adresse {
	font-size: 14px;
	position: relative;
}

footer h2 {
	font-size: 55px;
}
footer a.footer-link {
	border: 1px solid #fff;
	padding: 10px;
	text-transform: uppercase;
	font-size: 13px;
}
footer nav a {
	margin: 5px 0px;
	transition: .3s;
}
footer nav a:hover {
	color: #61a9a8;
}
footer .title {
	font-size: 11px;
}


.grecaptcha-badge {
	opacity: 0;
}

/* HEADER */
@media screen and (max-width:1250px) {
	.container {
		/* max-width: 1000px; */
	}
}
@media screen and (max-width:991px) {
	header .logo img {
		width: 160px;
	}
	.button_container {
		right: 25px;
        top: 35px;
	}
	.container {
	}
	footer {
		height: auto;
		padding: 10px 0px;
		font-size: 12px;
	}
	footer .adresse {
		font-size: 12px;
		position: relative;
		line-height: 17px;
	}
}
@media screen and (max-width:768px) {
	p {
		/* font-size: 16px; */
		line-height: 26px;
	}
	h1, h2 {
		/* font-size: 2rem; */
	}
	header {
		height: 95px;
		padding: 0px 60px 0px 10px;
	}
	.homepage {
		padding-top: 95px;
	}
	header .section-right a {
		height: 35px;
		padding: 0px 10px;
		font-size: 12px;
		line-height: 14px;
	}
	header .section-right a img {
		width: 13px !important;
	}
}
@media screen and (max-width:576px) {
	.link {
		width: 90%;
		font-size: 14px;
		line-height: 22px;
	}
	footer h2 {
		font-size: 30px;
	}
}

/* Make the image fully responsive */
.carousel-inner img {
	height: auto;
}
.carousel-indicators{
	display:inline-block;
	overflow-y: auto;
	overflow-x: hidden;
	position:static;
	direction: rtl;
}
@media screen and (max-width:992px){
.carousel-indicators{
	display: inline-flex;
	direction: inherit;
	height: auto;
	width: 100%;
	max-width:800px;
	overflow-x: auto;
	position: relative;
	margin-left: 0;
	margin-right: 0;
	overflow-y: hidden;
	justify-content: normal;
	margin-bottom:20px;
}
.carousel-inner{
	margin-left:0!important;
}
.carousel-inner img{
	width:100%;
}
}
/* width */
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555; 
}
.item {
/* margin-bottom:10px;
margin-left: 10px;
cursor:pointer;
*/
}
.item.active img{
/* border:1px solid red; */
	opacity:1;
}
.item img {
	border:1px solid transparent !important;
	opacity:0.5;
	transition:0.5s;
}
.item:hover img{
	opacity:1;
}

@media screen and (max-width: 1300px) {
	header .logo img {
		width: 190px;
	}
	header nav .nav_main {
		font-size: 16px;
	}
}
@media screen and (max-width: 992px) {
	.content{
		position:static;
	}
}
@media screen and (min-width: 880px) and (max-width: 1199px) {
	.carousel-inner{
		margin-left: 20px;
	}
	.content{
		position: static;
	}
}
@media screen and (min-width: 576px) and (max-width: 879px) {
	.carousel-inner{
		margin-left: 50px;
	}
	.content{
		position: static;
	}

}



.loader-triangle-7 #Artboard {
	stroke-dasharray: 0 226;
	animation: anm-tr7-dash 1s ease-in-out alternate infinite;
  }
  
  @keyframes anm-tr7-dash {
	from {
	  stroke-dasharray: 0 226;
	}
	to {
	  stroke-dasharray: 226 0;
	}
  }
  