/**********/
/* COMMON */
/**********/


/* Fonts 

font-family: cubano, sans-serif; - 400
font-family: gin, serif; - 400
font-family: trade-gothic-next, sans-serif;

*/

body {
	overflow-x: hidden;
	background: #fdfaf3;
	font-family: trade-gothic-next, sans-serif;
	background-image: url('../images/body_bg.jpg');
	background-position: top left;
	background-repeat: repeat;
	/*padding: 1.5vw 3vw;*/
	color: #62605e;
	font-size: 1.2vw;
}

.noscroll {
	overflow: hidden;
}

*:focus {
	outline: 0 !important;
	box-shadow: none !important;
}

a, button {
	transition: all 0.25s ease;
	text-decoration: none;
	color: #62605e;
}

p { 
	margin: 0 0 1vw 0;
}

.tel-link { 
	pointer-events: none;
  	cursor: default; 
}

.loading {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fdfaf3;
	top: 0;
	left: 0;
	z-index: 1000;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	padding: 0;
	margin: 0;
	opacity: .9;
}

.bggreen {
	background-color: #89aba3 !important;
}

.bgred {
	background-color: #942023 !important;
}

.bglightred {
	background-color: #bf797b !important;
}

.bgblue {
	background-color: #96aab8 !important;
}

.bgyellow {
	background-color: #f7e585 !important;
}

.bgorange {
	background-color: #c56b62 !important;
}

.green {
	color: #89aba3 !important;
}

.red {
	color: #942023 !important;
}

.lightred {
	color: #bf797b !important;
}

.blue {
	color: #96aab8 !important;
}

.yellow {
	color: #f7e585 !important;
}

.g-2, .gx-2 {
    --bs-gutter-x: 2vw;
}

.g-2, .gy-2 {
    --bs-gutter-y: 2vw;
}

.g-5, .gx-5 {
    --bs-gutter-x: 4vw;
}

.g-5, .gy-5 {
    --bs-gutter-y: 4vw;
}

.videobg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	/* filter:grayscale(100%); */
	transition: all 0.25s ease;
}

.flex_center {
	align-items: center;
}

.radius {
	border-radius: 2.5vw;
	overflow: hidden;
}

video {
	width: 100%;
}


/*******************/
/* HEADER + FOOTER */
/*******************/

header.main {
	position: absolute;
	top: 1.5vw;
	left: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	padding: 0 4vw;
	gap: 5vw;
	z-index: 998;
}

.logo {
	width: 8vw;
}

.logo .cls-1 {
	fill: #62615f;
}

.mainmenu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 2.5vw;
	margin: 0;
	padding: 0;
	position: relative;
}

.mainmenu li {
	padding-bottom: 1vw;
}

.mainmenu a {
	font-size: 1vw;
	font-weight: 700;
	color: #62605e;
}

.mainmenu li:hover a {
	color: #942023;
}

.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: auto;
	margin: 0;
	padding: 1vw;
	list-style: none;
	gap: 1vw;
	display: flex;
	align-items: center;
	background-color: #fdf9f2;
	border-radius: 1vw;
	box-shadow: 0 .5vw 1vw rgba(0,0,0,.3);
	opacity: 0;
	z-index: -1;
	visibility: hidden;
	transition: all 0.25s ease;
}

.submenu li {
	padding-bottom: 0;
	border-radius: 1vw;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.submenu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 10vw;
	height: 10vw;
	border-radius: 1vw;
	color: #fdf9f2 !important;
	font-size: .75vw;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
}

.submenu li a span {
	font-family: cubano, sans-serif;
	display: block;
	font-size: 1vw;
}

.submenu li a .filter {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: .75;
	transition: all 0.25s ease;
}

.submenu li a:hover .filter {
	opacity: 1;
}

.submenu li a:hover {
	color: #fdf9f2;
}

.submenu_text {
	position: relative;
	z-index: 2;
	text-align: center;
}

.has_sub {
	/*position: relative;*/
}

.has_sub:hover .submenu {
	opacity: 1;
	z-index: 999;
	visibility: visible;
}

.tools {
    margin-left: auto;
    display: flex;
    gap: 1.5vw;
}

.tools ul {
	list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5vw;
    margin: 0;
    padding: 0;
}

.tools ul a {
	font-size: 1.5vw;
	font-weight: 700;
	color: #62605e;
}

.tools ul a:hover {
	color: #942023;
}

footer {
	background-image: url('../images/bg_green_box.png');
	background-repeat: repeat;
	background-position: top left;
	padding: 5vw 10vw 2.5vw 10vw;
	margin: 0 -3vw -1.5vw -3vw;
	color: #fdfaf3;
	font-size: 1vw;
}

footer a {
	color: #fdfaf3;
}

footer a:hover {
	color: #942023;
}

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

.footer_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 2.5vw;
}

.footer_menu {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 2.5vw;
}

.footer_menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer_menu a {
	font-size: 1vw;
	color: #fdfaf3;
}

.footer_logos {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 3.5vw;
}

.footer_logos img {
	width: auto;
	height: 5vw;
}

.footer_social {
	font-size: 2vw;
}



/* Home */

#hero {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0 15vw;
	/*border-radius: 2.5vw;
	margin: 0 0 4vw 0;*/
}

#hero h1 {
	font-family: cubano, sans-serif;
	color: #fdf9f2;
	font-size: 6vw;
	font-weight: 400;
	line-height: 1;
	margin: 0 0 1vw 0;
}

#hero h1 span {
	font-family: gin, serif;
	color: #942023;
	font-size: 7vw;
	display: block;
	line-height: 1;
}

#hero p, #hero_inner p {
	font-family: cubano, sans-serif;
	text-transform: uppercase;
	color: #fdf9f2;
	font-size: 1.75vw;
	line-height: 1;
	margin: 0;
	letter-spacing: 4px;
	font-weight: 500;
}

#home_parcours {
	background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 4vw 5vw 5vw 5vw;
    /*border-radius: 2.5vw;
    margin: 0 0 4vw 0;*/
}

#home_parcours h2 {
	font-family: cubano, sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5vw;
	font-size: 3vw;
	color: #fdf9f2;
	margin: 0 0 2.5vw 0;
}

#home_parcours h2 span {
	font-size: 9vw;
	color: #942023;
}

.aParcours {
	position: relative;
	border-radius: 2.5vw;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30vw;
	cursor: pointer;
	overflow: hidden;
}

.aParcours:hover h3 {
	opacity: 0;
	z-index: -1;
}

.aParcours h3 {
	font-family: cubano, sans-serif;
	color: #fdf9f2;
	text-align: center;
	font-size: 3vw;
	letter-spacing: 7px;
	position: relative;
	z-index: 5;
	transition: all 0.25s ease;
}

.aParcours h3 span {
	font-size: 1vw;
	line-height: 1;
	display: block;
}

.aParcours h3 span.first {
	font-size: 1.5vw;
	letter-spacing: 3px;
	padding-bottom: 1vw;
}

.aParcours_actions {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 1.5vw;
}

.btn_bordered_white {
	font-family: cubano, sans-serif;
	display: flex;
	align-items: center;
	gap: .5vw;
	border: 1px solid #fdf9f2;
	border-radius: 2.5vw;
	padding: .75vw 1.5vw;
	font-weight: 500;
	letter-spacing: 2px;
	font-size: 1vw;
	color: #fdf9f2;
}

.btn_bordered_white i {
	font-size: 1vw;
}

.btn_bordered_white:hover,
.aParcours_wrapper:hover .btn_bordered_white {
	background-color: #fdf9f2;
	color: #942023;
}

.btn_bordered_white.dark {
	border: 1px solid #62605e;
	color: #62605e;
}

#home_itineraires {
	margin: 6vw;
}

.aParcours .videobg {
	opacity: .25;
}

.aParcours_wrapper .aParcours:hover .videobg {
	opacity: 1;
}

.home_itineraires_text_wrapper {
	display: block;
	padding: 2.5vw 2.5vw 10vw 2.5vw;
}

.home_itineraires_deco {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 22vw;
	z-index: -1;
}

#home_map {
	display: flex;
	justify-content: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	/*border-radius: 2.5vw; */
	overflow: hidden;
	padding: 6vw 8vw 0 8vw;
}

#home_map img {
	width: 100%;
}

#home_tabs {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	min-height: 100vh;
	border-radius: 0;
	overflow: hidden;
	position: relative;
	margin: 0;
}

#home_tabs h2 {
	background-color: rgba(137,171,163,1);
	padding: 2.5vw 10vw 0 10vw;
	color: #fff;
	margin: 0;
	text-align: center;
}

.tab-wrapper {
	display: flex;
	align-items: center;
	background-color: rgba(137,171,163,.9);
	padding: 2.5vw 10vw;
	gap: 10vw;
}

.nav-tab.active, .tab-wrapper nav a:hover {
	color: #62605e;
}

.nav-tab.active::after {
	content: "";
	width: 7vw;
	height: 2px;
	background-color: #62605e;
	position: absolute;
	left: calc(1vw + 100%);
}

.tab-content {
	display: none;
	min-height: 15vw;
}

.tab-content.active {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.tab-content h3 { 
	color: #fdfaf3; 
}

.tab-content p {
	line-height: 1.5;
	color: #fdfaf3;
}

.tab-wrapper nav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.tab-wrapper nav a {
	font-family: cubano, sans-serif;
	display: block;
	text-transform: uppercase;
	color: #fdfaf3;
	display: flex;
	align-items: center;
	height: 3vw;
	line-height: 1;
	letter-spacing: 5px;
	white-space: nowrap;
	font-size: 2vw;
	position: relative;
}

.tab_img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
}

#home_logos {
	margin: 5vw 0;
}

.overlay_stay {
    position: fixed;
    top: calc(50% - 7vw);
    right: 0;
    z-index: 800;
    height: 14vw;
    padding: 0 .5vw;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 1vw 0 0 1vw;
    background-color: #be7775;
    margin-right: -1px;
    transition: all 0.25s ease;
    border: 2px solid #be7775;
}

.overlay_stay_label {
    transform: rotate(180deg);
    writing-mode: vertical-lr;
    text-align: center;
    font-size: .85vw;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
    color: #fdfaf3;
	font-weight: 700;
	transition: all 0.25s ease;
}

.overlay_stay_label span {
	font-weight: 400;
}

.overlay_stay:hover {
	color: #be7775;
	background-color: #fdfaf3;
}

.overlay_stay:hover .overlay_stay_label {
	color: #be7775;
}

body.page-template-p_east .overlay_stay,
body.page-template-p_west .overlay_stay,
body.page-template-p_north .overlay_stay {
	display: flex;
}


/* Parcours */

#hero_inner {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	min-height: 85vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0 15vw;
	border-radius: 2.5vw;
	margin: 0 0 4vw 0;
}

#hero_inner h1 {
	font-family: cubano, sans-serif;
	font-size: 3vw;
	font-weight: 400;
	line-height: 1;
	margin: 0 0 1vw 0;
}

#hero_inner h1 span {
	font-family: gin, serif;
	font-size: 7vw;
	display: block;
	line-height: 1;
}

#parcours_infos {
	/*border-radius: 2.5vw;*/
	padding: 2.5vw 10vw;
	color: #fdfaf3;
	margin: 0;
}

#parcours_infos h2 {
	font-family: cubano, sans-serif;
	font-size: 3vw;
	text-align: center;
}

#parcours_infos h2 span {
	display: block;
	font-size: 2vw;
}

#parcours_infos h3 {
	font-family: cubano, sans-serif;
	font-size: 1.75vw;
	margin: 0 0 .5vw 0;
}

ul.stars {
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-image: url('../images/li_star.png');
}

ul.stars ul {
	list-style-image: initial;
	list-style-type: "-  ";
	margin: 0;
	padding: .5vw 0 0 1vw;
	break-inside: avoid-column;
}

ul.stars li {
	padding: .25vw 0;
	break-inside: avoid-column;
}

ul.stars ul li {
	padding: 0;
}

ul.stars.dark {
	list-style-image: url('../images/li_star_dark.png');
}

.parcours_infos_actions {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-top: 2.5vw;
}

.map_wrapper {
	display: block;
	margin: 0 -5vw 2.5vw -5vw;
}

.parcours_infos__details {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5vw 5vw -5vw;
	position: relative;
	margin-top: 7vw;
}

.parcours_infos__details_left {
	background-color: #f3ecdb;
	padding: 5vw;
	width: 50%;
	color: #62605e;
	position: relative;
	border-radius: 2.5vw 0 0 2.5vw;
	overflow: hidden;
	min-height: 35vw;
}

.parcours_infos__details_left a {
	text-decoration: underline;
}

.parcours_infos__details_left ul.stars {
	margin: 0 0 2vw 1vw;
}

.parcours_infos__details_right {
	width: 50%;
	position: relative;
	border-radius: 0 2.5vw 2.5vw 0;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.parcours_infos__details_tab {
	position: absolute;
	left: 50%;
	top: -4.5vw;
	z-index: 10;
	width: 25%;
	background-color: #4a7368;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fdfaf3;
	border-radius: 2.5vw 2.5vw 0 0;
	height: 4.5vw;
	font-family: cubano, sans-serif;
	font-size: 2.5vw;
	letter-spacing: 5px;
}

.parcours_infos__content_boxe {
	display: block;
	margin: 0 -5vw 5vw -5vw;
	position: relative;
	background-color: #f3ecdb;
	border-radius: 2.5vw;
	overflow: hidden;
	color: #62605e;
	padding: 5vw 5vw 15vw 5vw;
}

.parcours_infos__content_boxe .intro_text {
	text-align: center;
}

.parcours_infos__content_boxe h2 {
	letter-spacing: 5px;
	margin: 0 0 2.5vw 0;
}

#parcours_infos .parcours_infos__content_boxe h3 {
	font-family: cubano, sans-serif;
	font-size: 2.5vw;
	letter-spacing: 5px;
	margin: 0 0 2.5vw 0;
}

.two_cols {
	column-count: 2;
	column-gap: 3vw;
}

.parcours_infos__content_boxe__deco {
	position: absolute;
	right: 5vw;
	bottom: 2.5vw;
	width: 12vw;
}

.parcours_infos__content_boxe.cta {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5vw 5vw;
	position: relative;
	overflow: initial;
}

#parcours_infos .parcours_infos__content_boxe h4 {
	font-family: cubano, sans-serif;
	font-size: 2vw;
	letter-spacing: 5px;
	margin: 0;
	text-align: center;
}

.parcours_infos__content_boxe.cta img {
	position: absolute;
	left: 2.5vw;
	z-index: 10;
	width: 15vw;
}

#parcours_west .home_itineraires_deco {
    position: absolute;
    right: 10vw;
    bottom: 0;
    width: 10vw;
}

#parcours_west .parcours_infos__details_tab {
    left: 75%;
    background-color: #f3ecdb;
	color: #942023;
}

#parcours_west .parcours_infos__details_right {
    border-radius: 0 2.5vw 2.5vw 0;
}

#parcours_west .parcours_infos__details_right img {
	border-radius: 0 2.5vw 2.5vw 0;
	overflow: hidden;
}

#parcours_north .home_itineraires_deco {
    position: absolute;
    right: 5vw;
    bottom: 0;
    width: 12vw;
	transform: translateY(50%);
}

#parcours_north .parcours_infos__details_tab {
    left: 25%;
    background-color: #587185;
	color: #fdfaf3;
}

#home_logos .slick-slide img {
	width: 75%;
	display: block;
    margin: auto;
	border-radius: 2.5vw;
	overflow: hidden;
}


/* Ski Nordique */

#skinordique_about {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	min-height: 100vh;
	display: block;
	padding: 5vw 10vw;
}

h2 {
	font-family: cubano, sans-serif;
	font-size: 3vw;
	letter-spacing: 5px;
	margin: 0 0 2.5vw 0;
	padding: 0;
	width: 100%;
}

h2 span {
	display: block;
	font-size: 2.5vw;
}

#skinordique_about h2 {
	color: #942023;
	text-align: center;
	margin: 0 0 20vw 0;
}

#skinordique_about h2 span {
	color: #62605e;
}

.skinordique_about_content {
	width: 60%;
}

#skinordique_bonasavoir {
	background: url('../images/bg_blue.jpg');
	color: #fdfaf3;
	padding: 5vw 10vw;
}

#skinordique_bonasavoir h2 {
	text-align: center;
}

#skinordique_bonasavoir ul.stars {
	column-count: 2;
	column-gap: 2.5vw;
}

#skinordique_tabs {
	position: relative;
}

#skinordique_tabs .tab-wrapper {
	background-image: url('../images/bg_vert_trans.png');
	background-color: transparent;
	padding: 0 10vw 5vw 10vw;
	margin-bottom: 30vw;
}

.skinordique_tabs_intro {
	background-image: url('../images/bg_vert_trans.png');
	padding: 5vw 10vw 2.5vw 10vw;
	color: #fdfaf3;
	text-align: center;
}

#skinordique_tabs .btn_bordered_white {
	margin: 2.5vw 0 0 0;
}

#skinordique_reservation {
	background: url('../images/bg_beige.jpg');
	color: #fdfaf3;
	padding: 5vw;
}

#skinordique_reservation h2 {
	color: #89aba3;
	text-align: center;
}

#skinordique_reservation p {
	color: #62605e;
	text-align: center;
}

.skinordique_reservation_box {
	color: #fdfaf3;
	background-image: url('../images/bg_green_box.png');
	border-radius: 2.5vw;
	padding: 2vw;
	margin: 2.5vw 0 0 0;
	display: block;
}

.skinordique_reservation_box a {
	color: #fff;
	text-decoration: underline;
}

.skinordique_reservation_box h3 {
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	margin: 0;
}

.skinordique_reservation_box h3 i {
	transition: all 0.25s ease;
	display: block;
	padding-top: 5px;
}

.skinordique_reservation_box h3:hover i {
	transform: translateY(.5vw);
}

.skinordique_reservation_box_content {
	display: none;
	padding-top: 2.5vw;
}

.skinordique_reservation_box_content.open {
	display: block;
}

h3 {
	font-family: cubano, sans-serif;
	font-size: 1.5vw;
	line-height: 1;
	letter-spacing: 3px;
	margin: 0 0 2.5vw 0;
	padding: 0;
	width: 100%;
}

.planifier_cta {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5vw;
	border-radius: 2.5vw;
	text-align: center;
	text-transform: uppercase;
	background-image: url('../images/bg_red_trans.png');
	font-size: 2vw;
	letter-spacing: 5px;
	font-family: cubano, sans-serif;
	color: #fdfaf3;
	position: relative;
}

.planifier_cta a {
	display: block;
	padding: 1.5vw;
	color: #fdfaf3;
	width: 100%;
}

.planifier_cta a:hover {
	background-color: rgba(255,255,255,.15);
}

.planifier_cta .deco {
    position: absolute;
    left: 2.5vw;
    z-index: 10;
    width: 15vw;
}

.skinordique_tabs_deco {
	position: absolute;
	left: 0;
	left: 10vw;
	bottom: -35vw;
	z-index: 100;
}


/* About */

#about #hero h1 {
	color: #95a5a9;
}

#about_intro {
	color: #fdfaf3;
	padding: 5vw 10vw;
	color: #62605e;
}

#about_intro_part2 {
	margin-top: 5vw;
}

#about_intro_part2 h2 {
	text-align: center;
	color: #942023;
}

#about_intro_part2 .btn_bordered_white.dark {
	display: inline-flex;
	margin: 2.5vw 0 0 0;
}

.btn_bordered_white.dark:hover {
	background-color: #fff;
	color: #942023;
}

#about_intro_part2 video.radius {
	margin-bottom: 2.5vw;
}

#about_propriete_privee { 
	background-image: url('../images/bg_vert_trans.png');
	background-color: transparent;
	padding: 5vw 10vw;
	color: #fdfaf3;
}

#about_propriete_privee h2 {
	text-align: center;
}

#about_sopair {
	background: url('../images/bg_blue.jpg');
	color: #fdfaf3;
	padding: 5vw;
	text-align: center;
	color: #fdfaf3;
}

#about_sopair img {
	display: block;
	margin: 2.5vw auto 0 auto;
	width: 8vw;
}

#about_sopair .btn_bordered_white {
	display: inline-block;
	margin: 2vw 0;
}


/* Partners */

#partners #hero h1 span {
	color: #89aba3;
}

.partners_blue {
	background: url('../images/bg_blue.jpg');
	color: #fdfaf3;
	padding: 5vw;
	color: #fdfaf3;
	text-align: center;
}

.partners_green {
	background-image: url('../images/bg_vert_trans.png');
	color: #fdfaf3;
	padding: 5vw;
	color: #fdfaf3;
	text-align: center;
}

.partners_blue h2, .partners_green h2 {
	margin: 0 0 5vw 0;
}

.featured_partners {
	display: flex;
	flex-wrap: wrap;
	border-radius: 2.5vw;
	overflow: hidden;
	cursor: pointer;
}

.featured_partners__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-basis: 50%;
	background-image: url('../images/body_bg.jpg');
	background-color: #fff;
	transition: all 0.25s ease;
}

.featured_partners__logo img {
	width: 75%;
}

.featured_partners__img {
	flex-basis: 50%;
	overflow: hidden;
}

.featured_partners__img img {
	transition: all 0.25s ease;
}

.featured_partners__title {
	font-family: cubano, sans-serif;
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 2.5vw;
	padding: 1vw 0 5vw;
}

.featured_partners__title a {
	color: #fff;
}

.featured_partners__title a:hover {
	color: #62605e;
}

.featured_partners:hover .featured_partners__logo {
	background-image: none;
	background-color: rgba(255,255,255,1);
}

.featured_partners:hover .featured_partners__img img {
	transform: scale(1.1);
}

.partners_listing {
	display: flex;
	flex-wrap: wrap;
	gap: 1vw;
}

.aPartner {
	display: block;
	flex-basis: calc(20% - 1vw);
	margin: 0 0 1vw 0;
}

.aPartner span {
	display: block;
	color: #fdfaf3;
	font-family: cubano, sans-serif;
	font-size: 1.25vw;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-align: center;
	line-height: 1;
	padding: 1vw 0 0 0;
}

.aPartner span a {
	color: #fff;
}

.aPartner span a:hover {
	color: #62605e;
}

.aPartner__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url('../images/body_bg.jpg');
	border-radius: 2.5vw;
	overflow: hidden;
	border: 3px solid transparent;
	transition: all 0.25s ease;
	cursor: pointer;
}

.aPartner .aPartner__logo:hover {
	border: 3px solid #62605e;
}


/* Revue de presse */

#press #hero h1 span {
	color: #96aab8;
}

#press_listing {
	background: url('../images/bg_beige.jpg');
	color: #62605e;
	padding: 5vw;
}

.aPress {
	display: block;
	text-align: center;
	cursor: pointer;
	margin: 0 0 2.5vw 0;
}

.aPress h5 {
	font-size: 1.5vw;
	margin: 0 0 1vw 0;
	font-weight: 900;
}

.aPress img {
	border-radius: 2.5vw;
	overflow: hidden;
	display: block;
	margin: 0 0 1vw 0;
	border: 3px solid transparent;
	transition: all 0.25s ease;
}

.aPress .btn_bordered_white.dark {
	display: inline-flex;
	margin: 1vw 0 0 0;
}

.aPress strong {
	font-weight: 900;
}

.aPress:hover .btn_bordered_white.dark {
	background-color: #fdf9f2;
}

.aPress:hover img {
	border: 3px solid #942023;
}



/* Overlay burger */

#menu_panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	z-index: -1;
	padding: 12rem 2rem 2rem 2rem;
	color: #fff;
	background-color: #62605e;
	transition: all 0.25s ease;
}

body.sticky #menu_panel {
    padding: 7rem 2rem 2rem 2rem;
}

#menu_panel.open {
	opacity: 1;
	z-index: 997;
}

#menu_panel ul {
	display: inline;
	list-style: none;
	margin: 0;
	padding: 0;
}

#menu_panel ul ul a {
	padding-left: 1rem;
}

#menu_panel ul a {
	display: block;
	color: #fff;
	font-size: 1rem;
	padding: .5rem 0;
	border-bottom: 1px solid rgba(255,255,255,.5);
}

.hamburger { 
	padding: 0; 
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    background-color: #62605e;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: #fff;
}

.hamburger.is-active:hover, .hamburger:hover {
    opacity: 1;
}

header.main.open .tools a {
	color: #fff;
}

header.main.open .logo .cls-1 {
	fill: #fff;
}


/* Fixes */

.otgs-development-site-front-end {
	display: none;
}

.wpml-ls-legacy-list-horizontal {
    border: 0;
    padding: 0;
}

.tools ul .wpml-ls-legacy-list-horizontal a {
	padding: 0;
	font-size: 1.5vw;
}

#parcours_infos.bggreen {
	background-image: url('../images/bg_green_box.png');
}

#parcours_infos.bglightred {
	background-image: url('../images/bg_red_trans.png');
}

#parcours_infos.bgblue {
	background-image: url('../images/bg_blue.jpg');
}

.wpml-ls-legacy-list-horizontal a span {
    vertical-align: initial;
}



/* */

.tab-wrapper-hor {
	display: block;
	margin: 5vw -5vw 5vw -5vw;
}

.tab-wrapper-hor nav {
	display: flex;
	align-items: center;
	gap: .5vw;
}

.tab-wrapper-hor nav a {
    width: 25%;
    background-color: #4a7368;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fdfaf3;
    border-radius: 2.5vw 2.5vw 0 0;
    font-family: cubano, sans-serif;
    font-size: 1.5vw;
    letter-spacing: 2px;
    padding: 1vw 0 3.5vw;
}

#parcours_west .tab-wrapper-hor nav a {
    background-color: #942023;
    color: #fdfaf3;
}

#parcours_north .tab-wrapper-hor nav a {
    background-color: #587185;
    color: #fdfaf3;
}

.nav-tab-hor.active, .nav-tab-hor:hover {
	color: #4a7368;
	background-color: #f3ecdb;
}

#parcours_west .nav-tab-hor.active {
	color: #942023;
	background-color: #f3ecdb;
}

#parcours_north .nav-tab-hor.active {
	color: #587185;
	background-color: #f3ecdb;
}

.tab-content-hor {
	display: none;
}

.tab-content-hor.active {
	display: flex;
	margin-top: -2.5vw;
}

iframe {
	width: 100%;
    height: 20vw;
    max-width: 100% !important;
    margin-bottom: 1rem;
}


/* Parcours form */

#parcours_form_content {
	margin-top: -4vw;
	margin-bottom: 5vw;
}

.parcours_form_content_wrapper {
	padding: 2.5vw 5vw;
}

.parcours_form_content_wrapper h2 {
	margin: 2vw 0 1vw 0;
	color: #89aba3;
}

.parcours_form_content_wrapper h3 {
	margin: 2vw 0 1vw 0;
	font-size: 1.4rem;
	color: #62605e;
}

.parcours_form_content_wrapper a {
	color: #89aba3;
	text-decoration: underline;	
}

.parcours_form_wrapper {
	padding: 2.5vw 5vw;
	background-color: #89aba3;
	color: #fff;
	border-radius: 2vw 0 0 2vw;
}

.parcours_form_wrapper h3 {
	text-align: center;
}

.parcours_form_content_wrapper_actions {
	display: block;
	margin-top: 5vw;
}

a.btn_file {
	display: inline-block;
	font-family: cubano, sans-serif;
	font-size: 1.5vw;
	color: #fff;
	padding: 1vw 2vw;
	border-radius: 2vw;
	text-decoration: none;
}

.btn_file:hover {
	opacity: .75;
}


.parcours_form_wrapper div.wpforms-container-full button[type=submit] {
    background-color: #000 !important;
    color: #fff !important;
	padding: 1vw 2vw !important;
	border-radius: 2vw !important;
	height: auto !important;
	font-size: 1vw !important;
	text-transform: uppercase !important;
}

.parcours_form_wrapper div.wpforms-container-full button[type=submit]:hover {
	background-color: rgba(0,0,0,0.7) !important;
}

.hero_logo {
	position: absolute;
	z-index: 0;
	right: 10vw;
	top: 5vw;
	width: 15vw;
}

.parcours_form_wrapper div.wpforms-container-full .wpforms-field-label, 
.parcours_form_wrapper.wp-core-ui div.wpforms-container-full .wpforms-field-label {
	color: #fff!important;
}

.parcours_form_wrapper div.wpforms-container-full .wpforms-field-label-inline, 
.parcours_form_wrapper .wp-core-ui div.wpforms-container-full .wpforms-field-label-inline {
	color: #fff!important;
}

div.wpforms-container-full .wpforms-field-payment-single .wpforms-single-item-price {
    color: #fff !important;
}


/* Pages form  */

#parcours_north .parcours_form_content_wrapper h2 {
    color: #96aab8;
}

#parcours_west .parcours_form_content_wrapper h2 {
    color: #942023;
}

.wpforms-form .prix_west {
    color: #000000;
}

#parcours_west .parcours_form_content_wrapper a {
    color: #942023;
}

.parcours_form_content_wrapper .aParcours_actions,
.home_itineraires_text_wrapper .aParcours_actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1vw 0 2vw;
}

.parcours_form_content_wrapper .aParcours_actions a {
	text-decoration: none;
}

#default_page {
	padding: 12vw 5vw 5vw 5vw;
}

#cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode {
    font-size: 1vw;
    max-width: 100%;
}

/*
.overlay_stay.sticky {
	opacity: 0;
}
*/

body.page-template-p_west_form div.wpforms-container-full .wpforms-field-payment-single .wpforms-single-item-price {
    color: #000 !important;
}

body.page-template-p_east_form .parcours_form_content_wrapper_actions a {
	text-decoration: underline;
}

div.wpforms-container-full .wpforms-field-payment-single .wpforms-single-item-price {
	font-size: 2vw !important;
}



/* Home Popup */

#home_popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.25s ease;
	opacity: 0;
	z-index: -1;
	visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

#home_popup.open {
	opacity: 1;
	z-index: 9999;
	visibility: visible;
}

.home_popup_filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.home_popup_wrapper {
	position: absolute;
    width: 50vw;
	height: auto;
	z-index: 10;
	background-image: url('../images/popup_red_bg.jpg');
	border-radius: 1.5vw;
	padding: 2.5vw;
	color: #fff;
}

.popup_close {
	position: absolute;
	top: 1.5vw;
	right: 1.5vw;
	z-index: 20;
	cursor: pointer;
}

.popup_close img {
	width: 1vw;
	height: auto;
}

.popup_logo {
	display: block;
	width: 30%;
	margin: 2vw auto;
}

.btn_popup {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1vw;
	width: 60%;
	margin: 2.5vw auto 0;
	border-radius: 2vw;
	line-height: 1;
	background-color: #fdf7e9;
	color: #942023;
	font-weight: 800;
	font-size: 2vw;
	position: relative;
}

.btn_popup:hover {
	background-color: #96aab8;
}

.btn_popup img {
	position: absolute;
    width: 7vw;
    left: -1vw;
    z-index: 10;
}

.home_popup_wrapper h1 {
	font-family: cubano, sans-serif;
	color: #fdf9f2;
	font-size: 3vw;
	font-weight: 400;
	line-height: 1;
	margin: 0 0 1vw 0;
	text-align: center;
}

.home_popup_wrapper h2 {
	font-family: trade-gothic-next, sans-serif;
	color: #fdf9f2;
	font-size: 1.5vw;
	letter-spacing: initial;
	font-weight: 900;
	line-height: 1;
	margin: 0 0 2vw 0;
	text-align: center;
	text-transform: initial;
}

.home_popup_wrapper p {
	color: #fdf9f2;
	font-size: 1vw;
	text-align: center;
}


/* Custom Select */

.custom-select {
	background-color: #942023;
    position: relative;
	font-family: cubano, sans-serif;
    display: flex;
    align-items: center;
    gap: .5vw;
    border: 0;
    border-radius: 2.5vw;
    padding: .75vw 1.5vw;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 1vw;
    color: #fff;
	width: 15vw;
  }

  /* On cache le select natif */
  .custom-select select {
    display: none;
  }

  .selected-option {
	background-color: transparent;
    padding: 0;
    border: 0;
    width: 100%;
    cursor: pointer;
    user-select: none;
    position: relative;
	z-index: 990;
  }

  .selected-option:after {
    content: "\25BC";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    color: #fff;
  }

  .option-list {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #942023;
    max-height: 400px;
    overflow: auto;
    z-index: 989;
	border-radius: 0 0 2.5vw 2.5vw;
	font-weight: 300;
	padding: 1.25vw 0 1vw;
    margin-top: -1.25vw;
  }

  .option-list div {
    padding: .75vw 1.5vw;
    cursor: pointer;
    user-select: none;
  }

  .option-list div:hover {
    background-color: #000;
  }