:root {
  --dark-blue: #030b36;
  --white: #fff;
  --light-blue: #00a7e5;
}

.div-block {
  object-fit: cover;
  background-image: url('../images/Xenfincapital-video-2-poster-00001.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.video-overlay {
  background-color: var(--dark-blue);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.background-video {
  z-index: 2;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.content-wrap {
  z-index: 10;
  background-color: var(--white);
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 1200px;
  min-height: 50vh;
  padding: 60px;
  display: flex;
  position: relative;
}

.logo {
  width: 300px;
}

.text-block {
  text-align: center;
}

.button {
  border: 1px solid var(--dark-blue);
  background-color: var(--dark-blue);
  text-align: center;
  border-radius: 10px;
  width: 150px;
}

.button.hollow {
  background-color: var(--white);
  color: var(--dark-blue);
}

.button-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .content-wrap {
    background-color: #ffffffe6;
    width: 90%;
    max-width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo {
    width: 200px;
  }
}

@media screen and (max-width: 479px) {
  .content-wrap {
    padding: 10px;
  }

  .button-wrap {
    flex-flow: column;
  }
}


