      @font-face {
        font-family: "Ink Free";
        src: url('/auto/css/ink-free.ttf');
      }

html {
  height: 100%;
}

body {
	font-family: Ink Free;
    background: linear-gradient(90deg,#7bed9f, #3498db);
    cursor: url(cursor1.cur),auto;
    min-height: 100%;
    margin: 0;
    padding: 0;
	color: #FFF;
	font-size: 1.1em;
}


section {
  max-width: 900px;
  margin: 0 auto;
}

section h1 {
  font-size: 46px;
  text-align: center;
}

section p {
    line-height: 1.7em;
}

/* hamburger */
.checkbox {
  display: none;
}

.button {
  
  background-color: white;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  position: fixed;
  top: 5vh; 
  right: 5vw; 
  z-index: 2000;
  box-shadow: 0 1rem 3rem black;
  text-align: center; 
  cursor: pointer;
}

.background {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  position: fixed;
  top: 5.5vh; 
  right: 5.5vw; 
  background-image: radial-gradient(#24609D, black);
  z-index: 1000;

  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

#chargement {
    width: 200px;
    margin: auto;
    margin-top: 50vh;
    transform: translateY(-50%);
}
#page {
    display: none;
}

.nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: -60vw;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s;
}

.list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}

.item {
  margin: 1rem;
  font-size: 36px;
}

.link:link,
.link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    transparent 50%,
    white 50%
  );
  background-size: 220%;
  transition: all 0.4s;
}

.link:hover,
.link:active {
  color: lightgreen !important;
  cursor: pointer;
}

/* functionality */
.checkbox:checked ~ .background {
  transform: scale(80);
}
.checkbox:checked ~ .nav {
  opacity: 1;
  width: 100%;
  right: 0;
}

/*  */
/* styling hamb ICON */
.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon,
.icon::before,
.icon::after {
  width: 3rem;
  height: 2px;
  background-color: gray;
  display: inline-block;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}

.icon::before {
  top: -0.8rem;
}
.icon::after {
  top: 0.8rem;
}

.button:hover icon:before {
  top: -1rem;
}
.button:hover icon::after {
  top: 1rem;
}

.checkbox:checked + .button .icon {
  background-color: transparent;
}

.checkbox:checked + .button .icon::before {
  top: 0;
  transform: rotate(135deg);
}
.checkbox:checked + .button .icon::after {
  top: 0;
  transform: rotate(-135deg);
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

#page {
  display: grid;
  width: 100%;
  min-height: 100vh;
  grid-template-areas: "head"
                       "main"
                       "foot";
  grid-template-rows: 160px 1fr 50px;
  grid-template-columns: 1fr;
}

#page > header {
  grid-area: head;
  background-color: #24609D;
}

#page > main {
  grid-area: main;
    background: linear-gradient(90deg,#073F77, #0D7CEC);
/*  background-color: #ffff64;*/
}

#page > footer {
  grid-area: foot;
  background-color: #24609D;
}

.clip-path-404 { 
    -webkit-clip-path: ellipse(30% 20% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}

#scrolltotop{
    display:none;
    z-index:1000;
    position:fixed;
    bottom:25px;
    right:35px;
    cursor:pointer;
    width:40px;
    height:40px;
    border:2px solid #333;
    border-radius:5px;
}
	#scrolltotop div{
	width:6px;
	height:6px;
	transform:rotate(-135deg);
	border:solid #333;
	border-width:0 3px 3px 0;
	padding:3px;
	margin-top:16px;
	margin-left:14px;
}

.chgt-cursor:hover {
    cursor: url('/css/cursor2.png'), default;
}

@media (max-width : 1024px) {
section > p { margin-left: 35px !important;}
#span1{
     font-size: 0;
    }
#span1::before {
      content: "Techn. lavage sans eau";
      font-size: initial;
    }
#span2{
	margin-top: 20px;
}
#span3{
	margin-top: -10px !important;
}

.Puce { margin-left: 35px !important;}
.Puce2 { margin-left: 45px !important;}
.space-bottom { margin-bottom: -40px}
.hide-image{display:none;}
}

@media (max-width : 768px) {
#test{max-width: 768px!important}
}

@media (max-width : 480px) {
#test{max-width: 480px!important}
}