body {
  margin: 0px;
  position: relative;
  min-height: 100vh;
}
header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,10px);
  z-index: 1000;
}
.header--img {
  width: 15vw;
}
.header--img img {
  width: 100%;
  height: auto;
}
.desktop {
  display: none;
}
.mobile {
  display: block;
}

.hero {
  position: relative;
}
.hero--img {
  height: 50vh;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  /* border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px; */
  overflow: hidden;
}
.hero--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero--content {
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 5vh;
}
.hero--content h1 {
  color: white;
}
.text {
  display: flex;
  flex-direction: column;
}
.text--content {
  display: block;
  margin: 30px;
}
.text--contact {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background-color: #141C2D;
  color: #A2B4BB;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.text--title {
  text-transform: uppercase;
}
.text--link {
  color: #A2B4BB;
}
.text--notif  {
  margin: 15px 30px; 
  color: #A2B4BB;
}
@media screen and (min-width: 992px) {
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }
  .hero--img {
    height: 70vh;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
  .text {
    height: 30vh;
    flex-direction: row;
  }
  .text--content {
    width: 50vw;
    margin-left: 10%;
  }
  .text--contact {
    width: 20vw;
    margin-top: -30px;
    z-index: 1;
  }
  .text--notif  {
    margin: 15px 0;
  }
}