* {
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

a {
  text-decoration: none;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
}

a:hover {
  color: #dec28b;
}

body {
  background-color: #2b2b2b;
}

.nav-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-footer .titre,
.desc {
  font-family: "Montserrat", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 20px;
}



.nav-footer .contenu {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}

.logo.instagram {
  width: 35px;
  height: 35px;
  fill: #dec28b;
}

.logo.instagram:hover {
  fill: #ffffff;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 50px;
  background-color: #dec28b;
  border-radius: 16px;
  margin: 150px 120px 50px 120px;
}

.contact h2 {
  width: fit-content;
  font-family: "Montserrat", Helvetica;
  font-weight: 700;
  color: #2b2b2b;
  font-size: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 200px;
  padding: 16px 24px;
  background-color: #2b2b2b;
  width: fit-content;
  font-family: "Montserrat", Helvetica;
  font-weight: 500;
  color: #dec28b;
  font-size: 16px;
}

.button.dark,
.button.light:hover {
  background-color: #2b2b2b;
  color: #dec28b;
  border: 1px solid #dec28b;
}

.button.light,
.button.dark:hover {
  color: #2b2b2b;
  background-color: #dec28b;
  border: 1px solid #2b2b2b;
}

.prestation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  padding: 100px 120px;
}

.sous-titre {
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #dec28b;
  font-size: 20px;
}

.heading-prestation .titre {
  font-family: "Montserrat", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 40px;
}

h2 {
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  font-size: 40px;
}

.carrousel {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  gap: 26px;
}

.carrousel img {
  width: 280px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.presentation img{
  border-radius: 16px;
  height: 40vh;
  object-fit: cover;
  object-position: top;
}

.presentation div{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 48px;
}

.positionnement {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  padding: 150px 120px;
}

p {
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
}

.presentation div,
.presentation img {
  width: 45%;
}

.span {
  color: #ffffff;
}

.highlight {
  color: #dec28b;
}

.presentation {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 150px 120px 150px 120px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  height: 70vh;
  padding: 0 250px;
}

h1 {
  font-family: "Montserrat", Helvetica;
  font-weight: 700;
  font-size: 64px;
  text-align: center;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 120px;
}

.logo.header {
  width: auto;
  height: 70px;
}

.logo.footer {
  width: auto;
  height: 150px;
  fill: #dec28b;
}

.navbar {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 24px;
}

footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding: 60px 200px;
}

.menu-burger {
  display: none;
  color: #ffffff;
  width: 38px;
  height: 38px;
}

.navbar-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: 26px;
}

.cross {
  color: #ffffff;
  width: 34px;
  height: 34px;
  display: none;
}

.sidenav {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background-color: #2b2b2b;
  transition: 1s;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.sidenav.active {
  left: 0;
}

.card{
  display: flex;
  flex-direction: column;
  gap: 26px;
}