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

.body {
  background-color: #000;
  height: 100%;
  font-family: Outfit, sans-serif;
}

.section {
  height: 100%;
}

.heading {
  color: #fff;
  text-align: left;
  font-size: 32px;
  font-weight: 200;
  line-height: 36px;
}

.div-block {
  text-align: center;
  background-image: url('../images/BG.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  overflow: auto;
}

.flex-block {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  max-width: 720px;
  padding: 36px;
  overflow: auto;
}

.link {
  color: #fff;
}

.link:hover {
  text-decoration: none;
}

@media screen and (max-width: 479px) {
  .heading {
    font-size: 24px;
    line-height: 30px;
  }
}


