/*
Theme Name: Ergopix
Theme URI: https://www.ergopix.com
Update URI: https://www.ergopix.com
Author: ergopix sàrl
Version: 1.0
*/

:root {
	overscroll-behavior: none;
	--btn-shadow-custom: 2px 2px 9px 0px #00000040;
	--red-pastel: #F18C79;
	--yellow-pastel: #E5E090;
	--green-pastel: #A1BEC0;
	--white-gray: #F0EEEB;
	--collapse-gray: #E5E5E5;
	--turquoise: #0A827D;
	--turquoise-hover: #086460;
	--jaune: #F4C961;
	--jaune-hover: #DDAF3F;
	--red-hover: #c94843;
	
}

body {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 300;
	letter-spacing: 0.03em;
}


/* -------------------------------- */ 
/* -------- STYLES GLOBAUX -------- */
/* -------------------------------- */ 

a {
	color: inherit;
}

a:not(.btn, .wrapper-carte):focus,
a:not(.btn, .wrapper-carte):focus-within {
	text-decoration: underline!important;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height .8s ease;
}

.btn {	
	text-transform: uppercase;
  --bs-btn-font-family: "Baikal-VAR";
  --bs-btn-padding-x: 3rem;
  --bs-btn-padding-y: 1rem;
  --bs-border-radius: 50rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-collapsetype {
	background-color: var(--collapse-gray);
	--bs-btn-border-color: var(--collapse-gray);
	--bs-btn-hover-bg: #9C9C9C;
	--bs-btn-hover-border-color: #9C9C9C;
	--bs-btn-active-bg: #9C9C9C;
	--bs-btn-active-border-color: #9C9C9C;
	padding-left: 3rem;
	padding-right: 0.5rem;
	padding-block: 0.5rem;
	box-shadow: var(--btn-shadow-custom);
	display: inline-flex;
	align-items: center;
}


.btn-collapsetype > span {
	position: relative;
	display: inline-block;
	margin-left: 1rem;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: white;
	transition: transform 0.2s ease;
}

.btn-collapsetype > span::after {
	position: absolute;
	content: "";
	width: 2px;
	height: 18px;
	inset: 0;
	margin: auto;
	background: #000;
	transition: transform 0.2s ease;
}

.btn-collapsetype > span::before {
	position: absolute;
	content: "";
	width: 18px;
	height: 2px;
	inset: 0;
	margin: auto;
	background: #000;
	transition: transform 0.2s ease;
}

.btn-collapsetype:not(.collapsed) > span::after {
	transform: rotate(90deg);
}

.btn-collapsetype.collapsed:hover > span  {
	transform: rotate(90deg);
}

::file-selector-button,
.gform_button_select_files {
	--bs-btn-bg: #000;
	--bs-btn-border-color: #000;
	--bs-btn-color: #FFFFFF;
	--bs-btn-hover-color: #FFFFFF;
	--bs-btn-hover-bg: #000;
	--bs-btn-hover-border-color: #000;
	text-transform: uppercase;
	  --bs-btn-font-family: "Baikal-VAR";
	  --bs-btn-padding-x: 1.5rem;
	  --bs-btn-padding-y: 0.5rem;
	  --bs-border-radius: 50rem;
	  --bs-btn-font-size: 0.875rem;
	  --bs-btn-font-weight: 400;
	  --bs-btn-line-height: 1;
	  --bs-btn-border-width: var(--bs-border-width);
	  --bs-btn-border-color: transparent;
	  --bs-btn-border-radius: var(--bs-border-radius);
	  --bs-btn-hover-border-color: transparent;
	  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);
	  --bs-btn-disabled-opacity: 0.65;
	  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
	  display: inline-block;
	  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
	  font-family: var(--bs-btn-font-family);
	  font-size: var(--bs-btn-font-size);
	  font-weight: var(--bs-btn-font-weight);
	  line-height: var(--bs-btn-line-height);
	  color: var(--bs-btn-color);
	  text-align: center;
	  text-decoration: none;
	  vertical-align: middle;
	  cursor: pointer;
	  -webkit-user-select: none;
	  -moz-user-select: none;
	  user-select: none;
	  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
	  border-radius: var(--bs-btn-border-radius);
	  background-color: var(--bs-btn-bg);
	  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	  margin-right: 0.75rem;
}

h1, h2, h3, h4, h5, h5 {
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 0.33em;
	text-wrap: balance;
}

.h1 {
	font-size: 6.1rem;
}

h2, .h2 {
	font-size: 3.25rem;
}


.title-page {
	font-family: "Round";
	text-transform: uppercase;
	color: white;
	line-height: 1;
	margin-bottom: 0;
	letter-spacing: 0.005em
}

.space-top {
	padding-top: 5rem;
}

.space-bottom {
	padding-bottom: 5rem;
}

.big-space-top {
	padding-top: 8rem;
}

.big-space-bottom {
	padding-bottom: 8rem;
}

.the-content p {
	margin-bottom: 1.5rem;
}

.the-content p,
.the-content {
	font-size: 1.055rem;	
	line-height: 1.5;
}

.bg-primary {
	--hover-color: var(--red-hover);
}

.bg-pastel-red {
	background-color: var(--red-pastel);
	--color-current: var(--red-pastel);
}

.bg-white {
	--color-current: var(--white-gray);
	background-color: var(--white-gray)!important;
}

.bg-pastel-yellow {
	--color-current: var(--yellow-pastel);
	background-color: var(--yellow-pastel);
}

.bg-pastel-green {
	--color-current: var(--green-pastel);
	background-color: var(--green-pastel);
}

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

.bg-turquoise {
	--color-current: var(--turquoise);
	background-color: var(--turquoise);
	--hover-color: var(--turquoise-hover);
}

.bg-jaune {
	--color-current: var(--jaune);
	background-color: var(--jaune);
	--hover-color: var(--jaune-hover);
}

.quote-style {
	color: #6c757d;
	margin-top: -18px;
	margin-bottom: 0.75rem;
}


.next-white  {
	--color-next: var(--white-gray);
}

.next-pastel-red  {
	--color-next: var(--red-pastel);
}

.next-pastel-yellow {
	--color-next: var(--yellow-pastel);
}

.next-pastel-green {
	--color-next: var(--green-pastel);
}

.next-black {
	--color-next: #000;
}

.shadow-btn {
	box-shadow: var(--btn-shadow-custom);
}

.the-content *:last-child {
	margin-bottom: 0;
}

.list-inline li {
	display: inline-block;
}

.list-inline li:not(:last-child) {
	margin-right: .5rem;
}

/* ----------------------- */ 
/* -------- HEADER ------- */
/* ----------------------- */ 

header {
	padding-block: 1.25rem;
	position: fixed;
	z-index: 10;
	width: 100%;
	top: 0;
	background-color: rgba(57, 57, 57, 0.95);
	transition: height 0.3s ease;
	// height: 100px;
}



header .main-menu li a {
	font-family: "Baikal-VAR";
	color: #F0EEEB;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 1rem;
	text-decoration: underline;
	text-decoration-color: rgba(240, 238, 235, 0);
	transition: 0.5s text-decoration-color;
}


header .main-menu.list-inline li:not(:last-child) {
  margin-right: 0;
}

header .main-menu li.current-menu-item a {
	text-decoration: underline;
	text-decoration-color: rgba(240, 238, 235, 1);
}

header .main-menu li a:hover {
	text-decoration-color: rgba(240, 238, 235, 1);
}

header .main-menu li:last-child {
	flex-grow: 1;
	text-align: end;
}

header .logo {
	margin-right: 1.25rem;
	position: relative;
}

.logo-min {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 20px;
	width: 25px;
	opacity: 0;
	max-width: none;
}

.logo-full {
	height: 45px;
	width: auto;
	transition: height 0.3s ease, opacity 0.3s ease;
}

header.scrolled .logo-full {
	opacity: 0;
	height: 20px;
	transition: height 0.3s ease, opacity 0.3s ease;
}

header.scrolled .logo-min {
	opacity: 1;
	transition-property: opacity;
	transition-delay: 0.25s;
}

.hamburger {
	display: block;
	width: 42px;
	overflow: hidden;
	float: right;
}

.hamburger span {
	background: #fff;
	display: block;
	height: 2px;
	margin: 9px 0;
	position: relative;
	transform: rotate(0);
	top: 0;
	left: 0;
	opacity: 1;
	transition: none .5s ease;
	transition-property: transform, top, left, opacity;
}

body.mm-wrapper--opened .hamburger span.top-bar {
	transform: rotate(45deg);
	top: 12px;
}

body.mm-wrapper--opened .hamburger span.middle-bar {
	opacity: 0;
}

body.mm-wrapper--opened .hamburger span.bottom-bar {
	transform: rotate(-45deg);
	top: -10px;
}

body.mm-wrapper--opened .hamburger span.middle-bar {
	left: -40px;
}


/* ---------------------------------------- */ 
/* -------- HERO - Pages Standards -------- */
/* ---------------------------------------- */ 

.hero {
	position: relative;
	width: 100%;
	aspect-ratio: 2.5;
	max-height: 800px;
}

.hero::after {
	position: absolute;
	inset: 0;
	z-index: 0;
	content:"";
	background-color: rgba(0,0,0,0.3);
}

.hero > .content-overlay {
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 17%;
	width: 100%;
}


/* ----------------------------- */ 
/* -------- HERO - Home -------- */
/* ----------------------------- */ 

.hero-home {
	position: relative;
	width: 100vw;
	height: 100vh;
}

.image-credit {
	z-index: 2;
	position: absolute;
	right: 2.5rem;
	bottom: 1rem;
	color: rgba(255, 255, 255, 0.7);
}

.slick-home {
	width: 100%;
	height: 100%;
}

.slick-home .slick-list,
.slick-home .slick-list .slick-track {
	height: 100%;
}

.slick-overlay {
	position: absolute;
	inset: 0;
	background-color: #000;
	z-index: 2;
	transition: opacity 2s ease;
}

.slick-picture-overlay {
	opacity: 0.4;
	position: absolute;
	inset: 0;
	background-color: #000;
	z-index: 0;
	transition: opacity 2s ease;
}

.slick-overlay-bottom {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 75.96%, rgba(0, 0, 0, 0.2) 88.92%);
}

.slick-overlay.fadeout {
	opacity: 0;
}

.hero-home .content-overlay {
	position: absolute;
	z-index: 3;
	inset: 0;
}

.full-animation {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.full-animation.hidden {
	opacity: 0;
}

.hero-menu .hero-menu-item {
	display: block;
}
.hero-menu .hero-menu-item:nth-child(2) {
	margin-bottom: 5px;
	margin-top: 5px;
}


.hero-menu {
	opacity: 0;
}

.hero-menu.active {
	opacity: 1;
}

/* ------------------------- */ 
/* -------- Layouts -------- */
/* ------------------------- */ 

.container-fluid {
	padding-inline: 3rem;
}

@media (min-width: 576px) {
  .container, .container-sm {
	max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .container-md, .container-sm {
	max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
	max-width: 920px;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
	max-width: 1000px;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	max-width: 1140px;
  }
}

@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	max-width: 1320px;
  }
}

.table-row {
	margin-block: 2.25rem;
}

.table-row:first-child {
	margin-top: 0;
}

.table-row:last-child {
	margin-bottom: 0;
}

.col-titre {
	font-size: 2.33rem;
	line-height: 1;
	font-weight: 500;
}

.the-content table.table-bordered > :not(caption) > *,
.the-content table.table-bordered > :not(caption) > * > * {
	border-width: 0;
	background-color: transparent;
} 

section.collapsing_section.anim::after {
	--rotation: 0deg;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%) rotate(var(--rotation));
	content: "";
	display: block;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: linear-gradient(
		to top,
		var(--color-current) 0%,
		var(--color-current) 50%,
		var(--color-next) 50%,
		var(--color-next) 100%
	);
	transition: transform 0.8s ease;
}

section.collapsing_section.anim {
	position: relative;
	padding-bottom: 8rem;
}

section.collapsing_section.anim.opening::after {
	--rotation: 360deg;
}

@keyframes myRotation {
  from {transform: translate(-50%, 50%) rotate(0);}
  to {transform: translate(-50%, 50%) rotate(360deg);}
}

section.collapsing_section:not(.liste_de_contenus_sur_deux_colonnes) > * > * > div:first-child {
	padding-top: 2rem;
}

section.collapsing_section.liste_de_contenus_sur_deux_colonnes > * > div:first-child {
	padding-top: 3rem;
}

.row-list-prix {
	display: flex;
	row-gap: 1.5rem;
	column-gap: 1.5rem;
}

a.wrapper-carte {
	flex-basis: 30%;	
	transition: flex-basis 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
	text-decoration: none;
	padding: 1rem;
	border-radius: 20px;
	height: 300px;
}

a.wrapper-carte:hover,
a.wrapper-carte:focus,
a.wrapper-carte:focus-visible  {
	flex-basis: 33%;
	box-shadow: 0px 4px 4px 0px #00000040;
	background: var(--hover-color)!important;
}

.carte-laureat {
	display: flex;
	flex-direction: column;
	justify-content: space-between;	
	font-size: 1.0555rem;
	color: #ffff;
	font-weight: 300;
	text-wrap: balance;
	height: 100%;
}

.title-page-prix {
	font-family: "Baikal-VAR";
	font-weight: 300;
	color: white;
}

.title-page-prix.h1 {
	font-size: 3.2rem;
}

.prix-en-tete {
	font-size: 1.055rem;
}

.decal {
	padding-left: 40%;
}
.prix-desc .the-content p {
	line-height: 1.33;
}

.short-p {
	max-width: 740px;
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
}

section.video-fullscreen {
	max-height: 800px;
	height: 70vh;
	overflow: hidden;
	position: relative;
}

section.video-fullscreen video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.video-fullscreen::after {
	position: absolute;
	content: "";
	z-index: 1;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.96%, rgba(0, 0, 0, 0.2) 76.92%);
}


.video-fullscreen .overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding-bottom: 4rem;	
}

.video-fullscreen .credit-overlay {
	position: absolute;
	color: rgba(255, 255, 255, 0.7);
	right: 1.5rem;
	bottom: 1rem;
	z-index: 2;
	font-size: 0.875rem;
	line-height: 1.2;
}

.overlay .video-overlay {
	max-width: 550px;
	color: #fff;
	font-family: "Baikal-VAR";
	font-weight: 500;
	font-size: 2.33rem;
	line-height: 1;
	text-shadow: 2px 2px 6px #00000040;

}

/* ------------------------------- */ 
/* -------- GRAVITY FORMS -------- */
/* ------------------------------- */ 

.gform_wrapper.gravity-theme .gfield_label {
	display: inline-block;
	font-size: 18px!important;
	font-weight: 500!important;
	margin-bottom: 8px;
	padding: 0;
}

.ginput_container_radio .gchoice,
.ginput_container_checkbox .gchoice  {
	display: flex;
	gap: 5px;
}

.gfield--input-type-fileupload {
	margin-block: 1rem;
}

.gform_wrapper.gravity-theme .gfield--input-type-fileupload .gfield_label {
  display: inline-block;
  font-size: 24px !important;
  font-weight: 500 !important;
  margin-bottom: 8px;
  padding: 0;
}

/* ------------------------ */ 
/* -------- FOOTER -------- */
/* ------------------------ */ 

footer {
	font-family: "Baikal-VAR";
	font-weight: 300;
	font-size: 1rem;
	color: #fff;
}

footer ul.main-menu-footer,
footer ul.secondary-menu-footer  {
	padding-left: 0;
	list-style: none;
	margin-bottom: 0;
}

footer a {
	text-decoration: none;
}

footer .contact-title {
	font-size: 57px;
	line-height: 60px;
	font-size: 3.16rem;
}


/* ----------------------- */ 
/* -------- Mmenu -------- */
/* ----------------------- */ 


.mm-menu--theme-white {
  --mm-color-background: rgba(57, 57, 57, 0.95);
  --mm-color-border: var(--white-gray);
  --mm-color-icon: var(--white-gray);
  --mm-color-text: var(--white-gray);
  --mm-color-text-dimmed: rgb(0 0 0 / 0.3);
  --mm-color-background-highlight: rgb(0 0 0 / 0.06);
  --mm-color-background-emphasis: rgb(0 0 0 / 0.03);
  --mm-color-focusring: #06c;
  font-size: 1.5rem;
  text-transform: uppercase;
  
}

.mm-listitem__text {
  padding-top: 16px;
  padding-bottom: 16px;
  }

.mm-listview {
	margin-top: 18px;
}

.mm-listitem::after {
	display: none;
}

.mm-navbar__title img {
	padding: 25px 0;
}

.btn-search {
	font-size: 1.500rem;
	cursor: pointer;
}

.main-menu li a {
	display: inline-block;
	text-decoration: none;
}

.accordion-body .the-content p:last-child, .content-with-bg p:last-child {
	margin-bottom: 0;
}

body .gform_confirmation_wrapper {
	border-radius: 0;
	border: 1px solid var(--bs-success-border-subtle);
	box-shadow: none;
	padding: 16px;
	position: relative;
	background-color: var(--bs-success-bg-subtle);
	width: 100%;
	color: var(--bs-success-text-emphasis);
	text-align: center;
}

.global-carousel .slick-track {
	display: flex !important;
	align-items: center;
	  justify-content: center;
}

.global-carousel .slick-slide {
	height: inherit !important;
	margin-left: .75rem;
	margin-right: .75rem;
}

.slick-dots {
	list-style-type: none;
	padding: 0;
	margin: 54px 0 0px 0;
	line-height: 0;
	text-align: center;
	height: max-content;
}

.slick-dots li {
	display: inline-block;
	margin-right: 12px;
}

.slick-dots li:last-child {
	margin-right: 0;
}

.slick-dots button {
	font-size: 0;
	padding: 0;
	width: 10px;
	height: 10px;
	line-height: 0;
	border-radius: 9999px;
	border: 1px solid var(--bs-primary);
	background-color: transparent;
	transition: all ease 0.4s;
	position: relative;
}

.slick-dots .slick-active button {
	background-color: var(--bs-primary);
}

.slick-arrow {
	--pos-x: -30px;
	display: inline-block;
	padding: 0;
	background-color: var(--bs-primary);
	color: var(--bs-white);
	position: absolute;
	top: 247px;
	border: none;
	border-radius: 50%;
	right: var(--pos-x, 58px);
	width: var(--icon-size, 80px);
	height: var(--icon-size, 80px);
	line-height: var(--icon-size, 80px);
	font-size: var(--icon-font-size, 18px);
	margin-top: calc(var(--icon-size, 80px) / -1);
	z-index: 2;
	opacity: 1;
	transition: .5s;
}

.slick-arrow.default {
	position: relative;
	--pos-x: 0;
	margin-top: 0;
}

.slick-arrow.slick-prev {
	right: auto;
	left: var(--pos-x, 58px);
}

.slick-arrow:hover {
	opacity: 1;
	background-color: var(--bs-btn-hover-border-color);
	color: var(--bs-btn-hover-color);
}

.arrow-margin .slick-arrow {
	top: calc(50% - 30px);
}

.logo-grid .logo-item {
	aspect-ratio: 2/1;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	border: 1px solid #e9ecef;
	position: relative;
	top: 0;
}

.logo-grid img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button{
	font-size: 1.25rem;
}

@media (max-width: 1200px) {
	.slick-arrow {
		--pos-x: 42px;
	}
}

@media (max-width: 1199px) {
	.slick-arrow {
		--icon-size: 60px;
		--pos-x: -20px;
		top: 176px;
	}
}

@media (max-width: 991px) {
	.slick-dots {
		margin: 1.5rem 0 0 0;
	}
	
	.icon-box .slick-arrow {
		margin-right: 0;
	}
}

@media (max-width: 1600px) {
	h2, .h2 {
	  font-size: 3.05rem;
	}
}

@media (max-width: 1399.98px) {
	
	.full-animation > lottie-player,
	.hero-menu-item lottie-player {
		width: 700px!important;
	}
}



@media (max-width: 1199.98px) {
	h2, .h2 {
	  font-size: 2.75rem;
	}
	
	
}

@media (max-width: 991.98px) {
	
	.mm-navbar__title {
	  justify-content: start;
	}
	
	.full-animation > lottie-player,
	.hero-menu-item lottie-player {
		width: 500px!important;
	}
	
	.space {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	
	.space-bottom {
	  padding-bottom: 3rem;
	}
	.space-top {
	  padding-top: 3rem;
	}
	
	.big-space-top {
		padding-top: 5rem;
	}
	
	.big-space-bottom {
		padding-bottom: 5rem;
	}
	
	.h1 {
		font-size: 4.5rem;
	}
	
	h2, .h2 {
	  font-size: 2.25rem;
	}
	
	.decal {
		padding-left: 0%;
	}
	
	section.collapsing_section:not(.liste_de_contenus_sur_deux_colonnes) > * > * > div:first-child {
	  padding-top: 1rem;
	}
	.col-titre {
	  font-size: 2rem;
	}
	
	.the-content p {
		padding-left: 0!important;
	}
	
	.hero {
		aspect-ratio: 1.5;
	}
	
	section.collapsing_section.anim::after {
		width: 100px;
		height: 100px;
	}
	
	section.collapsing_section.anim {
		position: relative;
		padding-bottom: 5rem;
	}
	
	 a.wrapper-carte {
	  height: 250px;
	}
	
	.quote-style {
		text-align: left!important;
	}

}

@media (max-width: 767.98px) {
	
	
	.hero-menu {
		display: none;
	}
	
	.full-animation {
		transition: opacity 1s ease;
	}
	
	.full-animation.hidden {
	  opacity: 0; 
	}
	
	a.wrapper-carte {
		flex-basis: 80%;
		height: 200px;
	}
	
	a.wrapper-carte:hover {
		flex-basis: 80%;
	}
	
	.row-list-prix {
		flex-wrap: wrap;
	}
	
	.h1 {
		font-size: 2.75rem;
	  }
	
	.hero-home {
	  height: 60vh;
	}
	.space {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	
	.space-bottom {
	  padding-bottom: 2rem;
	}
	.space-top {
	  padding-top: 2rem;
	}
	
	.big-space-top {
		padding-top: 3.5rem;
	}
	
	.big-space-bottom {
		padding-bottom: 2.5rem;
	}
	
	section.video-fullscreen {
	  height: 50vh;
	}
	
	.video-fullscreen .overlay {
	  padding-bottom: 5rem;
	  margin-inline: 2rem;
	}
	
	.overlay .video-overlay {
	  font-size: 1.5rem;
	}
	
	footer .contact-title {
	  font-size: 2.33rem;
	}
	
	.video-fullscreen .credit-overlay {
	  font-size: 0.75rem;
	}
}

@media (max-width: 575.98px) {
	
	.image-credit {
	  right: 1rem;
	  bottom: 0.5rem;
	  font-size: 0.8rem;
	  padding-left: 1rem;
	}
	
	.hero {
		aspect-ratio: 1;
	  }
	
	
	.full-animation > lottie-player,
	.hero-menu-item lottie-player {
		width: 320px!important;
	}
	
	.title-page-prix.h1 {
	  font-size: 2rem;
	}
	
	section.collapsing_section.liste_de_contenus_sur_deux_colonnes > * > div:first-child {
	  padding-top: 1.5rem;
	}
	
	section.collapsing_section.anim {
		position: relative;
		padding-bottom: 3rem;
	  }
	
	section.collapsing_section.anim::after {
		width: 80px;
		height: 80px;
	}
	
	h2, .h2 {
		font-size: 1.75rem;
	  }
	
	.container-fluid {
		padding-inline: 1rem;
	}
	
	.mm-navbar__title img {
	  width: 120px;
	}
}
