/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

:root {
	--gradient-color-1: rgba(10, 6, 25, 1);
	--gradient-color-2: rgba(253, 176, 81, 1);
	--gradient-color-3: rgba(242, 32, 62, 1);
	--gradient-color-1-30pct:rgba(10, 6, 25, .3);
	--gradient-color-2-30pct: rgba(253, 176, 81, .3);
	--gradient-color-3-30pct: rgba(242, 32, 62, .3);
	--gradient-color-1-60pct: rgba(10, 6, 25, .6);
	--gradient-color-2-60pct: rgba(253, 176, 81, .6);
	--gradient-color-3-60pct: rgba(242, 32, 62, .6);
	--white: rgba(255, 255, 255, 1);
	--white-60pct: rgba(255, 255, 255, .6);
	--offwhite: var(--white);
	--black: #21272d;
}

* {
	outline: 0;
}

body,
button,
input,
select,
optgroup,
textarea {
	font-family: "Source Sans 3", sans-serif;
	color: var(--black);
}

h1,
h2,
h3 {
	clear: both;
	margin: 0;
	display: block;
	font-style: normal;
	font-weight: normal;
}

/* h1 : 64px, h2: 48px, h3: 36px */

h1 {
	font-size: 64px;
	text-transform: uppercase;
	line-height: 68px;
}

h2 {
	font-family: "Playfair Display", serif;;
	font-size: 48px;
	line-height: 52px;
}

h3 {
	font-family: "Playfair Display", serif;;
	font-size: 36px;
	line-height: 38px;
}

h4 {
	font-size: 24px;
	line-height: 28px;
}

p,
li {
	font-weight: normal;
	font-style: normal;
	font-size: 16px;
	line-height: 26px;
	margin: 0;
}

em,
i {
	font-weight: normal;
	font-style: italic;
}

b,
strong {
	font-weight: bold;
}

blockquote {
  margin: 15px 0px;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  /* gradient border */
  border: 1px solid;
  border-image-slice: 1;
  border-width: 0px 0px 0px 1px;
  border-image-source: linear-gradient(to left, var(--gradient-color-1), var(--gradient-color-2));
}

blockquote p,
.mc4wp-response p {
	font-size: 28px;
	line-height: 36px;
	display: block;
	text-shadow: 3px 2px 1px rgba(0, 0, 0, 0.06);
	font-family: "Playfair Display", serif;;
	width: 100%;
	background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.border-gradient {
  border: 10px solid;
  border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(to left, var(--gradient-color-1), var(--gradient-color-2));
}


ul,
ol {
	margin: 0;
	padding: 0;
}

ul {
	list-style: disc;
}

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

ul.inline {
	font-size: 0;
	line-height: 0;
}

ul.inline li {
	float: left;
}

.black,
.black a,
.black a:hover {
	color: var(--black);
}

.white,
.white a,
.white a:hover {
	color: var(--offwhite);
}

.dark {
	background-color: var(--gradient-color-1);
	background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	color: var(--offwhite);
}

#page .dark h1,
#page .dark h2,
#page .dark p,
#page .dark li,
#page .dark span,
#page .dark a {
	color: var(--offwhite);
}

.red,
.red a,
.red a:hover {
	color: var(--gradient-color-1);
}

.slick-prev:before,
.slick-next:before {
    content:"";
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a {
	color: var(--black);
	text-decoration: none;
	/*transition: color .4s ease;*/
}

a:hover,
a:focus,
a:active {
	color: inherit;
}

.cta {
	display: inline-block;
	text-align: center;
	color: var(--offwhite);
	background: var(--gradient-color-1);
	font-family: "Source Sans 3", sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 38px;
	padding: 11px 41px;
	border-bottom-right-radius: 20px;
	border-top-left-radius: 20px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.cta:hover {
	color: var(--offwhite);
	background-color: var(--gradient-color-1-60pct);
}

.cta.inverted {
	color: var(--white);
	background-color: var(--gradient-color-1);
}

.cta.inverted:hover {
	color: var(--offwhite);
	background-color: var(--gradient-color-1-60pct);
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

img {
	display: block;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

input[type],
textarea {
	outline: 0;
	border: 0;
	border-radius: 0;
	padding: 0;
	color: var(--black);
	cursor: pointer;
	width: 100%;
}

textarea {
	resize: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header {
	width: 100%;
	z-index: 9999;
}

.site-header>.wrap {
	padding: 16px 0;
	background-color: var(--gradient-color-1);

}

.site-branding a {
	display: block;
}

.site-branding a img {
	height: 190px;
	margin: 10px auto;
}

/* Menu Toggle */
.site-header .menu-toggle {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9999;
	width: 100px;
	height: 135px;
	font-size: 0;
	line-height: 0;
	border: 0;
	border-radius: 0;
	background: #000;
	padding: 30px;
	cursor: pointer;
}

.site-header .menu-toggle span {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	background-image: url(../images/nav.svg);
	display: block;
	height: 100%;
	width: 100%;
	cursor: pointer;
}

body.nav-toggled {
	overflow: hidden !important;
}

body.nav-toggled .menu-toggle span {
	background-image: url(../images/nav-active.svg);
}

body.nav-toggled .menu-main-menu-container {
	transform: translateX(0);
}

/* Main Menu */
.menu-main-menu-container {
	width: 100%;
	z-index: 9990;
	position: relative;
	background-color: var(--gradient-color-1);
	transition: 0.2s transform ease-in;
}

#main-menu {
	display: flex;
	align-items: center;
	width: 100%;
}

#main-menu>li {
	text-align: center;
	float: none;
	cursor: pointer;
	flex: 1;
	position: relative;
}

#main-menu>li.important a {
	background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#main-menu>li>a {
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 3px;
	padding: 20px 0;
	display: block;
	text-align: center;
	text-transform: uppercase;
	color: var(--offwhite);
	font-family: "Source Sans 3", sans-serif;
	font-weight: 700;
}

#main-menu>li:hover>a,
#main-menu>li.current_page_item>a,
#main-menu>li.current-menu-item>a {
  -webkit-text-fill-color: var(--white);
	background: var(--gradient-color-1);
	background: linear-gradient(40deg, var(--gradient-color-1-30pct) 0%, var(--gradient-color-2-30pct) 50%, var(--gradient-color-3-30pct) 100%);
}

#main-menu>li#menu-item-2075>a {
	background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#main-menu>li#menu-item-2075:hover>a,
#main-menu>li#menu-item-2075.current_page_item>a,
#main-menu>li#menu-item-2075.current-menu-item>a {
	background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: var(--white);
}

/* Submenu */
#main-menu>li>ul.sub-menu {
	cursor: default;
	margin: 0;
	position: absolute;
	width: 100%;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	display: none;
}

#main-menu>li:hover>ul.sub-menu {
	display: flex;
	background: var(--white-60pct);
}

#main-menu>li>ul.sub-menu>li {
	display: block;
	float: none;
	cursor: pointer;
	background-color: var(--white-60pct);
	flex: 100%;
	text-align: center;
}

#main-menu>li>ul.sub-menu>li>a {
	font-weight: 600;
	display: block;
	font-size: 14px;
  line-height:18px;
	letter-spacing: 1px;
	color: var(--black);
	text-transform: uppercase;
	position: relative;
	padding: 10px 20px;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	-moz-transition: 0.2s;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

#main-menu ul.sub-menu li>a:hover {
	background-color: var(--white-60pct);
}

#main-menu ul.sub-menu li>a:hover,
#main-menu ul.sub-menu li.current_page_item>a,
#main-menu ul.sub-menu li.current-menu-item>a {
	background-color: var(--white);
}

#main-menu>li:hover>ul.sub-menu {
	background-color: var(--gradient-color-1-60pct);
}

/*--------------------------------------------------------------
# Structure
--------------------------------------------------------------*/

#page {
	position: relative;
	overflow: hidden;
}

#main {
	background-color: var(--offwhite);
}

.wrap {
	padding: 100px 0 60px;
}

.archive #news-index {
	padding: 0px 0 60px 100px !important;
}

.wrap.no-wrap-top {
	padding-top: 0;
}

.wrap.no-wrap-bottom {
	padding-bottom: 0;
}

.wrap.small-wrap {
	padding: 20px 0;
}

/* Hero */
.hero-section {}

.hero-section img {
	width: 100%;
	height: auto;
}

/* Page Defaults */
h1.page-title {
	margin: 0 0 36px 0;
	background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

h1.page-title:only-child {
	margin: 0;
}

h2.page-sub-title {}

.content-section {
	max-width: 1140px;
	margin: 0 auto;
}

.content-section.no-wrap {
	max-width: 1920px;
	margin: 0 auto;
}

.content-section p:not(:last-of-type) {
	margin-bottom: 9px;
}

.content-section p>a,
.content-section li>a,
.content-section h1>a,
.content-section h2>a,
.content-section h3>a,
.content-section h4>a,
.content-section p strong>a,
.content-section li strong>a {
	border-bottom: 1px solid;
  background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.content-section p>a:hover,
.content-section li>a:hover,
.content-section h1>a:hover,
.content-section h2>a:hover,
.content-section h3>a:hover,
.content-section h4>a:hover,
.content-section p strong>a:hover,
.content-section li strong>a:hover {
	border-bottom: 1px solid;
  -webkit-text-fill-color: var(--gradient-color-2);

}

.content-section ul:not(.no-style) {
	margin-left: 40px;
	padding: 32px 0;
}

.content-section ul:not(.no-style) li {
	line-height: 18px;
}

.content-section ul:not(.no-style) li:not(:last-of-type) {
	margin-bottom: 15px;
}

.content-section img.section-image,
.content-section .section-image img {
	width: 100%;
	display: block;
}

.content-section .col-wrap {
	display: flex;
}

.content-section .col-wrap .col {
	margin: 0;
}

.content-section .col-wrap.two-two>.col:nth-child(2n + 1),
.content-section .col-wrap.two-two>.col:nth-child(2n + 2) {
	flex: 1;
}

/* Section Intro */
.section-intro {
	box-shadow: 0px 20px 80px rgba(0, 0, 0, 0.03);
	padding: 60px 0;
	margin-bottom: 40px;
	background-color: var(--offwhite);
}

.section-intro .content-section {
	text-align: center;
}

/* Block Gallery */
.block-gallery .content-section h3 {
	padding-bottom: 20px;
}

.block-gallery .copy {
	margin-bottom: 40px;
}

.block-gallery.logowall { 
  background: var(--gradient-color-1); 
}

.block-gallery.logowall .content-section h3 {
  color: var(--white); 
}

.block-gallery .copy {
  color: var(--white); 
}

.block-gallery.logowall ul { 
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display:flex; 
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.block-gallery.logowall ul li {
  flex: 0 1 25%;
  padding: 0 16px 30px;
  max-height: 200px; 
}

.block-gallery.logowall ul li img {
  /* filter to black and white */
  filter: grayscale(100%);  
  height:100%; 
}

@media screen and (max-width: 768px) {
  .block-gallery.logowall ul li {
    flex: 0 1 50%;
  }

  .block-gallery.logowall ul li img {
    height: auto;
  }
  
}

/* Block CTA */
.block-cta:nth-child(n) {
	background: var(--gradient-color-1);
	background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	padding: 60px 0;
}

.block-cta:nth-child(2n) {
	background: var(--gradient-color-1);
	background: linear-gradient(40deg, var(--gradient-color-3) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
}

.block-cta .content-section {
	text-align: center;
	max-width: 480px;
}

.block-cta h3 {
	/* transform: rotate(-6deg);
	-webkit-transform: rotate(-6deg); */
	font-size: 60px;
	line-height: 50px;
	margin: 0 auto 32px;
	text-shadow: 6px 6px 1px rgba(0, 0, 0, 0.06);
}

.block-cta p {
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 32px;
}

.block-cta a {}

.block-cta a:hover {}

.block-mini-cta h2 {
	/* transform: rotate(-6deg);
	-webkit-transform: rotate(-6deg); */
	font-size: 16px;
	line-height: 16px;
	margin: 0 auto 16px;
	text-shadow: 3px 2px 1px #0003;
	text-align: center;
}

/* Block Text */
#page .block-text {
	padding-bottom: 60px;
}

.block-text .content-section h3 {
	padding-top: 32px;
	padding-bottom: 20px;
  background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.block-text .content-section h4,
.content-section h4 {
    padding-top: 8px;
	padding-bottom: 4px;
  margin:0px;
background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.block-text img.image {
	width: 40%;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 3px;
}

.block-text .right img.image {
	float: right;
}

.block-text .left img.image {
	float: left;
}

.block-text .right .copy {
	width: 60%;
  float: left;
	padding-right: 4%;
}

.block-text .left .copy {
	width: 60%;
	float: right;
	padding-left: 4%;
}

.block-text.no-copy .copy { 
  display:none; 
  float:initial 
}

.block-text .no-copy img {
  width: 100%;
  margin: 0 auto;
  display: block;
  float:none; 
} 

/* Block Video */
#page .block-video {
	padding-bottom: 40px;
}

.block-video ul.videos {
	display: flex;
	flex-flow: row wrap;
	margin: 40px -20px 0;
}

.block-video ul.videos li {
	flex: 0 1 31%;
	margin: 1% 2% 1% 0px;
	height: auto;
}

.block-video ul.videos li .title {
	line-height: 24px;
	font-size: 18px;
	display: block;
	min-height: 48px;
	max-height: 150px;
	margin-bottom: 16px;
}

.block-video ul.videos li iframe {
	max-width: 100%;
	max-height: 200px;
}

/* Block Tarifs */
#page .rpt_plans {
}

#page .rpt_sm_price {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -4px;
}

#page .rpt_sm_price .rpt_plan {
	width: 25%;
	float: none;
	margin: 12px;
	flex: 1;
	display: flex;
	flex-direction: column;
	background: var(--black);
}

.rpt_recommended { display:none !important; }

.rpt_recommended_plan {
  border: 10px solid;
  border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(to left, var(--gradient-color-1), var(--gradient-color-2));
}

#page .rpt_title {
	background: var(--black);
	border: 0;
	line-height: 24px;
	font-size: 24px;
	padding: 20px;
	text-align: center !important;
	border: 0;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

#page .rpt_head {
	background: #21272d;
	border: 0;
	text-align: center;
}

#page .rpt_recurrence {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 2px;
	color: #eee !important;
}

#page .rpt_price {
	color: var(--offwhite);
	/* transform: rotate(-6deg);
	-webkit-transform: rotate(-6deg); */
	text-shadow: 6px 6px 1px #0003;
	font-size: 60px;
	line-height: 55px;
	font-family: "Playfair Display", serif;;
	font-weight: normal;
	position: relative;
	display: inline-block;
}

#page .rpt_price .rpt_currency {
	left: inherit !important;
	position: absolute;
	top: 16px !important;
	right: -16px !important;
}

#page .rpt_subtitle {
	font-size: 20px;
	line-height: 24px;
	display: block;
	color: var(--gradient-color-2) !important;
}

#page .rpt_description {
	color: #eee;
	font-weight: normal;
	font-style: normal;
	font-size: 16px;
	line-height: 22px;
}

#page .rpt_foot {
	margin-top: auto;
	text-align: center;
	color: var(--white);
	!important;
	background: var(--gradient-color-2) !important;
	font-size: 18px;
	line-height: 24px;
	padding: 11px 7px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	letter-spacing: 1px;
	box-sizing: border-box;
	font-weight: normal;
	border: 0;
}

#page .rpt_foot:hover {
	opacity: 1;
	color: var(--white);
	!important;
	background: var(--gradient-color-1);
	background: linear-gradient(40deg, var(--gradient-color-1-30pct) 0%, var(--gradient-color-2-30pct) 50%, var(--gradient-color-3-30pct) 100%);
}

/* "Block" Early Bird */
.section-early-bird .content-section {
	text-align: center;
}

.section-early-bird .content-section h3 {
	padding-bottom: 20px;
}

.section-early-bird .content-section .early-bird-image img {
	margin: 0 auto;
}

/* Block Tables */
.block-table .content-section h3 {
	padding-bottom: 20px;
}

/* Block Form */
.block-form .content-section {
	max-width: 720px;
}

.block-form .content-section h3 {
	padding-bottom: 20px;
}

/* Contact Form 7 */
#page .form {
	padding-top: 32px;
}

#page .form .content-section {
	max-width: 720px;
}

#page .form .content-section form p {
	margin-bottom: 0;
	margin-top: 34px;
}

#page .form .content-section label {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 2px;
	display: block;
}

#page .form .content-section span {
	display: block;
	margin-top: 10px;
	font-weight: normal;
	line-height: 24px;
	font-size: 14px;
	text-transform: none;
	letter-spacing: 0;
}

#page .form .content-section span a {
	color: var(--gradient-color-2);
	text-decoration: underline;
}

#page .form .content-section input,
#page .form .content-section textarea {
	padding: 10px 15px;
	line-height: 24px;
	font-size: 14px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	display: block;
	margin: 5px 0px;
}

#page .form .content-section input[type="text"],
#page .form .content-section input[type="date"],
#page .form .content-section textarea {
	-webkit-appearance: none;
	background-color: var(--white);
	;
}

#page .form .content-section input[type="submit"] {
	cursor: pointer;
	width: auto;
	border: 0;
	display: inline-block;
	text-align: center;
	color: var(--offwhite);
	background: var(--gradient-color-1);
	font-size: 16px;
	text-transform: uppercase;
	line-height: 24px;
	padding: 11px 41px;
	border-radius: 3px;
	letter-spacing: 1px;
}

#page .form .content-section input[type="submit"]:hover {
	color: var(--offwhite);
	background: var(--gradient-color-1);
}

/* Radio / Checkbox */
#page .form .content-section .form-radio,
#page .form .content-section .form-checkbox {
	display: flex;
	flex-flow: row wrap;
}

#page .form .content-section .form-radio label:not(:first-of-type),
#page .form .content-section .form-checkbox label:not(:first-of-type) {
	display: flex;
	align-items: center;
	margin: 10px 30px 0 0;
	cursor: pointer;
}

#page .form .content-section .form-radio label:first-of-type,
#page .form .content-section .form-checkbox label:first-of-type {
	width: 100%;
}

#page .form .content-section .form-radio input[type="radio"],
#page .form .content-section .form-checkbox input[type="checkbox"] {
	width: auto;
}

#page .form .content-section .form-radio label span,
#page .form .content-section .form-checkbox label span {
	margin-top: 0;
	margin-left: 10px;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/

.home #main {
	height: calc(100vh - 124px - 58px);
	background-color: transparent;
	box-sizing: border-box;
}

.home #main .wrap {
	padding: 0;
	max-width: inherit;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	z-index: 999;
}

.home #main .wrap .logo-overlay {
	content: "";
	width: 100%;
	height: 100%;
	background: var(--gradient-color-1);
	background: linear-gradient(40deg, var(--gradient-color-1-60pct) 0%, var(--gradient-color-2-60pct) 50%, var(--gradient-color-3-60pct) 100%);
	position: absolute;
	z-index: 1000;
}

.home #main .wrap .logo-overlay .logo {
	width: 40%;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
	z-index: 1001;
	height: auto;
  max-height: 80vh;
	opacity: 1;
	pointer-events: none;
}

.home #main .wrap .slick-list,
.home #main .wrap .slick-track,
.home #main .wrap .slick-slider,
.home #main .wrap .slick-slide {
	height: 100%;
	width: 100%;
}

.carousel .slide-image {
  min-height: 70vh;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* 20240708 Announcement Block */

.home .block-text {
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
}

.home .block-text .announcement-panel {
  display:flex;
  flex-direction:row-reverse;
}

@media (max-width: 768px) {
  .home .block-text .announcement-panel {
    flex-direction:column-reverse;
  }
}

.home .block-text .copy a {
color: var(--gradient-color-2);
}

.home .block-text .copy a:hover {
  color: var(--gradient-color-2);
}

.home .block-text .copy a.cta {
  color: var(--offwhite);
  margin-top: 20px;
  background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
  font-size: 18px;
  padding: 4px 18px;
}

.home .block-text .copy a.cta:hover {
  background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-1) 50%, var(--gradient-color-1) 100%);
}

.home .block-text .content-section h3 {
	padding-top: 32px;
	padding-bottom: 20px;
  -webkit-text-fill-color: var(--white) !important;
}

.home .block-text .content-section h4 {
  -webkit-text-fill-color: var(--white) !important;
}

.home .block-text img.image {
	width: 40%;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 3px;
  object-fit:contain;
}

.home .block-text .right img.image {
	float: right;
}

.home .block-text .left img.image {
	float: left;
}

.home .block-text .copy {
	/* width: 60%;
	float: right; */
	padding-left: 4%;
  color: var(--white);
}


/*--------------------------------------------------------------
# Inscription
--------------------------------------------------------------*/

.timetable-mobile {
	display: none;
}

.page-template-page-inscription table {
	width: 100%;
	border-collapse: collapse;
	margin: 40px 0 60px 0;
	table-layout: fixed;
	border-radius: 3px;
	overflow: hidden;
}

.page-template-page-inscription table thead th:not(:first-child) {
	background-color: var(--gradient-color-1);
	background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
}

.page-template-page-inscription table thead th:not(:first-child) span {
	/* transform: rotate(-6deg);
	-webkit-transform: rotate(-6deg); */
	text-shadow: 6px 6px 1px rgba(0, 0, 0, 0.06);
	color: var(--offwhite);
	font-size: 20px;
	line-height: 28px;
	font-family: "Playfair Display", serif;;
	font-weight: normal;
	padding: 14px 16px;
	display: block;
}

.page-template-page-inscription table thead th:first-child {
	width: 20%;
}

.page-template-page-inscription table tbody tr:nth-child(even) {
	background: #efefef;
}

.page-template-page-inscription table tbody tr td {
	text-align: center;
	border: 1px solid #eee;
}

.page-template-page-inscription table tbody tr td span {
	font-size: 17px;
	line-height: 26px;
	font-family: "Playfair Display", serif;;
	font-weight: normal;
	padding: 14px 16px;
	display: block;
}

.page-template-page-inscription table tbody tr td:first-child span {
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 1px;
	font-family: "Source Sans 3", sans-serif;
	font-weight: bold;
	padding: 14px 16px;
}

/* Tarifs */
.page-template-page-inscription a.rpt_foot {
	display: none !important;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

/* people */
.page-template-page-team #main .section-intro { 
  background: var(--gradient-color-1);
}

.page-template-page-team .page-sub-title { 
  color: var(--white);
}

#people .content-section>h3 {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #eee;
  color:var(--offwhite);
}

#page ul.people {
	margin: 40px auto 0;
	display: flex;
	justify-content: center;
  flex-wrap:wrap; 
}

#page ul.people li {
	margin: 0;
	flex: 0 1 33.33%;
	padding: 0 16px;
  color:var(--offwhite);
  margin-bottom:30px; 
}

#page ul.people li.standout {
  min-width:100%; 
}

#page ul.people li img {
  border-radius: 180px; 
  margin:0 auto; 
  margin-bottom: 20px; 
}


#page ul.people li span {
	display: block;
  color:var(--offwhite);
}

#page ul.people li div.name {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 24px;
	line-height: 24px;
	letter-spacing: 2px;
  	background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#page ul.people li div.name span {
  font-weight: normal;
  display:block; 
  margin-top:8px; 
  font-weight: bold; 
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
  color:var(--white);
  background:var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

/* #page ul.people li span.title {
	line-height: 24px;
	font-size: 24px;
	padding: 10px 0 20px;
} */

#page ul.people li .link {
  border-bottom: 0;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 28px;
	display: block;
  color:var(--offwhite);
}

/*#page ul.people li:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 60px;
    background-color: transparent;
    height: 2px;
    transform: translateY(61px);
  }

  #page ul.people li:hover:after {
    background-color: var(--gradient-color-2);
  }*/

/* Team Members */
.team-member {
	padding: 80px 0;
}

.team-member:first-child {
	padding-top: 0;
}

.team-member {
	position: relative;
	box-shadow: 0px 20px 80px rgba(0, 0, 0, 0.03);
}

.team-member .team-member-image {
	width: 40%;
}

.team-member:nth-child(odd) .team-member-image,
.team-member:nth-child(even) .team-member-bio {
	float: right;
}

.team-member:nth-child(even) .team-member-image,
.team-member:nth-child(odd) .team-member-bio {
	float: left;
}

.team-member:nth-child(odd) .team-member-image {
	padding-right: 6%;
}

.team-member:nth-child(even) .team-member-image {
	padding-left: 6%;
}

.team-member .team-member-image img {
	width: 100%;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 3px;
}

.team-member .team-member-bio {
	width: 60%;
}

.team-member:nth-child(odd) .team-member-bio {
	padding-right: 6%;
	padding-left: 10%;
}

.team-member:nth-child(even) .team-member-bio {
	padding-right: 10%;
	padding-left: 6%;
}

.team-member .team-member-header {
	text-align: center;
}

.team-member .team-member-header h2.name {
	background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  /* transform: rotate(-6deg);
	-webkit-transform: rotate(-6deg); */
	text-shadow: 6px 6px 1px rgba(0, 0, 0, 0.06);
	margin: 0 auto 20px;
	width: 60%;
	font-size: 58px;
	line-height: 54px;
}

.team-member .team-member-header span.role {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 2px;
}

.team-member .team-member-header span.role:after {
	content: "";
	display: block;
	height: 2px;
	width: 60px;
	margin: 15px auto 30px;
	background-color: var(--gradient-color-1);
}

.team-member .team-member-col {
	column-count: 2;
}

.team-member .team-member-bio p {
	font-size: 14px;
	line-height: 22px;
}

/* Exceptions */ 

.page-id-6273 #main, .page-id-6273 #main .section-intro { 
  background: var(--gradient-color-1);

}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

/* Map */
.page-template-page-contact .acf-map {
	height: 40vh;
}

.page-template-page-contact .acf-map img {
	max-width: inherit !important;
}

/* Intro */
.page-template-page-contact .section-intro .col-wrap {
	display: flex;
	justify-content: center;
}

.page-template-page-contact .section-intro .col-wrap .col {
	margin: 0;
	flex: 1;
	padding: 0 16px;
}

.page-template-page-contact .section-intro .col-wrap .col p {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 22px;
}

.page-template-page-contact .section-intro .col-wrap .col p:last-of-type {
	margin-bottom: 0;
}

/* Form */
.page-template-page-contact .form .content-section>p {
	margin-bottom: 32px;
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/

#back-to-blog a {
	display: block;
	text-align: center;
	width: fit-content;
	text-transform: uppercase;
	margin: 0 auto;
	margin-bottom: 20px;
}

.single-post div#news-index {
	padding: 0px;
}

.single-post article,
.blog div#news-index {
	width: 1140px;
	margin: 0 auto;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
	padding: 0px;
	max-width: 80%;
}

#page #news-index article {
	padding: 40px 80px;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#page #news-index article:hover {
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	box-shadow: inset 0px 0px 50px rgba(0, 0, 0, 0.05);
}

#page #news-index article:nth-child(even) {
	background: var(--white);
}

#page #news-index article:nth-child(odd) {
	background: var(--white);
}

#page #news-index article h2 a {
  background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	margin: 30px auto;
	font-size: 28px;
	line-height: 32px !important;
	text-align: center;
	display: block;
  border-bottom:none;
}

#page #news-index article h2 a:hover {
	color: var(--gradient-color-1) !important;
}

#page #news-index article .post-meta {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 2px;
	text-align: center;
	display: block;
}

#page #news-index article .post-meta a {
	border-bottom: 1px dotted var(--gradient-color-2);
}

#page #news-index article .featured-image {
	width: 100%;
	margin: 20px auto;
	padding: 0px 40px;
}

#page #news-index article p {
	margin-bottom: 24px;
	line-height: 30px;
	font-size: 18px;
	letter-spacing: -0.1px;
	text-align: left;
	padding: 0px 40px;
}

#page #news-index article h4 {
	padding-top: 8px;
	padding-bottom: 4px;
  margin:0px;
  background: linear-gradient(40deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 50%, var(--gradient-color-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.single-post article {
	padding: 40px 80px;

}

.single-post #dpsp-content-bottom {
	width: 180px;
	margin: 0 auto;
	margin-top: 40px;
}

.single-post #dpsp-content-bottom li {
	text-align: center;
}

.single-post article:nth-child(even) {
	background: var(--white);
	cfd;
}

.single-post article:nth-child(odd) {
	background: var(--white);
	fff;
}

.single-post article h2 a {
	color: var(--gradient-color-2);
	margin: 30px auto;
	font-size: 28px;
	line-height: 32px !important;
	text-align: center;
	display: block;
}

.single-post article .post-meta {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 2px;
	text-align: center;
	display: block;
}

.single-post article .post-meta a {
	border-bottom: 1px dotted var(--gradient-color-2);
}

.single-post article .featured-image {
	width: 100%;
	margin: 20px auto;
	padding: 0px 40px;
}

.single-post article p {
	margin-bottom: 24px;
	line-height: 30px;
	font-size: 18px;
	letter-spacing: -0.1px;
	text-align: left;
	padding: 0px 40px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer #scroll-page-up a {
	margin: 26px auto 26px;
	display: block;
	width: 44px;
	height: 25px;
	text-indent: -9999px;
	background-image: url(../images/arrow-up.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.site-footer {
	width: 100%;
	z-index: 9990;
	background-color: var(--gradient-color-1);
	position: relative;
	padding: 40px 0px;
}

.site-footer .wrap {
	padding: 0;
	text-align: center;
	background-color: transparent;
}

.site-footer p {
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	color: var(--white);
	c;
}

.site-footer p a {
	color: var(--offwhite);
	font-weight: bold;
}

/* Social */
.site-footer #social-menu {
	margin: 0 auto;
	width: auto;
	display: inline-block;
}

.site-footer #social-menu li {
	margin: 0 5px;
}

.site-footer #social-menu li a {
	display: block;
	width: 38px;
	height: 38px;
	text-indent: -9999px;
	background-color: none;
	border-radius: 50%;
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.site-footer #social-menu li a:hover {
	background-color: rgba(0, 0, 0, 0.2);
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.site-footer #social-menu li.social-facebook a {
	background-image: url("../images/social-facebook.svg");
}

.site-footer #social-menu li.social-twitter a {
	background-image: url("../images/social-twitter.svg");
}

.site-footer #social-menu li.social-instagram a {
	background-image: url("../images/social-instagram.svg");
}

.site-footer #social-menu li.social-linkedin a {
	background-image: url("../images/social-linkedin.svg");
}

.site-footer #social-menu li.social-pinterest a {
	background-image: url("../images/social-pinterest.svg");
}

.site-footer #social-menu li.social-youtube a {
	background-image: url("../images/social-youtube.svg");
}

div#scroll-page-up {
	position: fixed;
	padding: 10px;
	border-radius: 50%;

	top: 90%;
	right: 2%;
	margin-right: 0px;

	background-color: var(--white);
	;
	width: 100px;
	height: 100px;
	opacity: 0.8;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	display: none;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

div#scroll-page-up:hover {
	opacity: 0.95;
	-ms-transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

div#scroll-page-up.visible {
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	display: block;
}

ul.slick-dots {
	display: block;
	position: absolute;
	bottom: -80px;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

ul.slick-dots li {
	list-style-type: none;
	display: inline-block;
}

ul.slick-dots a {
	text-decoration: none;
	color: var(--black);
	font-size: 24px;
	border: none;
}

ul.slick-dots .slick-active a {
	text-decoration: none;
	color: var(--gradient-color-2);
	font-size: 24px;
	border: none;
}

ul.slick-dots li:hover a {
	text-decoration: none;
	color: var(--gradient-color-2);
}


.rpt_style_basic .rpt_plan .rpt_title img {
	margin-right: 10px;
	position: relative;
	vertical-align: middle;
	position: absolute !important;
	top: 8px !important;
	width: 40px !important;
	left: 28px !important;
	display: none;
}

.categories,
.categories li {
	list-style-type: none;
	display: inline-block;
	margin: 0px 10px 0px;
}

#facebook-feed {
	background: var(--white);
	;
}

#facebook-feed .image {
	padding: 40px;
}

#news-index #category-filter {
	padding: 20px;
}

#news-index #category-filter ul {
	padding: 0px;
}

.rpt_style_basic .rpt_plan .rpt_title img {
	position: absolute !important;
	top: 0px !important;
	left: 0px !important;
}

/* recaptcha */
.grecaptcha-badge {
	visibility: hidden;
}

/* front page exceptions */
body.home .site-header>.wrap {
	padding: 0px;
}

body.home header .site-branding {
	display: none;
}

/* FORM */
.mc4wp-form {
	/* General styles */
	background-color: #f7f7f7;
	padding: 20px;
	border-radius: 5px;
	max-width: 400px;
	margin: 0 auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mc4wp-form label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
	color: #333;
}

.mc4wp-form input[type="text"],
.mc4wp-form input[type="email"],
.mc4wp-form input[type="url"],
.mc4wp-form input[type="tel"],
.mc4wp-form textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.mc4wp-form input[type="checkbox"],
.mc4wp-form input[type="radio"] {
	margin-right: 10px;
}

.mc4wp-form input[type="submit"],
.mc4wp-form button[type="submit"] {
	background-color: #0073e6;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

.mc4wp-form input[type="submit"]:hover,
.mc4wp-form button[type="submit"]:hover {
	background-color: #005bb5;
}

/* Error messages */
.mc4wp-form .mc4wp-error {
	color: #d9534f;
	font-size: 14px;
	margin-bottom: 10px;
}

/* Success message */
.mc4wp-form .mc4wp-success {
	color: #5cb85c;
	font-size: 14px;
	margin-bottom: 10px;
}

/* Optional: Additional styles for a cleaner look */
.mc4wp-form .mc4wp-form-fields {
	margin-bottom: 15px;
}

.mc4wp-form .mc4wp-form-fields:last-child {
	margin-bottom: 0;
}

.mc4wp-form input::placeholder,
.mc4wp-form textarea::placeholder {
	color: #999;
}

/* Media Queries for Responsive Design */
@media (max-width: 480px) {
	.mc4wp-form {
		padding: 15px;
	}

	.mc4wp-form input[type="submit"],
	.mc4wp-form button[type="submit"] {
		width: 100%;
	}
}

@media screen and (min-width: 769px) {

	.desktop-only {
		display: block !important;
	}

	.mobile-only {
		display: none !important;
	}

}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.wppsac-post-slider .wppsac-post-categories .wppsac-post-categories-list li a { color:var(--white) !important; -webkit-text-fill-color:var(--white) !important; }
.wppsac-post-slider .wppsac-post-categories .wppsac-post-categories-list li a:hover { background:var(--gradient-color-1); }

.wppsac-post-slider .wppsac-post-date::after { background:var(--gradient-color-1); }

.wppsac-post-slider.design-4 .wppsac-post-list-content h2.wppsac-post-title a { border:none; }
.wppsac-post-slider.design-4 .wppsac-post-list-content h2.wppsac-post-title a:hover { -webkit-text-fill-color:var(--gradient-color-1); }


.mc-banner {
  bottom: 0px;
  top: auto !important;
}
