@font-face {
    font-family: 'Anton';
    src: url('Polices/Anton.woff2') format('woff2'),
        url('Polices/Anton.woff') format('woff');
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica LT Std';
    src: url('Polices/HelveticaLTStd-UltraComp.woff2') format('woff2'),
        url('Polices/HelveticaLTStd-UltraComp.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('Polices/Calibri.woff2') format('woff2'),
        url('Polices/Calibri.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg-color:black;
  --text-color:black;
  --scroll-pct:0;
}

body {
  margin: 0;
  overflow: hidden;
  color: white;
background: #00050b;
	font-family: 'Calibri';
	position:relative;
}

body.lock-scroll {
  overflow-y: hidden;
}

.hide{
	display:none !important;
}

#message_erreur {
    background: rgb(42,76,108);
    background: radial-gradient(circle, rgba(42,76,108,1) 0%, rgba(6,15,24,1) 51%);
    display: flex;
    height: 100vh;
    width: 100vw;
    color: #fff;
    text-transform: uppercase;
    font-family: Anton;
    font-size: calc(0.8vh + 0.8vw);
    top: 0;
    left: 0;
    position: absolute;
    padding-left: 18%;
	padding-right: 18%;
    margin: 0;
	text-align:center;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#redirectButton {
    display: block;
    width: 30%;
}

#contact_message{
    background:#24425ee8;
    display: flex;
    height: 100%;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-family: Anton;
    font-size: calc(0.8vh + 0.8vw);
    top: 0;
    left: 0;
	z-index:9000000;
    position: absolute;
    padding: 0;
	border-radius:20px;
    margin: 0;
    align-content: center;
    justify-content: center;
    align-items: center;
	padding:5%;
}

.interest-button {
	background: #00050b85;
	color: #fff;
	border: none;
	padding: 2%;
	border-radius: 10px;
	font-family: Anton;
	font-size: calc(0.6vw + 0.6vh);
	cursor:pointer;
}

.interest-button:hover {
	background: #00050b30;
	color: #fff;
}


#img_accueil{
	width:75%;
	height:100%;
	position:relative;
	display: flex;
}


.hotspot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  border-radius: 50%;
}
.hotspot__position {
    position: absolute;
    top: 32%;
    left: 36%;
}

.hotspot__container {
  position: relative;
}
.hotspot1 {
    width: 50px;
    height: 50px;
    border: 5px solid #1d3042;
    background-color: transparent;
    z-index: 1;
    opacity: 0.2;
    animation: dot1 2s infinite;
}
.hotspot2 {
    width: 50px;
    height: 50px;
    background-color: #122e49;
    z-index: 2;
    animation: dot2 2s infinite;
}

.hotspot3 {
    width: 50px;
    height: 50px;
    background-color: #2e4b67d1;
    z-index: 3;
    animation: dot3 1s alternate infinite;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-family: 'Helvetica LT Std';
    margin: 0;
    line-height: 50px;
    font-size: 30px;
    padding: 0;
    flex-direction: row;
    transition: transform 0.3s; 
}


.plus {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.plus .inner {
  background-color: #fff;
  transition: transform 0.2s;
}
.plus .inner:nth-child(1) {
  width: 16px;
  height: 3px;
}
.plus .inner:nth-child(2) {
    width: 3px;
    height: 16px;
    transition-delay: 0s;
    position: absolute;
}

.plus-btn {
  cursor: pointer;
}
.hotspot__position:hover .inner:nth-child(2) {
  transform: rotate(-45deg);
  transition-delay: 0s;
}
.hotspot__position:hover .inner:nth-child(1) {
  transition-delay: 0s;
  transform: rotate(-45deg);
}

@keyframes dot1 {
  0% {
    opacity: 0.2;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5);
  }
}
@keyframes dot2 {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}
@keyframes dot3 {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.tooltip {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-60%) translateY(100%);
    background-color: #fff0;
    border-radius: 5px;
    display: flex;
    width: 0;
    color: #ffffffc4;
    transition: transform 1s ease;
    opacity: 0;
    text-align: left;
    text-transform: uppercase;
    font-size: calc(0.8vh + 0.8vw);
    font-family: 'Helvetica LT Std';
    line-height: calc(0.8vh + 0.8vw);
    border: 2px solid #2e4b67d1;
    flex-direction: column;
    letter-spacing: 2px;
}

.hotspot__position:hover .tooltip {
    transform: translateX(-60%) translateY(-45%);
    opacity: 1;
	width: 300px;
}

.haut_tool {
    padding: 2%;
    width: 100%;
    height: 48%;
    background-color: #2e4b67d1;
}

.bas_tool{
    width: 100%;
    height: 48%;
	padding:2%;
}

.tooltip span {
    font-size: calc(1vh + 1vw);
    line-height: calc(1vh + 1vw);
    font-family: 'Anton';
}


.accroche{
	font-family: 'Helvetica LT Std';
		font-size: calc(1.7vh + 1.7vw);
	line-height: calc(1.7vh + 1.7vw);
	margin:0;
}

.img_telephone_accueil{
		display:none;
}

.titre_vertical {
    position: absolute;
    top: -50%;
    left: 4%;
    height: 200%;
    z-index: 1;
    font-family: 'Anton';
    font-weight: 100;
    text-align: center;
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    font-size: 9vw;
    line-height: 1;
    color: rgba(200,200,200,.1);
    background: linear-gradient(90deg, rgba(200,200,200,0), rgba(200,200,200,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}


#texte_accueil h1{
	font-family: 'Anton'; 
	font-size: calc(5vh + 5vw);
	line-height: calc(5vh + 5vw);
	font-weight: 100;
	margin:0;
}

#texte_accueil{
	width:30%;
	display: flex;
	justify-content: flex-end;
	align-items: end;
	align-content: end;
	float:right;
	flex-direction: column;
	text-align: right;
	font-family: Calibri;
}

#texte_accueil p{
	font-size: calc(0.6vw + 0.6vh);
}

header{
	padding:7%;
}


#burger_menu {
    cursor: pointer;
    padding: 0;
    display: flex;
    width: 50px;
    z-index: 1000000;
    height: 50px;
    align-content: center;
    justify-content: center;
    align-items: center;
	opacity:0.8;
}

#burger_menu_tel{
	display:none;
}

#burger_menu span {
  position: relative;
  display: block;
  width: 100%;
  height: 10px;
  background: #fff;
  transition: all 0.2s ease-in-out;
}
#burger_menu span:before, #burger_menu span:after {
  position: absolute;
  background: #fff;
  content: "";
  width: 100%;
  height: 10px;
  transition: all 0.2s ease-in-out;
}
#burger_menu span:before {
  top: -18px;
  left:0;
}
#burger_menu span:after {
  top: 18px;
  left:0;
}

#burger_menu.active span {
  background: transparent;
}
#burger_menu.active span:before {
    transform: rotate(45deg) translate(13px, 12px);
}
#burger_menu.active span:after {
    transform: rotate(-45deg) translate(13px, -13px);
}

.icones_tel_nav{
	display:none;
}

.h-track {
  width: 100%;
  height: 100vh;
  overflow-x: auto;
  position: relative;
  overflow-y: hidden;
}
.h-track .h-content-container {
    position: relative;
    max-width: unset;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0;
    align-items: stretch;
    transition: transform 0.2s linear;
}

.h-track .h-content-container > * {
  display: flex;
  place-items: Center;
  min-width: 100%;
  height: 100%;
	justify-content: center;
	align-items: center;
	align-content: center;
	padding:5%;
	position:relative;
}
.scroll-downs-g {
    position: absolute;
    left: 3%;
    bottom: 3%;
    z-index: 100;
    margin: auto;
    width: 34px;
    height: 55px;
}

.mousey-g {
    width: 3px;
    padding: 5px 10px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller-g {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll-g;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

.scroll-downs-d {
    position: absolute;
    right: 3%;
    bottom: 3%;
    z-index: 100;
    margin: auto;
    width: 34px;
    height: 55px;
}
.mousey {
  width: 3px;
    padding: 5px 10px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0;}
}

@keyframes scroll-g {
  0% { opacity: 0; }
  10% { transform: translateY(15px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1;}
}

video {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: auto;
  top:0;
  left:0;
}

#menu {
    position: absolute;
    text-align: right;
    margin: 1% 3%;
    z-index: 100;
    color: #fff;
    right: 0;
    left: 0;
    top: 0;
    font-family: Calibri;
    font-weight: 500;
    font-size: calc(1vh + 1vw);
    letter-spacing: 2px;
    width: 94%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 10%;
}

#menu-list {
    width: 36%;
    margin-right: 2%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    right: 6%;
    top: 0;
    padding: 0;
    height: 50px;
	display:none;
}


ul li {
    color: #fff;
    display: flex;
    height: 25%;
    width: 25%;
    text-transform: uppercase;
    font-family: Calibri;
    font-size: calc(0.6vw + 0.6vh);
    justify-content: center;
    align-items: center;
    align-content: center;
}

#menu-logo{
	width:50%;
}

#conteneur_logo {
    width: 100%;
    height: 100%;
    text-align: left;
}

#conteneur_logo_tel {
    width: 100%;
    height: 12%;
    padding: 3%;
    position: absolute;
    text-align: left;
	display:none;
}

#conteneur_logo_tel img{
	height:100%;
	width:auto;
}

#conteneur_logo img{
	height:100%;
	width:auto;
}
		
#menu-line{
	display: none;
	position: absolute;
    right: 50%;
    bottom: 25px;
	width: 0;
	height: 2px;
	background-color: #ffffff91;
}
		
ul{
		z-index: 100;
}
		

ul li:last-child{
	margin-right: 0 !important;
}

#cta_accueil {
    width: 100%;
    height: 20%;
    border: solid 2px #fff;
    padding: 4%;
    cursor: pointer;
    border-radius: 10px;
}

.flou_mouvement {
    filter: blur(1.5rem);
    transition: filter 0.5s ease-out;
}

#cta_accueil a {
    line-height: calc(0.8vh + 0.8vw);
    font-size: calc(0.8vh + 0.8vw);
    font-family: 'Anton';
    text-transform: uppercase;
    width: 100%;
    height: 100%;
}

#cta_accueil:hover {
    opacity:0.7;
}

/*********** SECTION BUSE *****************/
#texte_buse_1 {
    width: 12%;
    position: absolute;
    right: 10%;
    top: 33%;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: flex-end;
	text-align:right;
}

#texte_buse_2 {
    width: 15%;
    position: absolute;
    left: 10%;
    top: 39%;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

#texte_buse_3 {
    width: 20%;
    position: absolute;
    right: 10%;
    bottom: 20%;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

#texte_buse_4 {
    width: 20%;
    position: absolute;
    left: 10%;
    bottom: 20%;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

#texte_buse_4 hr {
    border: 2px solid #fff;
    width: 100%;
}

#titre_ripage{
	margin-bottom:-28% !important;
}

#buse h1{
	font-family: 'Anton'; 
	font-size: calc(4vh + 4vw);
	line-height: calc(4vh + 4vw);
	font-weight: 100;
	margin:0;
}

#buse h2{
	font-family: 'Helvetica LT Std';
	text-transform:uppercase;
	font-size: calc(2vh + 2vw);
	line-height: calc(2vh + 2vw);
	margin:0;
}

#buse p{
	font-family: 'Calibri'; 
	font-size: calc(0.7vh + 0.7vw);
	line-height: calc(0.7vh + 0.7vw);
	font-weight: 100;
	margin:0;
}

#ligne_buse{
	width:330%;
}

#ligne_ripage{
	width:200%;
}

#ligne_pression{
	width:265%;
}

/*********** SECTION CUVE *****************/
#texte_cuve_1 {
    width: 20%;
    position: absolute;
    right: 10%;
    top: 33%;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: flex-end;
	text-align:right;
}

#texte_cuve_2 {
    width: 20%;
    position: absolute;
    left: 10%;
    top: 45%;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	text-align:left;
}

#texte_cuve_3 {
    width: 20%;
    position: absolute;
    left: 10%;
    top: 45%;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
	text-align:left;
}


#cuve h1{
	font-family: 'Anton'; 
	font-size: calc(4vh + 4vw);
	line-height: calc(4vh + 4vw);
	font-weight: 100;
	margin:0;
}

#cuve h2{
	font-family: 'Helvetica LT Std';
	text-transform:uppercase;
	font-size: calc(2vh + 2vw);
	line-height: calc(2vh + 2vw);
	margin:0;
}

#cuve p{
	font-family: 'Calibri'; 
	font-size: calc(0.7vh + 0.7vw);
	line-height: calc(0.7vh + 0.7vw);
	font-weight: 100;
	margin:0;
}

#ligne_cuve{
	width:175%;
}

#ligne_agitation{
	width:180%;
}

#huissier {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
    flex-direction: row;
    margin-top: 5%;
    width: 100%;
    height: 114px;
}

#huissier p {
    font-weight: bold;
    font-size: calc(0.7vw + 0.7vh);
}

#huissier img {
    height:100%;
	width:auto;
	margin-left:5%;
}

/*********** SECTION MATERIAUX *****************/
#texte_mat_1 {
    width: 26%;
    position: absolute;
    left: 10%;
    top: 22%;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

#texte_mat_2 {
    width: 18%;
    position: absolute;
    right: 10%;
    bottom: 23%;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

#materiaux h1 {
    font-family: 'Anton';
    font-size: calc(3.5vh + 3.5vw);
    line-height: calc(3.7vh + 3.7vw);
    font-weight: 100;
    margin: 0;
    text-transform: uppercase;
}

#materiaux h2 {
    font-family: 'Helvetica LT Std';
    text-transform: uppercase;
    font-size: calc(2.5vh + 2.5vw);
    line-height: calc(2.5vh + 2.5vw);
    margin: 0;
    text-align: right;
}

#materiaux p{
	font-family: 'Calibri'; 
	font-size: calc(0.7vh + 0.7vw);
	line-height: calc(0.7vh + 0.7vw);
	font-weight: 100;
	margin:0;
}

#ligne_mat{
	width:118%;
}

#ligne_pompe{
	width:195%;
}

/*********** SECTION ECOLOGIE *****************/

#ecologie h1 {
    font-family: 'Anton';
    font-size: calc(3vh + 3vw);
    line-height: calc(3vh + 3vw);
    font-weight: 100;
    margin: 0;
    text-transform: uppercase;
}

#texte_eco_1 {
    width: 26%;
    position: absolute;
    right: 9%;
    top: 22%;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

#texte_ecologie {
    font-family: 'Calibri';
    font-size: calc(0.7vh + 0.7vw);
    line-height: calc(0.7vh + 0.7vw);
    font-weight: 100;
    margin: 10% 0;
    text-align: right;
    width: 63%;
}

.flex {
    width: 26%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    left: 0;
    position: absolute;
    margin-left: 5%;
    flex-direction: column;
}
        
.flex div {
    width: 60%;
    height: 26%;
    padding: 2%;
    margin: 10px;
    text-align: center;
    border-radius: 5px;
    background: #24425e75;
    color: #fff;
    box-shadow: 2px 3px 20px rgba(0, 0, 0, 0.2);
}

.flex h3 {
    font-family: 'Helvetica LT Std';
    text-transform: uppercase;
    margin: 0;
    display: flex;
    font-size: calc(0.9vh + 0.9vw);
    line-height: calc(0.9vh + 0.9vw);
    align-items: center;
    align-content: center;
    justify-content: center;
}

.flex div {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

/*********** SECTION SAV *****************/

#texte_sav_1 h1 {
    font-family: 'Anton';
    font-size: calc(4vh + 4vw);
    line-height: calc(3.5vh + 3.5vw);
    font-weight: 100;
    margin: 0;
    text-transform: uppercase;
}

#texte_sav_1 h2 {
    font-family: 'Helvetica LT Std';
    text-transform: uppercase;
    font-size: calc(4vh + 4vw);
    line-height: calc(4vh + 4vw);
    margin: 0;
}


#texte_sav_1 {
    width: 30%;
    position: absolute;
    left: 9%;
    top: 22%;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

#texte_sav_2 {
    width: 24%;
    position: absolute;
    right: 9%;
    top: 44%;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

#texte_sav {
    font-family: 'Calibri';
    font-size: calc(0.7vh + 0.7vw);
    line-height: calc(0.7vh + 0.7vw);
    font-weight: 100;
    margin: 10% 0;
    text-align: right;
    width: 63%;
}

#texte_sav_2 h1 {
    font-family: 'Anton';
    font-size: calc(4vh + 4vw);
    line-height: calc(4vh + 4vw);
    font-weight: 100;
    margin: 0;
    text-transform: uppercase;
}

#texte_sav_2 h2{
	    font-family: 'Helvetica LT Std';
    text-transform: uppercase;
    font-size: calc(3vh + 3vw);
    line-height: calc(2.5vh + 2.5vw);
    margin: 0;
}


/*********** SECTION BENEFICES *****************/
.step {
    width: 85%;
    height: 100%;
    position: relative;
    padding: 5%;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.titre_calc_grand {
    font-size: calc(1.3vw + 1.3vh) !important;
    line-height: calc(1.3vw + 1.3vh) !important;
}

.btn_prev_next_calc {
    display: flex;
    width: 85%;
    flex-direction: row;
    height: 12%;
    position: absolute;
    bottom: 0;
    border-top: solid 1px #fff;
    margin: 2% 0;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.resume-label-fiole {
    font-size: calc(1vw + 1vh);
    line-height: calc(1vw + 1vh);
    font-family: 'Anton';
    margin-bottom: 2%;
    height: 15%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

.resume-value {
    background-color: #00050ba6;
    padding: 1%;
    display: flex;
    font-family: 'Helvetica LT Std';
    font-size: calc(1vh + 1vw);
    border-radius: 10px;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.resume-label {
    margin: 1% 0;
    font-size: calc(0.5vw + 0.5vh);
}

.resume-section h2{
	height:auto !important;
}

#calculator-form h2 {
    font-family: 'anton';
    font-weight: 100;
    display: flex;
    margin: 2% 0;
    height: 26%;
    font-size: calc(0.9vw + 0.9vh);
    line-height: calc(0.95vw + 0.95vh);
    text-transform: uppercase;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#rappel_marge {
    margin: 0;
    height: auto;
    line-height: calc(2vh + 2vw);
    font-size: calc(2vh + 2vw);
    font-family: 'Helvetica LT Std';
}

#calculator-form h3 {
    font-family: 'Calibri';
    font-weight: 100;
    margin: 0;
    font-size: calc(0.55vw + 0.55vh);
    line-height: calc(0.6vw + 0.6vh);
    text-transform: uppercase;
}

#step-6 {
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 0;
}

.img_booster {
    width: 45%;
	max-width:45%;
    height: 80%;
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}


.svg_booster {
    width: 100%;
    height: 100%;
    position: absolute;
}

.resume-section {
    width: 60%;
    height: 80%;
    padding: 0%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}

.resume-final {
    width: 40%;
    height: 80%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.resume-conteneur {
    width: 50%;
    padding: 1%;
}

.resume-grand{
	width:100% !important;
}

#filariane {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 15%;
    padding: 1%;
    align-content: center;
    align-items: center;
    background-color: #00050b70;
    flex-direction: column;
}

.filariane-item {
    opacity: 0.5;
    font-size: calc(0.6vw + 0.6vh);
    font-family: 'Helvetica LT Std';
    transition: opacity 0.3s;
    line-height: calc(0.6vw + 0.6vh);
    text-transform: uppercase;
    height: 16.66%;
    padding: 1%;
    display: flex;
    border-bottom: solid 2px #ffffff6b;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.filariane-item.current {
    opacity: 1;
    font-weight: bold;
}

.filariane-item span {
    font-weight: normal;
    font-size: calc(0.7vw + 0.7vw);
    line-height: calc(0.7vw + 0.7vw);
}

#benef{
    display: flex;
    place-items: Center;
    min-width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 5% 5%;
    position: relative;
}


#image_calcul{
	 width: 35%;
	 height: 100%;
}

#form_blur {
    width: 100%;
    height: 100%;
}

#formulaire_calcul {
    width: 100%;
    display: flex;
    height: 92%;
    position: relative;
    padding: 1% 1%;
    margin: 10px;
    text-align: center;
    border-radius: 20px;
    background: #24425e75;
    color: #fff;
    box-shadow: 2px 3px 20px rgba(0, 0, 0, 0.2);
    align-content: center;
    justify-content: center;
    align-items: center;
}

#formulaire_calcul_2 {
    width: 45%;
    height: 90%;
    display: flex;
    padding: 0;
    position: relative;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.calculator {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#rev_booster {
    right: 0;
    width: 25%;
    margin-left: 3%;
    height: 100%;
}

.conteneur_blur_form {
    position: relative;
    display: flex;
    width: 70%;
    height: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#calculator-form {
    height: 100%;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#titre_calculateur {
    font-family: 'Anton';
    font-size: calc(0.75vw + 0.75vh);
    line-height: calc(0.8vw + 0.8vh);
    text-align: center;
    font-weight: 100;
    text-transform: uppercase;
    margin: 0;
    height: auto;
}

#titre_calculateur span{
	font-size: calc(0.6vw + 0.6vh);
    line-height: calc(0.6vw + 0.6vh);
}

#conteneur_final_calculateur{
	display: flex;
    width: 45%;
	height:90%;
    flex-direction: column;
}


.form_left .form-group {
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    position: relative;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.form_left-gr .form-group label{
    width: 100%;
}

.form_left-gr .form-group input{
    width: 100% !important;
	height:80% !important;
}

.form_left-gr {
    width: 100% !important;
	height:10% !important;
}

.ajout_sigle {
    display: flex;
    flex-direction: row;
    height: 80%;
    width: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
	position:relative;
}

.img_booster .fa {
    bottom: 6%;
    top: initial;
    left: initial;
}

.fa {
    font-size: calc(1vw + 1vh);
    position: absolute;
    top: 10%;
    opacity: 0.5;
    left: 2%;
}

.popup{
    font-family: "Helvetica LT Std";
    font-size: calc(0.8vh + 0.8vw);
    line-height: calc(1vh + 1vw);
    background-color: rgba(0, 5, 11, 0.7);
    box-shadow: #fff 0px 4px 4px;
    width: auto;
    opacity: 1;
    height: auto;
    text-transform: uppercase;
    padding: 1%;
	max-width:25%;
}



.ajout_sigle_resume {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 80%;
    margin-top: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
}


.form_right .form-group {
    margin-bottom: 0;
    height: 100%;
    width: 100%;
	position:relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.form_right input[type="text"] {
    width: 100%;
    height: 25%;
    padding: 8px;
    border: 0;
    text-align: center;
    border-radius: 4px;
    background-color: #ffffff69;
    margin-bottom: 2%;
    color: #fff;
    font-size: calc(1.5vh + 1.5vw);
    font-family: 'Helvetica LT Std';
    font-weight: 900;
	-moz-appearance: textfield;
	display:flex;
align-content: center;
justify-content: center;
align-items: center;

}

.form-group-petit {
    margin-bottom: 10px;
    height: 30%;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid #fff;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.conteneur-ligne{
	    display: flex;
    flex-direction: row;
}

.form_left {
    width: 75%;
    padding: 1%;
    display: flex;
    border-radius: 23px;
    height: 15%;
    margin: 3%;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: #00050b59;
}

.form_right {
    width: 50%;
    padding: 1%;
    height: 100%;
}

.form_right .form-group label {
    display: flex;
    height: auto;
    margin-bottom: 1%;
    text-transform: uppercase;
    font-family: 'Anton';
    font-size: calc(0.6vh + 0.6vw);
    line-height: calc(0.6vh + 0.6vw);
    align-content: center;
    justify-content: center;
    align-items: center;
	opacity:0.5;
}


.form_left .form-group label {
    display: flex;
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: 'Anton';
    font-size: calc(0.6vh + 0.6vw);
    line-height: calc(0.7vh + 0.7vw);
    align-content: center;
    justify-content: center;
    align-items: center;
	opacity:0.5;
	padding:0 14%;
}

.ligne_form {
    width: 100%;
    margin: 2% 0%;
    height: 10%;
    display: flex;
    flex-direction: row;
}

.ligne_form_inter {
    width: 100%;
    height: 10%;
    display: flex;
    margin: 2% 0;
    flex-direction: row;
    background-color: #141a24;
}

.loc {
    background-color: #f8fcff;
    color: #223c53;
}

.loc input{
	color: #223c53 !important;
	border-bottom: 2px solid #223c53 !important;
}

.ligne_form_inter .form_left {
    width: 50%;
    display: flex;
    height: 100%;
    border: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
}

.ligne_form_inter .form_right {
    width: 50%;
    height: 100%;
    border: 0;
}

.ligne_form_inter .form_left .form-group {
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.ligne_form_inter .form_right .form-group {
    margin-bottom: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.ligne_form_inter .form_right input[type="text"] {
    width: 90%;
    height: 70%;
    padding: 8px;
    border-bottom: 2px solid #fff;
    text-align: center;
    border-radius: 0;
    background-color: transparent;
    margin-bottom: 0;
    color: #fff;
    font-size: calc(1.3vh + 1.3vw);
    font-family: 'Helvetica LT Std';
    font-weight: 900;
	display:flex;
align-content: center;
justify-content: center;
align-items: center;

}

.ligne_form_debut {
    width: 100%;
    height: 10%;
    display: flex;
    margin: 1% 0;
    flex-direction: row;
    background-color: #141a24;
}

.ligne_form_debut label {
    display: flex;
    text-align: center;
    height: 100%;
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: 'Anton';
    font-size: calc(0.7vh + 0.7vw);
    line-height: calc(0.8vh + 0.8vw);
    align-content: center;
    justify-content: center;
    align-items: center;
}

#bidongratuit1, #prix_vente_TTC_10ml{
	background-color:transparent !important;
}

.conteneur_marge {
    height: 80%;
    display: flex;
    margin: 4% 0;
    width: 100%;
    flex-direction: column;
	align-content: center;
    justify-content: center;
    align-items: center;
}

.conteneur_marge-colonnes {
    height: auto;
    display: flex;
    margin: 4% 0;
    width: 100%;
    flex-direction: row;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: flex-end;
}
.conteneur_marge .form_left {
    width: 100%;
    padding: 1%;
    display: flex;
    border-radius: 23px;
    height: 30%;
    margin: 3%;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: #00050b59;
}

.colonne_marge {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 2%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.ligne_form_debut .form-group {
    margin-bottom: 0;
    height: 100%;
    width: 100%;
    display: flex;
	padding:3%;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.ligne_debut {
    background-color: #141a24;
}

.form_left input[type="text"] {
    width: 100%;
    height: 100%;
    padding: 8px;
    border: 0;
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
	background-color:transparent;
    color: #fff;
    font-size: calc(2vh + 2vw);
    font-family: 'Helvetica LT Std';
    font-weight: 900;
    -moz-appearance: textfield;
	display:flex;
align-content: center;
justify-content: center;
align-items: center;

}


.ajout_sigle span {
    font-family: 'Anton';
    width: 16%;
	height:100%;
    font-weight: 100;
    font-size: calc(1vh + 1vw);
    background-color: transparent;
    display: flex;
    opacity: 0.7;
    justify-content: center;
    align-items: center;
}

.ajout_sigle_resume span {
    font-family: 'Anton';
    width: 16%;
	height:100%;
    font-weight: 100;
    font-size: calc(1vh + 1vw);
    background-color: transparent;
    display: flex;
    opacity: 0.7;
    justify-content: center;
    align-items: center;
}

.result {
    color: #fff;
    opacity: 0.5;
    width: 50%;
    text-align: center;
    font-family: 'Anton';
    font-size: calc(1.5vw + 1.5vh);
}

#result {
    width: 100%;
    padding: 1%;
    border: 0;
    border-radius: 0;
    height: auto;
    font-family: 'Anton';
    background-color: #ffffff59;
    color: #fff;
    text-align: center;
    font-size: calc(1.1vw + 1.1vh);
    -moz-appearance: textfield;
}


canvas{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	z-index:-1;
}

 .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
  }
  
#calculator-form button {
    background-color: transparent;
    color: #fff;
    margin: 2% 2%;
    width: 36%;
    height: 100%;
    padding: 2%;
    font-family: 'Anton';
    border: none;
    font-size: calc(0.7vh + 0.7vw);
    line-height: calc(0.7vh + 0.7vw);
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
}


#calculator-form button:hover{
opacity:0.7;
	transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
}

button {
    padding: 10px 20px;
    background-color: #00050b6e;
    color: #fff;
    margin: 2%;
    width: 75%;
    font-family: 'Anton';
    border: none;
    font-size: calc(0.8vh + 0.8vw);
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
}

button:hover {
  background-color: #1c3854;
}

.form_result {
    height: 70%;
    border-radius: 20px;
    border: 1px solid #fff;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}



#calcul_texte {
    font-family: 'Calibri';
    line-height: calc(0.7vh + 0.7vw);
    font-size: calc(0.5vh + 0.5vw);
    height: 25%;
    text-transform: uppercase;
    border-radius: 20px;
    border: 1px solid #fff;
    width: 100%;
    display: flex;
    padding: 7%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#conteneur_resultat{
	position: absolute;
    width: 40%;
	height:100%;
	right: -40%;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
	display: flex;
	padding: 3%;
}

.conteneur_resultat {
    width: 100%;
    height: 100%;
    display: flex;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
    flex-direction: column;
    padding-bottom: 40%;
}

.sigle_result {
    font-family: 'Anton';
    line-height: calc(0.9vh + 0.9vw);
    font-size: calc(0.9vh + 0.9vw);
    background-color: #ffffff4a;
    opacity: 0.7;
    width: 60%;
    padding: 3%;
    height: auto;
}

.form_result img {
    width: auto;
    height: 90%;
    position: absolute;
    max-height: 90%;
}

.form_result label {
    font-family: 'Anton';
    line-height: calc(0.6vh + 0.6vw);
    font-size: calc(0.65vh + 0.65vw);
    text-transform: uppercase;
    margin-right: 0;
    position: initial;
    display: flex;
    height: auto;
    height: auto;
    width: 55%;
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: center;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.euros{
    font-family: 'Helvetica LT Std';
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: calc(0.7vw + 0.7vh);
}

.btn {
  padding: 8px 20px;
  border-radius: 0;
  overflow: hidden;
}
.btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, var(--primary-color), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}
.btn:hover {
  background: transparent;
  box-shadow: 0 0 20px 10px rgba(51, 152, 219, 0.5);
}
.btn:hover::before {
  transform: translateX(100%);
}
.form-input-material {
  --input-default-border-color: white;
  --input-border-bottom-color: white;
}
#cookiemail, #password {
    display: flex;
    color: white;
    background-color: #162b3f82;
    border: none;
    width: 100%;
    padding: 4%;
    align-content: center;
    justify-content: center;
    align-items: center;
	text-align:center;
    border-radius: 5px;
    z-index: 10000;
}


.login-form {
    position: absolute;
    display: flex;
    width: 60%;
    flex-direction: column;
    align-items: center;
    padding: 50px 40px;
    color: white;
    background: rgb(6 15 24 / 89%);
    border-radius: 10px;
    /* box-shadow: 0 0.4px 0.4px rgba(128, 128, 128, 0.109), 0 1px 1px rgba(128, 128, 128, 0.155), 0 2.1px 2.1px rgba(128, 128, 128, 0.195), 0 4.4px 4.4px rgba(128, 128, 128, 0.241), 0 12px 12px rgba(128, 128, 128, 0.35); */
}

.form-input-material label{
    font-size: calc(0.5vw + 0.5vh);
    line-height: 100%;
    top: initial;
	display:flex;
    left: initial;
    margin: auto;
    width: auto;
    height: auto;	
	transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
}

.login-form h1 {
    margin: 0 0 24px 0;
    font-family: 'Anton';
    text-align: center;
    font-weight: 100;
    line-height: calc(0.75vw + 0.75vh);
    font-size: calc(0.7vw + 0.7vh);
}
.form-input-material {
    margin: 12px 0;
    position: relative;
    font-family: 'Calibri';
    font-size: calc(0.7vw + 0.7vh);
    line-height: calc(0.7vw + 0.7vh);
    width: 100%;
    display: flex;
    /* height: 13%; */
    align-content: center;
    justify-content: center;
    align-items: center;
}
.login-form .btn {
    width: 100%;
    margin: 18px 0 9px 0;
    border-radius: 5px;
    background-color: #162a3e4d;
    font-family: 'Helvetica LT Std';
    font-weight: 100;
    font-size: calc(0.6vw + 0.6vh);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: calc(0.7vw + 0.7vh);
}


input:focus {
    outline: none;
}

label{
  color:#fff; 
  font-size:18px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:0;
  width:100%;
  top:0;
  display:flex;
  height:100%;
  transition: 0.5s ease all;
  -moz-transition: 0.5s ease all; 
  -webkit-transition: 0.5s ease all;

}

#boosters_vendus, #bidons_gratuits2{
	height:80%;
}

#location{
	cursor:default;
}

.label_spe{
	padding: 0 16% 0 0;
}

input[type="text"]:focus ~ label{
  top:-20px;
  font-size:14px;
  color:#5264AE;
}

input[type="text"]::-webkit-inner-spin-button,
input[type="text"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/*********** FOOTER *****************/

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: center;
}

.invisible-scrollbar {
  scrollbar-width: none;
}

.invisible-scrollbar::-webkit-scrollbar {
  display: none;
}

.progress-bar {
    margin: 0;
    bottom: 0;
    width: 100%;
    float: left;
    max-width: 50%;
    height: 8%;
    border-radius: 5px;
    border: 2px solid #ffffff3b;
    overflow: hidden;
}

.progress-bar::before {
    content: "";
    display: block;
    background-color: #f8fcff70;
    height: 100%;
    width: var(--scroll-pct);
}

#accroche_footer {
    bottom: 0;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Calibri;
    font-weight: 100;
    height: 10%;
    float: right;
    padding: 1.3%;
}

#accroche_footer h2{
	    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Calibri;
    font-weight: 100;
	color:#fff;
	font-size:calc(0.7vh + 0.7vw);
}

#mentions {
    display: flex;
    height: 20%;
    width: 100%;
    color: #646769;
    font-size: calc(0.4vw + 0.4vw);
    font-family: Calibri;
    justify-content: center;
}

#mentions a{
text-decoration:none;
color: #646769;
}


.titre_vertical_offre {
    position: absolute;
    top: -50%;
    left: 4%;
    height: 200%;
    z-index: 1;
    font-family: 'Anton';
    font-weight: 100;
    text-align: center;
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    font-size: 7vw;
    line-height: 1;
    color: rgba(200,200,200,.1);
    background: linear-gradient(90deg, rgba(200,200,200,0), rgba(200,200,200,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}


	.animate {
		-moz-transform: scale(-1, 1) translateX(-100%);
		-webkit-transform: scale(-1, 1) translateX(-100%);
		-o-transform: scale(-1, 1) translateX(-100%);
		-ms-transform: scale(-1, 1) translateX(-100%);
		transform: scale(-1, 1) translateX(-100%);
  		stroke-dasharray: 10000;
  		stroke-dashoffset:2800;
  		animation: draw 5s linear reverse;
  		animation-iteration-count: 1;
	}

	@keyframes draw {
		to {
			stroke-dashoffset:-2000;
		}
	}
	
	
	
	.animate2{
  animation-delay:.5s;
  -webkit-animation-delay:.5s;
  -webkit-animation-fill-mode:both;
  -webkit-animation-duration:2s;
  animation-duration:2s;
}
@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(1);
    -webkit-transform: translateY(40px);
	}	100% {
		opacity: 1;
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
	0%{
    opacity: 0;
		-webkit-transform: translateY(1);
    -webkit-transform: translateY(40px);
  }
  100% {
		opacity: 1;
	}
}

@media only screen and (max-width: 600px) {
	
canvas {
    position: fixed;
    width: 100%;
    display: flex;
    height: 81%;
    top: 5%;
    left: 0;
    z-index: -1;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.h-track {
    width: 100%;
    height: 85vh;
    overflow-x: auto;
    position: relative;
    overflow-y: hidden;
}

.h-track .h-content-container {
    position: relative;
    max-width: unset;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 0 10% 0;
    align-items: stretch;
    transition: transform 0.2s linear;
}

.h-track .h-content-container > * {
    display: flex;
    place-items: Center;
    min-width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
    padding: 18% 9% 0 9%;
    position: relative;
    flex-direction: column;
}

.scroll-downs-g {
    position: absolute;
    left: 0%;
    bottom: 35%;
    z-index: 100;
    margin: auto;
    width: 34px;
    height: 55px;
}

.scroll-downs-d {
    position: absolute;
    right: 0;
    bottom: 35%;
    z-index: 100;
    margin: auto;
    width: 34px;
    height: 55px;
}

/***************** ACCUEIL TELEPHONE *****************/


.accroche {
    font-family: 'Helvetica LT Std';
    font-size: calc(3vh + 3vw);
    line-height: calc(3vh + 3vw);
    margin: 0;
	text-align:center;
}

.titre_vertical {
    top: -50%;
    left: -5%;
    font-size: 23vw;
}

#mentions {
    font-size: calc(1vw + 1vw);
    text-align: center;
    width: 95%;
    display: flex;
    flex-direction: column;
    height: 25%;
}
	
	#img_accueil{
		display:none !important;
	}
	
	.img_telephone_accueil{
		display:block;
		width:100%;
		height:50%;
	}
	
	#texte_accueil {
		width: 100%;
		height:100%;
		display: flex;
		justify-content: center;
		align-items: center;
		align-content: center;
		float: right;
		flex-direction: column;
		text-align: right;
		font-family: Calibri;
	}
	
	#texte_accueil p {
		text-align: center;
		font-size: calc(1vw + 1vh);
	}
	
#cta_accueil {
    width: 100%;
    height: 8%;
    border: solid 2px #fff;
    padding: 2%;
    display: flex;
    margin-bottom: 0;
    cursor: pointer;
    text-align: center;
    border-radius: 10px;
    align-content: center;
    justify-content: center;
    align-items: center;
}
	
#cta_accueil a {
    line-height: calc(1.2vh + 1.2vw);
    font-size: calc(1.2vh + 1.2vw);
    font-family: 'Anton';
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    height: auto !important;
}

.mousey-g, .mousey{
		display:none;
}

.icones_tel_nav {
    display: flex;
    width: 100%;
    height: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.icones_tel_nav img {
    width: 60%;
    opacity: 0.5;
    height: auto;
}
/***************** SECTION BUSE TELEPHONE *****************/	

#buse svg{
	display:none;
}

#texte_buse_1 {
    width: 100%;
    position: relative;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#buse h1 {
    font-size: calc(6vh + 6vw);
    line-height: calc(6vh + 6vw);
}

#buse p {
    font-size: calc(1.5vh + 1.5vw);
    line-height: calc(1.5vh + 1.5vw);
}	

#texte_buse_4 {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    margin-top: 5%;
    align-items: center;
    text-align: center;
}

#texte_buse_2 {
    width: 40%;
    position: absolute;
    left: 6%;
    top:initial;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

#texte_buse_3 {
    width: 40%;
    position: absolute;
    right: 6%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

#titre_ripage {
    margin-bottom: 0 !important;
}

/***************** SECTION CUVE TELEPHONE *****************/	

#cuve svg {
	display:none;
}

#cuve h1 {
    font-family: 'Anton';
    font-size: calc(6vh + 6vw);
    line-height: calc(6vh + 6vw);
    font-weight: 100;
    margin: 0;
}

#texte_cuve_1 {
    width: 100%;
    position: relative;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#cuve p {
    font-family: 'Calibri';
    font-size: calc(1.2vh + 1.2vw);
    font-weight: 100;
    line-height: calc(1.2vh + 1.2vw);
    margin: 0;
}

#texte_cuve_2 {
    width: 100%;
    position: absolute;
    left: 0;
    padding: 0 9%;
    top: auto;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
    text-align: center;
    bottom: 0;
}

#huissier {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    flex-direction: row;
    margin-top: 1%;
    width: 100%;
    height: 65px;
}

#huissier p {
    font-weight: bold;
    font-size: calc(1.2vw + 1.2vh);
}

/***************** SECTION MATERIAUX TELEPHONE *****************/

#materiaux svg{
	display:none;
}

#texte_mat_1 {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#materiaux p {
    font-family: 'Calibri';
    font-size: calc(1.2vh + 1.2vw);
    line-height: calc(1.2vh + 1.2vw);
    font-weight: 100;
    margin: 0;
}

#texte_mat_2 {
    width: 100%;
    position: absolute;
    right: auto;
    bottom: 0;
    bottom: 0;
    padding: 7%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/***************** SECTION ECOLOGIE TELEPHONE *****************/		


#texte_eco_1 {
    width: 100%;
    position: relative;
    right: auto;
    top: 0;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#texte_ecologie {
    font-family: 'Calibri';
    font-size: calc(1.2vh + 1.2vw);
    line-height: calc(1.2vh + 1.2vw);
    font-weight: 100;
    margin: 2% 0;
    text-align: center;
    width: 100%;
}

.flex {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    left: 0;
    bottom: 0;
    position: absolute;
    margin-left: 0;
    flex-direction: row;
    align-content: center;
}

.flex h3 {
    font-family: 'Helvetica LT Std';
    text-transform: uppercase;
    margin: 0;
    display: flex;
    font-size: calc(1.3vh + 1.3vw);
    line-height: calc(1.6vh + 1.6vw);
    align-items: center;
    align-content: center;
    justify-content: center;
}

#ecologie h1 {
    font-family: 'Anton';
    font-size: calc(2vh + 2vw);
    line-height: calc(2vh + 2vw);
    font-weight: 100;
    margin: 0;
    text-transform: uppercase;
}

#num1, #num2, #num3{
    font-size: calc(2.5vh + 2.5vw) !important;
    line-height: calc(2.5vh + 2.5vw) !important;
    font-weight: 100;
}

.flex div {
    width: 30%;
    height: 100%;
    padding: 1%;
    margin: 5px;
    text-align: center;
    border-radius: 5px;
    background: #24425e75;
    color: #fff;
    box-shadow: 2px 3px 20px rgba(0, 0, 0, 0.2);
}

/***************** SECTION SAV TELEPHONE *****************/	
#texte_sav_1 h2 {
    font-family: 'Helvetica LT Std';
    text-transform: uppercase;
    font-size: calc(3.5vh + 3.5vw);
    line-height: calc(4vh + 4vw);
    margin: 0;
}

#texte_sav_2 h2 {
    font-family: 'Helvetica LT Std';
    text-transform: uppercase;
    font-size: calc(3.5vh + 3.5vw);
    line-height: calc(3.5vh + 3.5vw);
    margin: 0;
}

#texte_sav_1 {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#texte_sav_2 {
    bottom: 0;
    width: 100%;
    position: absolute;
    right: 0;
    padding: 5% 9%;
    top: auto;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}

	#accroche_footer{
		height:45%;
		width:70%;
	}
	
	#accroche_footer h2{
		font-size:calc(1.5vh + 1.5vw);
	}
	
	.progress-bar {
    max-width: 80%;
	}
	
	footer{
		height:17%;
	}
	

/***************** SECTION MARGE TELEPHONE *****************/	
	
#benef {
    display: flex;
    place-items: Center;
    min-width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    align-content: flex-end;
    padding: 18% 10% 0% 10%;
    position: relative;
    flex-direction: column;
}

.titre_vertical_offre{
	display:none;
}

.popup {
    font-family: "Helvetica LT Std";
    font-size: calc(2.5vh + 2.5vw);
    line-height: calc(2.5vh + 2.5vw);
    background-color: rgba(0, 5, 11, 0.7);
    box-shadow: #fff 0px 4px 4px;
    width: auto;
    opacity: 1;
    height: auto;
    text-transform: uppercase;
    padding: 5%;
    /* width: 48%; */
    max-width: 70%;
    position: fixed;
    width: auto;
    height: auto;
    text-align: center;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    align-content: center;
    justify-content: center;
    align-items: center;
}

.conteneur_marge span{
    font-size: calc(1.3vh + 1.3vw);
    line-height: calc(1.3vh + 1.3vw);	
}


.conteneur_marge-colonnes {
    height: 100%;
    display: flex;
    margin: 4% 0;
    width: 100%;
    flex-direction: row;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: flex-end;
}

.colonne_marge {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    padding: 2%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#formulaire_calcul {
    width: 100%;
    height: 83%;
    display: flex;
    position: initial;
    padding: 2% 3%;
    margin: 4% 0;
	background-color:#24425eeb;
}



.resume-label-fiole {
    font-size: calc(1.3vw + 1.3vh);
    line-height: calc(1.3vw + 1.3vh);
}

#calculator-form button {
    background-color: transparent;
    color: #fff;
    margin: 2% 2%;
    width: 100%;
    height: 100%;
    padding: 2%;
    font-family: 'Anton';
    border: none;
    font-size: calc(1.1vh + 1.1vw);
    line-height: calc(1.1vh + 1.1vw);
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
}

.img_booster {
    width: 100%;
    max-width: 100%;
    height: 80%;
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.btn_prev_next_calc {
    display: flex;
    width: 100%;
    flex-direction: row;
    height: 15%;
    position: absolute;
    bottom: 0;
    border-top: solid 1px #fff;
    margin: 2% 0;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.resume-section {
    width: 60%;
    height: 83%;
    padding: 0%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}

.resume-value {
    background-color: #00050ba6;
    padding: 0%;
    font-family: 'Helvetica LT Std';
    font-size: calc(2vh + 2vw);
    border-radius: 10px;
}

.conteneur_marge .form_left {
    width: 100%;
    height: 65%;
    margin: 3%;
}

.ajout_sigle {
    display: flex;
    flex-direction: row;
    height: 90%;
    width: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
}

.fa {
    font-size: calc(1.5vw + 1.5vh);
    position: absolute;
    top: 0;
    opacity: 0.5;
    left: initial;
}

#conteneur_final_calculateur {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

#titre_calculateur, #titre_calculateur span {
    font-family: 'Anton';
    font-size: calc(1.2vw + 1.2vh);
    line-height: calc(1.2vw + 1.2vh);
}

#calculator-form {
    height: 100%;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#conteneur_resultat {
    position: initial;
    width: 100%;
    height: 20%;
    right: -40%;
    flex-direction: row;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    padding: 3%;
}

#filariane {
    display: flex;
    justify-content: center;
    height: 20%;
    width: 100%;
    padding: 1%;
    align-content: center;
    align-items: center;
    background-color: #00050b70;
    flex-direction: row;
}

.filariane-item {
    font-size: calc(1vw + 1vh);
    font-family: 'Helvetica LT Std';
    transition: opacity 0.3s;
    line-height: calc(1vw + 1vh);
    text-transform: uppercase;
    height: 100%;
    padding: 1%;
    display: flex;
    border-bottom: 0;
    border-right: solid 1px #fff;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.step {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 5%;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.titre_calc_grand {
    font-size: calc(1.8vw + 1.8vh) !important;
    line-height: calc(1.8vw + 1.8vh) !important;
}

.ajout_sigle span {
    font-family: 'Anton';
    width: 16%;
    height: 100%;
    font-weight: 100;
    font-size: calc(2vh + 2vw);
    background-color: transparent;
    display: flex;
    opacity: 0.7;
    justify-content: center;
    align-items: center;
}

#image_calcul {
    width: 100%;
    height: 35%;
	display:none;
}
	
.form_result {
    text-align: center;
    position: initial;
    width: 50%;
    top: 12%;
    margin: 0;
    border-radius: 0;
    right: auto;
    display: flex;
    padding: 2%;
    overflow: hidden;
    height: 100%;
    border: 1px solid #fff;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#calcul_texte {
    font-family: 'Calibri';
    line-height: calc(1vh + 1vw);
    font-size: calc(1vh + 1vw);
    height: 100%;
    margin-top: 0;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid #fff;
    width: 45%;
    margin-left: 5%;
    display: flex;
    padding: 2%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.form_result label {
    font-family: 'Anton';
    line-height: calc(1vh + 1vw);
    font-size: calc(1vh + 1vw);
    text-transform: uppercase;
    margin-right: 0;
    position: initial;
    display: flex;
    height: auto;
    height: auto;
    position: absolute;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.form_result img {
    display: none;
}

.conteneur_resultat {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    align-content: center;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    flex-direction: row;
}

#result {
    width: 100%;
    padding: 8px;
    height: 68%;
    font-size: calc(2vw + 2vh);
}


.resume-label {
    margin: 1% 0;
    font-size: calc(1vw + 1vh);
    line-height: calc(1vw + 1vh);
}

.ajout_sigle_resume span {
    font-family: 'Anton';
    width: 100%;
    height: 100%;
    font-weight: 100;
    font-size: calc(2vh + 2vw);
    background-color: transparent;
}

.sigle_result {
    font-family: 'Anton';
    line-height: calc(0.9vh + 0.9vw);
    font-size: calc(0.9vh + 0.9vw);
    background-color: #ffffff4a;
    opacity: 0.7;
    width: 30%;
    display: flex;
    padding: 3%;
    height: 68%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.form_left .form-group label {
    display: flex;
    text-align: center;
    height: 100%;
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: 'Anton';
    font-size: calc(1vh + 1vw);
    line-height: calc(1vh + 01vw);
    align-content: center;
    justify-content: center;
    align-items: center;
}

.form_left input[type="text"] {
    width: 100%;
    height: 100%;
    padding: 8px;
    border: 0;
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
    color: #fff;
    font-size: calc(3vh + 3vw);
    font-family: 'Helvetica LT Std';
    font-weight: 900;
    -moz-appearance: textfield;
	background-color:transparent;
	display:flex;
align-content: center;
justify-content: center;
align-items: center;

}

#filariane{
	display:none !important;
}

#calculator-form h2 {
    font-family: 'anton';
    font-weight: 100;
    display: flex;
    margin: 2% 0;
    height: 15%;
    font-size: calc(1.3vw + 1.3vh);
    line-height: calc(1.3vw + 1.3vh);
}

#calculator-form h3 {
    font-size: calc(1.2vw + 1.2vh);
    line-height: calc(1.2vw + 1.2vh);
	margin-bottom:5%;
}

#rappel_marge {
    margin: 0;
    height: auto;
    line-height: calc(4vh + 4vw);
    font-size: calc(4vh + 4vw);
}

.ligne_form_inter .form_right input[type="text"] {
    width: 90%;
    height: 70%;
    padding: 8px;
    border-bottom: 2px solid #fff;
    text-align: center;
    border-radius: 0;
    background-color: transparent;
    margin-bottom: 0;
    color: #fff;
    font-size: calc(2vh + 2vw);
    font-family: 'Helvetica LT Std';
    font-weight: 900;
	display:flex;
align-content: center;
justify-content: center;
align-items: center;

}

.ligne_form_inter {
    width: 100%;
    height: 7%;
    display: flex;
    margin: 3.5% 0;
    flex-direction: row;
}

.ligne_form {
    width: 100%;
    margin: 3.5% 0%;
    height: 7%;
    display: flex;
    flex-direction: row;
}

#burger_menu_tel {
    cursor: pointer;
    padding: 0;
    display: flex;
    width: 35px;
    z-index: 1000000;
    height: 35px;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#burger_menu_tel span {
    position: relative;
    display: block;
    width: 100%;
    height: 8px;
    background: #fff;
    transition: all 0.2s ease-in-out;
}


#burger_menu_tel span:before, #burger_menu_tel span:after {
  position: absolute;
  background: #fff;
  content: "";
  width: 100%;
  height: 8px;
  transition: all 0.2s ease-in-out;
}
#burger_menu_tel span:before {
  top: -13px;
}
#burger_menu_tel span:after {
  top: 13px;
}

#burger_menu_tel.active span {
  background: transparent;
}
#burger_menu_tel.active span:before {
    transform: rotate(45deg) translate(10px, 9px);
}
#burger_menu_tel.active span:after {
    transform: rotate(-45deg) translate(10px, -9px);
}

#burger_menu{
	display:none;
}


.resume-final {
    width: 35%;
    margin-left: 5%;
    height: 80%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#menu {
    position: absolute;
    text-align: center;
    margin: 0;
    z-index: 1000;
    color: #fff;
    right: 0;
    left: 0;
    top: 0;
    font-family: Calibri;
    font-weight: 500;
    font-size: calc(1vh + 1vw);
    letter-spacing: 2px;
    width: 100%;
    display: none;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
	background-color:#141a24f7;
}

#conteneur_logo {
    width: 100%;
    height: 10%;
    text-align: center;
}

#menu-list {
    width: 100%;
    display: flex;
    height: 70%;
    padding: 0;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

ul li:nth-child(1) {
	border-top: solid 1px #fff;
}

ul li {
    display: flex;
    margin-right: 0;
    color: #fff;
    border-bottom: solid 1px #fff;
    height: 22.5%;
    text-align: center;
    text-transform: uppercase;
    font-family: Calibri;
    width: 95%;
    font-size: calc(2.5vw + 2.5vh);
    align-content: center;
    justify-content: center;
    align-items: center;
}

#menu-line {
    display: none;
}

#conteneur_logo_tel {
    display: flex;
    height: 10% !important;
    flex-direction: row;
}

.cont_burger {
    width: 90%;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-end;
}

.ajout_sigle_resume {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 95%;
    margin-top: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#formulaire_calcul_2 {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0;
    position: relative;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
}

.conteneur_blur_form {
    position: relative;
    display: flex;
    width: 100%;
    height: 80%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.login-form {
    position: absolute;
    display: flex;
    width: 70%;
    left: 2%;
    height: 50%;
    right: 2%;
    flex-direction: column;
    align-items: center;
    padding: 50px 40px;
    color: white;
    background: rgb(6 15 24 / 89%);
    border-radius: 10px;
    /* box-shadow: 0 0.4px 0.4px rgba(128, 128, 128, 0.109), 0 1px 1px rgba(128, 128, 128, 0.155), 0 2.1px 2.1px rgba(128, 128, 128, 0.195), 0 4.4px 4.4px rgba(128, 128, 128, 0.241), 0 12px 12px rgba(128, 128, 128, 0.35); */
    align-content: center;
    justify-content: center;
}

#rev_booster {
    right: 0;
    width: 22%;
    margin-left: 3%;
    margin-right: 2%;
    border-radius: 7px;
    height: 40%;
    position: absolute;
    background: rgb(6 15 24 / 89%);
}

.login-form h1 {
    margin: 0 0 24px 0;
    font-family: 'Anton';
    text-align: center;
    font-weight: 100;
    line-height: calc(1.3vw + 1.3vh);
    font-size: calc(1.3vw + 1.3vh);
}

.login-form .btn {
    width: 100%;
    display: flex;
    margin: 0;
    border-radius: 5px;
    background-color: #162a3e4d;
    font-family: 'Helvetica LT Std';
    font-weight: 100;
    font-size: calc(1.3vw + 1.3vh);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: calc(1.3vw + 1.3vh);
    align-content: center;
    justify-content: center;
    align-items: center;
}

.login-form {
    position: absolute;
    display: flex;
    width: 70%;
    left: 2%;
    height: 50%;
    right: 2%;
    flex-direction: column;
    align-items: center;
    padding: 6%;
    color: white;
    background: rgb(6 15 24 / 89%);
    border-radius: 10px;
    /* box-shadow: 0 0.4px 0.4px rgba(128, 128, 128, 0.109), 0 1px 1px rgba(128, 128, 128, 0.155), 0 2.1px 2.1px rgba(128, 128, 128, 0.195), 0 4.4px 4.4px rgba(128, 128, 128, 0.241), 0 12px 12px rgba(128, 128, 128, 0.35); */
    align-content: center;
    justify-content: center;
}

.form-input-material {
    margin: 12px 0;
    position: relative;
    font-family: 'Calibri';
    font-size: calc(1vw + 1vh);
    line-height: calc(1vw + 1vh);
    width: 100%;
    display: flex;
    height: 25%;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#cookiemail, #password {
    display: flex;
    color: white;
    background-color: #162b3f82;
    border: none;
    width: 100%;
    height: 100%;
    padding: 4%;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    z-index: 10000;
}

#message_erreur {
    background: rgb(42,76,108);
    background: radial-gradient(circle, rgba(42,76,108,1) 0%, rgba(6,15,24,1) 51%);
    display: flex;
    height: 100vh;
    width: 100vw;
    color: #fff;
    text-transform: uppercase;
    font-family: Anton;
    line-height: calc(1.8vh + 1.8vw);
    text-align: center;
    font-size: calc(1.8vh + 1.8vw);
    top: 0;
    left: 0;
    padding: 2%;
    position: absolute;
    padding: 10%;
    margin: 0;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#redirectButton {
    display: block;
    width: 100%;
}

.interest-button {
    background: #00050b85;
    color: #fff;
    border: none;
    width: 63%;
    padding: 2%;
    border-radius: 10px;
    font-family: Anton;
    font-size: calc(1vw + 1vh);
    line-height: calc(1vw + 1vh);
    cursor: pointer;
    white-space: pre-wrap;
}

}