/** INTRO */

.intro_visuel {
	height: 104.8vw;
	background-image: url(../images/homepage/accueil_mobile.webp);
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}

.intro_content {
	background-color: #f1f1f1;
	text-align: center;
	padding: 25px 0;
}

.intro_content h1 {
	font: normal normal 900 36px/64px Degular;
	color: #B20245;
}

.intro_content h2 {
	color: #343434;
	font: normal normal 900 22px/35px Degular;
}

.intro_content .segic {
	margin: 10px 0 30px;
}

.intro_content .segic img {
	width: 180px;
}

.intro_content h3 {
	font: normal normal 500 14px/24px Inter;
	color: #343434;
	margin-bottom: 30px;
}

.intro_content h3 strong {
	font: normal normal 800 14px/24px Inter;
}

.intro_content .barometre {
	font: normal normal 500 14px/24px Inter;
	margin-bottom: 20px;
	border: 1px solid #B20245;
    padding: 15px;
}

.intro_content .barometre p:not(:last-child) {
	margin-bottom: 15px;
}

.intro_content .lienActus {
	margin-bottom: 40px;
}

.intro_content .lienActus a {
	font: normal normal 700 14px/28px Inter;
	letter-spacing: 0.32px;
	color: #B20245;
	text-transform: uppercase;
}

.intro_content .lienActus a i {
	padding-left: 10px;
}

/** SI */

.si_title {
	background-color: #343434;
	padding: 100px 0;
}

.si_title h1 {
	font: normal normal 900 26px/40px Degular;
	color: white;
}

.si_text {
	padding: 100px 30px;
}

.si_text p {
	color: #343434;
	font: normal normal 500 14px/26px Inter;
}

.si_text p:not(:last-child) {
	margin-bottom: 15px;
}

.si_text p strong {
	color: #B20245;
	font: normal normal 700 14px/26px Inter;
}

/** SECTEURS */

.titre_section {
	font: normal normal bold 27px/34px Degular;
}

.titre_section span {
	color: #B20245;
}

@media (max-width: 767px){
	.titre_section br {
		display: none;
	}
}

.secteurs {
	padding: 80px 0;
	background: linear-gradient(to bottom, #f1f1f1 550px, #ffffff 550px);
}

.secteurs h2 {
	margin-bottom: 60px;
}

.secteur {
	position: relative;
	height: calc((100vw - 60px) * 1.119);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	text-align: center;
}

.secteur:not(:last-child){
	margin-bottom: 30px;
}

.secteur_sig {
	background-image: url(../images/homepage/conseil_sig.webp);
}

.secteur_data {
	background-image: url(../images/homepage/analyse_geodata.webp);
}

.secteur_gestion {
	background-image: url(../images/homepage/systeme_technique.webp);
}

.secteur_ia {
	background-image: url(../images/homepage/ia_geodecision.webp);
}

.secteur_cms {
	background-image: url(../images/homepage/cms_ged.webp);
}

.secteur:not(.secteur_data):before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	background-color: rgba(0,0,0,0.5);
	transition: all 0.5s ease;
}

.secteur_ia:before {
	background-color: rgba(0,0,0,0.3);
}

.secteur:hover:before {
	background-color: rgba(0,0,0,0);
}

.secteur h3 {
	position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 15px;
	color: #FFFFFF;
	text-transform: uppercase;
	font: normal normal 900 16px/24px Degular;
}

.secteur .secteur_details {
	background-color: white;
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    margin: 0 15px;
    padding: 50px 22px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.secteur:hover .secteur_details {
	opacity: 1;
}

.secteur_details p {
    font: normal normal bold 12px/20px Inter;
    margin-bottom: 30px;
}

/** ACTUALITÉS */

.actualites {
	padding: 0 0 100px 0;
}

.swiper {
	margin-top: 60px;
	padding-bottom: 90px;
}

.actualite_visuel {
	border: 1px solid #edc2d3;
	padding: 60px 80px;
}

.actualite_visuel figure {
	text-align: center;
	height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actualite_content {
	background-color: #B20245;
	border: 1px solid #B20245;
	color: white;
	padding: 30px 30px 100px 18px;
	position: relative;
}

.actualite_date {
	color: #EEE7DA;
	font: normal normal 500 12px Inter;
	opacity: 0.5;
	text-transform: uppercase;
}

.actualite_content h3 {
	font: normal normal bold 25px/26px Degular;
	text-transform: uppercase;
	margin-top: 65px;
	margin-bottom: 30px;
}

.actualite_content p {
	font: normal normal 500 16px/26px Inter;
}

.actualite_content p a {
	text-decoration: underline;
	font-weight: 600;
}

.actualite_content ul {
	list-style-type: disc;
	padding-left: 30px;
}

.actualite_lien {
	position: absolute;
    top: -1px;
    right: -1px;
    width: 60px;
    height: 60px;
    background-color: #f1f1f1;
    border: 1px solid #edc2d3;
}

.actualite_lien a {
	display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.actualite_lien a img {
	width: 12px;
}

.swiper-navigation {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 5px;
	justify-content: center;
}

.btn_nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background-color: #f1f1f1;
}

.btn_nav img {
	width: 18px;
}

@media (max-width: 991px){
	.actualites h2 {
		text-align: center;	
	}	
}


/** OBSERVATOIRE */

.observatoire {
	position: relative;
	height: 139.6vw;
	background-image: url(../images/homepage/observatoire.webp);
	background-repeat: no-repeat;
	background-position: left;
	background-size: cover;
	margin-bottom: 100px;
}

.observatoire_content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 0 30px;
    padding: 60px 35px;
    text-align: center;
    background-color: white;
    transition: all 1s ease;
}

.observatoire_content:hover {
	top: calc(50% - 2.08vw);
}

.observatoire_content p {
	font: normal normal 500 16px/26px Inter;
    margin: 30px 0;
}

/** VALEURS */

.valeurs {
	background-image: url(../images/frise.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    padding-bottom: 280px;
}

.valeurs h2 {
	margin-bottom: 60px;
}

@media (max-width:991px){
	.valeurs h2 {
		text-align: center;
	}
}

.valeur {
	position: relative;
	border: 1px solid #B20245;
    border-bottom-width: 11px;
    padding: 60px 54px;
    text-align: center;
}

.valeur:not(:last-child) {
    margin-bottom: 30px;
}

.valeur:before {
	content: "";
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(to top, #B20245 50%, transparent 50%);
	background-size: 100% 200%;
	background-position: top;
	transition: background-position 0.5s ease-in-out;
}

.valeur:hover:before {
	background-position: bottom;
}

.valeur h3 {
    margin-top: 20px;
    font: normal normal bold 25px/26px Degular;
    color: #B20245;
    margin-bottom: 15px;
    transition: color 0.5s ease;
}

.valeur:hover h3 {
	color: white;
}

.valeur p {
    font: normal normal 500 16px/26px Inter;
    letter-spacing: 0px;
    color: #B20245;
    transition: color 0.5s ease;
}

.valeur:hover p {
	color: white;
}

.valeur svg path {
	transition: all 0.5s ease;
}

.valeur:hover svg path {
	fill: white;
}

/** RÉFÉRENCES */

.references {
	padding: 100px 0 200px;
	background-color: #f1f1f1;
}

.references_filters {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 60px 0;
}

.references_filters .filter {
	font: normal normal bold 20px/26px Degular;
	color: #343434;
}

.references_filters .filter.active {
	color: #B20245;
	padding-bottom: 10px;
	border-bottom: 3px solid #B20245;
}

.references_filters .filter:not(:last-child) {
	margin-bottom: 30px;
}

.references_content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 40px;
}

.reference {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 320px;
	background-color: white;
}

.reference:not(:last-child) {
	margin-bottom: 15px;
}

.reference figure {
	text-align: center;
}

.reference figure img {
	width: 80%;
	transition: all 0.5s ease;
}

.reference p {
	height: 0;
    opacity: 0;
    margin: 20px 25px 45px;
    text-align: center;
    font: normal normal 500 13px/24px Inter;
    transition: opacity 0.5s ease;
}

.reference:hover p {
	height: auto;
	opacity: 1;
	
}

.reference:hover img {
	max-width: 90px;
}

/** MEDIA QUERIES */

@media (min-width: 768px){
	.intro_content {
		padding: 35px 0;
	}

	.intro_content h1 {
		font: normal normal 900 54px/96px Degular;
	}

	.intro_content h2 {
	    font: normal normal 900 33px/53px Degular;
	}

	.intro_content .segic {
	    margin: 15px 0 45px;
	}

	.intro_content .segic img {
	    width: 270px;
	}

	.intro_content h3 {
	    font: normal normal 500 21px/36px Inter;
	    margin-bottom: 45px;
	}

	.intro_content h3 strong {
	    font: normal normal 800 21px/36px Inter;
	}

	.intro_content .lienActus a {
    	font: normal normal 700 21px/42px Inter;
	}

	.si_title h1 {
	    font: normal normal 900 40px/60px Degular;
	}

	.si_text p {
	    font: normal normal 500 21px/39px Inter;
	}

	.si_text p:not(:last-child) {
	    margin-bottom: 22px;
	}

	.si_text p strong {
	    font: normal normal 700 21px/39px Inter;
	}

	.titre_section {
	    font: normal normal bold 40px/50px Degular;
	}

	.secteurs {
	    background: linear-gradient(to bottom, #f1f1f1 825px, #ffffff 825px);
	}

	.secteurs h2 {
	    margin-bottom: 90px;
	}

	.secteur {
		height: calc((100vw - 160px) * 1.119);
	}

	.secteur:not(:last-child) {
	    margin-bottom: 45px;
	}

	.secteur h3 {
		font: normal normal 900 24px/36px Degular;
	}

	.secteur .secteur_details {
		margin: 0 22px;
		padding: 75px 33px;
	}

	.secteur_details p {
	    font: normal normal bold 18px/30px Inter;
	    margin-bottom: 45px;
	}

	.observatoire_content {
	    margin: 0 70px;
	    padding: 90px 52px;
	}

	.observatoire_content p {
	    font: normal normal 500 24px/39px Inter;
	    margin: 45px 0;
	}

	.valeurs {
		padding-bottom: 325px;
	}

	.valeur {
		border-bottom-width: 16px;
		padding: 90px 81px;
	}

	.valeur:not(:last-child) {
	    margin-bottom: 45px;
	}

	.valeur h3 {
	    margin-top: 30px;
	    font: normal normal bold 36px/39px Degular;
	    margin-bottom: 22px;
	}

	.valeur p {
	    font: normal normal 500 24px/39px Inter;
	}

	.references_filters {
		margin: 90px 0;
	}

	.references_filters .filter {
	    font: normal normal bold 30px/39px Degular;
	}

	.references_filters .filter:not(:last-child) {
	    margin-bottom: 45px;
	}

	.references_filters .filter.active {
	    padding-bottom: 15px;
	    border-bottom: 3px solid #B20245;
	}

	.reference {
		width: 480px;
		height: 480px;
	}

	.reference:not(:last-child) {
	    margin-bottom: 22px;
	}
}

@media (min-width: 992px){
	.intro {
		display: flex;
		max-height: 981px;
	}

	.intro_visuel {
		flex-basis: 43%;
		height: 68.125vw;
		background-image: url(../images/homepage/accueil.webp);
	}

	.intro_content {
		position: relative;
		flex-basis: 57%;
	    padding: 180px 0 25px;
	    text-align: left;
	}

	.intro_content:after {
		content: "";
		position: absolute;
		bottom: -37px;
		right: 0;
		height: 37px;
	    width: 100%;
	    background-color: #f1f1f1;
	}

	.intro_content h1 {
	    font: normal normal 900 40px/42px Degular;
	    margin-bottom: 5px;
	}

	.intro_content h2 {
	    font: normal normal 900 27px/42px Degular;
	}

	.intro_content .segic {
	    margin: 5px 0 53px;
	}

	.intro_content .segic img {
	    width: 145px;
	}

	.intro_content h3 {
	    font: normal normal 500 14px/23px Inter;
	    margin-bottom: 33px;
	}

	.intro_content h3 strong {
	    font: normal normal 800 14px/23px Inter;
	}

	.intro_content .barometre p:first-child {
		margin-bottom: 10px;
	}

	.intro_content .barometre p br {
		display: block;
	}

	.intro_content .boutons {
		justify-content: flex-start;
	}

	.intro_content .lienActus {
	    margin-bottom: unset;
	    text-align: right;
	    position: absolute;
	    top: 290px;
	    right: 80px;
	}

	.intro_content .lienActus a {
	    font: normal normal 700 12px/19px Inter;
	}

	.si {
		display: flex;
	}

	.si_title {
		flex-basis: 50%;
	    padding: 0;
	    display: flex;
	    align-items: center;
	}

	.si_title h1 {
		font: normal normal 900 27px/40px Degular;
		width: 31.11vw;
	}

	.si_text {
		flex-basis: 50%;
		padding: 9.3vw 6.94vw 9.3vw 6.25vw;
	}

	.si_text p {
	    font: normal normal 500 12px/20px Inter;
	}

	.si_text p:not(:last-child) {
	    margin-bottom: 10px;
	}

	.si_text p strong {
	    font: normal normal 700 12px/20px Inter;
	}

	.secteurs {
		padding: 130px 160px;
		background: linear-gradient(to bottom, #f1f1f1 810px, #ffffff 810px);
	}

	.titre_section {
		font: normal normal bold 27px/34px Degular;
	}

	.secteurs h2 {
		text-align: center;
	    width: 41.25vw;
	    margin-left: auto;
	    margin-right: auto;
	    margin-bottom: 4.17vw;
	}

	.secteurs_flex {
		display: flex;
	    justify-content: center;
	    flex-wrap: wrap;
	    gap: 18px;
	    max-width: 1278px;
		margin: auto;
	}

	.secteur {
		flex-basis: calc(50% - 9px);
		height: calc((100vw - 180px) / 2.324);
		max-height: 541px;
		margin-bottom: 0 !important;
	}

	.secteur h3 {
		font: normal normal 900 17px/22px Degular;
		padding: 0 16%;
	}

	.secteur .secteur_details {
	    width: 73%;
	    padding: 80px 45px;
	    margin-bottom: 0;
	    left: 50%;
	    transform: translate(-50%, -50%);
	}

	.secteur_details p {
	    font: normal normal bold 11px/16px Inter;
	    margin-bottom: 40px;
	}

	.actualites h2 {
		width: 39.8vw;
	}

	.actualite {
		display: flex;
		max-width: 945px;
		margin: auto;
	}

	.actualite_visuel {
		flex-basis: 40%;
	    display: flex;
	    align-items: center;
	    padding: 0;
	}

	.actualite_content {
		flex-basis: 60%;
		padding: 60px 140px 60px 60px;
	}

	.actualite_content h3 {
		font: normal normal bold 30px/26px Degular;
		margin-top: 100px;
		margin-bottom: 20px;
	}

	.observatoire {
		height: 68.75vw;
		margin-bottom: 160px;
	}

	.observatoire_content {
		left: unset;
		right: 13.125vw;
		width: 43.75vw;
		margin: 0;
		padding: 5.55vw 8.19vw;
	}

	.observatoire_content h2 {
		margin: 0 35px;
	}

	.observatoire_content p {
	    font: normal normal 500 12px/18px Inter;
	    margin: 2.78vw 0 4.305vw;
	}

	.valeurs {
		padding-bottom: 21.736vw;
	}

	.valeurs_top_flex {
		display: flex;
	}

	.valeurs h2 {
		flex-basis: 29%;
		margin-bottom: 0;
	}

	.valeurs_flex {
		flex-basis: 62.5%;
		display: flex;
		flex-wrap: wrap;
	}

	.valeur {
		flex-basis: calc(50% - 1.875vw);
		display: flex;
	    flex-direction: column;
	    justify-content: center;
	    height: 29.16vw;
	    padding: 0 5.1vw;
	}

	.valeur:first-child {
		margin-bottom: 1.875vw;
		margin-right: 1.875vw;
	}

	.valeur:nth-child(2) {
		margin-top: 4.72vw;
		margin-bottom: 1.875vw;
	}

	.valeur:nth-child(3) {
 	   margin-top: -4.72vw;
 	   margin-right: 1.875vw;
 	   margin-bottom: 0;
	}

	.valeur:nth-child(4) {
		margin-bottom: 0;
	}

	.valeur h3 {
		margin-top: 15px;
	    font: normal normal bold 18px/19px Degular;
	    margin-bottom: 10px;
	}

	.valeur p {
	    font: normal normal 500 12px/17px Inter;
	}

	.references {
		padding: 85px 0 95px;
	}

	.references h2 {
		width: 36.67vw;
    	margin: auto;
	}

	.references_filters {
		width: 51.1vw;
		margin: 4.17vw auto 4.86vw;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
	}

	.references_filters .filter {
		font: normal normal bold 14px/18px Degular;
	}

	.references_filters .filter:not(:last-child) {
	    margin-bottom: 0;
	}

	.references_filters .filter.active {
		padding-bottom: 5px;
	}

	.references_content {
		width: 66.25vw;
		margin: 0 auto 60px;
		flex-direction: row;
		gap: 18px;
	}

	.reference {
	   	flex: 1;
		width: unset;
		height: 21.46vw;
	}

	.reference:not(:last-child) {
		margin-bottom: 0;
	}

	.reference figure img {
		max-width: 160px;
		width: 100%;
	}
}

@media (min-width: 1440px){
	.intro_content {
		padding: 200px 0 40px;
	}

	.intro_content h1 {
		font: normal normal 900 60px/64px Degular;
		margin-bottom: 10px;
	}

	.intro_content h2 {
		font: normal normal 900 40px/64px Degular;
	}

	.intro_content .segic {
		margin: 10px 0 50px;
	}

	.intro_content .lienActus {
		top: 370px;
	}

	.intro_content .segic img {
		width: 217px;
	}

	.intro_content h3 {
		font: normal normal 500 20px/35px Inter;
		margin-bottom: 30px;
	}

	.intro_content h3 strong {
		font: normal normal bold 20px/35px Inter;
	}

	.intro_content .barometre {
		font: normal normal 500 18px/30px Inter;
	}

	.intro_content .lienActus a {
		font: normal normal bold 16px/28px Inter;
	}

	.titre_section {
	    font: normal normal bold 40px/50px Degular;
	}

	.si_title h1 {
		font: normal normal 900 40px/50px Degular;
	}

	.si_text p {
	    font: normal normal 500 18px/30px Inter;
	}

	.si_text p:not(:last-child) {
	    margin-bottom: 15px;
	}

	.si_text p strong {
	    font: normal normal 700 18px/30px Inter;
	}

	.titre_section {
	    font: normal normal bold 36px/46px Degular;
	}

	.secteur h3 {
		font: normal normal 900 25px/29px Degular;
	}

	.secteur_details p {
		font: normal normal bold 14px/24px Inter;
	}

	.observatoire_content p {
		font: normal normal 500 16px/26px Inter;
	}

	.valeur h3 {
		font: normal normal bold 25px/26px Degular;
	}

	.valeur p {
		font: normal normal 500 16px/26px Inter;
	}

	.references_filters .filter {
	    font: normal normal bold 20px/26px Degular;
	}

	.references_filters .filter.active {
	    padding-bottom: 10px;
	}
}