@font-face {
  font-family: "comfortaa";
  src: url(../fonts/comfortaa.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: default;
  font-family: "comfortaa", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 30px;
  text-shadow: 0 0 3px #000;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.2s ease;
}
@media screen and (max-width: 1145px) {
  * {
    text-align: center;
    font-size: 0.9rem;
  }
}

body {
  background: #000;
}

section {
  padding: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  color: #ffe14d;
  text-shadow: 0 0 5px #000;
}

h2,
h3 {
  text-transform: uppercase;
}

h1 {
  font-size: 2rem;
  color: #ffe14d;
  text-shadow: 0 0 5px #000;
}
@media screen and (max-width: 1145px) {
  h1 {
    font-size: 1.9rem;
  }
}

h2 {
  font-size: 1.4rem;
}
@media screen and (max-width: 1145px) {
  h2 {
    font-size: 1.3rem;
  }
}

a {
  text-decoration: none;
  font-weight: normal;
  cursor: pointer;
}
a * {
  cursor: pointer;
}
a:hover {
  color: #ffe14d;
}
a:hover * {
  color: #ffe14d;
}

.df {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.fdc {
  flex-direction: column;
}

.jcc {
  justify-content: center;
}

.jce {
  justify-content: end;
}

.jcsb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

.dg {
  display: grid;
  gap: 50px;
}

.tac {
  text-align: center;
}

button {
  border-radius: 50px;
  padding: 5px 20px;
  box-shadow: 0 0 2px #000;
}
button:hover {
  box-shadow: inset 0 0 5px #000;
}
button i {
  margin-right: 5px;
}

.button1 {
  background: #ffe14d;
  border: 1px solid #ffe14d;
  color: #000;
  text-shadow: 0 0 5px #ffe14d;
}
.button1:hover {
  background: #ffe14d;
  color: #000;
}
.button1:hover i {
  color: #000;
  text-shadow: none;
}
.button1 i {
  color: #000;
  text-shadow: none;
}

.button2 {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid #fff;
  text-shadow: 0 0 2px #000;
}
.button2:hover {
  background: #fff;
  color: #000;
  text-shadow: 0 0 2px #fff;
}

header {
  padding: 20px 50px;
  background: #000;
}
header .logo {
  max-height: 70px;
}
header .iconsNav {
  display: none;
}
@media screen and (max-width: 1145px) {
  header .iconsNav {
    display: block;
  }
}
header .iconsNav #closeNav {
  display: none;
}
header .iconsNav i {
  font-size: 1.6rem;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1145px) {
  header nav {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
    background: rgba(0, 0, 0, 0.9);
    padding: 50px;
    border-radius: 10px;
    border: 1px solid #ffe14d;
  }
}
header nav a {
  font-weight: normal;
}

.title-page {
  background: url(../images/hero.webp) center/cover;
}

.card {
  background: rgba(0, 0, 0, 0.9);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 0 2px #000;
  border: 2px solid #000;
}

.img-section {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 5px #000;
}

footer {
  padding: 50px;
}
@media screen and (max-width: 1145px) {
  footer * {
    justify-content: center !important;
  }
}
footer * {
  font-size: 0.8rem;
}
footer .links-social,
footer .links-legal {
  gap: 20px;
}
footer i {
  font-size: 1.2rem;
}

.backlinks {
  display: none;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1145px) {
  .backlinks {
    grid-template-columns: 1fr;
  }
}
.backlinks h2 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.backlinks ul li {
  list-style-position: inside;
}
.backlinks ul li a {
  font-size: 0.75rem;
}

.cta {
  background: url(../images/cta.webp) center/cover;
  text-align: center;
}

.button-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
  background: rgba(255, 225, 77, 0.9);
  border: 2px solid #ffe14d;
  cursor: pointer;
  box-shadow: 0 0 5px #000;
}
.button-call i {
  font-size: 1.6rem;
  color: #000;
  text-shadow: none;
}
.button-call:hover {
  box-shadow: inset 0 0 5px #000;
}

#homepage #hero {
  background: url(../images/hero.webp) center/cover;
}
#homepage #hero .container {
  width: 50%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1145px) {
  #homepage #hero .container {
    width: 90%;
    margin: 50px auto;
  }
}
#homepage #hero .container h2 {
  text-transform: none;
  color: #fff;
}
#homepage #nos-services .container,
#homepage #nos-vehicules .container {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1145px) {
  #homepage #nos-services .container,
  #homepage #nos-vehicules .container {
    grid-template-columns: 1fr;
  }
}
#homepage #zones-desservies {
  background: url(../images/zones-desservies.webp) center/cover;
  text-align: center;
}

#groupe #nos-licences,
#groupe #notre-mission {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1145px) {
  #groupe #nos-licences,
  #groupe #notre-mission {
    grid-template-columns: 1fr;
  }
}
#groupe #nos-valeurs {
  background: url(../images/nos-valeurs.webp) center/cover;
}
#groupe #nos-valeurs .container {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1145px) {
  #groupe #nos-valeurs .container {
    grid-template-columns: 1fr;
  }
}
#groupe #nos-valeurs .container h3 {
  margin-bottom: 30px;
}

#services #transport-medical-conventionne,
#services #taxi-toutes-distances,
#services #transport-touristique-et-loisirs,
#services #transport-professionnel-et-entreprises,
#services #transport-evenementiel,
#services #mise-a-disposition-avec-chauffeur,
#services #services-complementaires {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1145px) {
  #services #transport-medical-conventionne,
  #services #taxi-toutes-distances,
  #services #transport-touristique-et-loisirs,
  #services #transport-professionnel-et-entreprises,
  #services #transport-evenementiel,
  #services #mise-a-disposition-avec-chauffeur,
  #services #services-complementaires {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1145px) {
  #services .left {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1145px) {
  #services .left * {
    text-align: center !important;
  }
}

#vehicules #une-flotte-moderne-et-entretenue,
#vehicules #vehicules-conventionnes-pour-le-transport-medical,
#vehicules #confort-et-capacite-pour-tous-les-besoins,
#vehicules #vehicule-grande-capacite,
#vehicules #des-vehicules-plus-respectueux-de-l-environnement,
#vehicules #securite-et-conformite {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1145px) {
  #vehicules #une-flotte-moderne-et-entretenue,
  #vehicules #vehicules-conventionnes-pour-le-transport-medical,
  #vehicules #confort-et-capacite-pour-tous-les-besoins,
  #vehicules #vehicule-grande-capacite,
  #vehicules #des-vehicules-plus-respectueux-de-l-environnement,
  #vehicules #securite-et-conformite {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1145px) {
  #vehicules .left {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1145px) {
  #vehicules .left * {
    text-align: center !important;
  }
}

#demander-un-devis #contact {
  grid-template-columns: 1fr 2fr;
  align-items: start;
  justify-content: start;
}
@media screen and (max-width: 1145px) {
  #demander-un-devis #contact {
    grid-template-columns: 1fr;
  }
}
#demander-un-devis #contact h2 {
  margin-bottom: 30px;
}
#demander-un-devis #contact .form-container form {
  gap: 20px;
}
#demander-un-devis #contact .form-container form label {
  width: 100%;
}
#demander-un-devis #contact .form-container form input,
#demander-un-devis #contact .form-container form textarea,
#demander-un-devis #contact .form-container form select {
  width: 100%;
  background: transparent;
  border: 1px solid #fff;
  padding: 5px 20px;
  color: #fff;
  text-shadow: 0 0 5px #000;
  resize: none;
  outline: none;
}
#demander-un-devis #contact .form-container form input,
#demander-un-devis #contact .form-container form select {
  border-radius: 50px;
}
#demander-un-devis #contact .form-container form textarea {
  border-radius: 20px;
}

.legal h2 {
  padding-bottom: 20px;
}/*# sourceMappingURL=index.css.map */