html {
  background-color: #1a1a1a;
  font-family: "Quicksand", serif;
}
html body {
  padding: 0 !important;
  margin: 0 !important;
  width: 100vw;
}
html body h3 {
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 28px;
  margin: 0;
}
html body h4 {
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 20px;
  margin: 0;
}
html body h5 {
  font-weight: 400;
  color: #ffffff;
  font-size: 18px;
  margin: 10px 0 0px 0;
}
html body ul {
  padding-left: 50px;
  color: #ffffff;
  line-height: 30px;
  font-size: 18px;
}

header {
  width: 100%;
  padding: 15px 50px;
  box-sizing: border-box;
  position: sticky;
  z-index: 500;
  top: 0;
}
header.noir {
  background-color: #1a1a1a;
  transition: 0.5s;
}
header.shadow {
  background-color: #121212;
  transition: 0.5s;
}
header.no-shadow {
  background-color: transparent;
  transition: 0.5s;
}

.hero {
  display: flex;
  justify-content: space-between;
  margin: 30px 50px;
  border-radius: 35px;
  background-size: cover;
  background-position: center;
  height: 85vh;
  padding: 30px;
}
.hero .labels {
  display: flex;
  gap: 30px;
}
.hero .labels span {
  color: #ffffff;
  border: solid 1px #ffffff;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5px 20px;
  border-radius: 30px;
}

.container {
  padding: 0 50px;
  width: 100%;
  box-sizing: border-box;
}
.container .row {
  display: flex;
  gap: 7px;
}
.container .col-25 {
  width: 25%;
}
.container .col-33 {
  width: 33%;
}
.container .col-50 {
  width: 50%;
}
.container .col-50 p {
  color: #ffffff;
  line-height: 30px;
}

div.round {
  border-radius: 35px;
  padding: 30px;
}
div.round.little {
  padding: 15px 30px;
}
div.gris {
  background-color: #292929;
}
div.colonne {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

p {
  color: #ffffff;
}
p.sous-titre {
  color: #ffffff;
  opacity: 55%;
}

.hidden {
  display: none !important;
}

.card {
  border: solid 1px #ffffff;
  border-radius: 25px;
  padding: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 33%;
  max-width: 33%;
}
.card img {
  height: 330px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.card a {
  margin: 0;
  padding: 0;
}
.card .row {
  margin-top: auto;
  align-items: center;
}
.card .row button {
  background-color: #f8dd6c;
  border-radius: 30px;
  padding: 10px 11px;
  font-size: 20px;
  height: -moz-fit-content;
  height: fit-content;
  border: none;
  transition: 0.5s;
  cursor: pointer;
}
.card .row button:hover {
  background-color: #ec5b56;
  transition: 0.5s;
}

.btn-round {
  background-color: #f8dd6c;
  border: none;
  font-size: 18px;
  border-radius: 25px;
  padding: 10px 20px;
  transition: 0.5s;
}
.btn-round i {
  font-size: 0px;
  transition: 0.5s;
}
.btn-round:hover {
  background-color: #ec5b56;
  transition: 0.5s;
}
.btn-round:hover i {
  font-size: 18px;
  margin-left: 10px;
  transition: 0.5s;
}

footer {
  margin-top: 70px;
  background-color: #121212;
  color: #ffffff;
  padding: 5px 0;
  text-align: center;
}

.imgProjet {
  border-radius: 35px;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1540px) {
  .card {
    width: 25%;
    max-width: 25%;
  }
  .hidden {
    display: block !important;
  }
}/*# sourceMappingURL=styles.css.map */