/* Fonts */

@font-face {
    font-family: 'ABCDiatype';
    src: url('../fonts/STUV-Diatype-Regular.woff2') format('woff2'),
        url('../fonts/STUV-Diatype-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ABCDiatype';
    src: url('../fonts/STUV-Diatype-Bold.woff2') format('woff2'),
        url('../fonts/STUV-Diatype-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Couleurs

b5771e > Moutarde
80371b > Rouille

*/


/* COMMON */

body {
	overflow-x: hidden;
	background: #fff;
	font-family: "ABCDiatype", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	font-size: .85vw;
    background: #252429;
}

.noscroll {
	overflow: hidden !important;
}

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

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

p, ul { 
	line-height: 1.75;
	margin-bottom: 1.5vw;
}

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

#smooth-content {
	will-change: transform;
    padding-top: 1px;
    margin-top: -1px;
}

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

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

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

.blur {
    filter: blur(10px);
    transition: filter 0.25s ease;
}

.page {
    transition: filter 0.25s ease;
}

.scroll-arrow {
	position: fixed;
	bottom: 1vw;
	right: 1vw;
	font-size: 2.5vw;
	color: #fff;
	text-decoration: none;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	z-index: 9999;
}

.scroll-arrow:hover {
	color: var(--color-primary);
}
  
.scroll-arrow.show {
	opacity: 1;
	visibility: visible;
}

section a {
	color: var(--color-primary);
}

section a:hover {
	opacity: .85;
}


/* Text */

h1 {
	font-size: 3.125vw;
	line-height: 1.2;
	margin: 0 0 1.5vw 0;
	padding: 0;
	font-weight: 700;
}

h1 span {
	display: block;
	font-size: .85vw;
	line-height: 1;
	margin: 0 0 1vw 0;
}

h2 {
	font-size: 2.292vw;
    line-height: 1.2;
	font-weight: 700;
	padding: 0;
	margin: 0 0 1.5vw 0;
}

h2 span {
	display: block;
	font-size: .85vw;
	line-height: 1;
	margin: 0 0 1vw 0;
}

h3 {
	font-size: 1.5vw;
    line-height: 1.2;
	font-weight: 700;
	padding: 0;
	margin: 0 0 1.5vw 0;
}

h3 span {
	display: block;
	margin-bottom: 1vw;
	font-size: .85vw;
	margin: 0 0 1vw 0;
}



/**********/
/* HEADER */
/**********/

header.main {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1001;
	width: 100%;
	padding: 2.5vw 5vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.25s ease;
}

header.main.sticky {
	position: fixed;
	padding: .5vw 5vw;
	background-color: #252429;
}

header.main.sticky .btn_orange {
    padding: .75vw 2vw; 
}


/* Mobile Burger Button */
.hamburger {
	display: none;
	padding: 15px 2rem;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	position: relative;
	z-index: 1001;
	opacity: 1 !important;
}

.hamburger-box {
	width: 30px;
	height: 24px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 30px;
	height: 3px;
	background-color: #fff !important;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

/* Ensure X is always white when active */
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #fff !important;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -10px;
}

.hamburger-inner::after {
	bottom: -10px;
}

/* Hamburger Spin Animation (Active State) */
.hamburger.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Hamburger Spin Transition */
.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* Mobile Menu Overlay */
.mobile_menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100svh;
	background: #19191b;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	padding: 90px 30px 30px;
	overflow-y: auto;
	transform: translateY(-100%);
	transition: transform 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99), 
	            visibility 0s 0.45s;
	visibility: hidden;
}

.mobile_menu.active {
	transform: translateY(0);
	visibility: visible;
	transition: transform 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.mobile_menu__nav {
	flex: 1;
	overflow-y: auto;
}

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

.mobile_menu__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile_menu__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.25s ease;
}

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

.mobile_menu__link--highlight {
	color: var(--color-primary);
}

/* Link Wrapper for Products (link + toggle button) */
.mobile_menu__link-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0 0 0;
}

.mobile_menu__link--clickable {
	padding: 0;
	flex: 1;
}

/* Toggle Button for Submenu */
.mobile_menu__toggle {
	background: transparent;
	border: none;
	color: #fff;
	padding: 5px 0 5px 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.25s ease;
	min-width: 44px;
	min-height: 44px;
}

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

.mobile_menu__toggle:active {
	transform: scale(0.95);
}

.mobile_menu__arrow {
	font-size: 14px;
	transition: transform 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.mobile_menu__item--has-sub.active .mobile_menu__arrow {
	transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile_menu__submenu {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.mobile_menu__item--has-sub.active .mobile_menu__submenu {
	max-height: 1000px;
}

.mobile_menu__submenu__category {
	padding: 15px 0 15px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile_menu__submenu__category:first-child {
	border-top: none;
}

.mobile_menu__submenu__title {
	display: block;
	color: var(--color-primary);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
	text-decoration: none;
	transition: color 0.25s ease;
}

.mobile_menu__submenu__title:hover {
	color: #fff;
}

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

.mobile_menu__submenu__items li {
	margin-bottom: 8px;
}

.mobile_menu__submenu__items a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.25s ease;
	display: block;
}

.mobile_menu__submenu__items a:hover {
	color: var(--color-primary);
}

/* Mobile Submenu - See All Button */
.mobile_menu__submenu__see-all {
	padding: 0;
	border-bottom: none;
	margin-bottom: 15px;
}

.mobile_menu__btn-orange {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
	background: var(--color-primary);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99);
	box-shadow: 0 4px 12px rgba(233, 107, 76, 0.3);
}

.mobile_menu__btn-orange:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 107, 76, 0.5);
	color: #fff;
}

.mobile_menu__btn-orange i {
	font-size: 14px;
	transition: transform 0.25s ease;
}

.mobile_menu__btn-orange:hover i {
	transform: translateX(5px);
}

.mobile_menu__submenu__category_item_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.submodel_text {
	font-weight: 400;
	width: calc(33.3% - 2rem);
	font-size: 1rem;
}

@keyframes fire {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Mobile Menu Footer - Language Switcher */
.mobile_menu__footer {
	padding: 30px 0 0;
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: center;
}

.mobile_menu__lang {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.25s ease;
}

.mobile_menu__lang:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.mobile_menu__lang i {
	font-size: 18px;
}

header.main:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #19191b 0, rgba(25, 25, 27, 0));
    opacity: 0.8;
    z-index: -2;
}

.header_left {
	position: relative;
	z-index: 10;
}

.header_right {
	display: flex;
	align-items: center;
	gap: 2vw;
	position: relative;
	z-index: 9;
}

header.main .logo {
	display: block;
	width: 10vw;
}

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

header.main ul li.has_sub a {
	display: flex;
	align-items: center;
	gap: .5vw;
}

header.main ul li.has_sub a i {
	transition: all 0.25s ease;
}

header.main ul li.has_sub a i.active {
	transform: rotate(180deg);
}

header.main ul a, footer.main ul a {
	color: #fff;
	font-size: .85vw;
	position: relative;
}

header.main ul li, footer.main ul li {
	position: relative;
	z-index: +1;
	transition: all 0.25s ease;
}

header.main ul a::after, footer.main ul a::after {
	content: "";
	position: absolute;
	bottom: -.25vw;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #fff;
	transition: all 0.25s ease;
}

header.main ul a:hover::after,
header.main ul a.is-active::after, 
footer.main ul a:hover::after {
	width: 1vw;
}

header.main ul li:hover,
footer.main ul li:hover {
	opacity: 1;
}

.header_submenu {
	position: fixed;
	top: 8vw;
	left: 0;
	z-index: -1;
	width: 100vw;
	height: auto;
	/*overflow: hidden;*/
	background: #252529;
	display: flex;
    align-items: stretch;
	padding: 2.5vw 0 5vw;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

header.sticky .header_submenu {
	top: 3.75vw;
}

.header_submenu.active {
	opacity: 1;
	visibility: visible;
	z-index: 1000;
}

.header_submenu__cats {
	width: 100%;
	display: flex;
	justify-content: center;
}

.header_submenu__cats__aCat__items__wrapper {
	display: flex;
	justify-content: center;
	gap: 5vw;
	text-align: center;
	padding: 0 5vw;
}

.header_submenu__cats__aCat__items__wrapper a {
	display: initial !important;
	padding: 0 !important;
	margin: 0 !important;
}

.header_submenu__cats__aCat__items__wrapper a::after {
	content: none !important;
}

.header_submenu__cats__aCat__title {
	text-align: center;
}

.header_submenu__cats__aCat__title a {
	display: block !important;
	padding: 0 !important;
	margin: 0 0 2.5vw 0 !important;
	font-size: 1.2vw !important;
}

.header_submenu__cats__aCat__title a:hover {
	color: var(--color-primary);
}

.header_submenu__cats__aCat__title a::after {
	content: none !important;
}

.header_submenu__cats__aCat {
	display: flex;
	flex-direction: column;
	position: relative;
	width: auto;
	height: 100%;
	padding: 0;
	font-size: 1vw;
	line-height: 1.2;
	font-weight: 700;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.header_submenu__cats__aCat:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	height: 100vh;
	width: 2px;
	background: #515154;
}

.header_submenu__cats__aCat:last-child::after {
	content: none;
}

.header_submenu__cats__aCat.active {
	opacity: 1;
}

.header_submenu__cats__aCat__img img {
	display: flex;
	width: 50%;
	min-width: 0;
	margin: 0 auto 2.5vw auto;
	flex-grow: 0;
	flex-shrink: 0;
}

.header_submenu__cats__aCat__img::after {
	content: none !important;
}

.header_submenu__cats__aCat__items {
	display: flex;
    flex-direction: column;
    align-items: center;
}

header.main ul a.header_submenu__cats__aCat__items__title {
	Font-size: 1vw;
	line-height: 1.2;
	margin: 0 0 1vw 0;
}

.header_submenu__cats__aCat__items__img {
	display: block;
	width: auto;
    height: 12vw;
	margin-bottom: 1vw;
	transition: transform 0.3s ease;
}

.header_submenu__cats__aCat__items__submodels {
	font-weight: 400;
	line-height: 1.5;
	font-size: .75vw;
	text-align: left;
    display: flex;
    justify-content: center;
	cursor: pointer;
	transition: color 0.3s ease;
}

.header_submenu__cats__aCat__items:hover .header_submenu__cats__aCat__items__img {
	transform: translateY(-0.5vw);
}

.header_submenu__cats__aCat__items:hover .header_submenu__cats__aCat__items__submodels {
	color: var(--color-primary);
}




header.main .btn_orange {
	transform: translateY(.25vw);
}

header.main .btn_orange:after {
    bottom: 0;
	width: 100%;
    height: auto;
    background-color: transparent;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
}

header.main .btn_orange:hover::after,
header.main .btn_orange.is-active2::after {
	width: 100%;
}

footer.main {
	overflow: hidden;
    background: #19191b;
	color: #fff;
}

.footer_top {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 1vw 5vw;
}

.footer_top__logo {
	flex-basis: 50%;
}

.logo_footer {
	display: block;
	width: 10vw;
}

.footer_top__social {
	flex-basis: 25%;
}

.footer_top__social ul {
	display: flex;
	align-items: center;
	gap: 2vw;
	list-style: none;
	margin: 0;
	padding: 0 0 0 5vw;
	line-height: 1;
}

.footer_top__social a {
	color: #fff;
	font-size: 1.25vw !important;
	position: relative;
    display: block;
    overflow: hidden;
	margin-bottom: 0 !important;
}

.social__icon {
    color: #fff;
    display: block;
    transform: translateY(0);
    transition: all 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.social__icon--next {
    color: var(--color-primary);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(125%);
	transition: all 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.footer_top__social a:hover .social__icon {
	transform: translateY(-125%);
}

.footer_top__social a:hover .social__icon--next {
	transform: translateY(0);
}

.footer_top__social a::after,
.footer_top__social a:hover::after {
	content: none !important;
}

.footer_top__dealer {
	flex-basis: 25%;
	text-align: right;
}

.footer_middle {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #252429;
	border-bottom: 1px solid #252429;
}

.footer_middle__menus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-basis: 100%;
	padding: 1vw 5vw;
}

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

.footer_middle__menus ul li:last-child a {
	margin: 0;
}

.footer_ul_wrapper {
	display: flex;
	gap: 3.5vw 5vw;
}

footer.main ul a {
	display: block;
	font-size: .75vw;
	font-weight: 700;
	margin-bottom: 1vw;
	font-weight: 400;
}

footer.main ul a:hover {
	color: var(--color-primary);
}

footer.main .footer_ul_wrapper ul {
	margin-top: 1vw;
}

footer.main .footer_ul_wrapper ul a {
	font-size: .85vw;
	margin-bottom: .5vw;
	font-weight: 400;
}

footer.main .footer_ul_wrapper ul li:first-child a {
	font-weight: 700;
}

.footer_page_links {
	column-count: 1;
}

@media (min-width: 1024px) {
	.footer_page_links {
		column-count: 2;
		column-gap: 2vw;
	}
	
	.footer_page_links li {
		break-inside: avoid;
		page-break-inside: avoid;
	}
}

/* Footer Products - Desktop: hide toggle button, always show submenu */
.footer_products__toggle {
	display: none;
}

.footer_products__link-wrapper {
	display: block;
}

.footer_products__submenu {
	max-height: none !important;
	overflow: visible;
}

.footer_middle__newsletter {
	flex-basis: 40%;
	border-left: 1px solid #252429;
	padding: 1vw 5vw;
}

.footer_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 1vw 5vw;
	font-size: .65vw;
	border-top: 1px solid #252429;
}

.footer_bottom__copyrights {
	display: flex;
	justify-content: flex-start;
	opacity: .5;
	flex-basis: 37.5%;
}

.footer_bottom__menu {
	display: flex;
	justify-content: flex-end;
	flex-basis: 37.5%;
}

.footer_bottom__menu ul {
	display: flex;
	gap: 3vw;
	align-items: center;
	list-style: none;
	margin-bottom: 0;
}

.footer_bottom__menu ul a {
	margin-bottom: 0 !important;
	font-size: .65vw !important;
	opacity: .5;
}

.footer_bottom__menu ul a:hover {
	opacity: 1;
}

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

.footer__top__right {
	display: flex;
	gap: 2vw;
	align-items: center;
}

.footer__top__left ul,
.footer__top__right ul {
	display: flex;
	gap: 2vw;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 1vw 0 0 0;
}

.btn_download_brochure {
    position: fixed;
    top: 35vh;
    left: 0;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 700;
    height: 3vw;
    transform: rotate(90deg) translate(0%, 0%);
    transform-origin: bottom left;
    display: flex;              /* Flex directement */
    align-items: center;
    justify-content: center;
    font-size: .75vw;
    padding: 0 1.5vw;
    z-index: 999;
    cursor: pointer;
	box-shadow: 0 0 .5vw rgba(0,0,0,.3);
    opacity: 0;                 /* Caché au départ */
    visibility: hidden;         /* Evite qu'il soit cliquable */
    transition: all 0.25s ease;
}

.btn_download_brochure.show {
    opacity: 1;
    visibility: visible;
}

.btn_download_brochure a {
    transform: rotate(180deg) translate(0%, 0%);
}

.btn_download_brochure:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.btn_download_brochure a {
	color: #fff;
}

.btn_download_brochure:hover a {
	color: var(--color-primary);
}




/* Home */

#hero {
	position: relative;
	height: 60vh;
	padding: 10vw 10vw 0 10vw;
    display: flex;
    align-items: center;
}

.hero_content {
	position: relative;
	z-index: 10;
	width: 50%;
}

.hero__shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(36, 36, 39, 0)), to(#242427));
    background: linear-gradient(180deg, rgba(36, 36, 39, 0) 0, #242427);
    z-index: 2;
}

.showcase__images .hero__shadow {
	z-index: 1;
}

.videobg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	opacity: 1;
	transition: all 0.25s ease;
}

.video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
}
  
.video-background iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw; /* 16:9 ratio */
	min-height: 100vh;
	min-width: 177.77vh; /* 16:9 ratio */
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.video-background-mp4 video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw; /* 16:9 ratio */
	min-height: 100vh;
	min-width: 177.77vh; /* 16:9 ratio */
	transform: translate(-50%, -50%);
	object-fit: cover;
	pointer-events: none;
}

#home_categories {
	padding: 5vw 10vw;
    margin-top: -5vw;
    position: relative;
    z-index: 10;
}

.home_categories__content {
	padding: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.home_categories__content .btn_arrow {
	margin-top: auto;
	align-self: flex-start;
}

#home_categories .col-md-4 .home_categories__content {
	height: 100%;
}

#home_categories .col-md-6:first-child .home_categories__content {
    border-right: 1px solid hsla(0, 0%, 100%, 0.1);
}

#home_categories .col-md-6:first-child .home_categories__content {
	padding: 2.5vw 2.5vw 2.5vw 0;
}

#home_categories .col-md-6:last-child .home_categories__content {
	padding: 2.5vw 0 2.5vw 2.5vw;
}

#home_categories p {
	margin: 0 0 1vw 0;
}

.icon {
	display: block;
	width: 1.5vw;
	margin: 0 0 2.5vw 0;
}

.btn_arrow {
	font-weight: 700;
    position: relative;
    overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: .5vw;
	z-index: 1;
	color: #fff;
	font-size: .85vw;
}

.btn_arrow.black {
	color: #000;
}

.btn_arrow span {
	color: transparent;
	transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
}

.btn_arrow i {
	font-size: .5vw;
	position: relative;
	top: -1px;
}

.btn_arrow:after, .btn_arrow:before {
    content: attr(data-label);
    color: #fff;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    height: 100%;
    border: 0;
    background: none;
    animation: none;
    transform: none;
    opacity: 1;
    text-align: left;
    transition: all 0.75s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.btn_arrow.black:after, .btn_arrow.black:before  {
	color: #000;
}

.btn_arrow:after {
    top: 100%;
}

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

.btn_arrow:hover:before {
	top: -100%;
	opacity: 1;
	transform: scaleX(1) translateZ(0);
	transform-origin: left;
}

.btn_arrow:hover:after {
	top: 0;
	opacity: 1;
}

#home_story {
    position: relative;
    background: #19191b;
}

.home_story_content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 0 5vw 0 10vw;
	height: 100%;
}

.home_story_bg {
	position: relative;
	overflow: hidden;
}

.home_story_bg__img {
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	height: 30vw;
}

.home_story_bg__gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 10vw;
	height: 100%;
	z-index: 2;
	background: #19191B;
	background: linear-gradient(90deg,rgba(25, 25, 27, 1) 0%, rgba(25, 25, 27, 0) 100%);
}

.video_featured {
	position: relative;
	width: 100%;
	padding: 4vw;
	z-index: 10;
}

.video-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
}

.video_featured iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	object-fit: cover;
}

.btn_orange {
	cursor: pointer;
    pointer-events: all;
    display: inline-block;
    position: relative;
    padding: 1.25vw 2vw;
    background: transparent;
    font-size: .85vw;
	line-height: 1;
    font-weight: 700;
    text-decoration: none;
    opacity: 1;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    overflow: hidden;
    outline: none;
    z-index: 1;
	color: #fff;
}

.btn_orange:before, .btn_orange:after {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.btn_orange:before {
    transform: scaleX(0) translateZ(0);
    transform-origin: right;
    backface-visibility: hidden;
    background: linear-gradient(90deg, var(--color-primary), #eb9d5f, var(--color-primary));
    background-size: 600% 600%;
    animation: fire 15s infinite;
    transition: transform 0.9s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    transition: transform 0.9s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms, -webkit-transform 0.9s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    z-index: -1;
}

.btn_orange:after {
    border: 1px solid #fff;
    opacity: 1;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    transform: translateZ(0);
}

.btn_orange:hover,
.btn_orange.is-active2 {
	color: #fff;
}

.btn_orange:hover::before,
.btn_orange.is-active2::before {
	transform: scaleX(1) translateZ(0);
	transform-origin: left;
}

.btn_orange:hover::after,
.btn_orange.is-active2::after {
	opacity: 0;
}

#home_products {
	padding: 5vw;
	position: relative;
    overflow: hidden;
}

#home_products p {
	margin: 2vw 0 0 0;
}

.home_products_slider {
	position: relative;
}

.home_products_slider::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 18vw;
	height: 100%;
	background: linear-gradient(to right, rgba(37, 36, 41, 1) 0%, rgba(37, 36, 41, 0) 100%);
	z-index: 10;
	pointer-events: none;
}

.home_products_slider::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 18vw;
	height: 100%;
	background: linear-gradient(to left, rgba(37, 36, 41, 1) 0%, rgba(37, 36, 41, 0) 100%);
	z-index: 10;
	pointer-events: none;
}

.radial {
    position: absolute;
    bottom: 28%;
    left: 0;
    width: 100%;
    height: calc(100% - 5vw);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
	z-index: -1;
}

.radial:after {
    position: relative;
    width: 100%;
    height: 100%;
    content: "";
    background: radial-gradient(circle at bottom, hsla(0, 0%, 72.2%, 0.1) 0, hsla(0, 0%, 100%, 0) 60%);
}

.home_products_slider__slide {
	cursor: pointer;
	text-align: center;
	padding: 0;
}

.home_products_slider__slide img,
.home_products_slider__slide.slick-slide img {
	max-width: 100%;
	height: auto;
	display: block;
	transition: all 0.25s ease;
}

.home_products_slider__slide:hover img {
	transform: translateY(-.5vw);
}

.slick-arrow {
	position: absolute;
	z-index: 100;
	top: 50%;
	font-size: 2vw;
	color: var(--color-primary);
	cursor: pointer;
	transition: all 0.25s ease;
}

.slick-arrow.fa-circle-chevron-left {
	left: 0;
}

.slick-arrow.fa-circle-chevron-right {
	right: 0;
}

.slick-arrow:hover {
	color: #fff;
}

#home_signature {
	display: flex;
	align-items: center;
	min-height: 60vh;
	padding: 0 10vw;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.home_signature__content {
	width: 50%;
}

#home_blog {
	padding: 5vw 10vw;
	color: #000;
	background-color: #eae5de;
}

.section_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 2.5vw 0;
}

.section_header h2 {
	margin: 0;
}

.btn_underline {
	font-size: .85vw;
	font-weight: 700;
	position: relative;
	color: #000;
}

.btn_underline:hover {
	color: #000;
}

.btn_underline::after {
	content: "";
	position: absolute;
	bottom: -.25vw;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #000;
	transition: all 0.25s ease;
}

.btn_underline:hover::after {
	width: 1vw;
}

.blog_post {
	cursor: pointer;
}

.blog_post:hover .blog_post__pic {
	transform: scale(1.1);
}

.blog_post__img {
	position: relative;
	overflow: hidden;
	height: 15vw;
}

.blog_post__pic {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 15vw;
	transition: all 0.25s ease;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.blog_post__cat {
	background-color: var(--color-primary);
	color: #fff;
	font-weight: 700;
	border-radius: .2vw;
	position: absolute;
	top: .5vw;
	left: .5vw;
	padding: .75vw;
	z-index: 2;
	line-height: 1;
}

.blog_post__content {
	display: block;
	margin-top: 2vw;
}

.blog_post__content p {
	font-size: .85vw;
}

.blog_post_featured {
	height: 100%;
	position: relative;
}

.blog_post_featured h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
}

.blog_post_featured h3 .btn_arrow span {
	margin: 0;
}

.blog_post_featured p {
	margin: 0;
}

.blog_post_featured .blog_post__img {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.blog_post_featured .blog_post__pic {
	height: 100%;
}

.blog_post_featured:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, hsla(0, 0%, 93.3%, 0) 0, #242427);
    opacity: 0.6;
    z-index: 10;
	width: 100%;
	height: 100%;
}

.blog_post_featured .blog_post__content {
	margin: 0;
	color: #fff;
	position: relative;
	z-index: 15;
	padding: 0 3vw 2vw 3vw;
}

.cta_footer__item {
	position: relative;
	overflow: hidden;
	color: #fff;
	height: 50svh;
	display: flex;
	align-items: flex-end;
	cursor: pointer;
}

.cta_footer__item__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	transition: all 0.75s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.cta_footer__item__img__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.cta_footer__item__img__filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 5;
    opacity: 0.6;
    background: linear-gradient(180deg, hsla(0, 0%, 93.3%, 0) 0, #242427);
}

.cta_footer__item__content {
	position: relative;
	z-index: 20;
	display: flex;
	padding: 0 5vw 2.5vw 5vw;
	width: 100%;
	/*
	align-items: center;
	justify-content: space-between;
	*/
	flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.cta_footer__item__content.newsletterFooter {
	flex-direction: column;
	padding: 0 5vw 2.5vw 5vw;
	align-items: flex-start;
}

.cta_footer__item__content.newsletterFooter .hbspt-form {
	width: 100%;
}

.cta_footer__item__content h3 {
	margin: 0 0 .5vw 0;
}

.cta_footer__item:hover .cta_footer__item__img {
	transform: scale(1.1);
}

.cta_footer__item .btn_arrow {
	pointer-events: none;
  	cursor: default; 
}

.cta_footer__item:hover .btn_arrow {
	color: var(--color-primary);
}

.cta_footer__item:hover .btn_arrow:before {
	top: -100%;
	opacity: 1;
	transform: scaleX(1) translateZ(0);
	transform-origin: left;
}

.cta_footer__item:hover .btn_arrow:after {
	top: 0;
	opacity: 1;
}

#cta_footer .col-md-6:first-child .cta_footer__item__content {
	padding: 0 5vw 2.5vw 5vw;
}

#cta_footer .col-md-6:last-child .cta_footer__item__content {
	padding: 0 5vw 2.5vw 5vw;
}

.btn_icon {
	display: inline-flex;
	align-items: center;
	gap: 1vw;
	color: #fff;
	font-weight: 700;
}

.btn_icon i { 
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5vw;
	color: #fff;
	background-color: var(--color-primary);
	border-radius: 50%;
	width: 3vw;
	height: 3vw;
	transition: all 0.25s ease;
}

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

.btn_icon:hover i {
	color: var(--color-primary);
	background-color: #fff;
}


/* Products */

#hero_inner {
	position: relative;
	min-height: 75vh;
	max-height: 100vh;
	padding: 10vw 10vw 0 10vw;
    display: flex;
    align-items: center;
}

#hero_inner.autoHeight {
	min-height: inherit;
	padding: 15vw 10vw 10vw 10vw;
}

.video-background__front, .video-background__back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	background-position: 50%;
    background-size: cover;
}

.video-background__front {
	transform-style: preserve-3d;
    backface-visibility: hidden;
    position: relative;
    display: block;
    left: 0px;
    top: 0px;
	z-index: 10
}

.video-background__back {
	transform-style: preserve-3d;
    backface-visibility: hidden;
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;transform-style: preserve-3d;
    backface-visibility: hidden;
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
	z-index: 5;
}

.tip {
    position: relative;
    display: -webkit-box;
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 5vw;
    pointer-events: none;
    cursor: pointer;
	width: 80vw;
}

.tip:before {
    content: "";
    position: absolute;
    left: 0;
	width: 80vw;
	height: 5vw;
    z-index: -1;
    background: #79746a;
    border-radius: 1vw;
    opacity: 0;
    will-change: opacity;
    transition: all 0.25s ease;
}

.tip:hover {
    pointer-events: all;
}

.tip:hover .tip__text {
	padding-left: 2.5vw;
}

@media (pointer: coarse) {
    .tip:hover {
        pointer-events: none;
    }
}

@media (min-width: 1220px) {
    .tip:hover:before {
        opacity: 1;
    }
}

.tip:hover .tip__content {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
	padding-right: 2.5vw;
}

@media (pointer: coarse) {
    .tip:hover .tip__content {
        pointer-events: none;
    }
}

.tip__btn {
    display: flex;
    align-items: center;
    width: 25%;
    pointer-events: all;
}

.tip__icon {
    margin-right: 15px;
    flex-grow: 0;
    flex-shrink: 0;
}

.tip__text {
    font-size: .85vw;
    font-weight: 700;
    flex-grow: 1;
	transition: all 0.25s ease;
}

.tip__text i {
	margin-left: .5vw;
}

.tip__info {
    margin-left: 1vw;
}

.tip__content {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    color: #fff;
    font-size: .85vw;
	transition: all 0.25s ease;
}

.tip p {
	margin: 0;
}

#products_categories {
	padding: 0 5vw;
}

.products_categories__item {
	padding-top: 5vw;
}

.products_categories__title {
	position: relative;
	padding: 2.5vw 0;
}

.products_categories__title h2 {
	margin: 0 0 0 5vw;
}

.products_categories__title p {
	margin: 0;
}

.div_borders::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,.1);
}

.div_borders::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,.1);
}

.products_categories__products__items {
	position: relative;
	margin-bottom: 5vw;
}

.products_categories__products__items:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: radial-gradient(circle at bottom center, #313037, #252429 50%);
    z-index: -1;
}

.products_categories__products__items__img img {
	max-width: 100%;
	height: auto;
	display: block;
}

.products_categories__products__items__infos {
	padding: 2.5vw 0;
}

.products_categories__products__items__infos__head h3 {
	margin: 0;
}

.products_categories__products__items__infos__head p {
	font-weight: 700;
	font-size: .9vw;
}

.epa {
    display: block;
	margin: 0 0 1.5vw 0;
	width: 1.5vw;
}

ul.checked {
	margin: 1.5vw 0;
	padding: 0;
	font-size: .85vw;
	list-style: none;
}

ul.checked li {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 1.5vw;
}

ul.checked li:before {
    content: "";
    display: block;
    position: absolute;
	z-index: 10;
    left: 0;
    width: 1vw;
    height: 1vw;
    background: url('../images/svg/ul.svg') 50% no-repeat;
}

#cta_signature {
	min-height: 50vw;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%;
	display: flex;
	align-items: center;
	padding: 0 10vw;
}

.cta_signature__content {
	width: 50%;
}

.cta_signature__action {
	padding-top: .5vw;
}


/* Single Products */

#hero_showcase {
	position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
	height: 90vh;
    padding: 10vw 10vw 0 10vw;
	/*margin: 0 0 5vw 0;
    overflow: hidden;*/
}

.hero_showcase__img {
    position: absolute;
    display: block;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
    width: 65vw;
    height: auto;
}

@keyframes blur-out {
	0% {
		filter: blur(10px);
	}
	100% {
		filter: blur(0px);
	}
}

.hero_showcase__bg {
	position: absolute;
    top: 0;
    right: 0;
    /*bottom: 10%;*/
	bottom: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    filter: blur(10px);
    animation: blur-out 2s 0.5s forwards;
	background-position: 50%;
    background-size: cover;
}

.hero_showcase__bg img {
	display: none;
}

.hero_showcase__head {
	position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 5;
}

.hero_showcase__head__title h1 {
	margin: 0;
	font-size: 1.5vw;
}

.hero_showcase__head__tools {
	display: flex;
	align-items: center;
	gap: 1.5vw;
}


.hero_showcase__head__tools .btn_icon {
	cursor: pointer;
    pointer-events: all;
    position: relative;
    background: transparent;
    font-size: 1vw;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    opacity: 1;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    overflow: hidden;
    outline: none;
    z-index: 1;
    display: block;
    padding: 0;
}

.hero_showcase__head__tools .btn__icon {
	fill: #fff;
    display: block;
    vertical-align: middle;
    transform: translateY(0);
    transition: all 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.hero_showcase__head__tools .btn__icon__next {
	fill: var(--color-primary);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(125%);
}

.hero_showcase__head__tools .btn_icon:hover .btn__icon {
	transform: translateY(-125%);
}

.hero_showcase__head__tools .btn_icon:hover .btn__icon__next {
	transform: translateY(0);
}

.hero_showcase__category {
	position: absolute;
	z-index: 10;
	left: 10vw;
	bottom: 6.5vw;
	display: flex;
	align-items: center;
	gap: 1vw;
	font-weight: 700;
}

.hero_showcase__category img {
	width: 1.25vw;
}


/* Share Menu */

.hero_showcase__head__tools {
	position: relative;
	margin-left: 0;
}

.btn_share {
	position: relative;
}

.share_menu {
	position: absolute;
	top: 3vw;
	right: 0;
	background: #19191b;
	border: 1px solid #252429;
	border-radius: 0.5vw;
	padding: 0.75vw;
	min-width: 12vw;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.share_menu.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.share_menu__option {
	display: flex;
	align-items: center;
	gap: 1vw;
	padding: 0.75vw 1vw;
	color: #fff;
	text-decoration: none;
	border-radius: 0.35vw;
	transition: all 0.25s ease;
	font-size: 0.9vw;
	font-weight: 500;
}

.share_menu__option:hover {
	background: #252429;
	color: var(--color-primary);
}

.share_menu__option i {
	font-size: 1.1vw;
	width: 1.5vw;
	text-align: center;
}

.share_menu__notification {
	position: absolute;
	bottom: -3.5vw;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-primary);
	color: #fff;
	padding: 0.75vw 1.25vw;
	border-radius: 0.35vw;
	text-align: center;
	font-weight: 600;
	font-size: 0.8vw;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
}

.share_menu__notification.show {
	opacity: 1;
	visibility: visible;
}

#intro {
	padding: 0 10vw;
}

.intro__content {
	margin: 5vw 0 0 0;
}

#blog_achievements .intro__content {
	margin: 2.5vw 10vw;
}

#innovation {
	padding: 7.5vw 10vw;
}

.innovation_item {
	display: flex;
	align-items: center;
	gap: 7.5vw;
	margin: 0 0 5vw 0;
	font-size: .85vw;
}

.innovation_item__text {
	padding: 0 0 0 5vw;
}

.innovation_item:last-child {
	margin: 0;
}

.innovation_item__text, .innovation_item__img {
	flex: 1;
}

.innovation_item:nth-child(even) {
	flex-direction: row-reverse;
}

.innovation_item:nth-child(even) .innovation_item__text {
	padding: 0 5vw 0 0;
}


#details .intro__content {
	padding: 0 10vw;
}

.characteristics {
	background-color: #eae5de;
}

.characteristics__cover {
	height: 100vh;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.characteristics__cover__credits {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	color: #fff;
	font-weight: 700;
	font-size: .85vw;
	padding: 1vw 5vw;
}

.characteristics__wrapper {
	display: flex;
	justify-content: center;
	gap: 5vw;
	color: #000;
	padding: 10vw;
}

.characteristics__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

.characteristics__item img {
	display: inline-block;
    margin-bottom: 2vw;
    max-width: 100%;
    height: 7vw;
}

.characteristics__item p {
    text-align: center;
	width: 50%;
}

.mechanisms {
    background: #eae5de;
	color: #000;
	padding-top: 2.5vw;
}

.mechanisms h2 {
	margin: 0 10vw 2.5vw 10vw;
}

/* Cacher l'accordéon mobile par défaut (desktop) */
.mechanisms_accordion_mobile {
	display: none;
}

.mechanisms_accordion {
	background-position: 50%;
    background-size: cover;
	position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    z-index: 1;
    background-color: #252429;
	flex-direction: row;
	min-height: 35vw;
	padding: 0 0 0 5vw;
}

.mechanisms__item {
    position: relative;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 20%;
    border-bottom: 1px solid #d8d8d8;
    display: flex;
    flex-wrap: wrap;
	align-items: flex-end;
	border: 0;
	transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
	cursor: pointer;
	border-right: 1px solid transparent;
}

@keyframes fadeRotate {
	0% {
		opacity: 1;
		transform: rotate(0deg);
	}
	30% {
		opacity: 0;
		transform: rotate(0deg);
	}
	70% {
		opacity: 0;
		transform: rotate(-90deg);
	}
	100% {
		opacity: 1;
		transform: rotate(-90deg);
	}
}

@keyframes fadeRotateReverse {
	0% {
		opacity: 1;
		transform: rotate(-90deg);
	}
	30% {
		opacity: 0;
		transform: rotate(-90deg);
	}
	70% {
		opacity: 0;
		transform: rotate(0deg);
	}
	100% {
		opacity: 1;
		transform: rotate(0deg);
	}
}

.mechanisms__item.active {
	flex-basis: 100% !important;
	cursor: default;
}

.mechanisms__item.active h3 {
	font-size: 1.75vw;
	animation: fadeRotateReverse 0.65s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.mechanisms__item h3 {
	font-size: 1.25vw;
	text-align: left;
	transition: opacity 0.2s ease, transform 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 0.2s, all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
	transform-origin: 0% 0%;
	transform: rotate(0deg);
	opacity: 1;
}

.mechanisms_accordion:has(.mechanisms__item.active) .mechanisms__item:not(.active) h3 {
	/*transform: rotate(-90deg);*/
	transform: rotate(-90deg);
	white-space: nowrap;
	position: absolute;
	bottom: 2.5vw;
	left: .5vw;
	font-size: 1vw;
	animation: fadeRotate 0.65s cubic-bezier(0.6, 0.05, 0.01, 0.99);
	margin: 0;
}

.mechanisms_accordion:has(.mechanisms__item.active) .mechanisms__item:not(.active) .mechanisms__preview {
	justify-content: space-between;
}

.mechanisms_accordion:has(.mechanisms__item.active) .mechanisms__item {
	border-right: 1px solid #fff;
	flex-basis: 10%;
}

.mechanisms_accordion:has(.mechanisms__item.active) .content {
	height: 100%;
	display: flex;
}

.mechanisms__preview {
	color: #fff;
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 2.5vw;
    background: none;
    border: 0;
    outline: none;
    opacity: 1;
    transform: translateY(0);
    -webkit-transition: opacity 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99) 0.4s, padding 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99), -webkit-transform 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99) 0.4s;
    transition: opacity 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99) 0.4s, padding 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99), -webkit-transform 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99) 0.4s;
    transition: transform 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99) 0.4s, opacity 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99) 0.4s, padding 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99);
    transition: transform 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99) 0.4s, opacity 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99) 0.4s, padding 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99), -webkit-transform 0.4s 
	cubic-bezier(0.6, 0.05, 0.01, 0.99) 0.4s;
    z-index: 1;
}

.mechanisms__item:not(.active) .mechanisms__preview:hover {
	padding-bottom: 3.5vw;
}

.mechanisms__preview:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #19191b;
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
    z-index: -1;
}

.mechanisms__item:not(.active) .mechanisms__preview:hover:before {
	opacity: 0.5;
}

.mechanisms__open {
	padding: 0;
    margin: 0;
    width: 2.5vw;
    height: 2.5vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 0;
    flex-grow: 0;
    outline: none;
    overflow: visible;
    border-radius: 50%;
	transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
	z-index: 1;
	background: transparent;
    text-decoration: none;
    opacity: 1;
	cursor: pointer;
    pointer-events: all;
	transform: rotate(0deg);
	order: 0;
}

.mechanisms__open svg {
	fill: #fff;
    transform: rotate(0deg);
    fill: #fff;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
}

.mechanisms__open svg path {
	width: 1vw;
	height: auto;
}

.mechanisms__open:after {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	content: "";
    border-radius: 50%;
    transform: scale(1);
    z-index: -1;
    border-color: #fff;
	border: 1px solid #fff;
    opacity: 1;
	transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
}

.mechanisms__item:not(.active) .mechanisms__preview:hover .mechanisms__open:after {
	background: #fff;
	transform: scale(1.2);
	opacity: 1;
}

.mechanisms__item:not(.active) .mechanisms__preview:hover .mechanisms__open svg {
	fill: #252429 !important;
}

.mechanisms__preview .content {
	opacity: 1;
	visibility: visible;
	transition: all 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 10vw;
}

.mechanisms__item.active .mechanisms__preview .content {
	opacity: 0;
	visibility: hidden;
}

.mechanisms__item.active .mechanisms__preview {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
}

.mechanisms__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: #252429;
	color: #fff;
	width: 100%;
	padding: 2.5vw 7.5vw 2.5vw 2.5vw;
	opacity: 0;
	visibility: hidden;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99), visibility 0.45s, opacity 0.45s;
}

.mechanisms__content h3,
.mechanisms__content p,
.mechanisms__content img {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mechanisms__content img {
	width: 20vw;
}

.mechanisms__item.active .mechanisms__content {
	opacity: 1;
	visibility: visible;
	max-height: 1000px;
}

.mechanisms__item.active .mechanisms__content.content-visible h3,
.mechanisms__item.active .mechanisms__content.content-visible p,
.mechanisms__item.active .mechanisms__content.content-visible img {
	opacity: 1;
}

.mechanisms__close {
	position: absolute;
	top: 2.5vw;
	right: 2.5vw;
	width: 2.5vw;
	height: 2.5vw;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 1.25vw;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.8);
	transition: all 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99);
	z-index: 100;
}

.mechanisms__item.active .mechanisms__close {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.mechanisms__close:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	transform: scale(1.1);
}

.performance {
	padding: 5vw 10vw;
	background-color: #eae5de;
	color: #000;
}

.performance__items {
	display: flex;
    flex-wrap: wrap;
	margin: 0;
	padding: 0;
	border-top: 1px solid #000;
}

.performance__item {
    display: flex;
	position: relative;
    border-bottom: 1px solid #000;
	flex-basis: 50%;
}

.performance__item p {
	font-size: .85vw;
	margin: 0;
}

.performance__item:nth-child(1n) {
	padding: 1.5vw 0;
}

.performance__item:nth-child(2n) {
	padding: 1.5vw 0 1.5vw 2.5vw;
}

.performance__number {
    display: inline-block;
    color: #000;
	font-size: 5vw;
	line-height: 1;
    font-weight: 400;
    margin-right: 1.5vw;
}

.quote {
	padding: 5vw 10vw;
	background-color: #eae5de;
	color: #000;
}

#specs {
	padding: 5vw 10vw;
	background-color: #fff;
	color: #000;
}

.specs_head {
	width: 50%;
}

.specs_head p {
	font-size: .85vw;
	margin: 0 0 .5vw 0;
}

.specs__table {
	padding-top: 5vw;
}

#accessories {
	padding: 0 10vw;
	background-color: #fff;
	color: #000;
	border-top: .5px solid #252429;
}

.frames, .tints {
	padding: 2.5vw 0;
	border-bottom: 1px solid #252429;
}

.frames_head.stuv-accordion-header h2 {
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	margin: 0 0 2.5vw 0;
	gap: .5vw;
}

.tints_head h2 {
	margin: 0;
}

.frames_head__img, .tints_head__img {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 40vw;
	background-position: 50%;
    background-size: cover;
}

.finishings {
	padding: 2.5vw 0;
	border-bottom: 1px solid #252429;
}

.rust {
	padding: 5vw 10vw;
	margin: 0 -10vw;
	background-color: #252429;
	color: #fff;
}

.rust .innovation_item__text {
    padding: 0;
}

/* Frames Slider - Desktop Grid / Mobile Slider */
.frames_slider {
	position: relative;
}

/* Desktop: Display as grid (4 columns) */
@media (min-width: 1025px) {
	.frames_slider {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 2.5vw;
		margin-top: 2.5vw;
	}
	
	.frames_slider__slide {
		width: 100%;
	}

	.tints .frames_slider {
		grid-template-columns: repeat(3, 1fr);
		gap: 0 2.5vw;
	}
}

/* Finishings Slider - Desktop Grid / Mobile Slider */
.finishings_slider {
	position: relative;
}

/* Desktop: Display as grid (3 columns) */
@media (min-width: 1025px) {
	.finishings_slider {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 2.5vw;
		margin-top: 2.5vw;
	}
	
	.finishings_slider__slide {
		width: 100%;
	}
}

/* Accessories Slider - Desktop Grid / Mobile Slider */
.accessories_slider {
	position: relative;
}

/* Desktop: Display as grid (4 columns) */
@media (min-width: 1025px) {
	.accessories_slider {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 2.5vw;
		margin-top: 2.5vw;
	}
	
	.accessories_slider__slide {
		width: 100%;
	}
}

.finishings__item {
	padding-bottom: 2.5vw;
}

.finishings_head h2 {
	margin: 0;
}

.finishings__img {
	display: block;
	overflow: hidden;
	height: 20vw;
	margin-bottom: 2.5vw;
	position: relative;
}

.accessories_slider .finishings__img,
.frames .finishings__img {
	height: 20vw;
}

.tints .finishings__img {
	height: 5vw;
}

.finishings__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.finishings__text h3 {
	margin: 0 0 1vw 0;
}

.finishings__text p {
	font-size: .85vw;
	margin: 0;
}

.action {
	padding-top: 1vw;
}

.action .btn_arrow,
.action .btn_arrow:after, .action .btn_arrow:before {
	color: #000;
}

.accessories {
	padding: 2.5vw 0;
}

#find {
	display: block;
	background-color: #fff;
	padding: 5vw 10vw;
	color: #000;
}

#find.dark {
	background-color: transparent;
	color: #fff;
}

.find_link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2.5vw;
	padding: 1.5vw;
	color: #000;
	font-size: 1.5vw;
	line-height: 1.4;
	font-weight: 700;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	height: 100%;
}

.find_link:hover .icon_arrow_circle {
	transform: scale(1.1);
	background-color: #000;
}

#find.dark .find_link {
	color: #fff;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.find_text {
	display: flex;
	flex-direction: column;
	max-width: 20vw;
}

.find_link span.small {
	font-size: .85vw;
}

.icon_arrow_circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5vw;
    height: 2.5vw;
	border-radius: 50%;
	margin-left: auto;
	background-color: var(--color-primary);
	transition: all 0.25s ease;
}

.icon_arrow_circle svg {
	padding-left: 2px;
}

.find_icon {
	width: auto;
	height: 5vw;
}

#home_blog.dark {
	background-color: transparent;
	color: #fff;
}

#home_blog.dark .btn_underline {
	color: #fff;
}

#home_blog.dark .btn_underline::after {
    background-color: #fff;
}

.blog_post_featured:hover .btn_arrow:before {
	top: -100%;
	opacity: 1;
	transform: scaleX(1) translateZ(0);
	transform-origin: left;
}

.blog_post_featured:hover .btn_arrow:after {
	top: 0;
	opacity: 1;
}

#cta_footer.single .cta_footer__item__img {
	overflow: hidden;
	display: flex;
    align-items: center;
    justify-content: center;
	background-size: auto 70%;
}

#cta_footer.single .cta_footer__item__img .cta_footer__item__img__img {
	width: 70%;
	height: auto;
}

#cta_footer.single .cta_footer__item {
    border-right: 1px solid #3c3333;
	height: 85svh;
}

#cta_footer.single .cta_footer__item__content {
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
}

#cta_footer.single .cta_footer__item__content h3 {
    margin: 0 0 .5vw 0;
}

#cta_footer.single p {
	font-size: .85vw;
	margin: 0;
}

#cta_footer.single .cta_footer__item__img__filter {
	display: none;
}

#cta_footer.single h2 {
	max-width: 50%;
	padding: 5vw 5vw 0 5vw;
	text-align: left;
	margin: 0;
}

#near {
	margin-bottom: 10vh;
	padding: 0 10vw;
	position: relative;
}

.near__title {
	/*width: 20%;
    min-height: 80vh;*/
	padding: 5vw 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.near__content {
	position: relative;
    z-index: 5;
    /*margin-top: -10vh;*/
}

.near__content p {
	font-size: .85vw;
}

.near__bg {
	background-position: 50%;
    background-size: cover;
	height: 80vh;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.near__content__item {
	position: relative;
	background: #19191b;
	width: 100%;
	height: 100%;
	padding: 2.5vw;

	display: flex;
    flex-direction: column;
	align-items: flex-start;
    justify-content: space-between;
}

.near__content__item .btn_arrow {
	margin-top: auto;
}

.near__nb {
    display: block;
    font-size: 5vw;
    line-height: 1;
    font-weight: 400;
    margin-top: -5vw;
    margin-bottom: 1vw;
}


/* Signature */

.hero_content__menu {
	display: flex;
	align-items: center;
	gap: 5vw;
	padding: 2.5vw 0;
	position: relative;
    z-index: 10;
}

.hero_content__menu a {
	position: relative;
	display: block;
	color: #fff;
	font-weight: 700;
	font-size: .85vw
}

.hero_content__menu a:hover {
	color: var(--color-primary);
}

#why {
	padding: 5vw 10vw;
}

.why__img {
	position: relative;
	background-position: 50%;
    background-size: cover;
    margin-bottom: 2.5vw;
	height: 20vw;
}

#stuv-signature #innovation {
	padding: 0 10vw 5vw 10vw;
}

#stuv-signature .innovation__item {
	display: block;
    width: 100%;
    padding: 6vw 5vw;
    background: #19191b;
	position: relative;
	margin-top: 3.5vw;
	font-size: .85vw
}

#stuv-signature .innovation__item ul {
	margin-bottom: 0;
}

#stuv-signature .innovation__icon {
	position: absolute;
	left: 5vw;
	top: -2.5vw;
	max-width: 5vw;
}

#cta {
	padding: 5vw 10vw;
}

#cta p {
	font-size: .85vw;
}

.light {
	background: #eae5de;
	color: #000;
}

#partners {
	background-color: #fff;
	color: #000;
	padding: 5vw 10vw 0;
}

.partners_head {
	display: block;
	margin-bottom: 2.5vw;
}

.partners_img {
	position: relative;
    transform: scale(1);
    transition: all .45s  cubic-bezier(.6, .05, .01, .99);
	background-position: 50%;
    background-size: cover;
	height: 20vw;
}

.partners__link:hover .partners__img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.partners__link {
	display: block;
    text-decoration: none;
    overflow: hidden;
    margin-bottom: 2vw;
}

.partners__link:hover .partners_img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.partners__item {
	margin-bottom: 2.5vw;
}

.partners__item p {
	font-size: .85vw;
}

#home_blog.light {
	background-color: #fff;
}


/* Inspiration */

#inspiration #hero_inner {
	height: 60vh;
}

#blog_menu {
	display: flex;
    align-items: center;
    padding: 2.5vw 10vw 0 10vw;
    position: relative;
    z-index: 10;
	width: 100%;
    gap: 2.5vw;
	border-bottom: 1px solid hsla(0, 0%, 100%, .1);
	margin: -5vw 0 5vw;
}

/* Mobile Select - Hidden on desktop */
.blog_menu__select_wrapper {
	display: none;
}

/* Desktop Links - Visible on desktop */
.blog_menu__links {
	display: flex;
	align-items: center;
	gap: 2.5vw;
	width: 100%;
}

#blog_menu a span {
	position: relative;
	font-size: .75vw;
	top: -.65vw;
}

#blog_menu a {
	position: relative;
	color: #fff;
	padding-bottom: 1.5vw;
}

#blog_menu a:hover {
	color: var(--color-primary);
}

#blog_menu a:hover::after,
#blog_menu a.active::after  {
	opacity: 1;
    bottom: 0;
}

#blog_menu a:after {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 3px;
	opacity: 0;
	background-color: var(--color-primary);
	transition: all .45s cubic-bezier(.6, .05, .01, .99);
}

#postsGrid {
	padding: 0 10vw;
	opacity: 0;
}

.postsGrid {
    margin-bottom: 2.86vw;
}

@media (min-width: 768px) and (max-width: 1219px) {
    .postsGrid {
        margin-bottom: 4.17vw;
    }
}

@media (min-width: 1220px) {
    .postsGrid {
        margin-bottom: 5.73vw;
    }
}

.form__group--select {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: end;
	justify-content: flex-end;
}

.form__group--select .form__label {
	margin-right: 1.25rem;
	margin-bottom: 0;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1;
	color: #fff;
}

.form__group--select .form__input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1;
	color: #fff;
	padding: 0.625rem 1.5rem 0.625rem 0.9375rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0;
	width: 100%;
	max-width: 260px;
	outline: none;
	background-color: #252429;
	background-image: url("../images/svg/custom-select-w.svg");
	background-size: 9px 18px;
	background-position: right 0.625rem center;
	background-repeat: no-repeat;
	transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form__group--select .form__input:focus {
	border-color: var(--color-primary);
}

.form__group--select .form__input::-ms-expand {
	display: none;
}

.form__group--select.form__group--error .form__input {
	border-color: #cb2e25;
}

.postsGrid__product_filter .form__group--select {
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.postsGrid__product_filter .form__group--select .form__label {
    font-size: 1.3vw;
    flex: 0 0 auto;
    width: auto;
}

.postsGrid__product_filter .form__group--select .form__input {
    flex: 0 0 auto;
    min-width: 0;
    max-width: none;
    width: auto;
}

.postsGrid__row {
    display: flex;
    flex-wrap: wrap;
}

.postsGrid__item {
    position: relative;
    margin-bottom: 2vw;
    text-decoration: none;
    overflow: hidden;
}

.postsGrid__item > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.postsGrid__item--newsletter {
    overflow: visible;
}

.postsGrid__item--newsletter .error {
    color: #cb2e25;
}

.postsGrid__item--newsletter .message {
    margin-bottom: 1em;
    padding: 0.52vw;
    color: #fff;
    border-radius: 0.26vw;
    background: var(--color-primary);
}

.postsGrid__item--newsletter .message.error {
    background: #cb2e25;
}

.postsGrid__item--newsletter .all-in-one-input {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background: #19191b;
    color: #fff;
    padding: 0;
}

.postsGrid__item--newsletter .all-in-one-input input {
    flex: 0 1 100%;
    padding: 0.52vw 1.56vw 0.52vw 0.78vw;
    height: 1.56vw;
    line-height: 1.56vw;
    font-size: 0.83vw;
    background: none;
    color: #fff;
    border: none;
    outline: none;
}

.postsGrid__item--newsletter .all-in-one-input button {
    cursor: pointer;
    padding: 1vw;
    color: #fff;
    background: none;
    outline: none;
    border: none;
}

.postsGrid__item--newsletter .all-in-one-input button svg {
    fill: #fff;
}

.postsGrid__item--newsletter .all-in-one-input.error {
    color: #cb2e25;
}

.postsGrid__item--newsletter .postsGrid__img {
    width: 100%;
    height: 106.18182%;
    position: absolute;
    top: -6.18181818%;
    background: top no-repeat;
    background-size: cover;
}

.postsGrid__item--newsletter .postsGrid__img:before {
    display: none;
}

.postsGrid__item--newsletter .postsGrid__img img {
    display: block;
    width: 100%;
}

.postsGrid__item--newsletter .postsGrid__content {
    position: absolute;
    bottom: 2vw;
    left: 1.56vw;
    right: 1.56vw;
}

.postsGrid__item--newsletter:hover {
    cursor: default !important;
}

.postsGrid__item--newsletter:hover .postsGrid__img {
    transform: scale(1);
}

.postsGrid__item--newsletter:hover .btn--link:after,
.postsGrid__item--newsletter:hover .btn--link:before {
    top: 0;
    opacity: 0;
}

.postsGrid__item--module .postsGrid__img {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: bottom no-repeat;
    background-size: cover;
}

.postsGrid__item--module .postsGrid__img:before {
    display: none;
    padding-top: 147%;
}

.postsGrid__item--module .postsGrid__img img {
    display: block;
    width: 100%;
}

.postsGrid__item--module .btn {
    color: #fff;
}

.postsGrid__item--module .postsGrid__content {
    position: absolute;
    bottom: 2vw;
    left: 1.56vw;
}

@media (min-width: 768px) {
    .postsGrid__item {
        margin-bottom: 3.65vw;
        width: calc(50% - 1vw);
        margin-right: 2vw;
    }
    .postsGrid__item:nth-child(2n) {
        margin-right: 0;
    }
}

@media (min-width: 1024px) {
    .postsGrid__item {
        width: calc(33.3% - 1.39vw);
		padding: 0;
    }
    .postsGrid__item,
    .postsGrid__item:nth-child(2n) {
        margin-right: 2vw;
    }
    .postsGrid__item:nth-child(10n + 1),
    .postsGrid__item:nth-child(10n + 7) {
        width: calc(66.6% - 0.69vw);
        margin-right: 2vw;
    }
    .postsGrid__item:nth-child(10n + 1) .postsGrid__overflow,
    .postsGrid__item:nth-child(10n + 7) .postsGrid__overflow {
        position: relative;
    }
    .postsGrid__item:nth-child(10n + 1) .postsGrid__overflow:after,
    .postsGrid__item:nth-child(10n + 7) .postsGrid__overflow:after {
        content: "";
        position: absolute;
        top: 50%;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(37, 36, 41, 0) 0, rgba(37, 36, 41, 0) 9%, #252429);
    }
    .postsGrid__item:nth-child(10n + 1) .postsGrid__content,
    .postsGrid__item:nth-child(10n + 7) .postsGrid__content {
        position: absolute;
        bottom: 3.23vw;
        left: 1.67vw;
        max-width: 50%;
    }
    .postsGrid__item:nth-child(10n + 2),
    .postsGrid__item:nth-child(10n + 5),
    .postsGrid__item:nth-child(10n + 7),
    .postsGrid__item:nth-child(10n + 10) {
        margin-right: 0;
    }
    .postsGrid__item:hover {
        cursor: pointer;
    }
    .postsGrid__item:hover .postsGrid__img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    .postsGrid__item:hover .btn--link:before {
        top: -100%;
        opacity: 1;
    }
    .postsGrid__item:hover .btn--link:after {
        top: 0;
        opacity: 1;
    }
    .postsGrid__item--module:hover .postsGrid__img,
    .postsGrid__item--newsletter:hover .postsGrid__img {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@media (min-width: 1220px) {
    .postsGrid__item {
        margin-bottom: 4.69vw;
    }
}

.postsGrid__overflow {
    overflow: hidden;
    margin-bottom: 1.56vw;
}

.postsGrid__img {
    position: relative;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
    background: 50% no-repeat;
    background-size: cover;
}

.postsGrid__img:before {
    content: "";
    display: block;
    height: 0;
    padding-top: 70%;
}

.postsGrid__cat {
    position: absolute;
    top: 0.52vw;
    left: 0.52vw;
    display: inline-block;
    color: #fff;
    background: var(--color-primary);
    border-radius: 0.1vw;
    font-size: 0.73vw;
    line-height: 1.35vw;
    font-weight: 700;
    padding: 0.16vw 0.52vw;
    z-index: 1;
	margin: 0;
}

.postsGrid__name {
    margin-bottom: 0.78vw;
    padding-right: 1vw;
}

@media (min-width: 1220px) {
    .postsGrid__name {
        margin-bottom: 1vw;
    }
}

.postsGrid__text {
    margin-bottom: 0;
}

@media (max-width: 1219px) {
    .postsGrid__nav {
        display: block;
        margin-bottom: 2vw;
    }
    .postsGrid__nav--fuels {
        display: none;
        padding: 0 1.3vw;
        margin-top: 1vw;
    }
    .postsGrid__nav--container {
        padding: 0;
    }
    .postsGrid__nav--container.hide-mobile {
        display: none;
    }
    .postsGrid__nav .postsGrid__nav--categories {
        display: block;
        overflow: hidden;
        max-height: 0;
    }
    .postsGrid__nav--button,
    .postsGrid__nav .postGrid__nav__active-category {
        position: relative;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
        width: 100%;
        padding: 1.56vw 1.3vw;
        text-decoration: none;
        color: #fff;
        font-weight: 700;
        background: #19191b;
        margin-bottom: 0;
        font-size: 0.63vw;
    }
    .postsGrid__nav .no-filter {
        background: #19191b;
        padding: 1.56vw 1.3vw;
    }
    .postsGrid__nav--count {
        margin-left: auto;
        font-size: 0.83vw;
    }
    .postsGrid__nav--button {
        border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    }
    .postsGrid__nav--button .postsGrid__nav--count {
        margin-right: 1.3vw;
    }
    .postsGrid__nav .postGrid__nav__active-category img {
        margin-left: 0.63vw;
    }
}

@media (min-width: 1220px) {
    .postsGrid__nav {
        display: flex;
        -webkit-box-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        justify-content: space-between;
        margin-bottom: 3.65vw;
        border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
    }
    .postsGrid__nav .postGrid__nav__active-category {
        display: none;
    }
    .postsGrid__nav--button {
        position: relative;
        padding-bottom: 1.56vw;
        margin-right: 2vw;
        margin-bottom: 0;
        border: 0;
        line-height: 1.56vw;
        color: #fff;
        font-weight: 700;
        overflow: visible;
        background: transparent;
        outline: none;
        pointer-events: all;
        cursor: pointer;
        display: inline-block;
        text-decoration: none;
    }
    .postsGrid__nav--button:after {
        content: "";
        position: absolute;
        bottom: 0.52vw;
        left: 0;
        width: 100%;
        height: 0.16vw;
        opacity: 0;
        background-color: var(--color-primary);
        transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
    }
    .postsGrid__nav--button.isActive:after,
    .postsGrid__nav--button:hover:after {
        opacity: 1;
        bottom: 0;
    }
    .postsGrid__nav--count {
        position: absolute;
        top: -0.52vw;
        right: -0.94vw;
        font-size: 0.63vw;
    }
}

.postsGrid__pagination {
    text-align: center;
    margin: 2.86vw 0;
}

@media (min-width: 768px) and (max-width: 1219px) {
    .postsGrid__pagination {
        margin: 4.17vw 0;
    }
}

@media (min-width: 1220px) {
    .postsGrid__pagination {
        margin: 5.73vw 0;
    }
}

.postsGrid__pagination--current {
    font-weight: 700;
    margin-bottom: 1vw;
}



/* Blog single */

#inspiration_post #hero_inner {
	height: auto;
	min-height: 50vh;
	position: relative;
	padding-bottom: 2.5vw;
}

/*
#inspiration_post #hero_inner::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: hsla(0, 0%, 100%, .1);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 100;
}
*/

.back-link {
	display: flex;
	align-items: center;
	gap: 1vw;
	position: absolute;
	bottom: 2.5vw;
	right: 10vw;
	z-index: 100;
	color: #fff;
	transition: all 0.25s ease;
}

.back-link circle,
.back-link #back_arrow_icon {
	transition: all 0.25s ease;
}

.back-link:hover circle {
	fill: #fff !important;
}

.back-link:hover #back_arrow_icon {
	stroke: var(--color-primary) !important;
}

#hero_inner .credits {
	font-size: .85vw;
}

#post__content {
	padding: 0 10vw 5vw 10vw;
}

#post__content img {
	display: block;
	margin: 2.5vw auto;
	max-width: 100%;
}


/* Blog Achievements Slider */
#blog_achievements {
	padding: 0;
	background: #252429;
}

.achievements_slider_wrapper {
	width: 100%;
	position: relative;
	transition: opacity 0.35s ease;
}

.achievements_slider_wrapper.is-fading {
	opacity: 0;
	pointer-events: none;
}

.achievements_slider_main {
	width: 100%;
	position: relative;
}

/* Cacher les flèches du slider principal sur desktop (on utilise les thumbnails) */
.achievements_slider_main .slick-arrow {
	display: none !important;
}

.achievements_slider_main .slide_item {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.achievements_slider_main .slide_item img {
	width: 100%;
	height: 85vh;
	display: block;
	object-fit: cover;
}

.achievements_slider_info {
	padding: 3vw 10vw 3vw 10vw;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background: linear-gradient(to top, rgba(37, 36, 41, 0.95) 0%, rgba(37, 36, 41, 0.7) 50%, rgba(37, 36, 41, 0) 100%);
}

/* Description column */
.slider_description {
	padding-right: 3vw;
	position: relative;
	height: 100%;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2vw;
}

.slider_description .description_content {
	position: relative;
	flex: 1;
	min-height: 100px;
}

.slider_description .description_text {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	opacity: 0;
	transition: opacity 0.5s ease;
	font-size: 1vw;
	line-height: 1.75;
	color: #fff;
	margin: 0;
	padding-right: 2vw;
}

.slider_description .description_text.active {
	opacity: 1;
}

.slide_counter {
	font-size: 1.2vw;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	flex-shrink: 0;
}

.slide_counter .counter_current {
	color: var(--color-primary);
	font-size: 2vw;
}

.slide_counter .counter_separator {
	margin: 0 0.5vw;
}

/* Navigation column */
.slider_nav_wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1vw;
	padding-left: 3vw;
	height: 100%;
}

.achievements_slider_nav {
	width: calc(100% - 6vw);
	overflow: hidden;
}

.achievements_slider_nav .nav_item {
	cursor: pointer;
	padding: 0 0.3vw;
	transition: all 0.3s ease;
	opacity: 0.5;
}

.achievements_slider_nav .nav_item:hover {
	opacity: 0.8;
}

.achievements_slider_nav .nav_item.slick-current {
	opacity: 1;
}

.achievements_slider_nav .nav_item img {
	width: 100%;
	height: auto;
	display: block;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.achievements_slider_nav .nav_item.slick-current img {
	border-color: var(--color-primary);
}

.slider_nav_arrow {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	width: 3vw;
	height: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.slider_nav_arrow:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

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

.slider_nav_arrow:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.slider_nav_arrow:disabled:hover {
	background: transparent;
	border-color: #fff;
	color: #fff;
}


/* Careers */

#jobs_listing {
	padding: 5vw 10vw;
}

.career-list {
	overflow: hidden;
}

.career-list-item {
	display: flex;
	border-top: 1px solid hsla(0, 0%, 100%, 0.3);
	padding: 0;
	background: none;
    position: relative;
    background: transparent;
}

.career-list-item:last-child {
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
}

.career-list-item + .career-list-item {
    margin-top: 55px;
}

.career-list-item .mobile-link {
    position: absolute;
    bottom: 35px;
    left: 25px;
    display: flex;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    transform: translateY(50%);
}

.career-list-item .mobile-link svg {
    max-width: 40%;
    max-height: 40%;
    width: auto;
    height: auto;
}

.career-list-item .desc {
    margin-bottom: 0;
}

.career-list-item .over-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.career-list-item:hover {
    background-color: #333338;
}

.career-list-item:hover .btn_orange {
    background-color: var(--color-primary);
}


.career-list-item + .career-list-item {
	margin-top: 0;
}

.career-list-item .mobile-link {
	display: none;
}

.career-list-item .cta {
	flex: 1 1 100%;
	padding: 2vw;
	position: relative;
	z-index: 2;
	max-width: 30vw;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}

.career-list-item .cta a {
	display: inline-block;
	position: relative;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.25s ease;
}

.career-list-item .cta a:after,
.career-list-item .cta a:before {
	content: none;
}

.career-list-item .desc {
	flex: 1 1 100%;
	padding: 35px;
	position: relative;
	z-index: 2;
	line-height: 1.85714em;
}

.career-list-item:before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: calc(100% + 1px);
	background: var(--color-primary);
	transform: translate(-100%) translate(5px);
	transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.career-list .btn_orange {
	border: 2px solid var(--color-primary);
}

#career_team {
	padding: 5vw 10vw 0 10vw;
}


/* Careers Single */

#careers_single #hero_inner {
	height: auto;
	min-height: 50vh;
	position: relative;
	padding-bottom: 2.5vw;
}

#careers_single #hero_inner .hero_content {
    width: 100%;
}

.careers_col_left_content {
    background-color: #eae5de;
    padding: 2.5vw 5vw 2.5vw 10vw;
	color: #000;
	position: relative;
}

.careers_col_right_content {
    padding: 0 5vw;
}

.careers_single_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2.5vw;
}

.btn_orange_radius {
    background-color: var(--color-primary);
    border: 2px solid transparent;
    font-size: .85vw;
    line-height: 1;
    color: #fff;
    padding: .5vw 1vw;
    font-weight: 400;
    transition: all 0.25s ease;
    margin: 0 0 1.5vw 0;
    border-radius: .5vw;
    text-decoration: none;
    display: inline-block;
}

.btn_orange_radius:hover {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.careers_post_infos {
    display: flex;
    align-items: center;
	gap: 2vw;
    color: #000;
    font-size: .75vw;
}

.careers_single_social {
	display: flex;
	align-items: center;
	gap: 1vw;
	position: relative;
}

.careers_single_social_text {
	font-size: .75vw;
	font-weight: 700;
	cursor: pointer;
	transition: color 0.25s ease;
}

.careers_single_social .btn_icon {
	display: block;
	overflow: hidden;
	padding: 0;
	margin: 0;
	width: 2vw;
	height: 2vw;
	cursor: pointer;
	transition: all 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

#shareMenuCareer {
	position: absolute;
	top: 3vw;
	right: 0;
	left: auto;
}

.careers_single_social .btn_icon svg {
	width: 100%;
	height: 100%;
}

.careers_single_social .btn_icon .btn__icon {
	fill: #000;
	display: block;
	vertical-align: middle;
	transform: translateY(0);
	transition: all 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.careers_single_social .btn_icon .btn__icon__next {
	fill: var(--color-primary);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translateY(125%);
}

.careers_single_social .btn_icon:hover .btn__icon,
.careers_single_social:hover .btn_icon .btn__icon {
	transform: translateY(-125%);
}

.careers_single_social .btn_icon:hover .btn__icon__next,
.careers_single_social:hover .btn_icon .btn__icon__next {
	transform: translateY(0);
}

.careers_single_description ul {
	list-style: none;
	padding-left: 1vw;
}

.careers_single_description li {
    display: block;
    font-size: 1vw;
    line-height: 1.5;
    padding: 0 0 1vw 1.5vw;
    position: relative;
}

.careers_single_description li::before {
    content: "";
    width: .5vw;
    height: .5vw;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    margin: 0;
    position: absolute;
	top: .5vw;
    left: 0;
}


/* Dealer Locator */

#dealer-locator #hero_inner {
	min-height: 50vh;
}

section.empty {
	padding: 0 10vw 5vw 10vw;
}


/* FAQ */

#faq #hero_inner {
	height: auto;
	min-height: 50vh;
	position: relative;
	padding-bottom: 5vw;
}

#faq_engine {
	padding: 5vw 10vw;
	background-color: #252429;
	color: #fff;
}

/* Search Bar */
.faq_search {
	margin-bottom: 5vw;
}

.faq_search__wrapper {
	position: relative;
	width: 100%;
}

.faq_search__input {
	width: 100%;
	padding: 1.5vw 4vw 1.5vw 2vw;
	font-size: 1vw;
	border-radius: 0;
	background-color: #19191b;
    border: 1px solid #3b3a3f;
	color: #fff;
	outline: none;
	transition: all 0.25s ease;
	font-family: "ABCDiatype", sans-serif;
}

.faq_search__input:focus {
	border-color: var(--color-primary);
	background-color: rgba(255, 255, 255, 0.08);
}

.faq_search__input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.faq_search__icon {
	position: absolute;
	right: 2vw;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.25vw;
	color: rgba(255, 255, 255, 0.5);
	pointer-events: none;
}

.faq_search__results {
	text-align: center;
	margin-top: 1.5vw;
	font-size: .85vw;
	font-weight: 700;
	color: var(--color-primary);
}

/* FAQ List */
.faq_list {
	width: 100%;
}

.faq_item {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.25s ease;
}

.faq_item.active h3 {
	color: var(--color-primary);
}

.faq_item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1vw 0;
	cursor: pointer;
	user-select: none;
}

.faq_item__question h3 {
	margin: 0;
	font-size: 1.5vw;
	font-weight: 700;
	transition: color 0.25s ease;
	padding-right: 2vw;
	color: #fff;
}

.faq_item:hover .faq_item__question h3 {
	color: var(--color-primary);
}

.faq_item__toggle {
	flex-shrink: 0;
	width: 2vw;
	height: 2vw;
	border: none;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99);
	font-size: 1.5vw;
	color: #fff;
}

.faq_item__toggle i {
	transition: transform 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.faq_item.active .faq_item__toggle i {
	transform: rotate(90deg);
}

.faq_item:hover .faq_item__toggle {
	color: var(--color-primary);
}

.faq_item__answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99), 
	            opacity 0.35s cubic-bezier(0.6, 0.05, 0.01, 0.99),
	            padding 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.faq_item.active .faq_item__answer {
	max-height: 2000px;
	opacity: 1;
	padding: 1vw 2vw 2vw 2vw;
}

.faq_item__answer p {
	font-size: 1vw;
	line-height: 1.75;
	margin-bottom: 1.5vw;
	color: rgba(255, 255, 255, 0.8);
}

.faq_item__answer p:last-child {
	margin-bottom: 0;
}

.faq_item__answer ul {
	margin: 1vw 0 1.5vw 1.5vw;
	padding: 0;
}

.faq_item__answer ul li {
	position: relative;
	font-size: .85vw;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.8);
}

.faq_item__answer strong {
	color: #fff;
}

.faq_item__answer a {
	color: var(--color-primary);
	font-weight: 700;
	text-decoration: none;
	transition: color 0.25s ease;
}

.faq_item__answer a:hover {
	color: #fff;
}

.faq_item__answer .btn_orange {
	display: inline-block;
}

/* No Results */
.faq_no_results {
	text-align: center;
	padding: 5vw;
}

.faq_no_results i {
	font-size: 3vw;
	color: var(--color-primary);
	margin-bottom: 2vw;
}

.faq_no_results p {
	font-size: 1vw;
	margin-bottom: 1vw;
	color: rgba(255, 255, 255, 0.8);
}

.faq_no_results a {
	color: var(--color-primary);
	font-weight: 700;
	text-decoration: none;
}

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


/* Contact us */

#contactus #hero_inner {
	height: auto;
	min-height: 50vh;
	position: relative;
	padding-bottom: 5vw;
}

#contact-content {
	padding: 5vw 10vw;
}

.form-container {
	margin-top: -2.5vw;
}

.contact-content__phone {
	padding-top: 2.5vw;
}

.contact-content__phone p {
    margin-bottom: 0;
    font-weight: 700;
}

.contact-content__phone a {
    text-decoration: none;
    border-bottom: 2px solid;
	color: #fff;
}

.contact-content__phone a:hover {
	color: var(--color-primary);
}

.contact_ctas_wrapper {
	display: flex;
	flex-direction: column;
	gap: 2.5vw;
}

.contact_ctas_wrapper .cta_footer__item {
	height: 60svh;
}

#warranty h2 {
	font-size: 1.5vw !important;
}

.form-intro {
	display: block;
	margin: 0 0 2.5vw 0;
}

/* Start: Formulaires Hubspot */

.hbspt-form h2 {
    font-size: 2.292vw;
    line-height: 1.2;
    font-weight: 700;
    padding: 0;
	margin: 2.5vw 0 0 0;
}

.hbspt-form h3 {
	line-height: 1.2;
    font-weight: 700;
    padding: 0;
	margin: 2.5vw 0 0 0;
}

fieldset h2 {
	margin: 2.5vw 0 1.5vw 0 !important;
}

fieldset.form-columns-1 .input {
    margin-right: 0 !important;
}

fieldset.form-columns-1 .hs-input {
    width: 100% !important;
}

.hbspt-form input[type="text"], .hbspt-form input[type="email"], .hbspt-form input[type="tel"] {
    background: 0 0;
    outline: none;
    width: 100%;
    height: 3vw;
    line-height: 3vw;
    font-size: 1vw;
    color: #fff;
    border: none;
    border-bottom: 1px solid hsla(0,0%,84.7%,.1);
    padding: 0;
    margin-bottom: 0;
}

.hbspt-form input[type="text"]::placeholder {
    color: #7c7979;
}

.hbspt-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1vw;
    line-height: 1;
    color: #fff;
    width: 100%;
    outline: none;
    background-color: #252429;
    background-image: url(../images/svg/custom-select-w.svg);
    background-size: 9px 18px;
    background-position: right 10px center;
    background-repeat: no-repeat;
    border: 1px solid hsla(0, 0%, 84.7%, 0.1);
    border-radius: 0;
    padding: .75vw 1vw;
}

.hbspt-form textarea {
    background: none;
    outline: none;
    width: 100%;
    min-height: 20vh;
    font-size: 1vw;
    padding: 1rem;
    color: #fff;
    border: 1px solid hsla(0, 0%, 84.7%, 0.1);
    resize: none;
}

.hbspt-form .hs-form-booleancheckbox-display {
    display: block;
    position: relative;
    width: 100%;
    border: 1px solid hsla(0, 0%, 84.7%, 0.1);
    padding: 1.5vw 4vw 1.5vw 2vw;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}

.hbspt-form .hs-form-booleancheckbox-display:hover {
    border: 1px solid white;
}

.hbspt-form .hs-form-booleancheckbox-display:after {
    position: absolute;
    right: 2vw;
    top: 50%;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 1vw;
    height: 1vw;
    transition: background 0.3s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
}

.hbspt-form .hs-form-booleancheckbox-display > input[type="checkbox"] {
    display: none;
}

.hbspt-form .hs-form-booleancheckbox-display.clicked {
    background-color: var(--color-primary);
}

.hbspt-form .hs-form-booleancheckbox-display.clicked:after {
    background: white;
}

.hbspt-form input[type="submit"] {
    width: 100%;
    text-align: center;
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
    cursor: pointer;
    pointer-events: all;
    display: inline-block;
    position: relative;
    padding: 1vw 2vw;
    font-size: 1vw;
    line-height: 2vw;
    font-weight: 700;
    text-decoration: none;
    opacity: 1;
    -webkit-transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99) 50ms;
    overflow: hidden;
    outline: none;
    z-index: 1;
}

.hbspt-form input[type="submit"]:hover {
    border-color: white;
}

.hbspt-form #label-je_possede_deja_un_stuv-7c9fbd02-3b20-41ae-8ba2-05cd317209e6 {
    display: block;
    margin-bottom: .75vw;
}

.hbspt-form .hs_submit {
    margin-top: 2vw;
}

#realform p {
    color: black;
    margin-bottom: 2vw;
    max-width: 20rem;
}

#realform input[type="text"],
#realform input[type="email"],
#realform input[type="tel"] {
    background: 0 0;
    outline: none;
    width: 100%;
    height: 3vw;
    line-height: 3vw;
    font-size: 1vw;
    color: black;
    border: none;
    border-bottom: 1px solid hsla(0,0%,84.7%,.1);
    padding: 0;
    margin-bottom: 0;
}

#realform .hs-form-booleancheckbox-display {
    padding: 1.5vw 0;
    display: flex;
    justify-content: start;
    align-items: center;
}

#realform .hs-form-booleancheckbox-display > .hs-input {
    display: inline-block;
}

#realform .hs-form-booleancheckbox-display > span {
    font-weight: normal;
}

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

ul.inputs-list > li {
    margin-bottom: .5vw;
}

ul.inputs-list > li > label {
    display: flex;
    align-items: center;
}

#realform input[type="checkbox"] {
    margin-right: 1vw;
    width: 2vw;
    height: 2vw;
}

#realform .submitted-message {
    color: black;
}

.input {
    margin-bottom: 1vw;
}

#brochurePanel input[type="email"] {
    background: 0 0;
    outline: none;
    width: 100%;
    height: 3vw;
    line-height: 3vw;
    font-size: 1vw;
    color: #fff;
    border: none;
    border-bottom: 1px solid hsla(0,0%,84.7%,.1);
    padding: 0;
    margin-bottom: 0;
}

#brochurePanel .hs_comment_voulez_vous_recevoir_le_catalogue_ label span {
    display: block;
    margin-bottom: .5vw;
}

#brochurePanel #email-1acd89a1-4b0e-4ec1-a3d7-2b44e40dddc4 {
    margin-bottom: 1vw;
}

#brochurePanel input[type="submit"] {
    margin-top: 1vw;
}

#brochurePanel #comment_voulez_vous_recevoir_le_catalogue_-0ca7f1df-bfc2-4b6c-8b03-de96552ec725 {
    width: 100% !important;
}

#brochurePanel fieldset[data-reactid=".hbspt-forms-0.1:$4"] {
    margin-bottom: 1vw;
}

#brochurePanel fieldset[data-reactid=".hbspt-forms-0.1:$1"] {
    margin-bottom: 2vw;
}

#brochurePanel fieldset[data-reactid=".hbspt-forms-0.1:$3"] {
    margin-bottom: 1vw;
}

#brochurePanel .hbspt-form .hs-form-booleancheckbox-display:after {
    display: none;
}

#brochurePanel .hbspt-form .hs-form-booleancheckbox-display {
    font-weight: normal !important;
    padding: 0;
    border: 0;
}

#brochurePanel .hbspt-form .hs-form-booleancheckbox-display > input[type="checkbox"] {
    display: inline-block;
    width: 1vw;
    height: 1vw;
    margin-right: 1vw;
}

.hs-fieldtype-booleancheckbox {
	padding: 1vw 0 0 0;
}

fieldset {
    max-width: 100% !important;
	width: 100% !important;
}

.hbspt-form ul.no-list label {
    color: var(--color-primary);
}

#realform ul.inputs-list.hs-error-msgs {
    margin-top: 0;
    margin-bottom: 1.2rem;
}

#realform .hs-error-msg {
    color: var(--color-primary) !important;
}

.hbspt-form legend {
    font-style: italic;
    font-size: .75vw;
    padding: .5vw 0 0 0;
}

#hubspot .hs-fieldtype-select {
	padding: 1vw 0;
}

#hubspot .hs-fieldtype-text {
	padding: 1vw 0;
}

.hs-fieldtype-select label {
	padding-bottom: .5vw;
}
/* End: Formulaires Hubspot */


/* Hubspot Page */

#hubspot #hero_inner {
	height: auto;
	min-height: 50vh;
	position: relative;
	padding-bottom: 5vw;
}


/* History */

#about_intro {
	padding: 5vw 10vw;
}

.quoteH__content {
	max-width: 50%;
	margin: 5vw auto 0;
}

.quoteH__text {
    position: relative;
    font-style: italic;
    margin-bottom: 1vw;
	font-size: 1.1vw;
	line-height: 1.75;
}

.quoteH__name {
	font-size: .75vw;
	line-height: 1.5;
}

#about_content {
    padding: 5vw 10vw;
    color: #000;
    background-color: #eae5de;
}

#history #find {
	background-color: #eae5de;
}


/* Online fixes */

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

.page-template-become_dealer .wysiwyg .actions {
	width: 25%;
}

.wysiwyg h6 {
	margin: 2.5vw 0 1vw 0;
}

.postsGrid__product_filter {
	padding: 0 10vw 5vw 10vw;
}

body.single #blog_menu {
	padding: 0 10vw 0 10vw;
	margin: 0 0 5vw 0;
}



/* Popup Modals */

.stuv-modal { 
	position: fixed; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100vh; 
	background-color: rgba(37,36,41,.95); 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	padding: 5vw; 
	opacity: 0; 
	z-index: 99999; 
	transition: all 0.25s ease; 
	z-index: -1; 
}

.stuv-modal .featured-product { 
	width: 75%; 
}

.stuv-modal .featured-product .content { 
	text-align: center; 
	padding: 2.5vw 0; 
	max-width: inherit; 
	-webkit-box-ordinal-group: inherit; 
	order: inherit; 
	margin-left: inherit!important; 
	-webkit-box-flex: inherit; 
	flex-grow: inherit; 
	flex-shrink: inherit; 
	flex-basis: inherit; 
	width: inherit; 
}

.stuv-modal .featured-product h2 { 
	margin: 0 0 30px 0; 
}

.stuv-modal .featured-product p { 
	margin: 0 0 1rem 0; 
}

.stuv-modal .featured-product .btn { 
	margin: 1rem 0 0 0;
	color: #fff;
}

.stuv-modal .content {
	width:100%; margin:auto !important; 
}

.closeBtn { 
	color: #fff; 
	font-size: 1.5rem; 
	position: absolute; 
	top: 1rem; 
	right: 1rem; 
	cursor: pointer; 
}

.stuv-modal2 { 
	position: fixed; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100vh; 
	background-color: rgba(37,36,41,.95); 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	padding: 5vw; 
	opacity: 0; 
	z-index: 99999; 
	transition: all 0.25s ease; 
	z-index: -1; 
}

.stuv-modal2 .featured-product { 
	width: 75%; 
}

.stuv-modal2 .featured-product .content { 
	text-align: center; 
	padding: 2.5vw 0; 
	max-width: inherit; 
	-webkit-box-ordinal-group: inherit; 
	order: inherit; 
	margin-left: inherit!important; 
	-webkit-box-flex: inherit; 
	flex-grow: inherit; 
	flex-shrink: inherit; 
	flex-basis: inherit; 
	width: inherit; 
}

.stuv-modal2 .featured-product h2 { 
	margin: 0 20px 20px 20px; 
}

.stuv-modal2 .featured-product p { 
	margin: 0 0 1rem 0; 
}

.stuv-modal2 .featured-product .btn { 
	margin: 0 0 0 .5rem; 
	padding: .25rem 1rem; 
	border: 0; 
}

.stuv-modal2 .content { 
	width:100%; 
	margin:auto !important; 
}

.closeBtn2 { 
	color: #fff; 
	font-size: 1.5rem; 
	position: absolute; 
	top: 1rem; 
	right: 1rem; 
	cursor: pointer; 
}

.noscroll { overflow: hidden; }

.showup { opacity: 1; z-index: 9999; }

.stuv-modal2 .wpcf7 {
    margin-bottom: 2rem;
}

.stuv-modal2 .wpcf7-form-control-wrap {
    margin: .5rem;
}

.stuv-modal2 .wpcf7-text, .stuv-modal2 .wpcf7-select {
    border: 0;
    padding: .5rem;
    height: 2rem;
}

.stuv-modal2 .wpcf7 form.sent .wpcf7-response-output {
    border: 0;
    background-color: var(--color-primary);
    padding: 1rem;
}

@media (max-width: 767px) { 
    .stuv-modal2 .featured-product { width: 95%; max-height: 95%; overflow-y: auto; }
    .stuv-modal2 .wpcf7-form-control-wrap { display: block; }
    .stuv-modal2 .wpcf7-text, .stuv-modal2 .wpcf7-select { width: 100%; }
    .stuv-modal2 .featured-product p { line-height: 1.5; }
    .stuv-modal2 .wpcf7 { margin-bottom: 0; }
    .stuv-modal2 .featured-product p:last-child { margin: 0; }
}




/* Styles Specs */

/* Swiper Base Styles */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
	font-size: .85vw;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

.specs__table__category .swiper-button-next,
.specs__table__category .swiper-button-prev {
    width: 60px;
    background: none;
    height: 60%;
    top: 20%;
}

.specs__table__category .swiper-button-next.swiper-button-prev,
.specs__table__category .swiper-button-prev.swiper-button-prev {
    display: -webkit-box;
    display: flex;
    left: 105px;
}

.specs__table__category .swiper-button-next.swiper-button-next,
.specs__table__category .swiper-button-prev.swiper-button-next {
    display: -webkit-box;
    display: flex;
    right: -25px;
    background: none;
}

@media (min-width: 768px) and (max-width: 1219px) {
    .specs__table__category .swiper-button-next.swiper-button-next,
    .specs__table__category .swiper-button-prev.swiper-button-next {
        right: -60px;
    }
}

@media (min-width: 1220px) {
    .specs__table__category .swiper-button-next.swiper-button-next,
    .specs__table__category .swiper-button-prev.swiper-button-next {
        right: 0;
    }
}

.specs__table__category .swiper-button-next:hover .arrow,
.specs__table__category .swiper-button-prev:hover .arrow {
    background: #000;
}

.specs__table__category .swiper-button-next:hover .arrow svg,
.specs__table__category .swiper-button-prev:hover .arrow svg {
    fill: #fff;
}

.specs__table__category .swiper-button-next.swiper-button-disabled,
.specs__table__category .swiper-button-prev.swiper-button-disabled {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.specs__table__categories {
    /*overflow: hidden;*/
    width: 100%;
}

.specs__table__category {
    display: none;
}

.specs__table__category.active {
    display: block;
}

.specs__models-categories {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    align-items: flex-end;
    margin-bottom: 50px;
    position: relative;
}

.specs__models-categories.no-categories {
    display: none;
}

.specs__models-categories:before {
    content: "";
    display: none;
}

@media (min-width: 768px) {
    .specs__models-categories:before {
        display: block;
        width: 250px;
    }
}

@media (min-width: 1220px) {
    .specs__models-categories:before {
        margin-right: 40px;
        -webkit-box-flex: 0;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(41.625% - 23.33333px);
        max-width: calc(41.625% - 23.33333px);
        width: calc(41.625% - 23.33333px);
    }
    .specs__models-categories:before:nth-child(1n) {
        margin-right: 40px;
        margin-left: 0;
    }
    .specs__models-categories:before:last-child {
        margin-right: 0;
    }
    .specs__models-categories:before:nth-child(2n) {
        margin-right: 0;
        margin-left: auto;
    }
}

.specs__models-categories:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #979797;
}

@media (min-width: 768px) {
    .specs__models-categories:after {
        margin-left: 250px;
    }
}

@media (min-width: 1220px) {
    .specs__models-categories:after {
        margin-left: calc(41.625% + 16.66667px) !important;
    }
}

@media (min-width: 768px) {
    .specs__models-categories {
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}

.specs__model-category {
    font-weight: 700;
    padding-bottom: 30px;
    color: #979797;
    position: relative;
    cursor: pointer;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    font-size: 0.8em;
    padding-right: 10px;
    z-index: 2;
}

.specs__model-category sup {
    font-size: 0.8em;
    position: absolute;
    top: -0.8em;
    right: 0;
	display: none;
}

.specs__model-category + .specs__model-category {
    margin-left: 25px;
}

.specs__model-category:after {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.specs__model-category.active,
.specs__model-category:hover {
    color: #000;
}

.specs__model-category.active:after,
.specs__model-category:hover:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media (min-width: 768px) {
    .specs__model-category {
        font-size: 1em;
        padding-right: 0;
    }
    .specs__model-category sup {
        right: -1.5em;
		display: none;
    }
    .specs__model-category + .specs__model-category {
        margin-left: 55px;
    }
}

.specs__intro {
    margin-bottom: 100px;
}

.specs__subtitle {
    font-weight: 700;
    margin-bottom: 10px;
}

.specs__title {
    max-width: 500px;
    margin-bottom: 25px;
}

.specs__lead p {
    max-width: 500px;
    margin: 0;
}

.specs__row {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.specs__row:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #000;
}

.specs__row:last-child:after {
    display: none;
}

.specs__row--main {
    -webkit-box-align: end;
    align-items: flex-end;
}

.specs__name {
    position: relative;
    margin-bottom: 0;
    font-weight: 700;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    padding: 15px 0 16px;
    width: 110px;
    margin-right: 25px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .specs__name {
        width: 200px;
    }
}

@media (min-width: 1220px) {
    .specs__name {
        -webkit-box-flex: 0;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(41.625% - 23.33333px);
        max-width: calc(41.625% - 23.33333px);
        width: calc(41.625% - 23.33333px);
        padding: 25px 0 26px;
    }
    .specs__name:nth-child(1n) {
        margin-right: 40px;
        margin-left: 0;
    }
    .specs__name:last-child {
        margin-right: 0;
    }
    .specs__name:nth-child(2n) {
        margin-right: 0;
        margin-left: auto;
    }
}

.specs__name--main {
    padding-bottom: 26px;
}

.specs__name .btn {
    font-weight: 400;
}

.specs__content {
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    align-self: stretch;
    width: 100%;
    display: -webkit-box;
    display: flex;
}

@media (max-width: 767px) {
    .specs__content {
        /*margin-right: -25px;
        margin-left: 0;*/
    }
}

@media (min-width: 768px) and (max-width: 1219px) {
    .specs__content {
        margin-right: -60px;
        margin-left: 0;
    }
}

@media (min-width: 1220px) {
    .specs__content {
        -webkit-box-flex: 0;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(66.6% - 13.33333px);
        max-width: calc(66.6% - 13.33333px);
        width: calc(66.6% - 13.33333px);
    }
    .specs__content:nth-child(1n) {
        margin-right: 40px;
        margin-left: 0;
    }
    .specs__content:last-child {
        margin-right: 0;
    }
    .specs__content:nth-child(2n) {
        margin-right: 0;
        margin-left: auto;
    }
}

.specs__content .swiper-container {
    height: 100%;
    padding: 0;
    margin-left: 0;
}

/* Swiper wrapper styles for specs */
.specs__content .swiper-wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
}

.specs__content .row-swiper-wrapper.swiper-wrapper {
    margin-left: 0;
    margin-right: 0;
}

/* Force transform to 0 on desktop to prevent alignment issues */
@media (min-width: 1024px) {
    .specs__content .row-swiper-wrapper.swiper-wrapper,
    .specs__content .swiper-wrapper.row-swiper-wrapper {
        transform: translate3d(0px, 0px, 0px) !important;
    }
    
    /* Also target any swiper-wrapper inside specs__content */
    .specs__content .swiper-wrapper {
        transform: translate3d(0px, 0px, 0px) !important;
    }
}

@media (min-width: 1220px) {
    .specs__content .swiper-container {
        padding: 25px 0;
    }
}

.specs__col {
    width: 150px !important;
	/*width: 200px !important;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
	margin-right: 2vw;
	text-align: center;
}

.specs__col p {
	margin: 0;
}

#epa .specs__col {
	align-items: center;
	text-align: center;
	justify-content: flex-start;
}

@media (max-width: 767px) {

	.specs__icon--name {
		display: none;
	}
    
    .specs__content .swiper-container {
        /*overflow: hidden;*/
    }
    
    .specs__content .swiper-wrapper {
        display: -webkit-box;
        display: flex;
    }
    
    /* Show navigation buttons on mobile */
    .specs__row .swiper-button-next,
    .specs__row .swiper-button-prev {
		position: absolute;
        display: flex !important;
        z-index: 10;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        width: 30px !important;
        height: 30px !important;
        margin-top: 0 !important;
        top: 0 !important;
        transform: translateY(-50%) !important;
		border-radius: 50%;
		background-color: #000;
		color: #fff;
    }
    
    .specs__row .swiper-button-prev {
        left: 0 !important;
        right: auto !important;
    }
    
    .specs__row .swiper-button-next {
        right: 0 !important;
        left: auto !important;
    }
    
    .specs__row .swiper-button-next .arrow,
    .specs__row .swiper-button-prev .arrow {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
		border-radius: 50%;
		background-color: #000;
		color: #fff;
    }
    
    .specs__row .swiper-button-next .arrow i,
    .specs__row .swiper-button-prev .arrow i {
        font-size: 14px;
        line-height: 1;
        display: inline-block;
    }
    
    /* Force hide disabled buttons on mobile with !important */
    .specs__row .swiper-button-next.swiper-button-disabled,
    .specs__row .swiper-button-prev.swiper-button-disabled {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Keep navigation buttons visible up to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Show navigation buttons on tablets and small screens */
    .specs__row .swiper-button-next,
    .specs__row .swiper-button-prev {
		position: absolute;
        display: flex !important;
        z-index: 10;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        width: 30px !important;
        height: 30px !important;
        margin-top: 0 !important;
        top: 0 !important;
        transform: translateY(-50%) !important;
		border-radius: 50%;
		background-color: #000;
		color: #fff;
    }
    
    .specs__row .swiper-button-prev {
        left: 0 !important;
        right: auto !important;
    }
    
    .specs__row .swiper-button-next {
        right: 0 !important;
        left: auto !important;
    }
    
    .specs__row .swiper-button-next .arrow,
    .specs__row .swiper-button-prev .arrow {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
		border-radius: 50%;
		background-color: #000;
		color: #fff;
    }
    
    .specs__row .swiper-button-next .arrow i,
    .specs__row .swiper-button-prev .arrow i {
        font-size: 14px;
        line-height: 1;
        display: inline-block;
    }
    
    /* Force hide disabled buttons */
    .specs__row .swiper-button-next.swiper-button-disabled,
    .specs__row .swiper-button-prev.swiper-button-disabled {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

	.specs__table {
		padding-top: 1rem;
		overflow: hidden;
	}

	.specs__icon--name {
		display: none;
	}
}

/* Desktop: Show navigation buttons when needed */
@media (min-width: 1024px) {
    .specs__row .swiper-button-next,
    .specs__row .swiper-button-prev {
		position: absolute;
        display: flex !important;
        z-index: 10;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        width: 30px !important;
        height: 30px !important;
        margin-top: 0 !important;
        top: 0 !important;
        transform: translateY(-50%) !important;
		border-radius: 50%;
		background-color: #000;
		color: #fff;
    }
    
    .specs__row .swiper-button-prev {
        left: 0 !important;
        right: auto !important;
    }
    
    .specs__row .swiper-button-next {
        right: 0 !important;
        left: auto !important;
    }
    
    .specs__row .swiper-button-next .arrow,
    .specs__row .swiper-button-prev .arrow {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
		border-radius: 50%;
		background-color: #000;
		color: #fff;
    }
    
    .specs__row .swiper-button-next .arrow i,
    .specs__row .swiper-button-prev .arrow i {
        font-size: 14px;
        line-height: 1;
        display: inline-block;
    }
    
    /* Hide disabled buttons */
    .specs__row .swiper-button-next.swiper-button-disabled,
    .specs__row .swiper-button-prev.swiper-button-disabled {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.specs__col--main {
    padding-bottom: 10px;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media (min-width: 768px) and (max-width: 1219px) {
    .specs__col--main {
        padding-bottom: 17px;
    }
}

@media (min-width: 1220px) {
    .specs__col--main {
        padding-bottom: 7px;
    }
}

.specs__icon--name {
    width: 100%;
    max-width: 40px;
    max-height: 40px;
    margin-right: 60px;
}

@media (max-width: 1023x) {
    .specs__icon--name {
        display: none;
    }
}

.specs__icon--model {
    height: 100%;
    max-height: 75px;
    margin-bottom: 50px;
}

.specMore {
    position: absolute;
    top: 50%;
    left: 0;
    width: 450px;
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    padding: 20px;
    background: #252429;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
	color: #fff;
}

@media (max-width: 767px) {
    .specMore {
        max-width: calc(100vw - 50px);
    }
}

.specMore__close {
    position: absolute;
    top: 20px;
    right: 20px;
	cursor: pointer;
	-webkit-transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

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

.specMore__content {
    padding-right: 2vw;
}

.specMore__content p:last-child {
	margin: 0;
}

.specMore--active {
    pointer-events: all;
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}

.specsTech {
    padding: 55px 0 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (min-width: 768px) and (max-width: 1219px) {
    .specsTech {
        padding: 90px 0 0;
    }
}

@media (min-width: 1220px) {
    .specsTech {
        padding: 120px 0 0;
    }
}

.specsTech__title {
    margin: 0;
    width: 100%;
}

@media (max-width: 767px) {
    .specsTech__title {
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) and (max-width: 1219px) {
    .specsTech__title {
        margin-bottom: 40px;
    }
}

@media (min-width: 1220px) {
    .specsTech__title {
        -webkit-box-flex: 0;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(33.3% - 26.66667px);
        max-width: calc(33.3% - 26.66667px);
        width: calc(33.3% - 26.66667px);
        margin-top: 13px;
    }
    .specsTech__title:nth-child(1n) {
        margin-right: 40px;
        margin-left: 0;
    }
    .specsTech__title:last-child {
        margin-right: 0;
    }
    .specsTech__title:nth-child(2n) {
        margin-right: 0;
        margin-left: auto;
    }
}

.specsTech__wrapper {
    width: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media (min-width: 1220px) {
    .specsTech__wrapper {
        -webkit-box-flex: 0;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(66.6% - 13.33333px);
        max-width: calc(66.6% - 13.33333px);
        width: calc(66.6% - 13.33333px);
        flex-wrap: nowrap;
    }
    .specsTech__wrapper:nth-child(1n) {
        margin-right: 40px;
        margin-left: 0;
    }
    .specsTech__wrapper:last-child {
        margin-right: 0;
    }
    .specsTech__wrapper:nth-child(2n) {
        margin-right: 0;
        margin-left: auto;
    }
}

.specsTech__item {
    -webkit-box-flex: 0;
    flex-grow: 0;
    flex-shrink: 1;
    color: #000;
    margin-right: 20px;
}

@media (max-width: 767px) {
    .specsTech__item {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
}

.specsTech__item:last-child {
    margin: 0;
}

.specsTech__item--active .specsTech__choices {
    pointer-events: all;
    max-height: 1000px;
    opacity: 1;
}

.specsTech__name {
    position: relative;
    cursor: pointer;
    display: block;
    font-weight: 700;
    margin: 0;
    padding: 15px 40px 15px 30px;
    border: 1px solid #000;
    outline: none;
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    background: #fff;
	height: 3vw;
}

.specsTech__name--image {
    padding: 10px 20px;
}

.specsTech__name--image img {
    height: 36px;
}

@media (min-width: 768px) and (max-width: 1219px) {
    .specsTech__name {
        padding: 15px 40px 15px 15px;
    }
}

.specsTech__pdf {
    margin-right: 10px;
}

.specsTech__arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.specsTech__choices {
    pointer-events: none;
    border: 1px solid #000;
    border-top: 0;
    opacity: 0;
    max-height: 0;
	list-style: none;
	margin: 0;
	padding: 0;
    -webkit-transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

.specsTech__choices li {
    display: none;
}

.specsTech__choices li.active {
    display: list-item;
}

.specsTech__choices li:last-child .specsTech__link {
    border-bottom: 0;
}

.specsTech__link {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 15px 15px 15px 30px;
    border-bottom: 1px solid #000;
	color: #000;
    background: #fff;
    text-decoration: none;
    will-change: background;
    -webkit-transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
    transition: all 0.45s cubic-bezier(0.6, 0.05, 0.01, 0.99);
}

@media (min-width: 1220px) {
    .specsTech__link:hover {
        color: #fff;
        background: -webkit-gradient(linear, left top, right top, from(var(--color-primary)), color-stop(#eb9d5f), to(var(--color-primary)));
        background: linear-gradient(90deg, var(--color-primary), #eb9d5f, var(--color-primary));
        background-size: 600% 600%;
        -webkit-animation: fire 15s infinite;
        animation: fire 15s infinite;
    }
}

.swiper--overflow {
    /*margin-left: -25px;
    margin-right: -25px; */
    position: relative;
}

@media (min-width: 768px) and (max-width: 1219px) {
    .swiper--overflow {
        margin-left: -60px;
        margin-right: -60px;
    }
}

@media (min-width: 1220px) {
    .swiper--overflow {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
	.specs__table__categories {
        width: 100%;
        font-size: .85rem;
    }

	.swiper-container {
		font-size: .85rem;
	}

	#specs .btn_arrow { 
		font-size: .75rem; 
	}

	.specsTech__name {
		height: auto;
	}
}

@media (min-width: 768px) and (max-width: 1219px) {
    .specs__table__categories {
        width: 100%;
    }

    .specs__table__category .swiper-button-next, 
    .specs__table__category .swiper-button-prev {
        top: -20px;
    }

	.swiper-container {
		font-size: .85rem;
	}

	#specs .btn_arrow { 
		font-size: .75rem; 
	}
}

@media (min-width: 1220px) {
    .specs__table__categories {
        width: 100%;
    }
    .specs__table__category .swiper-button-next.swiper-button-next, 
    .specs__table__category .swiper-button-prev.swiper-button-next {
        right: -18px;
    }
    .specs__table__category .swiper-button-next.swiper-button-prev, 
    .specs__table__category .swiper-button-prev.swiper-button-prev {
        left: 0px;
    }
}

#default_page #hero_inner.autoHeight {
    padding: 15vw 10vw 0 10vw;
}

#default_page #hero_inner.autoHeight h1 {
	margin: 0;
}

body.single-cpt_produits .slide_counter {
	display: none;
}

a.btn_arrow.black.js-show-more {
	font-weight: 400;
}

#epa .specs__icon--name {
    max-height: inherit;
}

div.wpforms-container-full .wpforms-form input[type=date], div.wpforms-container-full .wpforms-form input[type=datetime], div.wpforms-container-full .wpforms-form input[type=datetime-local], div.wpforms-container-full .wpforms-form input[type=email], div.wpforms-container-full .wpforms-form input[type=month], div.wpforms-container-full .wpforms-form input[type=number], div.wpforms-container-full .wpforms-form input[type=password], div.wpforms-container-full .wpforms-form input[type=range], div.wpforms-container-full .wpforms-form input[type=search], div.wpforms-container-full .wpforms-form input[type=tel], div.wpforms-container-full .wpforms-form input[type=text], div.wpforms-container-full .wpforms-form input[type=time], div.wpforms-container-full .wpforms-form input[type=url], div.wpforms-container-full .wpforms-form input[type=week], div.wpforms-container-full .wpforms-form select, div.wpforms-container-full .wpforms-form textarea {
    font-family: Heebo, Helvetica, Arial, sans-serif !important;
    background-color: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
    font-size: 1rem !important;
    padding: 1rem !important;
    min-height: 40px !important;
    height: auto !important;
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-large {
    height: 220px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

div.wpforms-container .wpforms-form .choices__inner {
    background-color: transparent !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 0 !important;
    color: #fff !important;
    background-image: url(../images/svg/custom-select-w.svg);
    background-size: 9px 18px;
    background-position: right 10px center;
    background-repeat: no-repeat;
    padding: 4px 1rem 0 !important;
}

div.wpforms-container .wpforms-form .choices[data-type*="select-one"]:after {
    border-color: #fff transparent transparent transparent !important;
    display: none;
}

div.wpforms-container .wpforms-form .choices__placeholder {
    opacity: 1 !important;
}

div.wpforms-container-full ::placeholder {
    color: #fff !important;
    opacity: 1 !important;
}

.modern-title {
    color: #fff !important;
}

div.wpforms-container div.wpforms-uploader {
    border: 1px dashed #fff !important;
    border-radius: 5px !important;
    background: transparent !important;
}

.dz-message svg {
    fill: #fff !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field-label {
    margin: 0 0 0.5rem 0 !important;
}

div.wpforms-container-full .wpforms-form button[type=submit] {
    background-color: transparent !important;
    border: 2px solid #e96b4c !important;
    font-size: 14px !important;
    line-height: 26px !important;
    color: #fff !important;
    padding: 15px 40px !important;
    font-weight: 700 !important;
    transition: all 0.25s ease;
    margin: 2rem 0 0 0 !important;
    width: 100% !important;
}

div.wpforms-container-full .wpforms-form button[type=submit]:hover {
    background-color: #e96b4c !important;
    color: #fff !important;
}

.addtoany_list a:not(.addtoany_special_service)>span {
    border-radius: 0;
}

div.wpforms-container-full .wpforms-form label.wpforms-error {
    margin-top: 0.5rem !important;
    color: #fff !important;
}

.wpforms-confirmation-container-full, div[submit-success]>.wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
    padding: 2rem !important;
    color: #fff !important;
    border: 2px solid #e96b4c !important;
    background-color: transparent !important;
}

div.wpforms-container .wpforms-form .choices__list--single .choices__item {
    color: #fff !important;
}

div.wpforms-container .wpforms-form .choices[data-type*="select-one"] .choices__button {
    background-color: #fff !important;
}


/* Horizontal newsletters (Single pages) */

#newsletter_horizontal {
	background-color: #000;
	padding: 2.5vw 5vw;
	display: flex;
    justify-content: space-between;
	gap: 5vw;
}

.newsletter_horizontal__head {
	flex: 1;
}

.newsletter_horizontal__form {
	flex: 1;
}

.hero_showcase__head__title {
	margin-bottom: 1.5vw;
}



.submenu__content {
	display: flex;
	align-items: center;
	gap: 1vw !important;
	padding: 0;
	position: absolute !important;
	z-index: 100;
	bottom: 1.5vw;
	left: 45%;
}

.submenu__content:hover::after {
	content: none;
}

.submenu__content i {
	padding: 0;
    margin: 0;
    width: 1.5vw;
    height: 1.5vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 0;
    flex-grow: 0;
    outline: none;
    overflow: visible;
    border-radius: 50%;
	background-color: var(--color-primary);
	font-size: .75vw;
	transition: all 0.25s ease;
}

.submenu__content:hover i {
	color: var(--color-primary);
	background-color: #fff;
}

.hero_showcase__head__submodels {
	display: flex;
	flex-direction: column;
	gap: .5vw;
	margin: 0 0 2vw 0;
}