#software-ad {
  overflow: hidden;
  font-weight: 300;
  user-select: none;
  -webkit-user-select: none;
  cursor:default;
  color: rgba(255,255,255,0.8);
}

#software-ad .bullet-container {
  position: absolute;
  z-index: 999;
  bottom: 100px;
  display: flex;
  justify-content: center;
  width: 100%;
}

#software-ad .pane-container {
    min-width: 10000px;
    left: 0px;
    position: relative;
    transition-timing-function: ease-in-out;
    transition: 0.50s;
}


#software-ad .pane {
  background-color: grey;
  width: 100vw;
  max-width: 300px;
  height: 100vh;
  max-height: 600px;
  padding: 20px;
  position: relative;
  float: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

#software-ad .pane .top {
  margin-top: 40px;
  align-self: center;
  align-items: center;
}

#software-ad .pane .fill {
  flex: 1;
}

#software-ad .pane .cta {

}

#software-ad h1 {
  font-size: 40px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  line-height: 40px;
  text-shadow: 0px 1px rgba(0,0,0,0.4);
  margin-bottom: 40px;
}

#software-ad .pane.cyan {
  background: linear-gradient(20deg, #6fe3e7, #4fb8d9 25%, #5648c1);
}

#software-ad .pane.green {
  background: linear-gradient(20deg, #accd3a, #2bc792);
}

#software-ad .pane.orange {
  background: linear-gradient(-20deg, #d23c39, #dca74a);
}

#software-ad .pane.turquoise {
  background: linear-gradient(20deg, #104a72, #5dd19c 75%, #fffae8);
}

#software-ad .pane.red {
  background: linear-gradient(-20deg, #7b4397, #dc2430);
}

#software-ad .button {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px 20px;
  position: relative;
  bottom: 0;
  border-radius: 10px;
  font-weight: 400;
  font-size: 18px;
  transition: 300ms background;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 0px;
  cursor:default;

}

#software-ad .button:hover {
  background: rgba(255, 255, 255, 0.4);
}

#software-ad .circle {
  border-radius: 50%;
  width: 10px;
  height: 10px; 
  background-color: rgba(255,255,255,0.2);
  margin: 3px;
  padding: 2px;
 border: 3px solid rgba(0,0,0,0);
  display: inline-block;
}

