.happyhours {
  background-color: var(--color-bg);
  padding: 60px 0;
}

.boisson-mois {
  background-color: var(--color-bg-second);
  padding: 60px 0;
}

.avantages {
  background-color: var(--color-bg);
  padding: 60px 0 100px 0;
}

.container-content {
  display: flex;
  gap: 80px;
  margin: 20px 0;
}

.container-content-month {
  display: flex;
  gap: 80px;
  margin: 20px 0;
}

.title {
  justify-self: center;
  margin: 0 0 80px 0;
}

.heading {
  font-weight: 800;
}

.subheading {
  color: var(--color-accent);
  font-weight: 700;
}

.container-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.container-content img {
  width: 500px;
  height: auto;
  border-radius: 20px;
}

.container-content-month img {
  width: 500px;
  height: auto;
  border-radius: 20px;
}

.happyhours-img {
  position: relative;
  flex: 0 0 500px;
}

.img-text {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.discount-happy {
  position: absolute;
  width: 280px;
  height: 280px;
  top: -20%;
  right: -25%;
}

.discount-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-bg);
}

.white {
  color: var(--color-bg);
  font-size: 80px;
  font-weight: 700;
}

.sign {
  font-family: var(--font-sign);
  color: var(--color-bg);
  font-size: 30px;
  font-weight: 400;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .container-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .container-content-month {
    flex-direction: column-reverse;
    align-items: center;
  }
  .title {
    margin: 0 0 50px 0;
  }
  .container-text {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .happyhours-img {
    width: 250px;
    height: 250px;
    flex: 0 0;
  }
  .img-text {
    width: 250px;
    height: 250px;
  }
  .sign {
    font-size: 15px;
  }
  .white {
    font-size: 40px;
  }
  .discount-happy {
    width: 200px;
    height: 200px;
    top: -30%;
    right: -30%;
  }
  .discount-text {
    font-size: 27px;
  }
}
