* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
html {
  background-color: #d8cc84;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
}

header {
  width: 100svw;
  background-size: cover;
}

/* ---------- NAVBAR ---------- */

.navbar {
    position: fixed;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    background-color: #2c2c2c;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.45);
    z-index: 3;
  }
  
  .navbar a {
    color: #d8cc84;
  }
  
  .navbar .logo {
    font-size: 2em;
    font-weight: bold;
  }
  
  .navbar .nav-links ul {
    display: flex;
  }
  
  .navbar .nav-links ul li {
    font-size: 1.2em;
    margin: 0 30px;
  }
  
  .navbar .nav-links ul li .active {
    color: white;
    font-weight: bold;
  }
  
  .navbar .menu-hamburger {
    display: none;
    position: absolute;
    right: 30px;
    width: 30px;
  }
  
  .navbar .mobile-menu {
    margin-left: 0;
  }
  
  @media screen and (max-width: 1050px) {
    .navbar .logo {
      font-size: 1.2em;
    }
  
    .navbar .menu-hamburger {
      display: block;
    }
    .nav-links {
      top: 0;
      left: 0;
      position: absolute;
      background-color: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      width: 100%;
      height: 100svh;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: -100%;
      transition: all 0.5s ease;
    }
  
    .nav-links.mobile-menu {
      margin-left: 0;
    }
  
    .navbar .mobile-menu {
      margin-left: 0;
    }
  
    .nav-links ul {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .navbar .nav-links ul li {
      margin: 35px 0;
      font-size: 1.8em;
    }
  }
/* ---------- */

.services {
  background-color: #d8cc84;
  min-height: 100svh;
  padding: 150px 5%;
  /* display: flex;
  
    justify-content: center; */
}

.body-services {
  background-color: white;
  min-height: 45svh;
  border-radius: 20px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.45);
  display: grid;
  align-items: center;
  justify-content: center;
}

.services h2 {
  font-size: 3em;
  font-weight: bold;
  margin: 50px 0 50px;
}
.body-services h3 {
  font-size: 2em;
  font-weight: bold;
}
.body-services ul li {
  font-size: 1.5em;
  margin: 15px;
}

.conteneur,
.marchandise,
.autre {
  margin: 0 0 50px;
}
.p-services {
  margin: 20px 5% 0;
  line-height: 20px;
  font-size: 1.2em;
  font-weight: 600;
}

.autre .h3-services {
  margin: 100px 20px;
  font-size: 1.5em;
}

@media screen and (max-width: 1050px) {
  .services {
    background-color: white;
    padding: 100px 5%;
  }

  .body-services {
    background-color: white;
    min-height: 45svh;
    box-shadow: none;

    display: grid;
    align-items: center;
    justify-content: center;
  }

  .services h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0 0 50px;
  }
  .body-services h3 {
    font-size: 2em;
    font-weight: bold;
  }
  .body-services ul li {
    font-size: 1.2em;
    margin: 15px 5%;
  }

  .p-services {
    margin: 20px 5% 0;
    line-height: 20px;
  }

  .autre .h3-services {
    margin: 80px 15px 0;
    font-size: 1.3em;
  }
}
