.video_attente {
  position: absolute;
  inset: 0%;
}

.section_attente {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  inset: 0%;
}

.navbar {
  z-index: 10;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.container {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin-top: 40px;
  display: flex;
}

.hero_block {
  z-index: 2;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.heading {
  color: #bfd7ff;
  mix-blend-mode: difference;
  font-family: Poppins, sans-serif;
  font-size: 72px;
  line-height: 120%;
}

.text-block {
  color: #fff;
  mix-blend-mode: normal;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
  display: flex;
}

.heading_div {
  z-index: 3;
  mix-blend-mode: difference;
}

.buttons_block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  padding-top: 30px;
  display: flex;
}

.logo_block {
  width: 200px;
}

.footer {
  z-index: 3;
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 110%;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.image {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .heading {
    text-align: center;
    font-size: 50px;
  }

  .text-block {
    font-size: 25px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .right_block {
    display: none;
  }

  .heading {
    font-size: 55px;
  }

  .text-block {
    font-size: 20px;
  }

  .buttons_block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    padding-top: 20px;
  }

  .logo_block {
    width: 150px;
  }

  .text-block-2 {
    text-align: center;
    font-size: 10px;
  }
}


