 
*,
*::after,
*::before {
	box-sizing: border-box;
}


:root {
	font-size: 15px;
}

body {
	margin: 0;
	--color-text: #FFF;
 	 --color-bg: #000;  
	  /* --color-link:#585c68; */
	  --color-link:#C0C0C0;
	  --color-link-hover: #FFF;
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
 	font-family: 'Switzer', sans-serif;
	 overflow-x: hidden;
 }
 
 /**** rainbow mode ****/

body.rainbow {
	background: linear-gradient(-45deg, #f0f339,#23d5ab, #e73c7e, #B721FF );
	 background-size: 400%;
	 animation: gradient 9s ease infinite;
 }
 
 @keyframes gradient {
	 0% {
		 background-position: 0% 50%;
	 }
	 50% {
		 background-position: 100% 50%;
	 }
	 100% {
		 background-position: 0% 50%;
	 }
 }

.checkbox {
	opacity: 0;
	position: absolute;
}

#mode {
      padding: 2.5rem 6.7vw;
     }
.label {
	border: 1px solid white;
 	background-color: black;
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px;
	position: relative;
	height: 26px;
	width: 50px;
	transform: scale(1.5);
}

.label .ball {
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
	height: 20px;
	width: 20px;
	transform: translateX(0px);
	transition: transform 0.2s linear;
}

.checkbox:checked + .label .ball {
	transform: translateX(24px);
}


.fa-moon {
	background: -webkit-linear-gradient(#eee, #333);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;}

.fa-rainbow {
	background: -webkit-linear-gradient(#eee, #333);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* version bilingue  */
 
#ru {
	display: none;
  }
  
  .button_lang {
 	font-size: 15px;
 	cursor: pointer;
 	 /* color: #585c68; */
	  color: #C0C0C0;
  	-webkit-transition: background-color .3s ease-in-out;
	-moz-transition: background-color .3s ease-in-out;
	-o-transition: background-color .3s ease-in-out;
	-ms-transition: background-color .3s ease-in-out;
	transition: background-color .3s ease-in-out;
  }
  .button_lang:hover, .current_lang {
 	color: white;
	-webkit-transition: background-color .3s ease-in-out;
	-moz-transition: background-color .3s ease-in-out;
	-o-transition: background-color .3s ease-in-out;
	-ms-transition: background-color .3s ease-in-out;
	transition: background-color .3s ease-in-out;
  }
 .button_lang a {
	font-family: 'Supreme', sans-serif;
	font-size: 150px;
 	display: inline; 
  }
 
  
  

/************* lien effet *************/
a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}

/************* frame *************/
.frame {
	padding: 3rem 5vw;
	text-align: center;
	position: relative;
	z-index: 1000;
	line-height: 1;
}

.frame2 {
	padding: 3rem 5vw;
	text-align: center;
	position: relative;
	z-index: 1000;
	line-height: 1;
}

.frame__title {
	font-size: 2rem;
	margin: 0 0 1rem;
	font-weight: 700;
}

.frame__links {
	font-size: 2rem;
	display: inline;
}

.frame__links a:not(:last-child),
.frame__demos a:not(:last-child) {
	margin-right: 1rem;
}

.frame__demos {
	margin: 1rem 0;
}

.frame__demo--current,
.frame__demo--current:hover {
	color: var(--color-text);
}


.frame2 .contact {
	font-size: 1.8rem;
	color: #fff;
	font-weight: 500;
}
.frame2 i {
	float: right;
}
 
.frame2 .contact span {
 	/* color: #585c68; */
	color: #C0C0C0;
}

/************* menu **************/

.menu {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 10vh 0 25vh;
	--marquee-width: 100vw;
	--offset: 20vw;
	--move-initial: calc(-0% + var(--offset));
	--move-final: calc(-100% + var(--offset));
	--item-font-size: 9vw;
	/* counter-reset: menu; */
}

.menu__item {
	cursor: crosshair;
	position: relative;
	padding: 0 5vw;
}

.menu__item-link {
	display: inline-block;
	cursor: pointer;
	position: relative;
	-webkit-text-stroke: 1.5px #FFF;
	text-stroke: 1.5px #FFF;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
	transition: opacity 0.4s;
}

.menu__item-link::before {
	all: initial;
	font-family: 'Supreme', sans-serif;
 	position: absolute;
	bottom: 60%;
	left: 0;
	pointer-events: none;
}

.menu__item-link:hover {
	cursor: crosshair;
	transition-duration: 0.1s;
	opacity: 0;
}

 

.menu__item-img {
	z-index: 1;
	pointer-events: none;
	position: absolute;
	/* height: 50vh;
	max-height: 400px; */
 	height: 250px;
   	opacity: 0;
	left: 100%;
	top: 50%;
	transform: translate3d(calc(-100% - 6vw),-30%,0) translate3d(0,90px,0); 
	box-shadow:
  0 9.4px 100.6px rgba(247, 247, 247, 0.425),
  0 11px 101px rgba(255, 255, 255, 0.85);
}


.menu__item-link:hover + .menu__item-img {
	opacity: 1;
	transform: translate3d(calc(-100% - 6vw),-40%,0); 
	transition: all 0.4s;
}


.marquee {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--marquee-width);
	overflow: hidden;
	pointer-events: none;
 }

.marquee__inner {
	width: fit-content;
	display: flex;
	position: relative;
	transform: translate3d(var(--move-initial), 0, 0);
	animation: marquee 20s linear infinite;
	animation-play-state: paused;
	opacity: 0;
	transition: opacity 0.1s;
}

.menu__item-link:hover ~ .marquee .marquee__inner {
	animation-play-state: running;
	opacity: 1;
	transition-duration: 0.4s;
}

.marquee span {
	text-align: center;
}

.menu__item-link,
.marquee span {
	white-space: nowrap;
	font-size: var(--item-font-size);
	padding: 0 1vw;
	font-weight: 900;
	line-height: 1.15;
}

.marquee span {
	font-style: italic;
}




/*************** keyframes marquee ***************/
@keyframes marquee {
	0% {
		transform: translate3d(var(--move-initial), 0, 0);
	}

	100% {
		transform: translate3d(var(--move-final), 0, 0);
	}
}


/******************* about / va avec la page about supprimee *******************/
/* 
.main:hover .item {
	opacity: 0.3;
  }
 
.main:hover .middle {
	opacity: 1;
  }

.middle {
	z-index: 1;
	transition: .5s ease;
	opacity: 0;
	margin: auto;
  }

.text {
	background-color: #000;
	color: #fff;
	font-size: 40px;
	padding: 60px;
	font-family: 'Supreme', sans-serif;
	box-shadow:
	0 9.4px 100.6px rgba(247, 247, 247, 0.425),
	0 11px 101px rgba(255, 255, 255, 0.85)
  }

.main {
	width: 50%; 
	margin: auto;
	display: grid;
}

.main > * {
	grid-column: 1;
	grid-row: 1;
	}

.profilPic {
 	margin: auto;
	width: 250px;
 	}

.item {
	padding: 200px;	 
	width: 120px;  
	margin: auto;
	animation: spinAround 15s linear infinite;
}

.main > * > img {
	  padding: 10px;   
	 
	width: 120px;
	animation: rotate 5s linear infinite;
}
 
.marquee__inner2{
	padding: 0 1vw;
	cursor:auto;
} */

/******* keyframe rotate ******/

/* @keyframes rotate {
  from {
	transform: rotate(0deg);
  }
  to {
	transform: rotate(360deg);
  }
}

@keyframes spinAround {
  from {
	transform: rotate(0deg) translate(140px) scale(.7);
  }
  to {
	transform: rotate(360deg) translate(140px) scale(.7);
  }
} */

/*********** about fin  ***********/

/*********** about section  ***********/

.marquee__inner2 span {
	cursor:text;
	text-align: justify;
  	font-size: 50px;
 	/* line-height: 1.9; */
	 font-weight: 300;
	}

/******* media screen *******/

@media screen and (min-width:53em) {

.frame {
	text-align: left;
	display: grid;
	align-content: space-between;
	width: 100%;
	padding: 2.5rem 6vw;
	pointer-events: none;
	grid-template-columns: 70% 25%;
	grid-template-rows: auto;	
} 			

.frame2 {
 	text-align: left;
	display: grid;
	align-content: space-between;
	width: 100%;
	/* padding: 2.5rem 6vw; */
	padding: 15rem 6vw 0rem 6vw; 
	pointer-events: none;
	grid-template-columns: 70% 25%;
	grid-template-rows: auto;	
} 
.frame__title-wrap {
	display: flex;
	align-items: start;	 
}	
	 
.frame__info {
	font-weight: 100;
	font-size: 2rem; 
	margin: 0;	
}	

.frame__title {
	color:#fff;
	margin: 0 1rem 0 0;	
}	

.frame__links {
	padding: 0;
	justify-self: end;	
	display: flex
}	

 
.frame a {
	pointer-events: auto;	
}	
.frame2 a {
	pointer-events: auto;	
}	

 
}

/************* media screen responsive *************/

@media screen and (max-width:1000px) {
	.marquee__inner2  span {
		line-height: none;
		text-align: left;

   }
}
/************* media screen responsive *************/
@media screen and (max-width:500px) {



.menu__item-link,
.marquee span {
 	font-size: 40px;
 	/* line-height: 1.15; */
}

 
.marquee__inner2  span {
 	font-size: 25px;
	 text-align: left;
 	line-height: none;
}

 

.menu__item-img {
	height: 30vh;
	left: 90%;
	top: 50%; 
}
.menu__item-link,
.marquee span {
	line-height: 2;
}
.menu {
	--item-font-size: 6.5vw;
	padding: 10vh 0 15vh;
}		

.profilPic {
 	width: 150px;
}
	   
.text {
	font-size: 25px;
	padding: 30px;
}
.item{
	padding: 0px;	 
	width: 50px;  
}
.frame i {
	float: none;
}
.main {
	width: 80%; 
}
@media screen and (max-width:400px) {
.menu__item-img {
	height: 30vh;
	left: 100%;
	top: 50%; 			
}			 
			
.profilPic {
	width: 60px;
}
		   
.text {
	font-size: 20px;
	padding: 20px;
}
.item{
	padding: 0px;	 
	width: 10px;  
}
.main > * > img {
	padding: 0px;   
	width: 50px;
}

}
 