* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #d8d0c8;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  width: 100%;
  background: #000;
}

/* VIDEO SECTIONS */

.video-section {
  position: relative;
  width: 100%;
  padding: 55px 4% 0;
  display: flex;
  justify-content: center;
}

.video-section video {
  width: 100%;
  max-width: 1100px;
  display: block;
  background: #111;
}

.top-video {
  padding-top: 70px;
}

/* LOGO OVERLAY - TOP LEFT OF VIDEO */

.launch {
  position: absolute;
  top: 70px;
  left: calc(50% - 550px);

  width: 200px;
  height: auto;

  display: block;
  pointer-events: none;
  z-index: 10;
}

.launch img {
  display: block;
  width: 220px;
  height: auto;
  object-fit: contain;

  margin: 0;
  padding: 0;
  background: transparent;
}

.launch h1 {
  display: none;
}

/* CENTERED TEXT BELOW FIRST VIDEO */

.top-video::after {
  content: "Launching Soon!";
  position: absolute;
  bottom: -72px;
  left: 50%;
  transform: translateX(-50%);
  color: #d8d0c8;
  font-size: 42px;
  font-weight: 300;
  white-space: nowrap;
}

/* GAP BETWEEN VIDEOS */

.video-gap {
  height: 130px;
}

/* BANNER */

.banner img {
  width: 100%;
  display: block;
}

/* FOOTER */

.footer {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 28px 5%;
  background: #000;
}

.footer h3 {
  margin: 0 0 30px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 400;
}

.footer a,
.footer span {
  color: #d8d0c8;
  text-decoration: none;
  font-size: 23px;
}

.footer a:hover {
  text-decoration: underline;
}

.logos {
  margin-left: auto;
  display: flex;
  gap: 28px;
  align-items: center;
}

.logos img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #fff;
}

.logos img.no-bg {
  background: transparent;
}

.logos img.bottom-main-logo {
  width: 270px;
  height: auto;
  background: transparent;
  object-fit: contain;
  padding: 0;
}

/* TABLET */

@media (max-width: 1200px) {
  .top-video {
    flex-direction: column;
    align-items: center;
  }

  .launch {
    position: static;
    order: -1;
    width: 180px;
    height: auto;
    margin: 0 auto 18px;
    z-index: auto;
  }

  .launch img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .top-video::after {
    bottom: -70px;
    font-size: 34px;
  }
}

/* MOBILE */

@media (max-width: 800px) {
  .video-section {
    padding: 25px 0 0;
  }

  .video-section video {
    width: 100%;
    max-width: none;
  }

  .top-video {
    padding-top: 25px;
  }

  .launch {
    width: 145px;
    margin: 0 auto 14px;
  }

  .top-video::after {
    bottom: -58px;
    font-size: 28px;
  }

  .video-gap {
    height: 95px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding: 28px 6%;
  }

  .logos {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 18px;
  }

  .logos img {
    width: 78px;
    height: 78px;
  }

  .logos img.bottom-main-logo {
    width: 180px;
  }
}