* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

.sections {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
}

/* classe pour l'image d'arrière-plan 1 */
.bg-1 {
  background: url(/images/demarches/Location_salle/bg-1.jpg) no-repeat left;
}

/* classe pour l'image d'arrière-plan 2 */
.bg-2 {
  background: url(/images/demarches/Location_salle/bg-2.jpg) no-repeat left;
}

/* classe pour l'image d'arrière-plan 3 */
.bg-3 {
  background: url(/images/demarches/Location_salle/bg-3.jpg) no-repeat left;
}

.about-section {
  background-size: 55%;
  background-color: #f1f1f1;
  overflow: hidden;
  padding: 100px 0;
  transition: background-image 1s ease-in-out;
}

.inner-container {
  width: 55%;
  float: right;
  background-color: #fdfdfd;
  padding: 50px 150px;
}

.inner-container h1 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 900;
}

.text {
  font-size: 13px;
  color: #545454;
  line-height: 30px;
  text-align: justify;
  margin-bottom: 40px;
}

.options {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 13px;
  margin-top: 50px;
}

@media screen and (max-width:1200px) {
  .inner-container {
    padding: 80px;
  }
}

@media screen and (max-width:1000px) {
  .about-section {
    background-size: 100%;
    padding: 100px 40px;
  }

  .inner-container {
    width: 100%;
  }
}

@media screen and (max-width:600px) {
  .about-section {
    padding: 0;
  }

  .inner-container {
    padding: 60px;
  }
}

.options-cat {
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media (max-width: 1001px) {
  .about-section {
    overflow: visible;
  }
}