:root {
  --primColor: rgba(23, 150, 203, 1.0);
  --secoColor: #f8f4fa;
  --cornerRad: 20px;
  --transTime: 5s;
}
body {
  font: 14px/2 "Open sans", sans-serif, Helvetica;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  position: absolute;
  bottom: 8%;
  margin-left: -165px;
  background: transparent;
  border: 2px solid #e1e1e1;
  font: 30px/1.2 "Oswald", sans-serif;
  font-weight: bold;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  transition: color 0.1s linear 0.05s;
}
.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  z-index: 1;
  opacity: 0;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.btn::after {
  transition: border 0.1s linear 0.05s;
}
.btn .btn-inner {
  position: relative;
  z-index: 2;
}
.btn:hover {
  color: #373737;
  transition: color 0.1s linear 0s;
}
.btn:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.btn:hover::after {
  border-color: #373737;
  transition: border 0.1s linear 0s;
}

.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
  padding: 0 100px;
}
.slideshow .slide.is-active{
	transition:transform var(--transTime) ease-in-out;
	transform: scale(1.03);
}

.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}

.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slideshow .slide .image {
	width: 100%;
    object-fit: cover;
	height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slideshow .slide .title {
  margin-top: 50%;
  /* Change margin-top to reposition button learn more */
  width: 1000px;
  font: 400 30px/1.2 "Oswald", sans-serif;
  color: #ffffff;
  text-shadow: 0 0 3px #909191;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.slideshow .slide .text {
  width: 1000px;
}
.slideshow .slide .btn {
  margin-top: 10px;
  padding: 10px 20px;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 3px #909191;
  text-shadow: 0 0 3px #909191;
}
.slideshow .slide .btn::before {
  color: #fff;
  background: #fff;
}
.slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
}
.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 30px;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 30px;
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
  /* color of arrow */
}

/* change background color title bar */
details {
  margin: 0%;
  width: 100%;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.0);
  z-index: 5;
  padding: 20px;
  
}
summary {
  writing-mode: vertical-lr;
  text-align: left;
  width: 100px;
  height: 50px;
  color: var(--secoColor);
  cursor: pointer;
  user-select: none;
  outline: none;
  transition: transform 200ms ease-in-out 0s;
}
summary::before,
summary::after {
  position: static;
  top: 0;
  left: 0;
}
summary::before {
  content: "";
}
summary::after {
  content: "III";
  color: deepskyblue;
  font-size: 30px;
  letter-spacing: 1px;
margin-top: 5px;
}
summary:hover {
  transform: scale(1.2);
}
summary::marker {
  font-size: 0;
}
summary::-webkit-details-marker {
  display: none;
}
details[open] .menu {
  animation-name: menuAnim;
}
details[open] summary::before {
  content: "X";
  color: deepskyblue;
  font-size: 30px;
  margin-top: 5px;
  margin-left: 25px;
}
details[open] summary::after {
  content: "";
}
.menu {
  height: 0;
  font-weight: bold;
  width: fit-content;
  border-radius: var(--cornerRad);
  background-color: var(--primColor);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  display: flex;
  flex-direction: column; 
  justify-content: space-between;
  overflow: hidden;
  animation: closeMenu 300ms ease-in-out forwards;
}
.menu a {
  padding: 10px 24px;
  margin: 0 16px;
  color: var(--secoColor);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  transition: filter 200ms linear 0s;
  z-index: 3;
}
.menu a:nth-of-type(1) {
  padding-top: 24px;
}
.menu a:nth-last-of-type(1) {
  border-bottom: none;
}
.menu a:hover {
  filter: brightness(200%);
}
details::before {
  content: "";
  width: 90%;
  align-content: center;
  height: 100px;
  font-size: 150%;
  color: rgba(0, 0, 0, 0.4);
  position: absolute;
  margin-left: 80px;
  padding: 1px 20px;
  opacity: 1;
}
details[open]::before {
  animation: fadeMe 300ms linear forwards;
}
@keyframes menuAnim {
  0% {
    height: 0;
  }
  100% {
    height: 300px;
  }
}
@keyframes fadeMe {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}
/* logo parameter */
.logo{
	position: fixed;
	margin-left: 5%;
	text-align: center;
	width: 95%;
	z-index: 4;
}


.logo2{
	position: fixed;
	float: right;
	
	z-index: 4;
	transform: scale(0.15);
}
.logo3{
	z-index: 4;
	margin-right: auto;
	margin-left: auto;
	margin-top: -6px;
/* 	change margin-top to make logo visible
 */	
	transform: scale(0.5);
	opacity: 1;
}

.logo4{
	z-index: 4;
	margin-right: auto;
	margin-left: auto;
	margin-top: -32px;
/* 	change margin-top to make logo visible
 */	
	transform: scale(0.6);
	opacity: 1;
}

.logo5{
	z-index: 4;
	margin-right: auto;
	margin-left: auto;
	
/* 	change margin-top to make logo visible
 */	

	opacity: 1;
}

.logo6{
	position: fixed;
	float: left;
	z-index: 4;
	margin-top: 85px;
	margin-right: auto;
	margin-left: 30px;
	
/* 	change margin-top to make logo visible
 */	

	opacity: 1;
}

.logo7{
	position: fixed;
	float: left;
	z-index: 4;
	margin-top: 120px;
	margin-right: auto;
	margin-left: 30px;
	
/* 	change margin-top to make logo visible
 */	

	opacity: 1;
}

.logo8{
	position: fixed;
	float: left;
	z-index: 4;
	margin-top: 165px;
	margin-right: auto;
	margin-left: 30px;
	
/* 	change margin-top to make logo visible
 */	

	opacity: 1;
}

.logo9{
	position: fixed;
	float: left;
	z-index: 4;
	margin-top: 206px;
	margin-right: auto;
	margin-left: 23px;
	
/* 	change margin-top to make logo visible
 */	

	opacity: 1;
}


.Container{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 800px;
	background: rgba(0, 0, 0, 0.7);

}

.bgImage{
  background-image: url("img/page1/car3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 560px;
  opacity: 1;
}

.bgImage2{
  background-image: url("img/page1/006.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 560px;
  opacity: 1;
}

.bgImage3{
  background-image: url("img/page1/contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 560px;
  opacity: 1;
}

.bgImage4{
  background-image: url("img/page1/seb.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 560px;
  opacity: 1;
}


.Contact{
	padding: 0%;
	margin-top: 0px;
	height: 500px;
	background-color: #e7e7e7;
	opacity: 0.9;
	z-index: 4;
}
.Text{
	margin-top: -80px;
	padding: 20px;
}
.footer-basic {
  padding:40px 0;
  background-color:#ffffff;
  color:#4b4c4d;
}

.footer-basic ul {
  padding:0;
  list-style:none;
  text-align:center;
  font-size:18px;
  line-height:1.6;
  margin-bottom:0;
}

.footer-basic li {
  padding:0 10px;
}

.footer-basic ul a {
  color:inherit;
  text-decoration:none;
  opacity:0.8;
}

.footer-basic ul a:hover {
  opacity:1;
}

.footer-basic .social {
  text-align:center;
  padding-bottom:25px;
}

.footer-basic .social > a {
  font-size:24px;
  width:40px;
  height:40px;
  line-height:40px;
  display:inline-block;
  text-align:center;
  border-radius:50%;
  border:1px solid #ccc;
  margin:0 8px;
  color:inherit;
  opacity:0.75;
}

.footer-basic .social > a:hover {
  opacity:0.9;
}

.footer-basic .copyright {
  margin-top:15px;
  text-align:center;
  font-size:14px;
  color:#aaa;
  margin-bottom:0;
}
.map-responsive {
 padding-bottom:56.25%;
 position:relative;
 height:0;
}
.map-responsive iframe {
 position: absolute;
 left:40%;
 top: -340px;
max-height: 300px;
}

.slideshow .slide .text .wordCarousel {
	position: relative;
	font-family: "Oswald";
	letter-spacing: 0.25em;
    font-size: 36px;
    font-weight: 100;
    color: #ffffff;
    text-shadow: 0 0 3px coral;
	overflow: hidden;
	height: 90px;
}
.wordCarousel ul{
	padding-top: 0px;
	list-style: none;;
	position: relative;
	margin-top: 20px;
}
.wordCarousel ul li{
	letter-spacing: 0.15em;
	font-size: 36px;
	padding-top: 20px;
}
.flip2 { animation: flip2 6s cubic-bezier(0.23, 1, 0.32, 1.2) infinite; }
.flip3 { animation: flip3 8s cubic-bezier(0.23, 1, 0.32, 1.2) infinite; }
.flip4 { animation: flip4 10s cubic-bezier(0.23, 1, 0.32, 1.2) infinite; }
.flip5 { animation: flip5 12s cubic-bezier(0.23, 1, 0.32, 1.2) infinite; }
.flip6 { animation: flip6 14s cubic-bezier(0.23, 1, 0.32, 1.2) infinite; }
.flip7 { animation: flip7 16s cubic-bezier(0.23, 1, 0.32, 1.2) infinite; }
.flip8 { animation: flip8 18s cubic-bezier(0.23, 1, 0.32, 1.2) infinite; }

@keyframes flip2 {
    0% { margin-top: -180px; }
    5% { margin-top: -90px;  }
    50% { margin-top: -90px; }
    55% { margin-top: 0px; }
    99.99% { margin-top: 0px; }
    100% { margin-top: -180px; }
}

@keyframes flip3 {
    0% { margin-top: -270px; }
    5% { margin-top: -180px; }
    33% { margin-top: -180px; }
    38% { margin-top: -90px; }
    66% { margin-top: -90px; }
    71% { margin-top: 0px; }
    99.99% { margin-top: 0px; }
    100% { margin-top: -270px; }
}

@keyframes flip4 {
    0% { margin-top: -360px; }
    5% { margin-top: -270px; }
    25% { margin-top: -270px; }
    30% { margin-top: -180px; }
    50% { margin-top: -180px; }
    55% { margin-top: -90px; }
    75% { margin-top: -90px; }
    80% { margin-top: 0px; }
    99.99% { margin-top: 0px; }
    100% { margin-top: -360px; }
}

@keyframes flip5 {
    0% { margin-top: -450px; }
    5% { margin-top: -360px; }
    20% { margin-top: -360px; }
	
    25% { margin-top: -270px; }
    40% { margin-top: -270px; }
	
    45% { margin-top: -180px; }
    60% { margin-top: -180px; }
	
    65% { margin-top: -90px; }
    80% { margin-top: -90px; }
	
    85% { margin-top: 0px; }
    99.99% { margin-top: 0px; }
    100% { margin-top: -450px; }
}

@keyframes flip6 {
    0% { margin-top: -540px; }
    5% { margin-top: -450px; }
    16.7% { margin-top: -450x; }
	
    21.7% { margin-top: -360px; }
    33.3% { margin-top: -360px; }
	
    38.3% { margin-top: -270px; }
    50% { margin-top: -270px; }
	
    55% { margin-top: -180px; }
    66.7% { margin-top: -180px; }
	
	71.7% { margin-top: -90px; }
	83.3% { margin-top: -90px; }
	
    88.3% { margin-top: 0px; }
    99.99% { margin-top: 0px; }
    100% { margin-top: -540px; }
}
@keyframes flip7 {
    0% { margin-top: -630px; }
    12% { margin-top: -540px; }
    14.28% { margin-top: -540x; }
	
    19.28% { margin-top: -450px; }
    28.56% { margin-top: -450px; }
	
    33.56% { margin-top: -360px; }
    42.84% { margin-top: -360px; }
	
    47.84% { margin-top: -270px; }
    57.12% { margin-top: -270px; }
	
	62.12% { margin-top: -180px; }
	71.4% { margin-top: -180px; }
	
	76.4% { margin-top: -90px; }
	85.68% { margin-top: -90px; }
	
    90.68% { margin-top: 0px; }
    99.99% { margin-top: 0px; }
    100% { margin-top: -630px; }
}

@keyframes flip8 {
    0% { margin-top: -720px; }
    6% { margin-top: -638px; }
    12.5% { margin-top: -638px; }
	
    17.5% { margin-top: -545px; }
    25% { margin-top: -545px; }
	
    30% { margin-top: -450px; }
    37.5% { margin-top: -450px; }
	
    42.5% { margin-top: -360px; }
    50% { margin-top: -360px; }
	
	55% { margin-top: -270px; }
	62.5% { margin-top: -270px; }
	
	67.5% { margin-top: -180px; }
	75% { margin-top: -180px; }
	
	80% { margin-top: -90px; }
	87.5% { margin-top: -90px; }
	
    92.5% { margin-top: 0px; }
    99.99% { margin-top: 0px; }
    100% { margin-top: -720px; }
}




*,*::before,*::after{box-sizing: border-box}

ul {padding:0;margin:0}

img{max-width:100%;display: block}

    
input {display:none}/* input{position:absolute;left:-9999px} */

label{cursor:pointer} /*on rend cliquable tous les labels*/  
    
button {
  padding: 20px 50px;
  font-size: 1.5rem;
  cursor: pointer;
  border: 0;
  color: #000000;
  background: transparent;
  position: relative;
  margin: 20px;
  transition: all .25s;
}

button::after,button::before {
  border: 3px solid #000000;
  content: '';
  position: absolute;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  transition: all .25s;
}

button:hover::after {
  transform: translate(-5px, -5px);
}

button:hover::before {
  transform: translate(5px, 5px);
}

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 6;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: deepskyblue;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}