body {
  overflow-x: hidden;
}

.wb-background {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 1200px;
}

.wb-background-img {
  position: absolute;
  filter: brightness(60%);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.full-title {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 10vw;
  left: 6vw;
}

.top-title {
  font-size: 4vw;
  margin: 0;
  margin-bottom: 10px;
  color: white;
}

.top-subtitle {
  color: white;
  margin: 0;
  font-weight: 500;
  font-size: 1.5vw;
}

.box-container {
  z-index: 10;
  width: 100%;
  display: flex;
  position: absolute;
  top: 650px;
  margin: 0 3px;
  gap: 3px;
}


.suggestion-box {
  flex: 1;
  color: white;
  height: 32.646vw;
  border-radius: 50%;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.suggestion-box p {
  font-size: 1.2vw;
  text-align: center;
}

.suggestion-box h1 {
  margin: 0;
  margin-bottom: 2vw;
  font-size: 2.5vw;
}

.suggestion-box button {
  align-self: center;
  color: white;
  font-size: 1.2vw;
  font-weight: 500;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 2px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.suggestion-box button:hover {
  text-decoration: underline;
}

.suggestion-box #devis-button:hover {
  background-color: rgb(43, 118, 187)
}

.suggestion-box #liens-button:hover {
  background-color: rgb(72, 144, 184);
}

.suggestion-box #avis-button:hover {
  background-color: rgb(61, 154, 194);
}

.devis {
  background-image: linear-gradient(rgb(22, 11, 179), rgb(57, 163, 170));
}

.liens {
  background-image: linear-gradient(rgb(111, 168, 243), rgb(27, 94, 99));
}

.avis {
  background-image: linear-gradient(rgb(51, 101, 196), rgb(57, 163, 170));
}


@media only screen and (max-width: 900px) {

  .wb-background-img {
    height: 40%;
  }

  .wb-background {
    height: 1700px;
  }

  .full-title {
    top: 70px;
  }

  .top-title {
    font-size: 30px;
  }

  .top-subtitle {
    font-size: 14px;
  }
  
  .box-container {
    padding-top: 30px;
    margin-left: 0;
    top: 600px;
    height: 996px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(238, 235, 231);
  }

  .suggestion-box {
    width: 100%;
    border-radius: 0px;
  }

  .suggestion-box button {
    font-size: 12px;
  }

  .suggestion-box h1 {
    font-size: 22px;
    text-align: center;
  }

  .suggestion-box p {
    font-size: 12px;
  }

}