@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	text-transform: none;
}
/* Personnalisation des numéros de téléphone détectés automatiquement sur mobile */
a[href^="tel"] {
	color: white; /* Changez la couleur en blanc ou la couleur de votre choix */
	text-decoration: none; /* Supprimez toute décoration de lien (comme le soulignement) */
}
body {
	background-color: black;
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	visibility: hidden;
}

@font-face {
    font-family: 'Gabarito';
    src: url("polices/Woff2/Gabarito-ExtraBold.woff2")format('woff2');
	font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url("polices/Woff2/quicksand-variablefont_wght-webfont.woff2") format('woff2');
	font-display: swap;
}

        .loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: black;
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: visible;
            transition: opacity 0.5s ease;
        }

        .loader {
            border: 8px solid #f3f3f3;
            border-top: 8px solid #15695A;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }

        .page-loaded .loader-container {
            opacity: 0;
            visibility: hidden;
        }

        /* Ajoutez d'autres styles selon vos besoins */

        /* Classe pour afficher les éléments une fois chargés */
        .page-loaded {
            visibility: visible;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

/* Menu deroulant */
.menuderoulant {
	background-color: black;
	position: fixed;
	width: 100vw;
	height: 100vh;
	left: -110%;
	z-index: 500;
}
.menuouvert {
	left: 0%;
}
.logo-framecastle {
	width: 82px;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 11;
	cursor: pointer;
	transition: 0.5s;
	margin: 15px;
}

#language-selector {
  position: fixed;
  font-family: 'Gabarito', cursive;
  right: 0;
  z-index: 9;
  margin-top: 19px;
  margin-right: 140px;
  cursor: pointer;
  transition: 0.5s;
  background-color: transparent;
  color: white;
  border: 0px;
  font-size: 2em;

}

option:nth-child(1){
	background-color: black;
	
}

option:nth-child(2){
	background-color: black;
	
}

option:nth-child(3){
	background-color: black;
	
}

.logo-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 75px;
	z-index: 9;
	margin: 20px;
	cursor: pointer;
	transition: 0.5s;
}
.logo-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	z-index: 9;
	margin: 28px 43px;
	cursor: pointer;
}
.nav-links {
	position: fixed;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: space-between;
	background-image: url("images/menu/background-menu/00-background.png");
	z-index: 10;
	transition: 1s;
}
/* Menu1 */
.list-menu {
	margin-bottom: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	font-size: 5em;
	font-weight: 500;
	margin-left: 200px;
	z-index: 501;
}
.menu-ligne {
	position: relative;
	text-transform: uppercase;
	color: #878787;
	font-family: 'Gabarito', cursive;
}
.expertise-menu {
	display: flex;
}
.sous-expertise-menu {
	margin-left: 10px;
	display: none;
	opacity: 0;
	flex-direction: column;
	justify-content: center;
	font-size: 0.25em;
	transition: opacity 1s ease;
}
.menu-ligne:after {
	content: "";
	position: absolute;
	background-color: #15695A;
	height: 3px;
	width: 0%;
	left: 0;
	bottom: 0;
	transition: 0.3s;
}
.menu-ligne:hover:after {
	width: 100%;
}
.menu-ligne:hover {
	color: white;
}
/* Menu2 */
.list-menu2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	font-size: 2vw;
	font-weight: 500;
	margin-right: 200px;
	z-index: 501;
}
.menu-ligne2 {
	position: relative;
	text-transform: uppercase;
	font-family: 'Gabarito', cursive;
	color: #878787;
}
.menu-ligne2:after {
	content: "";
	position: absolute;
	background-color: #15695A;
	height: 3px;
	width: 0%;
	left: 0;
	bottom: 0;
	transition: 0.3s;
}
.menu-ligne2:hover:after {
	width: 100%;
}
.menu-ligne2:hover {
	color: white;
	font-size: 1.3em;
}
/* Menu-follow us */
.follow-container {
	position: absolute;
	width: 100vw;
	bottom: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-top: 2px solid #878787;
	z-index: 501;
	margin-bottom: 50px
}
.titre-follow {
	color: white;
	margin: 10px auto;
	opacity: 50%;
	font-family: 'Quicksand', sans-serif;
	font-weight: 100;
	font-size: 2em
}
.logo-facebook {
	cursor: pointer;
	opacity: 50%;
	width: 40px;
	margin: auto 10px
}
.logo-instagram {
	cursor: pointer;
	opacity: 50%;
	width: 40px;
	margin: auto 10px
}
.logo-linkdin {
	cursor: pointer;
	opacity: 50%;
	width: 40px;
	margin: auto 10px
}
.logo-facebook:hover {
	opacity: 100%;
}
.logo-instagram:hover {
	opacity: 100%;
}
.logo-linkdin:hover {
	opacity: 100%;
}
.graph-image {
	position: fixed;
	opacity: 0%;
	transition: opacity 2s ease;
	left: -210%;
}
.web-image {
	position: fixed;
	opacity: 0%;
	transition: opacity 2s ease;
	left: -210%;
}
.community-image {
	position: fixed;
	opacity: 0%;
	transition: opacity 2s ease;
	left: -210%;
}
.film-image {
	position: fixed;
	opacity: 0%;
	transition: opacity 2s ease;
	left: -210%;
}

@media (max-width: 1400px) {
	.list-menu2 {
		display: none;
	}
	.menu-image {
		display: none;
	}
}
@media (max-width: 1130px) {
	.list-menu {
		margin-left: 0%;
		display: flex;
		align-items: center;
		font-size: 10vw;
		top: -50px;
	}
	.nav-links {
		justify-content: center;
	}
	.menu-image {
		display: none;
	}
}
@media (max-width: 450px) {

	.expertise-menu {
		flex-direction: column;
		text-align: center;
	}
	.sous-expertise-menu li {
		font-size: 1.8em;
		margin: 5px 0px
	}
	.list-menu {
		margin-bottom: 170px
	}
}

@media (min-width: 772px) and (max-width: 1130px) {
  .follow-container {
    height: 50px;
    margin: 0;
  }
  .titre-follow {
    margin-top: 40px;
  }
}

@media (max-height: 800px) and (min-width: 600px) {
	.follow-container {
		height: 40px;
		margin: 0px;
	}
	.titre-follow {
		margin-top: 40px;
	}
	.list-menu {
		font-size: 10vh;
	}
}


/* Contenu de la page */
/* Personnalisation de la barre de défilement */ ::-webkit-scrollbar {
	width: 10px; /* Largeur de la barre de défilement */
}
::-webkit-scrollbar-track {
	background-color: #000000; /* Couleur de l'arrière-plan de la piste de défilement */
}
::-webkit-scrollbar-thumb {
	background-color: #888; /* Couleur de la poignée de défilement */
	border-radius: 10px; /* Arrondi de la poignée de défilement */
}
::-webkit-scrollbar-thumb:hover {
	background-color: #555; /* Couleur de la poignée de défilement au survol */
}

/* Partie 2 */
.title-container {
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 2vh;
}
.title-border {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	margin-top: 10px
}
.title {
	color: white;
	font-family: 'Gabarito', cursive;
	text-align: center;
	font-size: 3.5vw;
	font-weight: 200;
	text-transform: uppercase;
	margin-top: 20px;
}
.subtitle-container {
	display: flex;
	justify-content: center;
}
.subtitle {
	color: white;
	font-family: 'Quicksand', sans-serif;
	text-align: center;
	margin: 0px 20px;
	font-size: 1.3vw;
	font-weight: 300;
	text-transform: uppercase;
	cursor: pointer;
}


.subtitle:hover {
background-color: rgba(66,66,66,1.00)
}



/* PORTFOLIO */
.portfolio {
	margin: 50px 0px 0px 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.thumbnail {
	flex: 0 0 calc(25% - 0px); /* 25% width with 10px margin on each side */
	margin: 0px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	transition: 2s ease;
	cursor: pointer;
	overflow-y: hidden;
}
.thumbnail img {
	width: 100%;
	height: 100%;
	position: relative;
	display: inline-block;
}

@media (min-width: 1200px){
	.thumbnail {
	  filter: grayscale(100%);
	  transition: filter 0.3s ease-in-out;
	}

	/* Au survol, affiche en couleur */
	.thumbnail:hover {
	  filter: grayscale(0%);
	}
}

.project-title {
	color: white;
	font-family: 'Gabarito', cursive;
	font-size: 1em;
	text-transform: uppercase;
}
.project-subtitle {
	color: white;
	font-size: 1.5em;
	font-weight: 100;
	font-family: 'Quicksand', sans-serif;
	text-transform: uppercase;
	text-align: center;
}
.project-title-container {
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2
}
@media (max-width: 1200px) {
	.thumbnail {
		flex: 0 0 calc(33% - 0px); /* 25% width with 10px margin on each side */
	}
	.project-subtitle {
		font-size: 2.5vw
	}
	.project-title {
		font-size: 1.3vw
	}
	.slide h2 {
		font-size: 3vw;
		margin-top: -5px
	}
	.slide p {
		font-size: 1.9vw;
	}
	.video-player {
		width: 90%;
	}
	.subtitle {
		font-size: 1.3em
	}
}
@media (max-width: 1000px) {
	.thumbnail {
		flex: 0 0 calc(50% - 0px); /* 25% width with 10px margin on each side */
	}
	.slide h2 {
		font-size: 5vw;
		margin-top: -5px
	}
	.slide p {
		font-size: 2.5vw;
	}
	.video-player {
		width: 90%;
	}
}
@media (max-width: 700px) {
	.portfolio {
		flex-direction: column;
	}
	.project-subtitle {
		font-size: 5vw
	}
	.project-title {
		font-size: 2.5vw
	}
	.slide h2 {
		font-size: 7vw;
		margin-top: -5px;
		margin-bottom: 15px
	}
	.slide p {
		font-size: 4.8vw;
	}
	.vimeo-viewer{
		width: 90%;
	}
	.subtitle-container {
		flex-direction: column;
	}
	.subtitle {
		margin: 5px 0px;
	}
	.title {
		font-size: 2em;
	}
}
@media (max-width: 600px) {
	.slideshow-container {
		display: none
	}
}
.viewer-container {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 800;
	left: 110%;
}
/* Footer */
footer {
	text-transform: uppercase;
	color: white;
}
.footer {
	display: grid;
	grid-template-columns: 40% 25% 25% 10%;
	align-items: center;
	justify-items: center;
	height: 200px;
	background-color: black;
	position: relative;

}
.footer h2 {
	font-size: 1.2em;
	font-family: 'Quicksand', sans-serif;
	font-weight: 800;
	text-transform: uppercase
}
.footer h3 {
	font-family: 'Quicksand', sans-serif;
	font-size: 0.8em;
	font-weight: 100;
	text-transform: uppercase
}
.footer01 h3 {
	max-width: 300px;
}
.copyright-container {
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: -200px
}
.copyright {
	font-family: 'Quicksand', sans-serif;
	font-size: 0.6em;
	font-weight: 100;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.logo-footer {
	width: 45px;
}
.footer03 img {
	width: 20px;
	margin: 5px;
}
.logo-reseaux {
	display: flex;
	justify-content: center;
}
@media (max-width: 900px) {
	.footer {
		height: 300px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.footer01 {
		display: flex;
		margin-bottom: 30px;
		flex-direction: column;
		align-items: center;
	}
	.footer01 h3 {
		display: none;
	}
	.logo-footer {
		margin-right: 10px;
	}
	.footer02 {
		text-align: center;
		margin-bottom: 30px
	}
}

@media (max-width: 600px) {

	#language-selector{
		margin-right: 100px;
	}

}