.logonoel {
	margin-right: 40px;
	height: 120px;
	width: 480px;
}

/* Fix for deprecated API warning - h1 in semantic elements needs font-size */
.ml13 {
	font-size: 60px;
}

.h_iframe iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%; 
	height:100%;
  }

.heading{
    font-size: 49px;
	font-style: normal;
	text-align: center;
	margin: 0;
	text-align: center;
    width: 100%;
}

.subheading{
	margin-top: 18px;
	margin-bottom: 80px;
	font-size: 20px;
	font-weight: normal;
	text-align: center;
    width: 90%;

}

.section{
	display: flex;
	box-sizing: border-box;
    min-height: 100%;
    width: 100%; 
    padding-top: var(--padding-between-blocs);
    padding-bottom: var(--padding-between-blocs);
}

/* PEOPLE BLOC */
#people_bloc{
	flex-direction: column;
	align-items: center;
	background-color: #333;
	color: white;
}

.people_row{
	display: flex;
	flex-direction: row;
	width: 84%;
    justify-content: space-evenly;
	flex-wrap: wrap;
}

.people_card{
	max-width: 275px;
    text-align: center;
	margin-bottom: 73px;
}

.subheading.people_subheading{
	max-width: 943px;
}

.img_card_people{
	width: 88%;
    border-radius: 50%;
}

.job_people_card{
	color: grey;
}

/* PROJETS BLOC */
#projets_bloc{
	flex-direction: column;
	align-items: center;
	background-color: #f5f5f5;
	color: #333;
	padding-bottom: 60px;
}

.projets_row{
	display: flex;
	flex-direction: row;
	width: 90%;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}

.projet_card{
	box-shadow: 1px 1px 8px -3px #5b5757;
	width: 350px;
	border-radius: 13px;
	overflow: hidden;
	margin-bottom: 10px;
	background-color: white;
	transition: all 0.3s ease;
	flex: 0 0 calc(33.33% - 30px);
	max-width: 350px;
	display: flex;
	flex-direction: column;
	cursor: pointer;
}

.projet_card:hover{
	transform: translateY(-5px);
}

.projet_image_container{
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.projet_placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 24px;
	transition: transform 0.3s ease;
}

.projet_placeholder i {
	font-size: 48px;
}

.projet_card:hover .projet_placeholder {
	transform: scale(1.05);
}

.projet_image_1 {
	background: linear-gradient(135deg, #3498db, #2980b9);
}

.projet_image_2 {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.projet_image_3 {
	background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.projet_image_4 {
	background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.projet_image_5 {
	background: linear-gradient(135deg, #f39c12, #d35400);
}

.projet_image_6 {
	background: linear-gradient(135deg, #1abc9c, #16a085);
}

.projet_image_7 {
	background: linear-gradient(135deg, #34495e, #2c3e50);
}

.projet_image_8 {
	background: linear-gradient(135deg, #7f8c8d, #95a5a6);
}

.projet_content{
	padding: 20px;
}

.projet_content h3{
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
}

.projet_description{
	margin-bottom: 15px;
}

.projet_tech{
	color: #666;
	font-size: 14px;
	font-style: italic;
}

/* EXPERTISES BLOC  */
#expertise_bloc{
    flex-direction: column;
    align-items: center;
    color: #333;
    background: #fff;
}

.expertises_row{
    display: flex;
    flex-direction: row;
    width: 84%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
}

.expertise_card{
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 28px 24px;
    width: 353px;
    height: auto;
    border-radius: 16px;
    max-width: 353px;
    margin-bottom: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.expertise_card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #cb6ce6 0%, rgba(203,108,230,0.35) 100%);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    opacity: 0.85;
}

.expertise_card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 22px -18px rgba(0,0,0,0.5);
    border-color: rgba(203,108,230,0.45);
}

.expertise_icon{
    height: 56px;
    width: 56px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #e8e8e8;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.expertise_icon i{
    font-size: 22px;
}

.expertise_card:hover .expertise_icon{
    border-color: #cb6ce6;
    color: #cb6ce6;
}

.expertise_card h2{
    margin: 0 0 8px 0;
    font-size: 22px;
}

.expertise_card p{
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

#first_row_expertises{
    margin-bottom: 8px;
}

@media screen and (max-width: 770px){
    .expertises_row{
        width: 92%;
        gap: 18px;
    }
    .expertise_card{
        width: 100%;
        max-width: 100%;
    }
}

/* POURQUOI CHOISIR GRAFEN BLOC */
#choisir_grafen_bloc{
	flex-direction: column;
	align-items: center;
	color: #333;
    padding-top: var(--padding-between-blocs);
    padding-bottom: 20px;
}

.accroche{
	max-width: 1200px;
    font-size: 22px;
}

.reasons_grid{
    width: 100%;
    max-width: 1220px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    column-gap: 48px;
    row-gap: 64px;
    align-items: start;
}

.reason_item{
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.reason_icon{
    flex: 0 0 40px;
    height: 40px;
    width: 40px;
    border-radius: 10px;
    background: rgba(203,108,230,0.12);
    color: #cb6ce6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason_icon i{
    font-size: 19px;
}

.reason_content h3{
    margin: 0 0 8px 0;
    font-size: 22px;
}

.reason_content p{
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

@media screen and (max-width: 1024px){
    .reasons_grid{
        width: 100%;
        max-width: 1100px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 40px;
        row-gap: 26px;
    }
}

@media screen and (max-width: 600px){
    .reasons_grid{
        grid-template-columns: 1fr;
        width: 92%;
        row-gap: 20px;
    }
    .reason_item{
        max-width: 100%;
    }
}

/* tighten subheading spacing for this section only */
#choisir_grafen_bloc .subheading.accroche{
    margin-bottom: 70px;
}

.icon_card{
	font-size: 28px;
	color: #cb6ce6;
	margin-bottom: 10px;
}

/* Hover effect consistent with cards */
#choisir_grafen_bloc .expertise_card{
	transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 220px;
}

#choisir_grafen_bloc .expertise_card:hover{
	transform: translateY(-3px);
	box-shadow: 2px 6px 14px -6px rgba(0,0,0,0.3);
}

/* Align cards to same height within rows */
#choisir_grafen_bloc .expertises_row{
    align-items: stretch;
}

@media screen and (max-width: 770px){
    #choisir_grafen_bloc .expertise_card{
        height: auto;
    }
}

/* LANDING BLOC */
.ml13 :nth-child(7) {
	color: #cb6ce6;
  }


#text-mobile,#text-mobile-2{
	display: none;
}

#timeLapse
{
    filter: grayscale(80%);
    object-fit: cover;
    width: 100%;
    height: 100vh;
	max-width: 100%;
    max-height: 100%;
}

.ml13
{
    color: white;
    font-size: 66px;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-weight: 600;
    text-align: center;
    top: 50%;
}

.sous_titre
{
	font-size: 19px;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.5em;
	font-weight: 600;
	text-align: center;
	text-shadow: rgb(0 0 0) 2px 0 10px;
	animation: an 1s ease-out 1 both;
}

.highlight-text {
	display: block;
	font-size: 24px;
	font-weight: 700;
	color: #cb6ce6;
	text-transform: uppercase;
	letter-spacing: 0.5em;
	margin-top: 8px;
	text-shadow: rgb(0 0 0) 2px 0 10px;
}

.ml13 .letter
{
	display: inline-block;
	line-height: 1em;
	text-shadow: rgb(0, 0, 0) 1px 0 10px;
}

.title
{
	width: 88%;
	margin: 0;
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.char
{
	font-size: 40px;
	height: 40px;
	animation: an 1s ease-out 1 both;
	display: inline-block;
}


/*  ANIMATION SOUS-TITRE */
.text-focus-in {
	-webkit-animation: text-focus-in 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

 @-webkit-keyframes text-focus-in {
	0% {
	  -webkit-filter: blur(12px);
			  filter: blur(12px);
	  opacity: 0;
	}
	100% {
	  -webkit-filter: blur(0px);
			  filter: blur(0px);
	  opacity: 1;
	}
  }
  @keyframes text-focus-in {
	0% {
	  -webkit-filter: blur(12px);
			  filter: blur(12px);
	  opacity: 0;
	}
	100% {
	  -webkit-filter: blur(0px);
			  filter: blur(0px);
	  opacity: 1;
	}
  }


/* MOBILE */

@media screen and (max-width: 606px)
{
	.row_contact{
		justify-content: center;
	}

	.input_contact.msg_textarea{
		width: 303px;
	}

	.msg_field{
		width: auto;
	}
	
	.logonoel {
		height: 100px;
		width: 440px;
	}
}

@media screen and (max-width: 500px)
{	
	.logonoel {
		height: 100px;
		width: 400px;
	}
}

@media screen and (max-width: 450px)
{	
	.logonoel {
		height: 85px;
		width: 350px;
	}
}

@media screen and (max-width: 420px)
{	
	.logonoel {
		height: 70px;
		width: 300px;
	}
}

@media screen and (max-width: 770px)
{
	.row_contact{
		flex-direction: column;
	}

	.infos_card{
		margin-bottom: 40px;
	}

	.mail_tel{
		display: flex;
		flex-direction: column;
		margin-left: 0px;
		margin-bottom: 0px;
	}

	.infos_contact{
		margin-bottom: 21px;
	}

	.msg_container{
		width: 303px;
	}

	.input_contact{
		margin-bottom: 20px;
	}
}


.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	}
	@-webkit-keyframes fadeInUp {
	0% {
	opacity: 0;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	}
	100% {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	}
	}
	@keyframes fadeInUp {
	0% {
	opacity: 0;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	}
	100% {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	}
	} 