body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: white;
  overflow: hidden;
}

#masterWrap {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

#panelWrap {
  width: 100%;
  height: 100%;
}
#left {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  z-index: 1000;
  writing-mode: vertical-lr;
  text-orientation: revert;
  width: 10vw;
  height: 100vh;
  display: flex;
  justify-items: end;
  align-items: center;
  padding: 5rem;
  font-size: 100px;
  border-right: 2px solid white;
}
.main {
  display: flex;
  flex-direction: row;
  width: 100vw;
}
.left-space {
  width: 25vw;
  height: 100vh;
}
.main-container {
  height: 100vh;
  width: 95vw;
  /* border-left: 2px solid white; */
  display: flex;
}
.background-video {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}
@media (min-aspect-ratio: 16/9) {
  .background-video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .background-video {
    width: auto;
    height: 100%;
  }
}
.content {
  z-index: 1;
  position: absolute;
  right: 0;
  height: 80vh;
  width: 65vw;
  display: flex;
  flex-direction: column;
  align-items: self-end;
  justify-content: space-evenly;
  margin: 10vh;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.6px);
  -webkit-backdrop-filter: blur(5.6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: right;
  padding-right: 5rem;
  .main-text {
    font-size: 50px;
    padding: 20px;
  }
  .subtext {
    display: flex;
    flex-direction: column;
    gap: 50px;
    a {
      color: white;
      text-decoration: none;
      transition: all 1s;
    }
    a:hover {
      color: red;
    }
  }
}
.product-content {
  z-index: 1;
  position: absolute;
  right: 0;
  height: 80vh;
  width: 65vw;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin: 10vh 10vh 10vh 0;
  padding: 0 2.5rem;
  /* padding-right: 5rem; */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.6px);
  -webkit-backdrop-filter: blur(5.6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  .product-description {
    width: 30%;
  }
  .product-image {
    max-width: 100%;
  }
}
section {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: relative;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  position: relative;
  background-color: #fff;
  margin: 12px;
  cursor: pointer;
}

.dots {
  position: absolute;
  z-index: 100;
  top: 50%;
  right: 16px;
}

h1 {
  position: absolute;
  z-index: 100;
  font-size: 18px;
  text-align: center;
  width: 100%;
  text-transform: capitalize;
}

span {
  display: block;
  font-size: 0.75em;
  font-weight: 400;
}

#downArrow {
  bottom: 12px;
}

#upArrow {
  top: 12px;
}

.arrow {
  position: absolute;
  z-index: 1001;
  right: 12px;
  cursor: pointer;
  opacity: 0.75;
  width: 40px;
  height: 40px;
  stroke-width: 8px;
  stroke: white;
  fill: transparent;
}

.toolTips {
  position: absolute;
  top: 50%;
  right: 50px;
  z-index: 1000;
}
@media (hover: none) {
  .toolTips,
  p.navDotInfo {
    visibility: hidden;
  }
}
.toolTip {
  opacity: 0;
  text-align: right;
  height: 12px;
  margin: 12px 0;
  line-height: 12px;
  left: 10px;
  top: 10px;
}

h3,
p {
  padding: 0;
  margin: 0;
}

h3 {
  font-size: 1.5em;
}

p {
  max-width: 400px;
  font-weight: 400;
  text-align: center;
}
.p-1 {
  padding: 1rem;
}
div.navDotInfo {
  position: absolute;
  bottom: 15px;
  z-index: 1000;
  width: 100%;
  text-align: left;
  color: white;
  max-width: 5000px;
  font-size: 0.875em;
  a {
    color: white;
    margin-left: 2rem;
    text-decoration: none;
  }
}

.twitterFollow {
  padding: 16px;
  margin-top: 16px;
  cursor: pointer;
  border-radius: 500px;
  text-decoration: none;
  border: solid 2px white;
  color: white;
}

.twitterFollow:hover {
  background: white;
  color: #000;
}

.hideMe {
  opacity: 0;
}
.iconWrap {
  width: 300px;
  margin-top: 30px;
}

@media (min-width: 700px) {
  .iconWrap {
    width: 600px;
  }
}
.icon {
  text-align: center;
  width: 150px;
  float: left;
}

.icon svg {
  width: 50px;
  height: 50px;
  margin: 6px 0;
  overflow: visible;
}

@media (max-width: 480px) {
  section img {
    max-width: 200px;
  }
  p {
    max-width: 180px;
  }
}
