/***************************************************************/
/*                      Main sections CSS                      */
/***************************************************************/
#main {
	position: fixed;
	background-color: #000;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: #fff;
}

#preloader-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fade-in {
	animation: fade-in 0.5s;
}

#content {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	z-index: -1;
	opacity: 1;
}

#content,
header,
footer {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	transition-property: all;

	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	transition-duration: 1s;

	-webkit-transition-timing-function: cubic-bezier(0, 0, 0, 1);
	-moz-transition-timing-function: cubic-bezier(0, 0, 0, 1);
	transition-timing-function: cubic-bezier(0, 0, 0, 1);
}

/***************************************************************/
/*                      Main sections CSS                      */
/***************************************************************/
/*
#main,
#preloader,
#preloader-video,
#content,
header {
  position: fixed;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  z-index: -1;
}

#preloader {
  z-index: 9999;
  background-color: #fff;
}

.fade-in {
  animation: fade-in 0.5s;
}

#content {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 1;
}
*/
/**************************************************/
/*                     HEADER                     */
/**************************************************/
header {
	width: 100vw;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin: 0;
	padding: 0;
	top: 0;
	overflow: hidden;
	z-index: 0;
}

/***************** Video *****************/
video {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	margin: 0;
	top: 0;
	left: 0;
	z-index: -1;
}

/*
header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 0;
}

/***************** Video *****************/
/*
video {
  position: absolute;
  object-fit: cover;
  margin: 0;
  top: 0;
  left: 0;
  z-index: -1;
}
*/
/**************** Nav bar ****************/
#nav-bar {
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 10%;
	min-height: 60px;
	top: 0;
	right: 0;
	left: 0;
	padding: 0 3%;
	transition: 1s ease;
	z-index: -1;
}

#nav-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: clamp(250px, 20vw, 300px);
}

#right-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: auto;
}

.nav {
	display: inline-block;
	width: auto;
	font-size: max(2.8vh, 25px);
	font-family: "Bebas Neue", sans-serif;
	color: #999999;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	font-weight: 500;
	transition: 0.4s ease;
	user-select: none;
}

.nav.active,
.nav:hover {
	color: #ffffff;
}

.nav-logo {
	position: relative;
	width: 300px;
	top: 0;
	left: 0;
	font-family: "Over There";
	font-size: max(1.5vh, 15px);
	transition: 0.4s ease;
	cursor: pointer;
}

#burger {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 7vw;
	height: 3vh;
	cursor: pointer;
}

#burger div {
	width: 100%;
	height: 0.3vh;
	background-color: #ddd;
	border-radius: 10px;
	transition: all 0.3s linear;
}

/*********** Language Selector ***********/
#language-selector {
	position: relative;
	width: max(3vh, 30px);
	height: max(3vh, 30px);
	background: transparent;
	border-radius: 10px;
	box-shadow: 0px 3px 6px rgba(79, 104, 113, 0.2);
	overflow: hidden;
	z-index: 99;
	transition: transform 0.2s ease-in-out, height 0.2s ease-in-out, border-radius 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	will-change: auto;
	margin-left: clamp(25px, 2vw, 30px);
}

#language-selector:hover {
	height: 60px;
	/* Can't use height: auto & transition effect */
	border-radius: 15px;
	box-shadow: 0px 7px 10px rgba(79, 104, 113, 0.3);
}

#language-selector ul {
	list-style-type: none;
	position: relative;
}

#language-selector ul li {
	height: max-content;
	width: max-content;
	margin: 3px auto;
	opacity: 1;
	transition: opacity 0.2s ease-in-out;
}

#language-selector ul li:first-child img {
	cursor: default;
}

#language-selector ul li img {
	width: max(2vh, 20px);
	height: max(2vh, 20px);
	display: block;
	margin-bottom: 6px;
	border-radius: 30%;
	border: 2px solid #FFFFFF;
	box-shadow: 0px 0px 6px rgba(79, 104, 113, 0.3);
	cursor: pointer;
	transition: all 0.1s ease-in-out;
}

#language-selector ul li img:hover {
	box-shadow: 0px 5px 10px rgba(79, 104, 113, 0.3);
	transform: scale(1.08);
}

/***************** Titles ****************/
#title-container {
	width: 100vw;
	position: relative;
	top: 0;
	left: 0;
	z-index: 0;
}

#title {
	width: 100vw;
	height: auto;
	font-family: "Over There", sans-serif;
	font-size: 50px;
	font-weight: 100;
	line-height: 85px;
	letter-spacing: 0.3vw;
	text-align: center;
	color: #efefef;
	margin: 60px 0;
	z-index: 0;
	user-select: none;
	cursor: default;
}

#subtitle {
	width: 100vw;
	height: auto;
	left: 0;
	user-select: none;
	cursor: default;
}

#subtitle.span {
	font-size: 4vh;
	font-weight: 300;
	letter-spacing: 0.3vw;
	line-height: 5vh;
	text-align: center;
	color: #efefef;
	margin: 0;
	z-index: 0;
}

.loader span {
	color: #efefef;
	text-shadow: 0 0 0 #efefef;
	-webkit-animation: loading 1s ease-in-out infinite alternate;
	animation: loading 1s ease-in-out infinite alternate;
}

#down-arrow {
	position: absolute;
	bottom: 20px;
	cursor: pointer;
}

.gradient-icon {
	position: relative;
	font-size: 3vh;
	/* Adjust as needed */
	animation: fade 10s ease-in-out infinite;
}

.gradient-icon::after {
	content: "\f103";
	/* Unicode for fa-angle-double-down */
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	background: linear-gradient(to right, #871a57, #fff);
	/* Adjust as needed */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}



/* Media query for portrait mode */
@media (orientation: portrait) {
	#nav-bar {
		left: 0;
		padding: 0 6%;
	}

	#nav-links {
		display: none;
		width: 60vw;
	}

	#right-items {
		width: 100%;
	}

	.nav-logo {
		display: none;
	}

	#burger {
		display: flex;
	}

	#language-selector {
		width: max(3vh, 50px);
		height: max(3vh, 50px);
		margin: 0;
	}

	#language-selector:hover {
		height: max(6vh, 90px);
	}

	#language-selector ul li img {
		width: max(2.5vh, 30px);
		height: max(2.5vh, 30px);
	}

}

/**************************************************/
/*                  SLIDER HEADER                 */
/**************************************************/
#slider-header {
	position: absolute;
	z-index: 0;
}

#slider-header h1,
#slider-subtitle h2 {
	position: relative;
	font-family: "Bebas Neue", sans-serif;
	opacity: 0;
	margin: 0;
	transition: all 0.15s ease;
	z-index: 0;
	user-select: none;
	cursor: default;
}

#slider-header h1 {
	font-size: max(4vh, 50px);
	line-height: max(4vh, 50px);
	letter-spacing: 0.1rem;
	font-weight: 300;
	color: #ffffff;
}

#slider-subtitle {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 5%;
	top: 0;
	background-color: white;
	transition: 1s ease;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
	z-index: 1;
}

#slider-subtitle h2 {
	font-size: max(3vh, 25px);
	font-weight: 100;
}

#slider-subtitle .slider-subtitle-button {
	position: absolute;
	font-size: 22px;
	line-height: 5%;
	cursor: pointer;
	user-select: none;
	opacity: 0;
	z-index: 10;
}

#slider-subtitle .return {
	left: 20px;
}

/* Styles pour le mode portrait avec une largeur d'écran supérieure à 1000px */
@media screen and (orientation: portrait) {
	#slider-header h1 {
		font-size: max(4vh, 50px);
		line-height: max(4vh, 50px);
	}

	#slider-subtitle h2 {
		font-size: max(2vh, 25px);
	}
}

/**************************************************/
/*                     SLIDER                     */
/**************************************************/
#slider {
	position: fixed;
	width: 100%;
	height: 85%;
	/*max-height: calc(100vh - 100px);*/
	top: 15%;
	z-index: -1;
	transition: transform 1s, height 1s;
}

/*
#slider h3 {
  font-size: 3.5vh;
  line-height: 4vh;
  letter-spacing: 1px;
  -webkit-text-stroke: 0.5px #000;
  color: white;
  margin: 0;
  margin-bottom: 2vh;
  user-select: none;
  cursor: default;
}*/

.slider-item {
	width: calc(100% - 100px);
	height: calc(100% - 10vh);
	position: absolute;
	text-align: center;
	padding: 5vh 50px;
	z-index: -1;
}


.normal,
.reverse {
	animation-duration: 10s;
	animation-name: animationgradienttitle;
	animation-iteration-count: infinite;
	animation-fill-mode: forwards;
}

.normal {
	background: -webkit-linear-gradient(left, #c48dac, #96cabe, #c48dac);
	background: linear-gradient(left, #c48dac, #96cabe, #c48dac);
	background-size: 1600px 200px;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.reverse {
	background: -webkit-linear-gradient(left, #96cabe, #c48dac, #96cabe);
	background: linear-gradient(left, #96cabe, #c48dac, #96cabe);
	background-size: 1600px 200px;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}


/*******************************/
/*            ABOUT            */
/*******************************/
#slide-about {
	transform: translateY(0);
	transition: transform 1s, height 1s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

#slide-about h3 {
	font-size: 3.5vh;
	line-height: 4vh;
	letter-spacing: 1px;
	-webkit-text-stroke: 0.5px #000;
	color: white;
	margin: 0;
	margin-bottom: 2vh;
	user-select: none;
	cursor: default;
}

.about-subSection {
	display: flex;
	align-items: center;
	margin: 0;
	/*margin-top: 6vh;*/
	height: 35vh;
}

.about-subSection>div {
	margin: 0 2vw;
}

#artist-subSection,
#journey-subSection {
	position: relative;
}

/************* Text ************/
.about-description {
	position: relative;
	width: 50vw;

	transition-duration: 300ms;
	transition-property: transform, box-shadow;
	transition-timing-function: ease-out;
	transform: rotate3d(0);
	overflow: hidden;
}

.about-text {
	text-align: center;
	color: #333;
	font-family: "Bebas Neue", sans-serif;
	font-variant: small-caps;
	line-height: clamp(18px, 3.5vh, 50px);
	font-size: clamp(20px, 3.8vh, 55px);
	font-style: normal;
	user-select: none;
	cursor: default;
}

.about-description:hover {
	transition-duration: 150ms;
}

/************* Card ************/
.about-card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;

	height: 100%;
	width: auto;
	margin: 0;
	padding: 0;
	box-shadow: 0 1px 5px #00000099;
	border-radius: 5px;
	border: 2px solid #000000;

	background-repeat: no-repeat;


	transition-duration: 300ms;
	transition-property: transform, box-shadow;
	transition-timing-function: ease-out;
	transform: rotate3d(0);
	overflow: hidden;
}

.about-card:hover {
	transition-duration: 150ms;
	box-shadow: 0 5px 20px 5px #00000044;
}

.about-card .glow {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;

	background-image: radial-gradient(circle at 100% -40%, #ffffff22, #0000000f);
}

.about-image {
	position: relative;
	object-fit: cover;
	height: 100%;
	width: 100%;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
	transform: scale(1.1) translate(0, 0);
	padding: 0;
	overflow: hidden;
}



/* Styles pour le mode portrait avec une largeur d'écran supérieure à 1000px */
@media screen and (orientation: portrait) {
	.about-description {
		width: 50vw;
	}

	#slide-about h3 {
		font-size: 2.5vh;
		line-height: 2.8vh;
	}

	.about-text {
		line-height: clamp(18px, 2.5vh, 50px);
		font-size: clamp(20px, 2.8vh, 55px);
	}

	.about-card {
		width: 35vw;
	}
}

/*******************************/
/*           MY WORK           */
/*******************************/
#slide-myWork {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	/* Centrer verticalement */
	justify-content: center;
	/* Centrer horizontalement */
	padding: auto;
	margin: 0;
	width: calc(100vw - 100px);
	transform: translateY(100%);
	transition: transform 1s, height 1s;
}

#slide-myWork .owl-stage {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	/* Centrer verticalement */
}

#categories-carousel {
	margin: 0 0;
	position: relative;
	display: flex;
	flex-direction: row;
	align-content: space-between;
	justify-content: space-between;
	width: 85vw;
}

.categories-image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
	transform: scale(1.1) translate(0, 0);
	padding: 0;
	overflow: hidden;
	cursor: pointer;
}

.categories-button {
	margin-bottom: 20px;
	padding: 0 40px;
	background-color: white;
	border: 0.5px solid #666666;
	border-radius: 5px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
	transition: 0.3s ease;

	font-size: 30px;
	line-height: 40px;
	font-family: "Bebas Neue", sans-serif;
	font-variant: small-caps;
	color: #666666;

	overflow: hidden;
	cursor: pointer;
}

.categories-button:hover {
	transform: scale(1.07);
}

/************* Item ************/
#slide-myWork .item {
	position: relative;
	display: inline-flex;
	align-items: flex-end;

	width: 26vw;
	height: calc(26vw * 16 / 9);
	max-height: 60vh;
	margin: 0;
	border-radius: 8px;
	border: 2px solid #000000;
	box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.1);
	background: #343434 no-repeat center center / cover;

	transition-property: transform, box-shadow, width, height;
	transition-timing-function: ease-out, ease-out, ease, ease;
	transition-duration: 300ms, 300ms, 0.5s, 0.5s;

	cursor: pointer;
	overflow: hidden;
}

#slide-myWork .item.active {
	-webkit-box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.1);
}

#slide-myWork .item.after {
	content: "";
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

/********* Description *********/
#slide-myWork .item-desc {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: min-content;
	width: 100%;
	font-size: 22px;
	bottom: 0;
	padding: 0;
	margin: 0;
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
	z-index: 1;
	transform: translateY(160px);
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

#slide-myWork .item.active .item-desc {
	transform: translateY(0);

}

#slide-myWork h3 {
	font-size: 3.5vh;
	line-height: 3.5vh;
	margin: 20px 0;
	bottom: 0;
}

#slide-myWork .item-desc div {
	width: 40vw;
	height: 75px;
	margin: auto;
	overflow: hidden;
	transition: all 0.4s ease 0s;
	transform: translateY(80px);
	text-align: center;
	margin-bottom: 20px;
	opacity: 0;
}

#slide-myWork .item.active .item-desc div {
	transition: all 0.2s ease 0.2s;
	transform: translateY(0);
	opacity: 1;
}

/* Styles pour le mode portrait avec une largeur d'écran supérieure à 1000px */
@media screen and (orientation: portrait) {
	#categories-carousel {
		display: flex;
		flex-direction: column;
		width: auto;
		height: 100%;
	}

	#slide-myWork .item {
		width: 80vw;
		height: 22vh;
	}

	#slide-myWork .item-desc div {
		width: 60vw;
		height: 75px;
		margin-bottom: 20px;
		opacity: 0;
	}
}


/*******************************/
/*          PROJECTS           */
/*******************************/
#slide-project {
	transform: translateY(100%);
	transition: transform 1s, height 1s;
	animation-name: content;
	animation-direction: normal;
	animation-duration: 0.3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
    display: flex;
    align-items: center;
}

#slide-project .item {
	height: 55vh;
	width: 100%;
	display: -webkit-flex;
	display: inline-flex;
	align-items: flex-end;
	border: 2px solid #000000;
	box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.1);
	background: #343434 no-repeat center center / cover;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
	transition: opacity 1s ease-in-out;
}

#slide-project .item.active {
	-webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
	box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}

#slide-project .item:after {
	content: "";
	display: block;
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	margin: auto;
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

#slide-project .item-desc {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: min-content;
	width: 100%;
	font-size: 20px;
	bottom: 0;
	padding: 0;
	margin: 0;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	z-index: 1;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

#slide-project h3 {
	color: #fff;
	width: 80%;
	font-size: 3.2vh;
	line-height: 3.2vh;
	margin: 20px 0;
	bottom: 0;
}

#slide-project .item.active .item-desc {
	-webkit-transform: none;
	transform: none;
}

#projects-carousel,
#new-carousel {
	margin: auto 0;
	width: 100%;
}

#projects-carousel .splide__pagination {
    bottom: -4vh;
}

#projects-carousel .splide__pagination__page {
    background: #aaa;
    height: 12px;
    margin: 4px;
    opacity: .7;
    width: 12px;
}

#projects-carousel .splide__pagination__page.is-active {
    background: #666;
    transform: scale(1.2);
}

#projects-carousel .splide__arrow {
    height: 60vh;
    width: 8vw;
    border-radius: 16px;
    opacity: 0.3;
}

#projects-carousel .splide__arrow:hover {
    opacity: 0.5;
}

#projects-carousel .splide__arrow--prev {
	left: 0;
}
#projects-carousel .splide__arrow--next {
	right: 0;
}

.splide__arrow svg {
    fill: #000;
    height: 2em;
    width: 2em;
}

@media (orientation: portrait) {
	#projects-carousel .splide__arrow {
		display: none;
	}
}
#down-icon,
#up-icon {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 4em;
	animation: fade 10s ease-in-out infinite;
}

#up-icon {
	top: 10px;
}

#down-icon {
	bottom: 10px;
}

#projectInfoContainer {
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	background-color: #f0f0f0;
	border: 1px solid #000;
	overflow: auto;
	z-index: 209;
}

#projectInfoContainer .projectName {
	width: 100%;
	/* Adjust as needed */
	height: auto;
	/* Adjust as needed */
}


#projectInfoContainer .projectVideo {
	position: relative;
	top: 0;
	left: 0;
	width: 78%;
	/* Adjust as needed */
}

#projectInfoContainer .projectDescription {
	position: relative;
	max-width: 80%;
	color: #333;
	/* Adjust as needed */
	margin: 50px auto;

	font-variant: small-caps;
	line-height: 32px;
	font-size: 35px;
	font-style: normal;
}

#gallery-carousel {
	margin: 0 auto;
}

/*
#projectInfoContainer .imageGallery img {
  width: calc((100% / 3) - 10px);
  margin-bottom: 10px;
}
 */

 

#gallery-carousel .splide__slide {
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center;
}

/*
#projectInfoContainer .owl-carousel
{
  display: inline-flex;
}
*/
/* fix blank or flashing items on carousel */
#projectInfoContainer .owl-carousel .item {
	position: relative;
	height: auto;
	margin: 0 10px;
	z-index: 100;
	-webkit-backface-visibility: hidden;
}

/* end fix */
#projectInfoContainer .owl-nav>div {
	margin-top: -26px;
	position: absolute;
	top: 50%;
	color: #cdcbcd;
}

#projectInfoContainer .owl-nav i {
	font-size: 52px;
}

#projectInfoContainer .owl-nav .owl-prev {
	left: -30px;
}

#projectInfoContainer .owl-nav .owl-next {
	right: -30px;
}

#projectInfoContainer .close-button {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 20px;
	right: 1%;
	cursor: pointer;
}

/*******************************/
/*           CONTACT           */
/*******************************/
#slide-contact {
	transform: translateY(100%);
	transition: transform 1s, height 1s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

#slide-contact h3 {
	margin: 0 0;
	line-height: clamp(40px, 4.2vh, 70px);
	font-size: clamp(45px, 4.5vh, 75px);
	font-variant: small-caps;
	user-select: none;
	cursor: default;
}

.social-container {
	display: inline-flex;
	justify-content: space-between;
	list-style: none;
	width: 50vw;
	transition: none;
}

.social-container .icon {
	position: relative;
	background: #ffffff;
	border-radius: 50%;
	padding: 2vh;
	margin: 1.5vh;
	width: 8vh;
	height: 8vh;
	line-height: 0vh;
	font-size: 5vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	user-select: none;
}

.social-container .facebook:hover,
.social-container .facebook:hover .tooltip,
.social-container .facebook:hover .tooltip::before {
	background: #1877F2;
	color: #ffffff;
}

.social-container .instagram:hover,
.social-container .instagram:hover .tooltip,
.social-container .instagram:hover .tooltip::before {
	background: #E4405F;
	color: #ffffff;
}

.social-container .youtube:hover,
.social-container .youtube:hover .tooltip,
.social-container .youtube:hover .tooltip::before {
	background: #CD201F;
	color: #ffffff;
}

.social-container .soundcloud:hover,
.social-container .soundcloud:hover .tooltip,
.social-container .soundcloud:hover .tooltip::before {
	background: #ff8800;
	color: #ffffff;
}


.social-container .envelope:hover,
.social-container .envelope:hover .tooltip,
.social-container .envelope:hover .tooltip::before {
	background: #1DA1F2;
	color: #ffffff;
}


/* Styles pour le mode portrait avec une largeur d'écran supérieure à 1000px */
@media screen and (orientation: portrait) {
	.social-container {
		width: 90vw;
	}

	.social-container .icon {
		padding: 1vh;
		margin: 0.5vh;
		width: 6vh;
		height: 6vh;
		line-height: 0vh;
		font-size: 4vh;
	}
}

/**************************************************/
/*                     FOOTER                     */
/**************************************************/
footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	width: calc(100% - 5vw);
	height: 8%;
	bottom: -8%;
	background-color: #000;
	color: #ffffff;
	font-size: 1.5vh;
	z-index: 99;
	padding: 0 2.5vw;
	object-fit: scale-down;
	box-shadow: 0 -14px 28px rgba(0, 0, 0, 0.25);
}

.footer-links {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.footer-links a {
	font-family: "Over There";
	font-size: 1.3vh;
	line-height: 3vh;
}

.footer-links span {
	font-size: 1vh;
}

footer .pointer {
	cursor: pointer;
	font-size: 1.5vh;
}

/* Styles pour le mode portrait avec une largeur d'écran supérieure à 1000px */
@media screen and (orientation: portrait) {
	.social-container {
		width: 90vw;
	}

	.social-container .icon {
		padding: 1vh;
		margin: 0.5vh;
		width: 6vh;
		height: 6vh;
		line-height: 0vh;
		font-size: 4vh;
	}
}

.go-top {
	position: fixed;
	bottom: 2em;
	right: 2em;
	text-decoration: none;
	color: white;
	background-color: rgba(0, 0, 0, 0.3);
	font-size: 12px;
	padding: 1em;
	display: none;
}

.go-top:hover {
	background-color: rgba(0, 0, 0, 0.6);
}