* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}

html, body {
	font-family: 'Orbitron', sans-serif;
	line-height: 1.5;
	overflow-x: hidden;
	}

body {
	background-color: #000000;
	margin: 0 auto;
	}

a {
	text-decoration: none;
	color: inherit;
	}

a:visited {
	color: inherit;
	}

@font-face {
	font-family: 'Orbitron';
	src: url('../_fonts/Orbitron-regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	}

@font-face {
	font-family: 'Orbitron';
	src: url('../_fonts/Orbitron-bold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
	}

.slider {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	}

.slides {
	position: relative;
	width: 100%;
	height: 100%;
	}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	}

.slide.active {
	opacity: 1;
	}

.navbar-right ul {
	list-style: none;
	display: flex;
	gap: 30px;
	}

.navbar ul li a {
	position: relative;
	color: white;
	text-decoration: none;
	font-weight: 500;
	padding: 5px 10px;
	font-family: 'Orbitron', sans-serif;
	transition: color 0.5s;
	}

.navbar ul li a::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 100%;
	height: 1px;
	background-color: #3CFF2C;
	transition: transform 0.5s ease;
	transform-origin: center;
	}

.navbar ul li a:hover::after, .navbar ul li a.active::after {
	transform: translateX(-50%) scaleX(1);
	}

.navbar ul li a.active {
	position: relative;
	color: #3CFF2C;
	font-weight: bold;
	}

.navbar-right ul li a:hover {
	color: #09c000;
	}

.neon {
	text-shadow: 0 0 5px #3CFF2C, 0 0 10px #3CFF2C, 0 0 20px #3CFF2C;
	}

.intro, .skins, .more{
	position: relative;
	width: 100%;
	overflow: hidden;
	}

.intro {
	height: 450px;
	}

.skins, .theme {
	display: flow-root;
	}

.more {
	height: 300px;
	text-align: center;
	}

.more img {
	padding: 10px
	}
	
.intro_text, .skins_text, .gcs {
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 20px;
	justify-content: left;
	overflow: hidden;
	}

.intro-bg-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
	}

.intro-bg-video {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
	}

.intro h1, .skins h1, .banner h1, .theme h1 {
	font-size: 1.2em;
	font-weight: 300;
	color: #A6FF9F;
	}

.intro p {
	font-size: 1em;
	font-weight: 300;
	color: #FFFFFF;
	}

.logo_03 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
	}

.logo_03 img {
	margin: 0 auto;
	}

.sli_G {
	transform: translateX(-50px);
	}

.sli_D {
	transform: translateX(50px);
	}

.sli_B {
	transform: translateY(50px);
	}

.sli_G, .sli_D, .sli_B {
	opacity: 0;
	transition: transform 0.7s ease-out, opacity 0.7s ease-out;
	}

.sli_G.visible, .sli_D.visible {
	transform: translateX(0);
	opacity: 1;
	}

.sli_B.visible {
	transform: translateY(0);
	opacity: 1;
	}

.dark img {
	transition: transform 0.35s ease, filter 0.35s ease;
	}

.dark img:hover {
	filter: brightness(0.5);
	}

.more img {
	width: 300px;
	height: 300px;
	margin: 0 auto;
	}

.img_container {
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
	}

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

.info_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	flex-direction: column;
	align-items: left;
	padding: 15px;
	margin-bottom: 10px;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
	}

.img_container:hover .info_overlay {
	opacity: 1;
	}

.info1,	.info2, .info3 {
	padding-left: 15px;
	border-left: 1px solid #3CFF2C;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.9), 0 0 14px rgba(0, 0, 0, 0.9);
	}	
	
.info1 {
	font-size: 1em;
	font-weight: 300;
	}
	
.info2 {
	font-size: 0.8em;
	font-weight: 300;
	}
	
.info3 {
	font-size: 0.7em;
	font-weight: 700;
	}	

.info1, .fiche h1 {
	color: #3CFF2C;
	}

.info2, .fiche h2 {
	color: #FFFFFF;
	}

.info3, .fiche h3 {
	color: #aaaaaa;
	}

.box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	}

.fiche {
	width: 100%;
	height: 100%;
	justify-content: center;
	}

.fiche h1, .fiche h2, .fiche h3 {
	padding-left: 15px;
	border-left: 1px solid #3CFF2C;
	text-align: left;
	}

.fiche h3 {
	padding-top: 5px;
	}

.text {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 15px;
	color: white;
	}

.exclu {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	margin-top: 20px;
	padding-bottom: 0em;
	padding-right: 20px;
	text-align: right;
	}

.exclu h4 {
	font-weight: bold;
	color: #000000;
	}

.exclu h5 {
	text-align: left;
	color: #505050;
	}

.exclu_bg {
	background-color: #3CFF2C;
	display: inline-block;
	padding: 18px;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
	}

.tar {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	text-align: center;
	}

.tar img {
	width: 300px;
	height: 300px;
	}

.theme {
	position: relative;
	overflow: hidden;
	text-align: center;	
	}

.theme img {
	margin: 0 auto;
	text-align: center;
	width: 100%;
	}

.theme_title {
	margin: 0 auto;
	display: table;
	text-align: center;
	color: white;
	}

.theme_title h1 {
	font-size: 2em;
	font-weight: 300;
	color: white;
	padding-left: 22px;
	border-left: 1px solid #3CFF2C;
	}

.available {
	margin: 0 auto;
	max-width: 1280px;
	text-align: left;
	color: white;
	padding: 22px;
	}

.soldout {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	mix-blend-mode: multiply;
	opacity: 0.4;
	z-index: 1;
	}

















.gcs {
	max-width: 1280px;
	color: #fff;
	}

.gcs h2 {
	font-size: 1.2em;
	font-weight: 500;
	color: #3CFF2C;
	}

.models {
	width: 100%;
	margin: 0 auto;
	display: block;
	box-sizing: content-box;
	text-align: center;
	overflow: hidden;
	line-height: 3;
	}

.mod1 {
	font-size: 1em;
	font-weight: 500;
    color: #3CFF2C;
	}

.mod2 {
	font-size: 1em;
	font-weight: 300;
    color: #b0b0b0;
	}

.models a {
	text-decoration: none;
	}

.mod_link:hover {
	color: #fff;
	}

.mod_link:hover .mod1, .mod_link:hover .mod2 {
	color: inherit;
	}

.sep_foot {
	width: calc(100% - 40px);
    height: 2px;
    position: relative;
	margin: 0 auto;
    overflow: hidden;
	}

.sep {
    width: 0%;
    height: 1px;
    background-color: #3CFF2C;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: width 1s ease-out;
	}

.sep.animate {
    width: 100%;
	}

@keyframes spread {
    0% {
        width: 0%;
    }
    50% {
        width: 20%;
    }
    100% {
        width: 100%;
    }
}

.foot_tag {
	width: 100%;
    margin: 0 auto;
	overflow: hidden;
	text-align: center;
	}

.foot_tag h1 {
	font-size: 1.7em;
	font-weight: 700;
    color: #3CFF2C;
	}

.bright img {
	transition: transform 0.35s ease, filter 0.35s ease;
	}

.bright img:hover {
	filter: brightness(1.5);
	}

.gradient {
	width: 100%;
	height: 530px;
	background: linear-gradient(to bottom, #000000, #3CFF2C);
	}

.footer {
	width: 100%;
    margin: 0 auto;
	overflow: hidden;
	}

.foot_links {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
    margin: 0 auto;
	padding: 10px 20px;
	color: #000000;
    justify-content: left;
	overflow: hidden;
	}

.swi_01 {
    position: relative;
    background-color: #3CFF2C;
    padding: 7px 20px;
	margin: 10px 0px 10px 0px;
    color: #161616;
    cursor: pointer;
    font-size: 1em;
	text-decoration: none;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
	transition: background-color 0.7s, color 0.7s;
	}

.swi_01:hover {
    background-color: #fff;
	text-decoration: none;
	}

.swi_01 a {
	text-decoration: none;
	}

.sep_hor {
	border-top: 1px solid #383838;
	clear: both;
	}

.foot_sections {
    display: flex;
    width: 100%;
    max-width: 1280px;
	}

.foot_1 {
    flex: 1;
    padding: 20px;
	}

.foot_1 {
    text-align: left;
	}
	
.foot_1 h1 {
	font-size: 1.2em;
	font-weight: 300;
    color: #3CFF2C;
	}

.foot_1 p {
	font-size: 1em;
	font-weight: 300;
    color: #fff;
	}

.foot_2 {
    flex: 1;
	text-align: right;
    padding-right: 20px;
	}

.foot_2 img {
	width: 60px;
	height: 60px;
	margin-left: 20px;
	margin-top: 20px;
	}

.sep_cont {
	width: calc(100% - 40px);
	height: 100px;
	position: relative;
	margin: 0 auto;
	overflow: hidden;
	}

.scroll-to-top {
	position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s, visibility 0.7s;
    z-index: 1000;
    cursor: pointer;
	}

.scroll-to-top:hover {
    filter: brightness(1.5);
	}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
	}

.sp01 {
	width: 100%;
	}

.sp02 {
	padding: 2em 0;
	}

.sp04 {
	padding: 4em 0;
	}


/* ➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜ Mobile */

@media (max-width: 1023px) {
	
	.navbar {
		position: relative;
		flex-direction: column;
		align-items: center;
		display: flex;
		justify-content: space-between;
		padding: 20px 0;
		width: 100%;
		z-index: 1000;
		}
	
	.navbar-left {
		margin-bottom: 10px;
		}
	
	.navbar-right ul {
		flex-direction: column;
		align-items: center;
		gap: 10px;
		}
	
	.navbar-right ul li {
		margin: 0;
		}
	
	.slider {
		margin-top: 20px;
		}
	
	.navbar ul li a::after, .navbar ul li a.active::after {
		bottom: -2px;
		}
	
	.site-title {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		font-family: 'Orbitron', sans-serif;
		font-size: 1.7rem;
		gap: 0.5rem;
		color: #3CFF2C;
		text-decoration: none;
		}
	
	.logo {
		margin-bottom: 5px;
		width: 60px;
		height: 60px;
		}
	
	.caption, .caption2, .caption3 {
		display: none;
		}
	
	.compteur {
		flex-direction: column;
		padding: 0 20px;
		}
	
	.left, .middle, .right {
		width: 100%;
		padding-top: 5px;
		padding-bottom: 5px;
		box-sizing: border-box;
		}

	.gal {
		width: 100%;
		margin: 0 auto;
		padding: 0px 20px;
		display: grid;
		grid-template-columns: 1fr;

		}
	
	.gal img {
		width: 100%;
		height: auto;
		display: block;
		}
	
	.enfant {
		width: 100%;
		height: auto;
		background: lightblue;
		}	
	
	.box {
		position: relative;
		width: 100%;
		display: block;
		overflow: hidden;
		}
	
	.fiche {
		padding: 10px;
		}	
	
	












	
	
	
	.foot_2 img {
		margin-top: 20px;
		}

	.sp01 {
		height: 5px;
		}
	
	.sp03 {
	padding: 3em 0;
	}

}



















/* ➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜ 768 */

@media (min-width: 768px) {
	
	.mod1 {
		font-size: 1.5em;
		font-weight: 500;
		}
	
	.mod2 {
		font-size: 1.5em;
		font-weight: 300;
		}
}



/* ➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜ 1024 */

@media (min-width: 1024px) {
	
	.navbar {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 15px 40px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		opacity: 1;
		transition: opacity 0.7s ease;
		pointer-events: auto;
		z-index: 1000;
		}
	
	.navbar.hidden {
		opacity: 0;
		pointer-events: none;
		}
	
	.navbar.visible {
		opacity: 1;
		pointer-events: auto;
		}
	
	.logo {
		margin-right: 22px;
		width: 60px;
		height: 60px;
		}
	
	.slider {
		margin-top: 0;
		}
	
	.slider::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.0) 30%, rgba(0, 0, 0, 0) 100%);
		z-index: 10;
		pointer-events: none;
		}
	
	.navbar ul li a::after, .navbar ul li a.active::after {
		bottom: -35px;
		}
	
	.site-title {
		display: flex;
		align-items: center;
		font-size: 1.7rem;
		gap: 0.5rem;
		color: #3CFF2C;
		text-decoration: none;
		}
	
	.caption, .caption2, .caption3 {
		position: absolute;
		left: 100px;
		padding-left: 22px;
		text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.9), 0 0 16px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.9);
		opacity: 0;
		text-decoration: none;
		border-left: 1px solid #3CFF2C; 
		transform: translateY(10px);
		transition: opacity 0.7s ease, transform 0.7s ease;
		z-index: 20;
		}
	
	.caption {
		bottom: 100px;
		color: #3CFF2C;
		font-size: 1.2rem;
		font-weight: 500;
		padding-bottom: 10px;
		text-decoration: none;
		}
	
	.caption2 {
		bottom: 80px;
		color: #fff;
		font-size: 1rem;
		font-weight: 500;
		padding-bottom: 5px;
		}
	
	.caption3 {
		bottom: 60px;
		color: #aaaaaa;
		font-size: 0.8rem;
		font-weight: 500;
		}
	
	.slide.active .caption, .slide.active .caption2, .slide.active .caption3 {
		opacity: 1;
		transform: translateY(0);
		}

	.intro {
		position: relative;
		width: 100%;
		height: 500px;
		overflow: hidden;
		}
	
	.intro video {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transform: translate(-50%, -50%);
		z-index: -1;
		}
	
	.intro_text, .skins_text {
		max-width: 1280px;
		display: block;
		margin: 0 auto;
		padding: 30px;
		overflow: hidden;
		}
		
	.intro_text {
		justify-content: left;
		}

    .intro-bg-image {
        display: none;
		}

    .intro-bg-video {
        display: block;
		}

	.intro h1, .skins h1, .theme h1 {
		font-size: 2em;
		font-weight: 300;
		color: #A6FF9F;
		padding-left: 22px;
		border-left: 1px solid #3CFF2C;
		}

	.intro p {
		font-size: 1.2em;
		font-weight: 300;
		color: #FFFFFF;
		padding: 22px;
		}
	
	.sli_G {
		transform: translateX(-100px);
		}
	
	.sli_D {
		transform: translateX(100px);
		}
	
	.sli_B {
		transform: translateY(100px);
		}
	
	.compteur {
		position: relative;
		width: 100%;
		height: 300px;
		overflow: hidden;
		display: flex;
		justify-content: center;
		box-sizing: border-box;
		}
	
	.block {
		opacity: 0;
		padding: 0 10px;
		transform: translateY(100px);
		}
	
	.block.visible {
		animation: slideUp 0.8s ease-out forwards;
		}
	
	.block.middle.visible {
		animation-delay: 0s;
		}
	
	.block.left.visible {
		animation-delay: 0.4s;
		}
	
	.block.right.visible {
		animation-delay: 0.8s;
		}

	.block img {
		width: 300px;
		height: 300px;
		}
	
	.intro, .skins {
		position: relative;
		width: 100%;
		overflow: hidden;
		}

	.gal {
		width: 100%;
		margin: 0 auto;
		padding: 0px 20px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		}
	
	.gal img {
		width: 100%;
		height: auto;
		display: block;
		}
	
	.img_container {
		margin-bottom: 0px;
		}
	
	.info_overlay {
		padding: 22px;
		}
	
	.info1,	.info2, .info3 {
		padding-left: 22px;
		}

	.info1 {
		font-size: 1.5em;
		font-weight: 300;
		}
	
	.info2 {
		font-size: 1.1em;
		font-weight: 300;
		}
	
	.info3 {
		font-size: 0.8em;
		font-weight: 700;
		}	
	
	.box {
		width: 1024px;
		margin: 0 auto;
		}	

	.fiche {
		padding: 20px;
		}
	
	.text {
		padding: 20px;
		}
	
	.text p {
		font-size: 1.5em;
		font-weight: 300;
		}
	
	.theme img {
	width: auto;
	}

















	.sp01 {
		height: 20px;
		}
	
	@keyframes slideUp {
		from {
			opacity: 0;
			transform: translateY(100px);
			}
		to {
			opacity: 1;
			transform: translateY(0);
			}
			}

}



/* ➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜ 1280 */

@media (min-width: 1280px) {
	
	.caption {
		bottom: 120px;
		font-size: 1.7rem;
		padding-bottom: 20px;
		}
	
	.caption2 {
		bottom: 100px;
		font-size: 1.5rem;
		padding-bottom: 10px;
		}
	
	.caption3 {
		bottom: 80px;
		font-size: 1.3rem;
		}

	.block {
		padding: 0 15px;
		}

	.gal {
		width: 1280px;
		gap: 30px;
		}

	.sli_G {
		transform: translateX(-150px);
		}

	.sli_D {
		transform: translateX(150px);
		}
	
	.sli_B {
		transform: translateY(150px);
		}
	
	.foot_block {
		max-width: 1280px;
		display: flex;
		justify-content: flex-end;
		margin: 0 auto;
		overflow: hidden;
		}

	.footer, .foot_links, .skin {
		max-width: 1280px;
		}

	.box {
		width: 1280px;
		}

	.mod1 {
		font-size: 1.7em;
		font-weight: 500;
		}
	
	.mod2 {
		font-size: 1.7em;
		font-weight: 300;
		}

	.exclu {
		padding-right: 0px;
		}





	.sp01 {
		height: 30px;
		}
	
	.sep_cont {
		width: 1280px;
		}

}



/* ➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜ 1600 */

@media (min-width: 1600px) {
	
	.caption {
		bottom: 140px;
		font-size: 2.2rem;
		padding-bottom: 40px;
		}
	
	.caption2 {
		bottom: 120px;
		font-size: 2rem;
		padding-bottom: 20px;
		}
	
	.caption3 {
		bottom: 100px;
		font-size: 1.8rem;
		}

	.block {
		padding: 0 20px;
		}

	.gal {
		gap: 40px;
		}

	.box {
		width: 1600px;
		}


	.sp01 {
		height: 40px;
		}

}



/* ➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜➜ 1920 */

@media (min-width: 1920px) {
	
	.caption {
		bottom: 160px;
		font-size: 2.7rem;
		padding-bottom: 60px;
		}
	
	.caption2 {
		bottom: 140px;
		font-size: 2.5rem;
		padding-bottom: 30px;
		}
	
	.caption3 {
		bottom: 120px;
		font-size: 2.3rem;
		}
	
	.block {
		padding: 0 25px;
		}
	
	.gal {
		gap: 58px;
		}	
		
	.box {
		width: 1920px;
		}		
		
		
		
	.sp01 {
		height: 58px;
		}

}



/* ➜ */

/* Code couleur

#3CFF2C Vert base

*/