@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300..700&display=swap');

@font-face {
    font-family: 'Sofia Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local('../font/Sofia Pro Regular'), url('../font/Sofia Pro Regular Az.woff') format('woff');
 }
 
 
 html, body {
	 width: 100%;
 }
 
 html {
  scroll-behavior: smooth;
}

body {
	background: #0f1a2c;
	font-size: 16px
}

 
 
 /* SECTIONS BLOCK */
 
.wrapper {
	background: #0f1a2c;
	color: #fff;
	position: relative;
	min-height: 100vh;
}
 

.fullH{
	min-height: 100vh;
}

.sectionpad  {
	padding: 100px 0;
}

.divid {
	margin: 10px 0;
}

.divid .dot {
	height: 3px;
	width: 3px;
	border-radius: 100%;
	display: inline-block;
	background: #a0c8f3;
	margin-right: 10px;
}

.divid .line {
	height: 2px;
	width: 80%;
	display: inline-block;
	background: #a0c8f3;
}

.infobulle {
	border: 1px solid #fff;
	padding: 5px 17px;
	border-radius: 30px;
	display: inline-block;
	margin-bottom: 10px;
}

.infobulle h1 {
	font-size: 15px;
	font-weight: 400;
	margin: 0;
}


/* FLOATING ELEMENTS */

.contact-us {
	position: fixed;
	z-index: 9699;
	bottom: 20px;
	right: 50px;
	color: #316fca;
	background: #a0c8f3;
	font-weight: bold;
	height: 50px;
	width: 0px;
	transition: all 0.5s ease;
}
.contact-us .textcontact {
	width: auto;
	margin-left: 50px;
	white-space: nowrap ;
	overflow: hidden;
	line-height: 50px;
}

.contact-us::before {
	position: absolute; 
	width: 50px;
	height: 50px;
	content: ""; 
	background-image: url("../images/chat-circle-dots.svg");
	background-position: center center;
	background-size: 70%;
	background-repeat: no-repeat;
	left: -25px;
	top: 0;
	background-color: #a0c8f3;
	border-radius: 100%;
	z-index: 999;
}
.contact-us::after {
	position: absolute; 
	width: 50px;
	height: 50px;
	content:"";
	right: -25px;
	top: 0;
	background: #a0c8f3;
	border-radius: 100%;
}

.contact-us:hover {
	width: 200px;
}

.grecaptcha-badge {
	z-index: 999;
	bottom: 150px !important;
}

/* MENU BUTTON */

.menubar {
	width: 30px;
	height: 40px;
	position: fixed;
	margin: 35px 20px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 999;
}
.menubar span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #fff;
	border-radius: 0px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.menubar span:nth-child(1) {
  top: 0px;
}
.menubar span:nth-child(2) {
  top: 10px;
}
.menubar span:nth-child(3) {
  top: 20px;
}
.menubar.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.menubar.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.menubar.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.menubar.open span{
	background: #fff;
}

.menubar.open {
	margin-left: 340px;
}


@media (max-width: 768px) {
	.menubar.open {
		margin-left: 350px;
	}

}

/* TOPMENU */
	.topmenu {
		z-index: 99;
		position: fixed;
		top: 50px;
		width: 100%;
		color: #fff;
		transition: all 0.5s ease-out;
	}

	.topmenu ul{
		list-style: none;
		padding: 0;
		margin: 0;
		background: rgba(0,0,0,0.3);
		border-radius: 50px;
	}
	
	
	.topmenu ul li{
		display: inline-block;
		padding: 17px 25px;
	}
	
	@media (max-width: 1200px) {
		.topmenu ul li{
			display: inline-block;
			padding: 17px 10px;
		}
	}
	
	.topmenu ul li a{
		display: inline-block;
	}

	.uneffet {
	  display: inline-block;
	  padding-bottom:2px;
	  background-image: linear-gradient(#fff 0 0);
	  background-position: 0 100%; /*OR bottom left*/
	  background-size: 0% 1px;
	  background-repeat: no-repeat;
	  transition:
		background-size 0.3s,
		background-position 0s 0.3s; /*change after the size immediately*/
	}

	.uneffet:hover {
	  background-position: 100% 100%; /*OR bottom right*/
	  background-size: 100% 1px;
	}
	
	.fixedtopmenu {
		display: none;
	}
	
	@media (max-width: 991px) {
		.topmenu {
			display: none;
		}
	}
	
/* SIDEMENU */
	.sidemenu {
		position: fixed;
		top: 0;
		width: 400px;
		height: 100vh;
		background: #07101f; 
		padding: 20px 40px 0 40px;
		transform: translate3d(-100%, 0px, 0px);
		transition: all 0.5s ease;
		z-index: 99;
	}
	
	@media (max-width: 768px) {
		.sidemenu {
			width: 100%;
		}
	}
	
	.openmenu {
		transform: translate3d(0%, 0px, 0px);
	}
	
	.logomenu{
		margin: 0px  auto 80px auto  !important;
		width: 100%;
		text-align: left;
	}
	
	.logomenu img{ 
		width: 30%;
	}
	
	@media (max-width: 768px) {
		.logomenu {
			margin: 0px auto 20px 0px  !important;
			width: 250px;
			text-align: left;
		}
	}
	
	.firstlvl {
		padding: 0;
		margin: 0;
	}
	
	.firstlvl li {
		list-style: none;
	}
	.firstlvl li a{
		color: #fff;
		display: block;
		list-style: none;
		font-size: 18px;
		font-weight: 400;
		margin-bottom: 20px;
		width: 100%;
		padding-bottom:2px;
		  background-image: linear-gradient(#316fca 0 0);
		  background-position: 0 100%; /*OR bottom left*/
		  background-size: 0% 1px;
		  background-repeat: no-repeat;
		  transition:
			background-size 0.3s,
			background-position 0s 0.3s; /*change after the size immediately*/
	}
	
	.toggled {
		color: #316fca !important;
		font-weight: 600 !important;
		background-position: 100% 100% !important; /*OR bottom right*/
		background-size: 100% 1px  !important;
		
	}
	
	.secondlvl {
		display: none;
	}
	
	.secondlvl li {
		list-style: none;
	}
	
	.secondlvl li a{
		display: block;
		list-style: none;
		font-size: 16px;
		font-weight: 400;
		margin-bottom: 20px;
		width: 100%;
		transition: all 0.1s ease;
	}
	.secondlvl li a:hover {
		font-weight: bold;
		transition: all 0.1s ease;
	}
	
	.opacwrapper {
		opacity: 0.1;
		transition: all 0.2s ease;
	}
	
	
	@media (max-width: 768px) {
		.firstlvl li a , .secondlvl li a {
			margin-bottom: 15px;
		}
	}
	
	.contactsidemenu {
		padding: 7px 25px;
		border-radius: 50px;
		background: #fff;
		color: #316fca;
		border: 0;
		position: absolute; 
		bottom: 20px;
		left: 35px;
		font-weight: 600
	}
	
	
/* TYPO */	

.lighter {
	font-weight: lighter;
}

.jumbotxt {
	font-size: 50px;
	color: #fff;
}

.jumbonum {
	font-size: 210px;
	line-height: 150px;
	color: #fff;
}

@media (max-width: 768px) {
	.jumbonum {
		font-size: 150px;
	}
	.jumbotxt {
		font-size: 40px;
		line-height: 50px;
	}
}

.bif {
	color: #316fca;
}
.bif2 {
	color: #a0c8f3;
}

.padtitle {
	padding: 30px 0;
}

.page-title {
	font-size: 50px;
	line-height: 50px;
	font-weight: 400;
}

@media (max-width: 768px) {
	.page-title {
		font-size: 35px;
	}
}

.Pagesubtitle {
	font-size: 18px;
	font-weight: 400;
}

.Pagesubtitle::before {
	position: absolute; 
	content:"/";
	height: 50px;
	width: 50px;
	margin-left: -60px;
	margin-top: -8px;
	font-size: 40px;
	font-weight: 100;
}

.boxedblue {
	background: #07101f;
}

.boxedwhite {
	background: #fff;
	color: #07101f;
	border: 1px solid #c2c2c2;
}

.page-box-title {
	font-weight: lighter;
}

.whitebg {
	background: #07101f;
	color: #fff;
}

.discblue {
	
}

/* HERO HEADER */

.heroBG {
	background: url("../images/cabinet-compatble-avignon.webp") no-repeat center center;
	filter: grayscale(1) brightness(40%) opacity(0.3);
	background-size: cover;
	width: 100%;
	height: 200vh;
}

.heromask {
	position: absolute;
	top: 0;
	background: url("../images/cabinet-compatble-avignon.webp") no-repeat center center;
	filter: grayscale(1) brightness(40%);
	mask-image: url("../images/&.svg"); 
	mask-position: center center; 
	mask-size: contain; 
	mask-repeat: no-repeat; 
	background-size: cover;
	width: 100%;
	height: 200vh;	
}

@media (min-width: 769px) {
	.heromask, .heroBG {
		background-attachment: fixed;
	}
}


.hero {
	width: 100%;
	position: absolute;
	top: 0;
}




.svgOverlay {
	position: absolute;
	top: 0;
	height: 100vh;
	left: 0; 
	right: 0; 
	margin-inline: auto; 
	width: 100%;
}

.OverOverlay {
	z-index: 2;
	position: relative;
}


@media (max-width: 768px) {
	.OverOverlay {
		margin-top: 50px;		
	}
}

.svgOverlayBG {
	position: absolute;
	top: 0%;
	min-height: 100vh;
	z-index: 0;
	left: 0; 
	right: 0; 
	margin-inline: auto; 
	width: 100%;
}

.PageOverlayRel {
	position: relative;	
	z-index: 1;
}

.el {
	stroke-dasharray: 1000;
	stroke-dashoffset: 0;
	transition: all 1s ease;
}


.hero h1 {
	color: #fff;
	font-size: 55px;
	font-weight: 400;
	font-family: "Raleway";
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 40px;
	}
}

.chunk{ 
	font-size: 50px;
}

@media (max-width: 768px){
	.chunk{ 
		font-size: 40px;
	}
}

.mapsbg {
	background: url('../images/maps.jpg');
	background-position: center center;
	background-size: cover;
	position: relative;
}

@media (max-width: 768px){
	.mapsbg {
		min-height: 100vh;
	}
}

.maplink {
	display: block; 
	height: 100%;
	width: 100%;
	top: 0;
	bottom: 0;
}


/* ACCORDEON */

.accordionitem {
	border-bottom: 1px solid #2b3d54;
	margin: 25px 0;
	padding: 25px 0;
}

.accordiontitle {
	color: #fff;
	font-size: 40px;
	margin-bottom: 20px;
	cursor: pointer;
}

@media (max-width: 768px){
	.accordiontitle {
		font-size: 25px;
	}
}

.accordioncontent {
	display: none;
	width: 70%;
	color: #fff;
	font-size: 18px;
}

.arrowrotate {
	margin-top: 10px;
	float: right;
	transition: all 0.3s;
}
.oppened .arrowrotate {
	transform: rotate(90deg);
}




/* PAGE VOS BESOINS */

.JumboTitle {
	font-size: 85px;
}
@media (max-width: 768px){
	.JumboTitle {
		font-size: 45px;
	}
}


/* LAYER */

.subtxt {
	background: url("../images/overlayletter.png") no-repeat center right;
	background-size: contain;	
}

.subtxt2 {
	background: url("../images/logo-hori.png") no-repeat center left;
	background-size: contain;	
	filter: invert(1);
}


.equipe {
	min-height: 100vh;
	position: relative;
}

/* DECORATION */

.divider {
	margin: 10px 0;
}

.divider::before {
	display: inline-block;
	content:"";
	height: 10px;
	width: 10px;
	border-radius: 100%;
	background-color: #316fca;
}

.divider::after {
	display: inline-block;
	float: right;
	content:"";
	height: 2px;
	width: 95%;
	margin-top: 12px;
	background-color: #2b3d54;
}

/* FOOTER */

footer {
	position: relative;
	background: #111;
	z-index: 2;
}

footer i {
	margin-right: 5px;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	color: var(--primary-color);

}

footer h5 {
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 5px;
	color: #666;
}
footer {
	font-size: 15px;
	color: #b5b5b5 !important;
	padding-top: 60px;
	padding-bottom: 20px;
}

footer ul{

	margin: 0px;
	padding: 0px;
}

footer ul li{
	display: block;
	margin-bottom: 10px;
}


footer hr {
	margin-top: 30px;
	margin-bottom: 30px;
}


@media (max-width: 768px) {
	footer {
		font-size: 15px;
	}
}

/*****************************
COOKIE NOTICE
*****************************/

.checkbox label .toggle,.checkbox-inline .toggle{margin-left:-20px;margin-right:5px}
.toggle{position:relative;overflow:hidden}
.toggle input[type=checkbox]{display:none}
.toggle-group{position:absolute;width:200%;top:0;bottom:0;left:0;transition:left .35s;-webkit-transition:left .35s;-moz-user-select:none;-webkit-user-select:none}
.toggle.off .toggle-group{left:-100%}
.toggle-on{position:absolute;top:0;bottom:0;left:0;right:50%;margin:0;border:0;border-radius:0}
.toggle-off{position:absolute;top:0;bottom:0;left:50%;right:0;margin:0;border:0;border-radius:0}
.toggle-handle{position:relative;margin:0 auto;padding-top:0;padding-bottom:0;height:100%;width:0;border-width:0 1px}
.toggle.btn{min-width:59px;min-height:34px}
.toggle-on.btn{padding-right:24px}
.toggle-off.btn{padding-left:24px}
.toggle.btn-lg{min-width:79px;min-height:45px}
.toggle-on.btn-lg{padding-right:31px}
.toggle-off.btn-lg{padding-left:31px}
.toggle-handle.btn-lg{width:40px}
.toggle.btn-sm{min-width:50px;min-height:30px}
.toggle-on.btn-sm{padding-right:20px}
.toggle-off.btn-sm{padding-left:20px}
.toggle.btn-xs{min-width:35px;min-height:22px}
.toggle-on.btn-xs{padding-right:12px}
.toggle-off.btn-xs{padding-left:12px}

.cookienotice .coloraccent {
	color: #316fca;
}

.pointer{
	cursor: pointer;
}

.cookienotice {
	display: none;
	position: fixed;
	width: 100%;
	text-align: center;
	bottom: 0;
	background: #000;
	color: #fff;
	padding: 20px;
	z-index: 9999;
}

.toggle-handle {
	background: #e8e8e8;
}
.toggle-off {
	background: #f5f5f5 !important;
	border-color: #f5f5f5 !important;
	color: #555 !important;;
}

.toggle-on {
	background: #2980b9 !important;
	border-color: #2980b9 !important;
}

.cookiebouton {
	border-radius: 30px;
	border: 0px;
	padding: 7px 15px;
	color: #fff;
	background: #316fca;
	transition: all 0.3s ease;
}

.cookiebouton:hover {
	background: #a0c8f3;
	color: #316fca;
	transition: all 0.3s ease;
}


/* LOADER */

.loading {
	z-index: 999;
	height: 100vh;
	width: 100%;
	background: #0f1a2c;
	color: #000;
	display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
	position: fixed;
	overflow: hidden;
}

.loaderLogo {
	width: 200px; 
	position: absolute; 
	top: 40%; 
	left: 5%; 
	animation: fadeInLogo 2.5s linear forwards;
	filter: invert(1);
}

.svgloader {
	position: absolute;
	top: 0;
	height: 100vh;
	left: 0; 
	right: 0; 
	margin-inline: auto; 
	width: 100%;	
}
.svgloader .drawingloader {
	stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 7000;
    stroke-dashoffset: 10;
    animation: draw 4s ease-out forwards;
}

@media (max-width: 768px) {
	.svgloader svg, .svgOverlay svg,.heromask, .heroBG{
		height: 100vh;
	}
	.loaderLogo {
		top: 10px;
		width: 100px;
	}
	
	.svgloader .drawingloader {
		stroke-dasharray: 5000;
		stroke-dashoffset: 10;
		animation: draw 13s ease-out forwards;
	}
	
}

@keyframes fadeInLogo {
    0% {
        filter: opacity(0);
    }
    60% {
        filter: opacity(0.5);
    }
	100% {
        filter: opacity(1);
    }
}

@keyframes draw {
    from {
        stroke-dashoffset: 5000;
    }
    to {
        stroke-dashoffset: 0;
    }
}


/* SIMULATEURS */

.step2, .step3 {
	opacity: 0;
	transition: all 0.2s ease;
}

.simicn {
	font-size: 150px;
	cursor: pointer;
}


#gas,#elec {
	display: none;
}

.km, .cv {
	margin-top: 20px;
	font-size: 80px;
	line-height: 80px;
	width: 400px;
	background: none;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	color: #000;
	text-align: center;
}

.energielabel {
	width: 40%;
	text-align: center;
}

.marglabel {
	margin-top: 20px;
}

.submit {
	border-radius: 50px;
	border: none;
	background: #a0c8f3;
	padding: 17px 20px;
	color: #316fca;
	font-weight: bold;
}

#montantIK {
	margin-top: 50px;
	font-size: 50px;
}

.capitalize {
	 text-transform: capitalize;
}

/* CONTACT FORM */

.myforminput input, .myforminput select, .myforminput textarea {
	width: 100%;
	padding: 10px 15px;
	border-radius: 10px;
	background: transparent;
	border: 1px solid #a0c8f3;
	color: #fff;
} 

.myforminput option {
	color: #000;
	background: transparent;
}

.myforminput label {
	font-size: 18px;
	margin-top: 20px;
}

input[type='checkbox'] {
	display: inline;
    width: auto;
    margin-right: 10px;
}

/* ERRUER 404 */

.err {
	display: table;
	width: 100%;
	height: 100vh;
}

.err .errcontent {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 100%;
}


/* BOUTONS */

.buttonlink {
	padding: 10px 15px;
	color: #316fca;
	margin-top: 20px;
	display: inline-block;
	font-weight: bold;
}


.enum {
	margin: 0px;
	padding: 0px;
}

.enum li {
	list-style: none;
	font-size: 35px;
	margin-bottom: 30px;
	font-weight: 400;
}

.bigtxt {
	font-size: 30px;
}


.bigblocpad {
	padding: 8%;

}

.bigblocpad .txt, .txt {
	font-size: 20px;
}

/* THEME CLAIR */

.wtheme .wrapper {
	background: #fff; 
	color: #000;
 }

.wtheme .menubar span {
	background: #07101f;
}

.wtheme .menubar.open span{
	background: #fff;
}

.wtheme .infobulle {
	border-color: #000;
}

.simsize {
	min-height: 200vh;
}


/* FLIP CARD */

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 70vh;
  border-radius: 50px 0 0 0;
  perspective: 1000px;
  margin-bottom: 30px;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back, .flip-card-backreverse {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  color: black;
}

/* Style the back side */
.flip-card-back {
  color: white;
  transform: rotateY(180deg);
  border-radius: 0 50px 0 0;
  background: #07101f;
  padding: 20px;
}

.flip-card-backreverse {
  color: white;
  transform: rotateY(180deg);
  border-radius: 0 0 50px 0;
  background: #07101f;
  padding: 20px;
}

.bgayten {
	background-image: url('../images/ayten.webp');
	background-size: cover;
	background-position: center center;
	border-radius: 50px 0 0 0;
	height: 100%;
	width: 100%;
}

.bgclement {
	background-image: url('../images/clement.webp');
	background-size: cover;
	background-position: center center;
	border-radius: 0 0 50px 0;
	height: 100%;
	width: 100%;
}

.Username {
	font-size: 22px;	
}

.Usernamefront {
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: #316fca;
	font-size: 25px;
	font-weight: bold;
}



.userzoom {
	position: absolute;
	width: 100px;
	height: 100px;
	top: 45%;
	left: 40%;
	font-size: 80px;
}


