.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

body {
  font-family: Poppins, sans-serif;
  color: #333;
  font-size: 18px;
  line-height: 140%;
  font-weight: 300;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 38px;
  line-height: 44px;
  font-weight: 600;
}

a {
  color: #5b19f5;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.background-video {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.header {
  margin-top: 2rem;
  text-align: center;
}

.title {
  text-align: center;
}

.display-heading {
  margin-bottom: 1em;
  font-size: 6rem;
  line-height: 115%;
}

.vid-scrim {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.container {
  position: relative;
  z-index: 1;
}

.logo {
  height: 100px;
  margin-bottom: 2rem;
}

.brand {
  padding: 4rem 2rem;
  border-style: solid;
  border-width: 1px;
  border-color: hsla(0, 0%, 71%, 0);
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 4px 0 0 rgba(107, 83, 253, 0);
  -webkit-transition: box-shadow 200ms ease;
  transition: box-shadow 200ms ease;
  color: #333;
  font-weight: 400;
  text-align: left;
}

.brand:hover {
  box-shadow: 0 4px 10px 0 rgba(107, 83, 253, 0.13);
}

.brand-logo {
  padding-bottom: 2rem;
}

.text-block {
  margin-bottom: 2rem;
}

.brands {
  padding-top: 4rem;
  text-align: center;
}

.our-brands {
  margin-bottom: 1em;
  color: #212121;
}

.footer {
  text-align: center;
}

.footer---copy {
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  border-style: solid none none;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.2);
}

.brand-grid {
  margin-bottom: 2em;
}

.faux-link {
  color: #5b19f5;
  font-weight: 600;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .display-heading {
    font-size: 4rem;
  }

  .brands {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .body {
    font-size: 16px;
  }
}

@media screen and (max-width: 479px) {
  .display-heading {
    font-size: 2rem;
  }

  .logo {
    height: 50px;
  }

  .brand {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

