:root {
  --primary: #ffffff;
  --secondary: lightblue;
  --third: #2e2c2c;
  --fourth: rgb(12, 108, 75);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--primary);
  color: var(--third);
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden;
}

.evolution {
  position: fixed;
  top: 50px;
  left: 0;
  background: goldenrod;
  width: 0;
  height: 5px;
  z-index: 9999999999;
  animation: evo linear auto both;
  animation-timeline: scroll();
  animation-range: 0 100%;
}

@keyframes evo {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/*HEADER*/
.header {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background: var(--secondary);
  color: var(--third);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  overflow: hidden;
  background: var(--third);
  padding: 10px 5px;
  z-index: 99999999;
}

.content-title {
  display: flex;
  justify-content: start;
  align-items: center;
}

.header-title a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 30px;
}

.burger {
  position: relative;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.dots1,
.dots2,
.dots3 {
  position: absolute;
  top: 12px;
  left: 0;
  width: 48px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 10px;
  transition: all 0.5s;
}

.dots2 {
  top: 22px;
  left: 0;
  opacity: 1;
  background-color: var(--primary);
  transition: all 0.5s;
}

.dots3 {
  top: 32px;
  left: 0;
  background-color: var(--secondary);
  transition: all 0.5s;
}

.dots4 {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: 30%;
  left: 30px;
  border: 2px solid #ffffff;
  background: goldenrod;
  transition: all 0.9s;
  animation: rote 3s ease infinite;
  z-index: 999;
}

@keyframes rote {
  0% {
    left: 30px;
  }
  50% {
    left: -10px;
  }
  100% {
    left: 30px;
  }
}

.dots5 {
  opacity: 0;
  rotate: 90deg;
  transition: all 0.5s;
  width: 50px;
}

.dots6 {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  top: 10%;
  left: 0;
  border: 2px solid #ffffff;
  background: rgb(19, 122, 185);
  transition: all 0.5s;
}

.whatsapp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 999999;
}

.wht {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f2f2f25c;
  animation: bump 3s linear infinite;
}

.whatsapp img {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  z-index: 999;
}

@keyframes bump {
  0% {
    scale: 0.5;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 0.5;
  }
}

li {
  margin: auto 1.875rem;
  color: var(--secondary);
  list-style-type: none;
  text-align: center;
  padding: 10px;
  width: 130px;
}

li:nth-of-type(3),
li:nth-of-type(4) {
  transition: 0.2s ease;
}

li a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  padding: 0.313rem;
}

li:hover a {
  text-decoration: 2px underline goldenrod;
}

li:nth-of-type(3) a,
li:nth-of-type(4) a {
  color: var(--primary);
  transform: 0.2s linear;
}

li:hover:nth-of-type(4) {
  background: goldenrod;
  transition: 0.5s linear;
}

li:hover:nth-of-type(3) {
  background: #25d366;
  transition: 0.5s linear;
}

li:hover:nth-of-type(3) a,
li:hover:nth-of-type(4) a {
  color: var(--primary);
  text-decoration: none;
}

.onglets-topbar {
  position: fixed;
  top: 50px;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.855);
  height: auto;
  width: 100%;
  backdrop-filter: blur(4px);
  padding: 20px;
  z-index: 99999996;
  animation: close 0.9s linear;
}

.open {
  position: fixed;
  top: 50px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.855);
  height: auto;
  width: 100%;
  backdrop-filter: blur(4px);
  padding: 20px;
  z-index: 99999996;
  animation: deroulant 0.9s linear;
}

@keyframes deroulant {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes close {
  0% {
    transform: translateY(0);
    display: flex;
  }
  100% {
    transform: translateY(-100%);
    display: none;
  }
}

ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  margin: auto;
  padding: 50px auto;
  width: 100%;
  height: auto;
}

.content-header {
  display: block;
  margin-top: 100px;
}

.paragraphe-header {
  width: 100%;
  margin-top: 50px;
  text-align: center;
}

.title-header {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  margin: 1.875rem auto;
  font-size: 1.625rem;
  width: 100%;
}

.title-header a {
  margin: 10px 0;
  color: goldenrod;
  text-decoration: none;
  transform: skewX(-25deg);
  background: var(--third);
  padding: 10px 30px;
  font-weight: bold;
  transition: 0.5s ease-in-out;
}

.title-header a:hover {
  transform: skewX(-25deg);
  box-shadow: 5px 5px 0px var(--third);
  transition: 0.3 ease-in-out;
  background: goldenrod;
  color: var(--third);
  transition: 0.5s ease-in-out;
}

.img-header {
  display: flex;
  justify-content: space-around;
  width: 100%;
  flex-direction: row-reverse;
  margin-top: 30px;
  padding-top: 30px;
}

.img-lexus {
  padding-bottom: 40px;
}

.btn-header {
  display: flex;
  justify-content: space-around;
  align-items: start;
  width: 50%;
}

.btn-reservation,
.btn-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  padding: 20px 50px;
  box-shadow: 5px 5px 5px black;
  color: goldenrod;
  background: var(--third);
  transform: skewX(-15deg);
  text-decoration: none;
  height: 30px;
  font-size: 18px;
  font-weight: 700;
  width: 150px;
}

.btn-contact {
  color: #25d366;
}

.btn-reservation:hover {
  box-shadow: 4px 4px 4px goldenrod;
  transition: 0.5s ease-in-out;
}

.btn-contact:hover {
  box-shadow: 4px 4px 4px #25d366;
  transition: 0.5s ease-in-out;
}

/*SECTION-ESTIMATION*/
.section-estimation {
  width: 100%;
  background-color: var(--secondary);
  margin: auto;
  padding: 80px 20px 20px;
}

#dep-estimation,
#arr-estimation {
  margin: 0px auto;
}

#map {
  width: 100%;
  height: 300px;
}

.second-title {
  text-align: center;
  margin: 20px auto;
}

.estimation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
  width: 100%;
}

#result {
  width: 100%;
  font-weight: bold;
  font-size: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.form-estimation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
  gap: 10px;
}

#arrive-estimation,
#depart-estimation {
  width: 250px;
  height: 40px;
}

.suggestion-depart-estimation,
.suggestion-arrive-estimation {
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}

.btn-estimation {
  width: 250px;
  height: 40px;
  border: none;
  font-weight: bold;
  color: goldenrod;
  background: var(--third);
  cursor: pointer;
}

.title-section-presentation {
  text-align: center;
  font-size: xx-large;
}

/*FOOTER*/
.footer {
  display: block;
  width: 100%;
  background: var(--third);
  color: var(--primary);
  padding: 10px;
}

.title-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  border: 2px solid var(--third);
  color: var(--third);
  background: var(--secondary);
  width: 30%;
  transform: skewX(-30deg);
}

.container-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
}

.logo-reseaux {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  gap: 20px;
}

.contact {
  display: block;
}

.content-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
}

.content-contact a {
  text-decoration: none;
}

.h3-telephone a,
.h3-mail a,
.h3-domicile {
  color: var(--primary);
  font-size: 14px;
}

.domicile,
.telephone,
.mail {
  margin: 20px auto;
}

.container-presentation {
  margin: 20px auto;
}

/*COPYRIGHT*/
.copyright {
  background: var(--third);
  color: var(--primary);
  text-align: center;
}

.copyright a {
  font-size: 20px;
  color: var(--primary);
  text-decoration: none;
}
