@charset "UTF-8";
:root {
  --color--primary-40: #3a4547;
}

:root {
  --max-width: 1500px; /* valeur par défaut */
}

@media (max-width: 1440px) {
  :root {
    --max-width: 1200px;
  }
}
@media (max-width: 1024px) {
  :root {
    --max-width: 900px;
  }
}
@media (max-width: 768px) {
  :root {
    --max-width: 600px;
  }
}
.hero {
  position: relative;
  background: radial-gradient(circle, rgb(64, 106, 218) 0%, #1e3063 100%);
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    background: rgba(12, 12, 12, 0.4039215686);
  }
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 150px;
  width: 100%;
  background: linear-gradient(0deg, #f6f8f8 0%, transparent 100%);
}
.hero .wrapper {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1269px) {
  .hero .wrapper {
    padding: 10px;
    flex-direction: column;
  }
}
.hero .wrapper .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero .wrapper .text .title {
  color: #f6f8f8;
  font-weight: bold;
  font-size: 3.5rem;
  margin: 0;
  line-height: 4rem;
}
@media (max-width: 1440px) {
  .hero .wrapper .text .title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero .wrapper .text .title {
    color: #f6f8f8;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.hero .wrapper .text .introduction {
  color: #f6f8f8;
  font-size: 1.3rem;
  margin: 0;
  font-weight: normal;
  line-height: 2.5rem;
}
@media (max-width: 768px) {
  .hero .wrapper .text .introduction {
    color: #f6f8f8;
  }
}
.hero .wrapper .text .bubbles {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 768px) {
  .hero .wrapper .text .bubbles {
    grid-template-columns: repeat(1, 1fr);
  }
}
.hero .wrapper .text .bubbles .bubble {
  border-radius: 15px;
  background-color: #fff;
  padding: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #464a4b;
}
@media (max-width: 768px) {
  .hero .wrapper .text .bubbles .bubble {
    grid-template-columns: repeat(1, 1fr);
  }
}
.hero .wrapper .text .bubbles .bubble.bubble-0 {
  grid-column: 1/4;
  grid-row: 1;
}
.hero .wrapper .text .bubbles .bubble.bubble-1 {
  grid-column: 4/7;
  grid-row: 1;
}
.hero .wrapper .text .bubbles .bubble.bubble-2, .hero .wrapper .text .bubbles .bubble.bubble-3, .hero .wrapper .text .bubbles .bubble.bubble-4 {
  grid-row: 2;
}
.hero .wrapper .text .bubbles .bubble.bubble-2 {
  grid-column: 1/3;
}
.hero .wrapper .text .bubbles .bubble.bubble-3 {
  grid-column: 3/5;
}
.hero .wrapper .text .bubbles .bubble.bubble-4 {
  grid-column: 5/7;
}
@media (max-width: 768px) {
  .hero .wrapper .text .bubbles .bubble.bubble-0, .hero .wrapper .text .bubbles .bubble.bubble-1, .hero .wrapper .text .bubbles .bubble.bubble-2, .hero .wrapper .text .bubbles .bubble.bubble-3, .hero .wrapper .text .bubbles .bubble.bubble-4 {
    grid-column: 1/6;
    grid-row: auto;
  }
}
.hero .wrapper .text .bubbles .bubble p {
  text-align: center;
  padding: 0;
  margin: 0;
}
.hero .wrapper .text .bubbles .bubble p strong {
  color: #e58a16;
}
@media (max-width: 768px) {
  .hero .wrapper .text {
    background-position: center;
    background-repeat: none;
  }
}
.hero .wrapper .image {
  margin: 20px 0;
  flex-shrink: 0;
  position: relative;
}
.hero .wrapper .image::before {
  position: absolute;
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  bottom: 5%;
  right: 5%;
  rotate: 10deg;
  background-position: center;
  background-repeat: none;
  background-size: contain;
  background-image: url(../images/mouse-pointer.svg);
}
.hero .wrapper .image .illustration {
  border-radius: 50%;
  border: 5px solid white;
}

/*# sourceMappingURL=hero.css.map */
