@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) */
}
h1, h2, h3, h4, p {
	color: white;
	text-transform: uppercase;
}
h1 {
	font-family: 'Gabarito', cursive;
	font-size: 4em;
}
h2 {
	font-family: 'Gabarito', cursive;
}
h3 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 400;
}
h4 {
	font-family: 'Quicksand', sans-serif;
}
p {
	font-family: 'Quicksand', sans-serif;
	font-size: 1em
}
body {
	width: 100vw;
	height: 100vh;
	overflow-x: hidden;
	background-color: black;
}

@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;
}

.mousemove {
	height: 25px;
	width: 25px;
	border: 2px solid #FFFFFF;
	border-radius: 50px;
	position: absolute;
	transform: translate(-50%, -50%);
	transition: 0.1s ease;
	z-index: -100;
}
/* Menu deroulant */
.menuderoulant {
	background-color: black;
	position: fixed;
	width: 100vw;
	height: 100vh;
	left: -110%;
	z-index: 500;
	top: 0px;
}
.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: 39px;
  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;
	font-family: 'Gabarito', cursive;
	color: #878787;
}
.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-weight: 100;
	font-size: 2em;
	text-transform: lowercase;
	font-family: 'Quicksand', sans-serif;
}
.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;
	}
}

/* background images */
.nav-background-graphic {
	background-image: url("images/menu/background-menu/01-grphic.png");
}
.nav-background-web {
	background-image: url("images/menu/background-menu/02-web.png")
}
.nav-background-movie {
	background-image: url("images/menu/background-menu/03-movie.png")
}
.nav-background-music {
	background-image: url("images/menu/background-menu/01-music.png")
}
.nav-background-fashion {
	background-image: url("images/menu/background-menu/05-fashion.png")
}
/* 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 */
}
/* Section 1 */
.background-center {
	display: flex;
	justify-content: center;
}
.background-container {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0px;
	min-height: 100vh;
	min-width: 100vw;
	z-index: -500;
}
.background-video {
	top: 0px;
	min-width: 100vw;
	min-height: 100vh;
	z-index: -500;
	opacity: 30%
}
/* Les bons plans */
.section1 {
	height: 100vh;
}
.titre-1-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 150px;
}
.card {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 10px;
	padding: 10px;
	border: 2px solid #FFFFFF;
	border-radius: 30px;
	text-align: center;
	cursor: pointer;
}
.plans-container {
	display: flex;
	justify-content: center;
	padding: 0px 50px;
	margin: 50px auto;
	max-width: 70%
}
.plans-container h3 {
	font-weight: 900;
}
.plans-container li {
	font-weight: 100;
	font-family: 'Quicksand', sans-serif;
	font-size: 0.8em;
}
.card-name {
	margin-top: 10px;
}
.card-description {
	text-transform: none;
	margin: 15px auto;
}
.card-price {
	margin: 5px auto 0px auto;
	font-family: 'Gabarito', cursive;
	font-weight: 200;
}
.card-list {
	color: white;
	margin: 15px 15px;
	text-transform: none;
	text-align: left
}
.card-abonnement {
	margin-bottom: 15px
}
@media (max-width: 1600px) {
	.plans-container {
		max-width: 90%;
	}
}
@media (max-width: 1200px) {
	.plans-container {
		max-width: 100%;
		padding: 0px 10px;
	}
}
@media (max-width: 800px) {
	.plans-container {
		flex-direction: column;
		align-items: center
	}
	.card {
		width: 50%;
	}
	.titre1 {
		text-align: center
	}
	.sous-titre {
		text-align: center
	}
}
@media (max-width: 500px) {
	.plans-container {
		max-width: 100%;
		padding: 0px;
		margin: 0px
	}
	.card {
		width: 75%;
	}
}
/* Plan sur mesure */
.plans-container2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 50px auto;
	transition: 1s;
	opacity: 0%;
	margin-top: 20vh;
}
.titre-2-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 50px;
	margin-bottom: 50px;
}
.card2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 70%;
	margin: 10px;
	padding: 10px;
	border: 2px solid #FFFFFF;
	border-radius: 30px;
	text-align: center;
	z-index: 30;
	cursor: pointer;
}
.card8 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 70%;
	margin: 10px;
	padding: 10px;
	border: 2px solid #FFFFFF;
	border-radius: 30px;
	text-align: center;
	z-index: 30;
	cursor: pointer;
}
.card-name, .card-description {
	z-index: 20;
}
.card-description {}
.card3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 70%;
	margin: 10px;
	padding: 10px;
	border: 2px solid #FFFFFF;
	border-radius: 30px;
	text-align: center;
	cursor: pointer;
}
#devis-button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 10px;
	padding: 10px;
	border: 2px solid #FFFFFF;
	border-radius: 30px;
	text-align: center;
	z-index: 30;
	width: 50%;
	margin-top: 42px;
}
.sous-option2 {
	width: 100%;
	flex-direction: column;
	align-items: center;
	display: none;
}
.sous-option3 {
	width: 100%;
	flex-direction: column;
	align-items: center;
	display: none;
}
.sous-option4 {
	width: 100%;
	flex-direction: column;
	align-items: center;
	display: none;
}
.sous-option5 {
	width: 100%;
	flex-direction: column;
	align-items: center;
	display: none;
}
.sous-option-container {
	display: flex;
	font-size: 0.5em;
	font-weight: 100;
	width: 50%;
	align-items: center;
}
.card-parametre-text {
	font-family: 'Gabarito', cursive;
	font-size: 2em
}
.parameters-title {
	display: flex;
	justify-content: center;
}
.card-parameters-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.parameters-title {
	display: flex;
	width: 100%;
	justify-content: center;
}
.parameters-option1 {
	display: flex;
	width: 100%;
	justify-content: center;
}
.parameters-option2 {
	display: flex;
	width: 100%;
	justify-content: center;
}
.parameters-option3 {
	display: flex;
	width: 100%;
	justify-content: center;
}
.parameters-option4 {
	display: flex;
	width: 100%;
	justify-content: center;
}
.parameters-option5 {
	display: flex;
	width: 100%;
	justify-content: center;
}
.parameters-option6 {
	display: flex;
	width: 100%;
	justify-content: center;
}
.parameters-option7 {
	display: flex;
	width: 100%;
	justify-content: center;
}
.parameters-option8 {
	display: flex;
	width: 100%;
	justify-content: center;
}
.button-devis {
	width: auto;
	margin: 20px auto 50px;
	padding: 10px;
	border: 2px solid #FFFFFF;
	border-radius: 30px;
	text-align: center;
}
.survol-card {
	background-color: transparent;
	box-shadow: 0px 0px 10px 1px #FFFFFF;
	width: 73%;
}
.survol-card1 {
	background-color: transparent;
	box-shadow: 0px 0px 10px 1px #FFFFFF;
}
.selected-card {
	background-color: #15695A;
	box-shadow: 0px 0px 5px 1px #FFFFFF;
}
@media (max-width: 800px) {
	.sous-option-container {
		flex-direction: column;
		align-items: center
	}
}
/* Form */
.icon-close-form {
	position: absolute;
	top: 0px;
	right: 0px;
	margin: 20px;
	width: 60px;
	cursor: pointer;
}
.formulaire {
	position: fixed;
	padding-top: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #15695A;
	min-width: 100vw;
	min-height: 100vh;
	top: 0;
	left: 110%;
	transition: 1s;
	z-index: 51;
}
.formulaire h2 {
	font-size: 2.5em;
}
.titre {
	margin-top: 250px
}
.box {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin-top: 50px;
	width: 70vw;
	font-family: 'Quicksand', sans-serif;
}
.box label {
	font-family: 'Quicksand', sans-serif;
	font-size: 1.5em;
	font-weight: 800;
	color: #FFFFFF
}
.textzone {
	border-color: rgba(255, 255, 255, 0.00);
	height: 50px;
	background-color: rgba(255, 255, 255, 0);
	color: white;
	font-family: 'Quicksand', sans-serif;
	font-size: 1.5em;
	border-bottom: 2px solid rgba(255, 255, 255, 1.00);
	margin-left: 20px;
}
.box input:focus {
	outline: none;
	background-color: rgba(255, 255, 255, 0);
}
.box textarea:focus {
	outline: none;
}
textarea {
	resize: none;
	border-color: rgba(255, 255, 255, 0.00);
	height: 80px;
	background-color: rgba(255, 255, 255, 0);
	color: white;
	font-family: 'Quicksand', sans-serif;
	font-size: 1.5em;
	border-bottom: 2px solid rgba(255, 255, 255, 1.00);
	margin-left: 20px;
}
.submit-button {
	font-size: 1.2em;
	font-weight: 800;
	text-transform: uppercase;
	font-family: 'Quicksand', sans-serif;
	color: white;
	background-color: rgba(255, 255, 255, 0.2);
	margin: auto;
	height: 50px;
	border-color: white;
	border-radius: 50px;
	width: 30%;
	cursor: pointer;
}
label {
	text-transform: uppercase
}

@media (max-width: 600px) {
	.formulaire h2 {
	font-size: 1.5em;
	}
	label {
		font-size: 1em!important;
	}
	textarea {
		font-size: 1em!important;
	}
	.submit-button{
		width: 50%;
	}
}
/* Footer */
footer {
	background-color: black;
	text-transform: uppercase;
	color: white;
}
.footer {
	display: grid;
	grid-template-columns: 40% 25% 25% 10%;
	align-items: center;
	justify-items: center;
	height: 200px;

}
.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 {
	display: flex;
	justify-content: center;
}
.copyright {
	font-family: 'Quicksand', sans-serif;
	font-size: 0.6em;
	font-weight: 100;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.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;
	}
	.logo-footer {
		margin-right: 10px;
	}
	.footer02 {
		text-align: center;
		margin-bottom: 30px
	}
	#viewer {
		width: 80vw
	}
	#download-button {
		display: flex;
		justify-content: center;
		padding: 0px 20px;
		text-align: center;
		font-size: 0.8em
	}
	.titre-devis {
		text-align: center;
	}
}
/* MODULE DEVIS */
.module-devis {
	background-color: #15695A;
	z-index: 500;
	position: fixed;
	top: 0px;
	left: 110%;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100vw;
	height: 100vh;
	visibility: hidden;
	font-family: 'Quicksand', sans-serif;
	font-weight: 800;
	transition: ease 2s;
}
.titre-devis {
	margin: 50px;
}
#viewer {
	background-color: white;
	border: 1px solid #ddd;
	padding: 20px;
	margin: 10px 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	overflow-y: scroll;
	position: absolute;
	height: 500px;
	top: 300px;
}
.devis-footer {
	display: flex;
	justify-content: center;
}
.sas {
	position: relative;
	bottom: 0px;
	color: black;
	align-content: center
}
#download-buttons {
	margin-top: 20px;
}
.bouton-dev {
	display: inline-block;
	text-decoration: none;
	color: white;
	padding: 10px 20px;
	margin-right: 10px;
	transition: background-color 0.3s ease;
	text-transform: uppercase;
	font-family: 'Quicksand', sans-serif;
	font-weight: 800;
	background-color: rgba(255, 255, 255, 0.2);
	border-color: white;
	border-radius: 50px;
}
.bouton-dev a:hover {
	background-color: transparent;
	box-shadow: 0px 0px 10px 1px #FFFFFF;
}
/* Style pour le devis */
.devis-container {
	width: 210mm; /* Largeur d'une page A4 en pixels */
	height: 297mm;
	margin: 0 auto;
	padding: 20px;
	page-break-before: always; /* Début d'une nouvelle page lors de l'impression */
}
.header-devis {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo-framecastle-devis {
	width: 200px;
}
.title-devis {
	font-size: 24px;
	text-align: right;
}
.infos-devis {
	display: flex;
	justify-content: space-between
}
.contact-info, .client-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 20px;
}
.phone, .email, .name, .company, .client-email {
	margin-bottom: 10px;
}
.module-devis table {
	margin-top: 50px;
	width: 100%;
	border-collapse: collapse;
}
.module-devis table, th, td {
	border: 1px solid #ccc;
}
.module-devis th, td {
	padding: 8px;
	text-align: center;
}
.categories-devis {
	background-color: #15695A;
	color: white;
	font-family: 'Quicksand', sans-serif;
	font-weight: 800;
}
.colored-cell {
	background-color: #15695A;
	color: white;
	font-family: 'Quicksand', sans-serif;
	font-weight: 800;
}
.hidden-cell {
	display: none;
}

@media (max-width: 600px) {

	#language-selector{
		margin-right: 100px;
	}

}