@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: 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) */
}

a {
    text-decoration: none; /* Supprime le soulignement par défaut */
	color: white;
}

body {
	background-color: black;
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
	overflow-x: 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;
}

/* 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;
	opacity: 100%
}

#language-selector {
  position: fixed;
  font-family: 'Gabarito', cursive;
  font-weight: 700;
  right: 0;
  z-index: 9;
  margin-top: 39px;
  margin-right: 140px;
  cursor: pointer;
  transition: 0.5s;
  background-color: transparent;
  color: white;
  border: 0px;
  font-size: 2em;

}

#language-selector:valid {
	border: 0px;
}



option:nth-child(1){
	background-color: black;
	
}

option:nth-child(2){
	background-color: black;
	
}

option:nth-child(3){
	background-color: black;
	
}

option:nth-child(1):hover{
	background-color: #15695A;
	
}

option:nth-child(2):hover{
	background-color: #15695A;
	
}

option:nth-child(3):hover{
	background-color: #15695A;
	
}
.logo-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 75px;
	z-index: 9;
	margin: 20px;
	cursor: pointer;
	transition: 0.5s;
	opacity: 100%;
}
.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;
	font-family: 'Gabarito', cursive;
	font-weight: 700;
	color: #878787;
}
.expertise-menu {
	display: flex;
}
.sous-expertise-menu {
	margin-left: 10px;
	opacity: 0;
	display: none;
	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;
	font-weight: 700;
}
.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 */
}

.framecontainer{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	z-index: 100;
	display: flex;
	flex-direction: column;
	justify-content: center
}


.framecontainer H2{
	text-transform: uppercase;
}


.text1{
	position: relative;
	font-size: 40px;
	font-weight: 700;
	font-family: 'Gabarito', cursive;
	animation: fadeInOut 4s linear;
	color: white;
	opacity: 0;
	transition: opacity 2s ease;
	
}

.text2{
	position: relative;
	font-size: 20px;
	font-weight: 100;
	font-family: 'Quicksand', sans-serif;
	animation: fadeInOut 4s linear;
	color: white;
	opacity: 0;
	transition: opacity 2s ease;
	
}



        @keyframes fadeInOut {
            0% {
                opacity: 0;
            }
            50%, 90% {
                opacity: 100%;
            }
			90%, 100%{
				
				opacity: 100%
			}
        }





.slideshow {
    position: relative;
	height: 100vh;
	width: 100vw;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    cursor: pointer;
	color: white;
    background: rgba(0,0,0,0.00);
    padding: 10px;
    border: none;
}

.arrow.left {
    left: 20px;
	z-index: 200;
	
}

.arrow.right {
    right: 20px;
	z-index: 200;
}

.legends{
	position: absolute;
	display: flex;
	align-items: center;
	bottom: 80px;
	right: 80px;
	cursor: pointer;
	z-index: 200;
}

.play {
	width: 50px!important;
	height: 50px!important;
	margin-left: 13px;
}

.legend-container{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	bottom: 80px;
	right: 80px;
}

.legend-title{
	color: white;
	font-size: 30px;
	font-weight: 700;
	font-family: 'Gabarito', cursive;
	text-align: end;
}

.legend-subtitle{
	color: white;
	font-size: 15px;
	font-weight: 100;
	font-family: 'Quicksand', sans-serif;
	text-align: end;
}


.slider{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slides{
  width: 100vw;
  height: 100vh;
  display: flex;
}

.slides input{
  display: none;
}

.slide{
  position: relative;
  width: 100vw;
  transition: 2s;
}

.vid-container{
	display: flex;
	justify-content: center;
	width: 100vw!important;
	max-width: 100vw!important;
	min-width: 100vw!important;
}

.slide video {
	max-width: 100vw;
	object-fit: cover;
	min-height: 100vh;
}

.slide img{
  width: 100vw;
  height: 100vh;
}

/*css for manual slide navigation*/

.navigation-manual{
  position: absolute;
  width: 100vw;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}

.manual-btn{
  border: 2px solid rgba(255,255,255,1.00);
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}

.manual-btn:not(:last-child){
  margin-right: 40px;
}

.manual-btn:hover{
  background: rgba(255,255,255,1.00);
}

#radio1:checked ~ .first{
  margin-left: 0;
}

#radio2:checked ~ .first{
  margin-left: -100%;
}

#radio3:checked ~ .first{
  margin-left: -200%;
}

#radio4:checked ~ .first{
  margin-left: -300%;
}

/*css for automatic navigation*/

.navigation-auto{
  position: absolute;
  display: flex;
  width: 100vw;
  justify-content: center;
  bottom: 26px;
}

.navigation-auto div{
  border: 2px solid rgba(255,255,255,1.00);
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
}

.navigation-auto div:not(:last-child){
  margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
  background: rgba(255,255,255,1.00);
}

#radio2:checked ~ .navigation-auto .auto-btn2{
  background: rgba(255,255,255,1.00);
}

#radio3:checked ~ .navigation-auto .auto-btn3{
  background: rgba(255,255,255,1.00);
}

#radio4:checked ~ .navigation-auto .auto-btn4{
  background: rgba(255,255,255,1.00);
}


.project-section-title{
	color: white;
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Gabarito', cursive;
	margin: 90px 70px 10px;
	font-size: 2em
}

.framecastle-legend{
	margin: 50px;
	text-align: center;
	color: white;
	font-family: 'Quicksand';
	font-size: 1.2em;
	font-weight: 100;
	text-transform: uppercase;
}


/* Section 2 */

.banner-title{
	color: white;
	text-transform: uppercase;
	font-family: 'Gabarito', cursive;
	margin: 90px 0px 20px 70px;
	font-size: 2em;
	font-weight: 700;
}

.proj-banner1{
    height: 70vh;
    width: 100vw;
    background-image: url("images/accueil/Une/02_rodave/05-fashion.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.proj-banner2{
    height: 70vh;
    width: 100vw;
    background-image: url("images/accueil/Une/01_bose/02_bose001.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.proj-banner3{
    height: 70vh;
    width: 100vw;
    background-image: url("images/accueil/Une/00_tropical/01_tropical001.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.une-desc{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    padding-right: 7vw;
}

.project-title{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.banner-logo{
    width: 400px;
	height: 100;
    margin-top: 10vh;

}

.project-description{
    color: white;
    font-size: 17px;
    font-weight: 100;
    text-align: end;
    font-family: 'Quicksand', sans-serif;


}

.plus{
    border: 2px solid rgba(255,255,255,1.00);
    border-radius: 40px;
    margin-top: 20px;
	cursor: pointer;
}

.plus-text{
    color: white;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    padding: 10px;
}

.all-project{
	color: white;
	display: flex;
	width: 100vw;
	justify-content: flex-end;
}

.all-project h2 {
	margin: 20px 50px;
    font-family: 'Quicksand', sans-serif;
	border: 2px solid white;
	border-radius: 50px;
	padding: 5px;
	font-size: 1em;
	cursor: pointer;
}

@media (max-width: 1000px) {
	.project{
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

@media (max-width: 1000px) {
	.project{
		height: inherit;
	}
	.project-title{
		margin-top: -50px;
	}
	.banner-title{
		margin: 70px 0px 20px 0px;
		font-size: 1.5em
	}
	.une-desc{
		align-items: center;
		margin: 0px;
		padding-right: 0vw;
	}
	.proj-banner1{
		height: 50vh;
	}
	.proj-banner2{
		height: 50vh;
	}
	.proj-banner3{
		height: 50vh;
	}
	.banner-logo{
    	width: 200px;
		margin: 10px;
}
}

@media (max-width: 800px) {
	.banner-title{
		margin: 70px 0px 20px 0px;
		font-size: 1.2em;
		text-align: center;
	}
	.une-desc{
		padding-right: 0vw;
		margin: 0px;
	
	}
	.proj-banner1{
		height: 30vh;
	}
		.proj-banner2{
		height: 30vh;
	}
		.proj-banner3{
		height: 30vh;
	}
	.plus-text{
    font-size: 15px;
}
}



@media (max-height: 600px) and (min-width: 600px) {
	.proj-banner1{
		height: 70vh;
	}
		.proj-banner2{
		height: 70vh;
	}
		.proj-banner3{
		height: 70vh;
	}
}

/* Section 3 */

.section3 {
	background-color: black;
	opacity: 0%;
	margin: 50px;
	transition: 2s ease;
}
.titre-container {
	display: flex;
	width: 100%;
	justify-content: center;
	margin-bottom: 75px;
}
.titre-confiance {
	color: white;
	font-size: 2em;
	font-weight: 700;
	margin-top: 50px;
	margin-bottom: -50px;
	text-transform: uppercase;
	font-family: 'Gabarito', cursive;
	text-align: center;
}
.clients {
	display: flex;
	justify-content: center;
	flex-direction: column;
	position: relative;
}
.client-logotype {
	display: flex;
	justify-content: center;
	flex-wrap: wrap; /* Permet aux éléments de passer à la ligne suivante */
	z-index: 1
}
.client-logo {
	position: absolute;
	width: 180px;
	height: 211px;
	flex: 0 1 calc(10% - 10px); /* Définit la largeur de chaque élément pour qu'il y en ait 4 par ligne avec un espace de 10px entre eux */
	margin-left: 5%; /* Espacement gauche */
	margin-right: 5%; /* Espacement droit */
	margin-bottom: 100px; /* Espacement vertical (ajustez selon vos besoins) */
}
.clients-image {
	display: flex;
	justify-content: center;
	flex-wrap: wrap; /* Permet aux éléments de passer à la ligne suivante */
	position: relative;
	top: -330px;
		width: 180px;
	height: 211px;
}
.warner-container, .noble-container, .tropical-container, .jsy-container, .siwoboy-container {
	position: relative;
	margin: 0px 5vw;
}
.jsy, .warner, .noble, .tropic, .siwoboy {
	position: relative;
	opacity: 0%;
	transition: opacity 0.5s ease;
	z-index: -1;
}
@media (max-width: 900px) {
	.clients {
		flex-direction: column;
		align-items: center;
	}
	.client-logo {
		margin-bottom: 50px;
	}
}



.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: 140%;
}

@media (max-width: 600px) {
	.vimeo-viewer{
		width: 80%;
	}


}


/* Footer */
footer {
	text-transform: uppercase;
	color: white;
	border-top: 1px solid 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';
	font-weight: 800;
	text-transform: uppercase;
}
.footer h3 {
	font-family: 'Quicksand';
	font-size: 0.8em;
	font-weight: 100;
	text-transform: uppercase;
}
.footer01 h3 {
	max-width: 300px;
}
.copyright-container {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	background-color: black;
}
.copyright {
	font-family: 'Quicksand';
	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;
	}
	.logo-footer {
		margin-right: 10px;
	}
	.footer02 {
		text-align: center;
		margin-bottom: 30px
	}
	.footer01 h3 {
		display: none;
	}
	.framecastle-studio {
		width: 30vw;
	}
}
@media (max-width: 1300px) {

	.logo-framecastle {
		opacity: 100% !important;
	}
	.logo-menu {
		opacity: 100% !important;
	}
	.language {
		opacity: 100% !important;
	}

}


@media (max-width: 600px) {

	#language-selector{
		margin-right: 100px;
	}

}