.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

p {
  margin-bottom: 0;
}

.div-block {
  width: 100vw;
  height: 100vh;
}

.background-video {
  background-image: linear-gradient(#00000080, #00000080);
  width: 100%;
  height: 100%;
}

.div-block-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 4rem;
  display: flex;
}

.logo {
  height: 12.5rem;
}

.flex-block {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.text24 {
  font-size: 1.5rem;
  line-height: 120%;
}

.flex-block-2 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: flex-start;
  align-items: center;
}

.link {
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .flex-block {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
  }
}


