body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

.hero {
  height: 100vh;
}

.hero__background {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero__video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__fallback {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* @media (max-width: 768px) {
  .hero__video {
    display: none;
  }

  .hero__fallback {
    display: block;
  }
} */

.hero__content {
  position: relative;
  z-index: 1;
  color: white;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 24px;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 64px;
  line-height: 110%;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h1 br {
    display: none;
  }
}

.hero__content p {
  font-size: 24px;
  max-width: 800px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero__content p {
    font-size: 18px;
    padding: 0 16px;
  }
}


.button {
  color: #fff;
  background-color: #013965;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 17px;
}

.button:hover {
  background-color: #7BAFD4;
}



