main.soulody > section#vision {
  grid-area: vision;
  padding: 16px;
  position: relative;

  @media screen and (max-width: 930px) {
    position: relative;
    row-gap: 0;
  }
  > nav.controls {
    position: absolute;
    justify-content: space-between;
    width: 100%;
    padding: 40px;
    display: flex;
    align-items: flex-start;
  }

  #bgvideo,
  #bgvideomobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    border-radius: 24px;
    pointer-events: none;
  }

  #bgvideomobile {
    display: none;
  }

  @media screen and (max-width: 930px) {
    #bgvideo {
      display: none;
    }

    #bgvideomobile {
      display: block;
      border-radius: 24px;
    }
  }

  .volume-icon {
    z-index: 1;
    cursor: pointer;
  }

  @media screen and (max-width: 930px) {
    .volume-icon {
      grid-area: mutebutton;
      justify-self: center;
    }
  }

  > main {
    position: absolute;
    left: calc(5% - 30px);
    bottom: 5%;
    max-width: 315px;
    padding: 16px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    box-sizing: border-box;

    @media screen and (max-width: 930px) {
      display: flex;
      max-width: unset;
      max-height: 80px;
      bottom: 2.5%;
      left: 5.5%;
      right: 5.5%;
    }

    > header {
      text-align: left;
      display: inline-grid;
      grid-template-areas: "description nav";
      grid-template-columns: 190px;
      margin-bottom: 5px;
      @media screen and (max-width: 930px) {
        grid-template-areas: "description . nav";
        grid-template-columns: auto 2fr 1fr;
      }
      > main {
        grid-area: description;
      }
      > nav.arrows {
        grid-area: nav;
        margin-bottom: 5px;
        z-index: 1;
        display: flex;
        justify-content: end;
        align-items: end;

        > .left,
        > .right {
          width: 40px;
          height: 40px;
          padding: 8px;
          background-color: white;
          border-radius: 8px;
          cursor: pointer;
        }

        > .left {
          transform: rotate(180deg);
        }

        > .right {
          margin-left: 4px;
        }
      }
    }
  }

  > main > h5 {
    margin-top: 24px;
  }

  @media screen and (max-width: 930px) {
    > main > h5 {
      display: none;
    }
  }

  .playpause {
    display: unset;
    z-index: 1;
    background-color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border: white;

    &[data-state=paused] {
      background: url(../../assets/icons/play.svg) no-repeat center;
    }

    &[data-state=playing] {
      background: url(../../assets/icons/pause.svg) no-repeat center;
    }
  }
}

#bg-container {
  position: relative;
  width: 94vw;
  height: 100vh;
  margin: auto;
  overflow: hidden;
  border-radius: 24px;
}
