.block {
  display: block;
}
.in-block {
  display: inline-block;
}
.none {
  display: none;
}
.rel {
  position: relative;
}
.scrollable {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  border-radius: 6px;
  background: #f3f2f2;
}
::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #d7d6d6;
}
.pointer-up,
.pointer-down {
  width: auto;
  height: 6px;
}
.pointer-left,
.pointer-right {
  width: 6px;
  height: auto;
}
.pointer-up {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-92%);
}
.pointer-down {
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 0;
  right: auto;
  transform: translateX(-50%) translateY(92%);
}
.pointer-left {
  position: absolute;
  top: 50%;
  left: 0;
  bottom: auto;
  right: auto;
  transform: translateX(-92%) translateY(-50%);
}
.pointer-right {
  position: absolute;
  top: 50%;
  left: auto;
  bottom: auto;
  right: 0;
  transform: translateX(92%) translateY(-50%);
}
.no-bullets {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media all and (max-width: 1500px) {
  body:after {
    content: 'Break-0: 1500px';
    display: block;
    background: #191919;
    color: #fff;
    position: fixed;
    top: auto;
    left: auto;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    z-index: 999;
    font-size: 1.6em;
    pointer-events: none;
    opacity: 0.5;
    display: none;
  }
}
@media all and (max-width: 1400px) {
  body:after {
    content: 'Break-1: 1400px';
    display: block;
    background: #191919;
    color: #fff;
    position: fixed;
    top: auto;
    left: auto;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    z-index: 999;
    font-size: 1.6em;
    pointer-events: none;
    opacity: 0.5;
    display: none;
  }
}
@media all and (max-width: 1200px) {
  body:after {
    content: 'Break-2: 1200px';
    display: block;
    background: #191919;
    color: #fff;
    position: fixed;
    top: auto;
    left: auto;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    z-index: 999;
    font-size: 1.6em;
    pointer-events: none;
    opacity: 0.5;
    display: none;
    background: green;
  }
}
@media all and (max-width: 1050px) {
  body:after {
    content: 'Break-3: 1050px';
    display: block;
    background: #191919;
    color: #fff;
    position: fixed;
    top: auto;
    left: auto;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    z-index: 999;
    font-size: 1.6em;
    pointer-events: none;
    opacity: 0.5;
    display: none;
    background: purple;
  }
}
@media all and (max-width: 900px) {
  body:after {
    content: 'Break-4: 900px';
    display: block;
    background: #191919;
    color: #fff;
    position: fixed;
    top: auto;
    left: auto;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    z-index: 999;
    font-size: 1.6em;
    pointer-events: none;
    opacity: 0.5;
    display: none;
    background: gray;
  }
}
@media all and (max-width: 650px) {
  body:after {
    content: 'Break-m: 650px';
    display: block;
    background: #191919;
    color: #fff;
    position: fixed;
    top: auto;
    left: auto;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    z-index: 999;
    font-size: 1.6em;
    pointer-events: none;
    opacity: 0.5;
    display: none;
    background: red;
  }
}
@media all and (min-width: 1500px) {
  body:after {
    content: 'Large: > 1500px';
    display: block;
    background: #191919;
    color: #fff;
    position: fixed;
    top: auto;
    left: auto;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    z-index: 999;
    font-size: 1.6em;
    pointer-events: none;
    opacity: 0.5;
    display: none;
    background: blue;
  }
}
header {
  overflow: hidden;
  position: relative;
  background: #191919;
}
header #welcome-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transition: all 2400ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 1800ms;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
}
header .contain {
  padding-top: 24vh;
  padding-bottom: 24vh;
}
header .logo-submark {
  width: auto;
  height: 80px;
  display: block;
  margin-bottom: 40px;
}
header .logo-submark * {
  fill: #ffcc00;
}
header .copy {
  display: inline-block;
  vertical-align: middle;
}
header .loading-anim {
  transition: all 600ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 1200ms;
  margin: 0 0 40px;
}
header .global-download-trigger .also {
  display: none;
}
header.playing #welcome-vid {
  opacity: 0.5;
}
header.playing .loading-anim {
  transform: translateX(240px);
  opacity: 0;
}
header.playing .logo-mark,
header.playing .logo-full {
  transform: translateX(0);
  opacity: 1;
}
@media all and (max-width: 650px) {
  header .contain {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  header .logo-mark {
    display: block;
    margin: 0 auto;
    height: 100px;
  }
  header .loading-anim {
    display: none;
  }
  header h1 {
    margin-top: 20px;
  }
}
.nav-head {
  background: none;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: auto;
  right: auto;
  z-index: 2;
  width: 100%;
}
.nav-head .logo-full-sub-mark * {
  fill: #ffcc00;
}
.nav-head a {
  color: #ffcc00;
}
.nav-head a:hover {
  color: #fff;
}
@media all and (max-width: 900px) {
  .nav-head .boiga rect {
    fill: #fff;
  }
}
.outage-alert + .nav-head {
  top: 80px;
}
.reorderable {
  margin-top: -120px;
}
.home-section {
  margin-bottom: 80px;
}
.home-section h4 em,
.home-section p em {
  color: #ff4b3e;
  font-style: normal;
}
.home-section .global-download-trigger {
  margin-bottom: 40px;
}
.home-section hr {
  margin-top: 0;
}
.home-section .drawn-circle path,
.home-section .drawn-arrow path {
  fill: #ff4b3e;
}
@media all and (max-width: 650px) {
  .home-section {
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  .home-section hr {
    margin: 0 0 20px;
  }
}
.what-is {
  padding-top: 120px;
}
.what-is p {
  font-size: 2.2em;
  margin-bottom: 40px;
}
.what-is .lappy {
  padding: 20px;
  background: #191919;
  border: 6px solid #d7d6d6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  position: relative;
  transform: translateY(-120px);
}
.what-is .lappy .bottom {
  background: #cac9c9;
  width: 120%;
  height: 5%;
  position: absolute;
  top: 100%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.what-is .lappy .bottom:before {
  content: '';
  display: block;
  width: 20%;
  height: 50%;
  background: #8d8d92;
  position: absolute;
  top: 0px;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.what-is .lappy .loading-anim {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}
.what-is .lappy video {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: auto;
  right: auto;
  width: 100%;
  width: calc(100% - 40px);
  height: auto;
  opacity: 0;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  z-index: 2;
}
.what-is .lappy video.playing {
  opacity: 1;
}
@media all and (max-width: 1200px) {
  .what-is p {
    max-width: 500px;
  }
}
@media all and (max-width: 900px) {
  .what-is p {
    max-width: 100%;
  }
  .what-is .lappy {
    transform: none;
  }
}
@media all and (max-width: 650px) {
  .what-is .lappy {
    padding: 0;
    border: none;
    border-radius: 0px;
    transform: none;
  }
  .what-is .lappy .bottom {
    display: none;
  }
  .what-is .lappy video {
    width: 100%;
    top: 0;
    left: 0;
  }
}
.dont-settle img {
  position: absolute;
  top: 50%;
  left: 30%;
  bottom: auto;
  right: auto;
  transform: translateY(-50%);
  max-width: 100%;
  z-index: -1;
}
.dont-settle .copy {
  width: 50%;
}
.dont-settle .copy hr {
  margin-top: 80px;
}
@media all and (max-width: 1500px) {
  .dont-settle .copy {
    width: 40%;
  }
  .dont-settle img {
    max-width: 80%;
  }
}
@media all and (max-width: 1200px) {
  .dont-settle .copy {
    width: 100%;
  }
  .dont-settle .copy p em {
    color: #191919;
  }
  .dont-settle img {
    max-width: 100%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    opacity: 0.25;
  }
}
@media all and (max-width: 650px) {
  .dont-settle img {
    display: none;
  }
}
.want-to-play .media {
  position: relative;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
}
.want-to-play h4,
.want-to-play p,
.want-to-play .global-download-trigger,
.want-to-play .arrowLink {
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
}
.want-to-play p {
  transition-delay: 200ms;
}
.want-to-play .global-download-trigger {
  transition-delay: 300ms;
}
.want-to-play .arrowLink {
  transition-delay: 400ms;
}
.want-to-play.anim-out .media {
  transform: translateX(-4000px);
}
.want-to-play.anim-out h4,
.want-to-play.anim-out p,
.want-to-play.anim-out .global-download-trigger,
.want-to-play.anim-out .arrowLink {
  transform: translateX(200px);
  opacity: 0;
}
.screen-rotator {
  position: relative;
}
.screen-rotator .caption {
  position: absolute;
  top: 100%;
  left: 0px;
  bottom: auto;
  right: auto;
  z-index: 2;
}
.screen-rotator .loading-anim {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
}
.screen-rotator .rot-img {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  transition: all 2000ms cubic-bezier(0.8, 0, 0.145, 1);
  opacity: 0;
  will-change: opacity;
}
.screen-rotator .rot-img.active {
  opacity: 1;
}
.screen-rotator .inds {
  position: absolute;
  top: 100%;
  left: auto;
  bottom: auto;
  right: 0px;
  margin-top: 32px;
}
.screen-rotator .inds span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #d7d6d6;
  display: inline-block;
  margin-left: 10px;
  transition: all 1000ms cubic-bezier(0.8, 0, 0.145, 1);
}
.screen-rotator .inds span.active {
  background: #33a0e1;
}
@media all and (max-width: 650px) {
  .screen-rotator .caption {
    display: none;
  }
}
@media all and (max-width: 650px) {
  .screen-rotator .inds {
    display: none;
  }
}
.the-plan {
  margin-bottom: 280px;
}
.the-plan h4 {
  text-align: center;
  margin-bottom: 80px;
}
.the-plan .plan {
  position: relative;
}
.the-plan .step-2 {
  width: 66%;
  margin: auto;
  position: relative;
  z-index: 1;
}
.the-plan .step-2 img.bg {
  display: block;
  width: 100%;
  height: auto;
  transition: all 1600ms cubic-bezier(0.8, 0, 0.145, 1);
}
.the-plan .step-2 img.fg {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  height: auto;
  transition: all 1600ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 100ms;
}
.the-plan .step-2 .copy {
  max-width: 500px;
  position: absolute;
  top: 100%;
  left: 25%;
  bottom: auto;
  right: auto;
  margin-top: 40px;
}
.the-plan .step-2 .drawn-arrow {
  position: absolute;
  top: -440px;
  left: -340px;
  bottom: auto;
  right: auto;
  width: 250px;
  height: auto;
  transform-origin: 0 100%;
  transform: rotateX(180deg);
  transition: all 400ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 1900ms;
}
.the-plan .step-2 .drawn-circle {
  position: absolute;
  top: -60px;
  left: -60px;
  bottom: auto;
  right: auto;
  width: 200px;
  height: auto;
  transition: all 400ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 2000ms;
}
.the-plan .step-1 {
  width: 300px;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: auto;
  right: auto;
  z-index: 2;
  transition: all 1200ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 300ms;
}
.the-plan .step-1 p {
  max-width: 200px;
}
.the-plan .step-1 .drawn-arrow {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: auto;
  right: auto;
  width: 150px;
  height: auto;
  transform-origin: 0 100%;
  transform: rotateY(180deg) rotate(70deg) translateY(250px) translateX(-400px);
  transition: all 400ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 1600ms;
}
.the-plan .step-1 .drawn-circle {
  position: absolute;
  top: -40px;
  left: 10px;
  bottom: auto;
  right: auto;
  width: 220px;
  height: auto;
  transition: all 400ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 1700ms;
}
.the-plan .step-3 {
  width: 290px;
  heght: auto;
  position: absolute;
  top: auto;
  left: auto;
  bottom: -40px;
  right: 0px;
  z-index: 2;
  transition: all 400ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 400ms;
}
.the-plan .step-3 .img {
  display: block;
  width: 290px;
  height: 290px;
  border-radius: 290px;
  overflow: hidden;
  border: 10px solid #fefefe;
  background: #d7d6d6;
  margin-top: 80px;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 800ms;
}
.the-plan .step-3 .img img {
  display: block;
  width: 100%;
  height: auto;
}
.the-plan .step-3 h5,
.the-plan .step-3 p {
  position: relative;
  left: 80px;
}
.the-plan .step-3 h5 {
  white-space: nowrap;
}
.the-plan .step-3 .drawn-arrow {
  position: absolute;
  top: -140px;
  left: 400px;
  bottom: auto;
  right: auto;
  width: 180px;
  height: auto;
  transform-origin: 0 100%;
  transform: rotate(160deg);
  transition: all 400ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 2200ms;
}
.the-plan .step-3 .drawn-circle {
  position: absolute;
  top: -70px;
  left: 310px;
  bottom: auto;
  right: auto;
  width: 140px;
  height: auto;
  transition: all 400ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 2300ms;
}
.the-plan.anim-out .step-2 img.bg {
  transform: translateX(-400px);
  opacity: 0;
}
.the-plan.anim-out .step-2 img.fg {
  transform: translateY(-50%) translateX(-400%);
  opacity: 0;
}
.the-plan.anim-out .step-2 .drawn-arrow {
  transform: rotateX(180deg) scale(0.1);
}
.the-plan.anim-out .step-2 .drawn-circle {
  transform: scale(0);
}
.the-plan.anim-out .step-1 {
  transform: translateX(-400px);
  opacity: 0;
}
.the-plan.anim-out .step-1 .drawn-arrow {
  transform: rotateY(180deg) rotate(70deg) translateY(250px) translateX(-400px) scale(0.1);
}
.the-plan.anim-out .step-1 .drawn-circle {
  transform: scale(0);
}
.the-plan.anim-out .step-3 {
  transform: translateX(400px);
  opacity: 0;
}
.the-plan.anim-out .step-3 .img {
  transform: scale(0);
}
.the-plan.anim-out .step-3 .drawn-arrow {
  transform: rotateX(160deg) scale(0.1);
}
.the-plan.anim-out .step-3 .drawn-circle {
  transform: scale(0);
}
@media all and (max-width: 1500px) {
  .the-plan .step-2 {
    width: 60%;
    position: relative;
    left: -40px;
  }
  .the-plan .step-3 {
    right: 40px;
  }
  .the-plan .step-3 h5 {
    white-space: normal;
  }
  .the-plan .step-3 .img {
    margin-top: 40px;
  }
}
@media all and (max-width: 1400px) {
  .the-plan .step-2 {
    width: 55%;
    position: relative;
    left: -40px;
  }
  .the-plan .step-3 {
    right: 40px;
  }
  .the-plan .step-3 h5 {
    white-space: normal;
  }
  .the-plan .step-3 .img {
    margin-top: 40px;
  }
}
@media all and (max-width: 1200px) {
  .the-plan {
    margin-bottom: 120px;
    text-align: center;
  }
  .the-plan .plan {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 80px;
  }
  .the-plan .step-1,
  .the-plan .step-2,
  .the-plan .step-3 {
    width: 100%;
    position: static;
    margin: 0;
    left: 0;
  }
  .the-plan .step-2:before {
    content: '2';
  }
  .the-plan .step-2 img.bg,
  .the-plan .step-2 img.fg {
    display: none;
  }
  .the-plan .step-2 .copy {
    position: static;
    margin: 0;
  }
  .the-plan .step-1 p {
    max-width: 100%;
  }
  .the-plan .step-3:before {
    content: '3';
  }
  .the-plan .step-3 .img {
    display: none;
  }
  .the-plan .step-3 h5,
  .the-plan .step-3 p {
    left: 0;
  }
  .the-plan .step-2:before,
  .the-plan .step-3:before {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    overflow: hidden;
    background: #ff4b3e;
    margin: 0 auto 69px;
    text-align: center;
    line-height: 84px;
    color: #fff;
    font-size: 3em;
  }
  .the-plan .step-2 h5,
  .the-plan .step-3 h5 {
    font-size: 2em;
    margin-bottom: 63px;
  }
  .the-plan .step-2 .num,
  .the-plan .step-3 .num {
    display: none;
  }
  .the-plan .drawn-arrow,
  .the-plan .drawn-circle {
    display: none;
  }
}
@media all and (max-width: 1050px) {
  .the-plan .step-2 h5,
  .the-plan .step-3 h5 {
    margin-bottom: 65px;
  }
}
@media all and (max-width: 900px) {
  .the-plan .plan {
    grid-gap: 40px;
  }
  .the-plan .step-3 h5 {
    margin-bottom: 43px;
  }
}
@media all and (max-width: 650px) {
  .the-plan {
    margin-bottom: 20px;
  }
  .the-plan .plan {
    display: block;
  }
  .the-plan .step-1,
  .the-plan .step-2,
  .the-plan .step-3 {
    margin-bottom: 40px;
  }
  .the-plan .step-2:before,
  .the-plan .step-3:before {
    margin-bottom: 20px;
  }
  .the-plan .step-2 h5,
  .the-plan .step-3 h5 {
    margin: 0;
  }
}
.any-device {
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 160px;
}
.any-device .copy {
  max-width: 40%;
  padding: 40px 40px 40px 0;
}
.any-device .copy h4,
.any-device .copy p {
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
}
.any-device .device {
  display: block;
  height: 120%;
  position: absolute;
  top: 0px;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateY(-6%);
  transition: all 1600ms cubic-bezier(0.8, 0, 0.145, 1);
}
.any-device .sticks {
  display: block;
  width: 50%;
  height: auto;
  position: absolute;
  top: 90%;
  left: auto;
  bottom: auto;
  right: 90%;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 1200ms;
}
.any-device .os-logos {
  margin-top: 160px;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 400ms;
}
.any-device .os-logos svg {
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
}
.any-device .os-logos svg path {
  fill: #454546;
}
.any-device .os-logos .apple-logo {
  height: 50px;
  width: 60px;
  position: relative;
  top: -4px;
}
.any-device .os-logos .win-logo {
  height: 40px;
  width: 40px;
}
.any-device .os-logos p {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.any-device.anim-out .device {
  transform: translateY(-6%) translateX(100%);
}
.any-device.anim-out .copy h4,
.any-device.anim-out .copy p {
  transform: translateY(100px);
  opacity: 0;
}
.any-device.anim-out .os-logos {
  opacity: 0;
}
.any-device.anim-out .sticks {
  transform: translateX(-100%);
}
@media all and (max-width: 1500px) {
  .any-device .sticks {
    right: 65%;
  }
}
@media all and (max-width: 1050px) {
  .any-device .os-logos {
    margin-top: 80px;
  }
}
@media all and (max-width: 900px) {
  .any-device {
    margin-bottom: 80px;
  }
  .any-device .copy {
    max-width: 60%;
  }
  .any-device .device {
    height: 70%;
    left: 60%;
    top: 20%;
  }
  .any-device .os-logos {
    margin-top: 20px;
  }
  .any-device .os-logos svg {
    margin-right: 10px;
  }
  .any-device .os-logos .apple-logo {
    height: 30px;
    width: auto;
    top: -2px;
  }
  .any-device .os-logos .win-logo {
    height: 20px;
    width: auto;
  }
  .any-device .sticks {
    right: 70%;
  }
}
@media all and (max-width: 650px) {
  .any-device {
    margin-bottom: 40px;
  }
  .any-device .copy {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .any-device .device,
  .any-device .sticks {
    display: none;
  }
  .any-device .os-logos p {
    display: block;
    margin-top: 20px;
  }
}
.co-signed .copy {
  max-width: 400px;
  margin: auto;
  text-align: center;
}
.co-signed .logos {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 80px auto;
}
.co-signed .drum-logos {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 80px auto;
}
.co-signed .m-logos {
  display: none;
  width: 100%;
  margin: 40px auto;
  max-width: 260px;
}
.co-signed p {
  text-align: center;
  font-size: 2em;
}
@media all and (max-width: 650px) {
  .co-signed .logos {
    display: none;
  }
  .co-signed .m-logos {
    display: block;
  }
}
.producers .quote {
  margin-top: -40px;
}
.producers .quote img {
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 180px;
  overflow: hidden;
  border: 10px solid #fefefe;
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 800ms;
  background: #fff;
}
.producers .quote h5 {
  display: inline-block;
  font-size: 1.8em;
  color: #8d8d92;
  position: relative;
  top: -40px;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 900ms;
}
.producers .quote h5 em {
  font-style: normal;
  color: #454546;
}
.producers .quote blockquote {
  font-size: 2.4em;
  color: #454546;
  padding: 0 40px 0 80px;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 1000ms;
}
.producers .quote blockquote .q {
  margin-left: -9px;
}
.producers h4,
.producers p,
.producers .global-download-trigger,
.producers .arrowLink {
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
}
.producers p {
  transition-delay: 200ms;
}
.producers .global-download-trigger {
  transition-delay: 300ms;
}
.producers .arrowLink {
  transition-delay: 400ms;
}
.producers.anim-out h4,
.producers.anim-out p,
.producers.anim-out .global-download-trigger,
.producers.anim-out .arrowLink {
  transform: translateX(200px);
  opacity: 0;
}
.producers.anim-out .quote img {
  transform: scale(0);
}
.producers.anim-out .quote h5,
.producers.anim-out .quote blockquote {
  transform: translateX(200px);
  opacity: 0;
}
@media all and (max-width: 900px) {
  .producers .media {
    float: none;
    width: 100%;
    margin: 0 0 40px;
  }
  .producers .quote img {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 160px;
    overflow: hidden;
  }
  .producers .quote h5 {
    margin: 0;
    padding: 0 0 0 180px;
    top: -80px;
  }
  .producers .quote blockquote {
    padding: 0 0 0 180px;
    margin-top: -60px;
  }
}
@media all and (max-width: 650px) {
  .producers .quote {
    margin: 0;
  }
  .producers .quote img {
    margin: 20px 0 20px -10px;
    border: none;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    overflow: hidden;
  }
  .producers .quote h5 {
    margin: 0;
    padding: 0 0 0 110px;
    top: -90px;
  }
  .producers .quote blockquote {
    padding: 0;
    margin-top: -30px;
  }
}
.drummers .media img {
  margin-top: -80px;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
}
.drummers h4,
.drummers p {
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
}
.drummers p {
  transition-delay: 200ms;
}
.drummers .tracks {
  overflow: hidden;
  clear: both;
}
.drummers .tracks table {
  width: calc(50% - 40px);
  float: left;
}
.drummers .tracks table:nth-of-type(2) {
  margin-left: 80px;
}
.drummers .tracks table td:nth-child(2) {
  text-align: right;
}
.drummers.anim-out h4,
.drummers.anim-out p {
  transform: translateX(-200px);
  opacity: 0;
}
.drummers.anim-out .media img {
  transform: translateY(200px);
  opacity: 0;
}
@media all and (max-width: 900px) {
  .drummers .media img {
    margin-top: 0;
  }
  .drummers .tracks table {
    width: 100%;
    float: none;
  }
  .drummers .tracks table:nth-of-type(2) {
    margin-left: 0;
  }
}
@media all and (max-width: 650px) {
  .drummers .tracks table .preview {
    white-space: nowrap;
  }
  .drummers .tracks table td,
  .drummers .tracks table th {
    padding-left: 0;
    padding-right: 0;
  }
}
.different {
  text-align: center;
  background: #191919;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  background: #2f2f2f url('/img/content/page-headers/header-download.jpg') no-repeat;
  background-size: cover;
}
.different #bg-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%) rotate(15deg);
  opacity: 0.2;
}
.different .contain {
  padding-top: 80px;
  padding-bottom: 80px;
}
.different .illustrations {
  margin-bottom: 80px;
}
.different .illustrations span {
  width: 140px;
  display: inline-block;
  margin: 0 20px;
}
.different .illustrations span img {
  display: block;
  width: 100%;
  height: auto;
}
.different .illustrations span:nth-child(0) {
  transition: all 0ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 0ms;
}
.different .illustrations span:nth-child(1) {
  transition: all 300ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 100ms;
}
.different .illustrations span:nth-child(2) {
  transition: all 600ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 200ms;
}
.different .illustrations span:nth-child(3) {
  transition: all 900ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 300ms;
}
.different .illustrations span:nth-child(4) {
  transition: all 1200ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 400ms;
}
.different .illustrations span:nth-child(5) {
  transition: all 1500ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 500ms;
}
.different .illustrations span:nth-child(6) {
  transition: all 1800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 600ms;
}
.different .new-illustrations {
  margin-bottom: 80px;
}
.different .new-illustrations img {
  display: inline-block;
  width: 200px;
  height: auto;
  margin: 0;
}
.different .new-illustrations .lottie-player {
  width: 400px;
  height: 400px;
  position: relative;
  top: 50px;
  margin: 0 60px 0 40px;
}
.different h3 {
  color: #ffcc00;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 400ms;
}
.different p {
  color: #fff;
  font-size: 2.4em;
  max-width: 900px;
  margin: 0 auto 20px;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 500ms;
}
.different .global-download-trigger {
  margin-top: 80px;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 600ms;
}
.different.anim-out .illustrations span {
  transform: scale(0) translateX(800px);
  opacity: 0;
}
.different.anim-out h3,
.different.anim-out p,
.different.anim-out .global-download-trigger {
  transform: translateY(100px);
  opacity: 0;
}
@media all and (max-width: 1050px) {
  .different .new-illustrations img {
    width: 160px;
  }
  .different .new-illustrations .lottie-player {
    display: none;
  }
}
@media all and (max-width: 900px) {
  .different .contain {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .different .illustrations {
    margin-bottom: 40px;
  }
  .different .global-download-trigger {
    margin-top: 40px;
  }
}
@media all and (max-width: 650px) {
  .different {
    margin-bottom: 40px;
  }
  .different .illustrations span {
    width: 25%;
  }
  .different .new-illustrations img {
    margin: 20px auto;
  }
}
.reviews {
  text-align: center;
  padding-bottom: 80px;
}
.reviews .vid-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  -ms-grid-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  margin: 40px 0 80px 0;
}
.reviews .vid-grid a {
  display: block;
  position: relative;
}
.reviews .vid-grid a img {
  width: 100%;
  height: auto;
}
.reviews .vid-grid a svg {
  width: 80px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.75;
  box-shadow: 0px 5px 0px -1px rgba(0, 0, 0, 0.025);
  transition: all 200ms cubic-bezier(0.8, 0, 0.145, 1);
}
.reviews .vid-grid a svg * {
  fill: #fff;
}
.reviews .vid-grid a:hover svg {
  opacity: 1;
}
@media all and (max-width: 1200px) {
  .reviews .vid-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
  }
}
@media all and (max-width: 900px) {
  .reviews .vid-grid {
    display: block;
  }
  .reviews .vid-grid a {
    display: none;
  }
  .reviews .vid-grid a:first-child {
    display: block;
  }
}
@media all and (max-width: 650px) {
  .reviews .arrowLink {
    display: none;
  }
}
.our-users {
  text-align: center;
  background: rgba(0, 0, 0, 0.05);
  max-width: 100%;
  padding: 0;
  margin-top: -80px;
  margin-bottom: 0;
  overflow: hidden;
}
.our-users .contain {
  padding-top: 80px;
  padding-bottom: 80px;
}
.our-users .floaty {
  position: absolute;
  top: auto;
  left: 0px;
  bottom: -80px;
  right: auto;
  display: block;
  width: 85px;
  height: 85px;
  border-radius: 85px;
  overflow: hidden;
  height: auto;
  border: 5px solid #fff;
}
@media all and (max-width: 650px) {
  .our-users h4 em {
    display: block;
    margin-top: 20px;
  }
}
/*
.genre-list						{
	.no-bullets; margin-bottom: @gap;
	li 							{ 
		.in-block;
		a 						{
			padding: 9px 10px 6px;
			//background: fade(@c-grey-l,50%); 
			background: #ebeaea;
			.round(@r); margin-bottom: @gap*.75; .block; margin-right: @gap*.75 - 4;
			&.active,
			&.active:hover		{
				background: @c-grey; color: #fff;
				svg polyline 	{ fill: @c-grey; }
			}
		}
		a:hover					{
			background: @c-blue-l; color: #fff;
			svg polyline 			{ fill: @c-blue-l; }
		}
		a.more					{ 
			background: @c-yellow; color: @c-txt;
			&:before 			{ content:'And more!'; }
			&:hover				{
				background: @c-grey-d; color: @c-yellow;
				&:before 		{ content:'See all Melodics Lessons'; }
				svg polyline	{ fill: @c-grey-d; }
			}
		}
	}

	&:hover						{
		animation-play-state: paused;
	}
}
*/
/*
	.reorderable is the containing <article>
	.do-it is an example class - apply this to the article (in optimizely for example) for the variation
	if ONE elem needs ordering, they ALL do for predictable results
*/
.reorderable.do-it {
  /*
		section:nth-of-type(1)				{ order: 4; background: red; }
		section:nth-of-type(2)				{ order: 3; background: blue; }
		section:nth-of-type(3)				{ order: 1; background: orange; }
		section:nth-of-type(4)				{ order: 2; background: purple; }
		*/
  /*
		.what-is							{ order: 3; }
		.want-to-play						{ order: 1; }
		.the-plan							{ order: 2; }
		*/
}
.which-instrument {
  text-align: center;
  background: #d7d6d6;
  max-width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.which-instrument h4 {
  margin-bottom: 80px;
}
.which-instrument .instr-select {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
}
/*
.why-love									{
	background: @c-red-l; background: rgba(0,0,0,0.05);
	max-width: 100%; margin-top: 0 - @gap*4; padding: @gap*4; text-align: center;
	.lottie-player							{ width: 400px; height: 400px; .rel; top: 50px; margin: 0 @gap*3 0 @gap*2; }
	ul 										{
		overflow: hidden; .no-bullets; margin: @gap*4 auto; max-width: 2080px;
		li 									{
			width: 25%; float: left;
			.img 							{ .dim(200,200); background: rgba(0,0,0,0.05); margin: 0 auto @gap; }
			p 								{ font-size: 1.2em; }
		}
	}
}
*/
.why-love-2 {
  max-width: 100%;
  text-align: center;
  padding: 0;
  position: relative;
}
.why-love-2 h4 {
  margin: 80px auto;
}
.why-love-2 ul {
  overflow: hidden;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.why-love-2 ul li {
  width: 25%;
  float: left;
  height: 40vh;
  position: relative;
}
.why-love-2 ul li p {
  font-size: 1.2em;
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 40px;
  right: auto;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #ffcc00;
  padding: 20px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  min-width: 300px;
}
.why-love-2 ul li:nth-of-type(1) {
  background: #2f2f2f;
}
.why-love-2 ul li:nth-of-type(2) {
  background: rgba(0, 0, 0, 0.1);
}
.why-love-2 ul li:nth-of-type(3) {
  background: #191919;
}
.why-love-2 ul li:nth-of-type(4) {
  background: #33a0e1;
}
.why-love-2 ul li:nth-of-type(1),
.why-love-2 ul li:nth-of-type(3) {
  overflow: hidden;
}
.why-love-2 ul li:nth-of-type(1) img,
.why-love-2 ul li:nth-of-type(3) img {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%) scale(2) rotate(5deg);
  height: 100%;
  width: auto;
  transition: all 400ms cubic-bezier(0.8, 0, 0.145, 1);
}
.why-love-2 ul li:nth-of-type(1) img:hover,
.why-love-2 ul li:nth-of-type(3) img:hover {
  transform: translateX(-50%) translateY(-50%) scale(1) rotate(0deg) !important;
}
.why-love-2 ul li:nth-of-type(2) {
  background: #000 url('/img/content/homepage/why-love/genre-bg.webp') no-repeat;
  background-size: cover;
}
.why-love-2 ul li:nth-of-type(2) .genre {
  position: absolute;
  top: 100%;
  left: 0;
  bottom: auto;
  right: auto;
  padding: 22px 20px 18px 20px;
  background: #454546;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 2em;
  white-space: nowrap;
  will-change: transform;
  pointer-events: none;
}
.why-love-2 ul li:nth-of-type(2) .genre:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #454546;
  position: absolute;
  top: 50%;
  left: 0px;
  bottom: auto;
  right: auto;
  margin: -10px 0 0 -4px;
  transform: rotate(45deg);
  z-index: -1;
}
.why-love-2 ul li:nth-of-type(2) .genre.green {
  background: #79c906;
}
.why-love-2 ul li:nth-of-type(2) .genre.green:before {
  background: #79c906;
}
.why-love-2 ul li:nth-of-type(2) .genre.blue {
  background: #33a0e1;
}
.why-love-2 ul li:nth-of-type(2) .genre.blue:before {
  background: #33a0e1;
}
.why-love-2 ul li:nth-of-type(2) .genre.purple {
  background: #8d3db8;
}
.why-love-2 ul li:nth-of-type(2) .genre.purple:before {
  background: #8d3db8;
}
.why-love-2 ul li:nth-of-type(2) .genre.orange {
  background: #f98229;
}
.why-love-2 ul li:nth-of-type(2) .genre.orange:before {
  background: #f98229;
}
.why-love-2 ul li:nth-of-type(2) .genre.yellow {
  background: #ffcc00;
  color: #191919;
}
.why-love-2 ul li:nth-of-type(2) .genre.yellow:before {
  background: #ffcc00;
}
.why-love-2 ul li:nth-of-type(2) .genre.red {
  background: #ff4b3e;
}
.why-love-2 ul li:nth-of-type(2) .genre.red:before {
  background: #ff4b3e;
}
.why-love-2 ul li:nth-of-type(4) {
  overflow: hidden;
}
.why-love-2 ul li:nth-of-type(4):before {
  content: '';
  display: block;
  width: 100%;
  height: 50%;
  background: #2884ba;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  right: auto;
}
.why-love-2 ul li:nth-of-type(4) img {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  transition: all 400ms cubic-bezier(0.8, 0, 0.145, 1);
  width: 300px;
}
.why-love-2 ul li:nth-of-type(4) img.out-r {
  transform: translateY(-50%) translateX(400px);
  opacity: 0;
}
.why-love-2 ul li:nth-of-type(4) img.out-l {
  transform: translateY(-50%) translateX(-800px);
  opacity: 0;
}
.why-love-2 ul li:nth-of-type(4) .starburst {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
}
@keyframes starAnim {
  000% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.why-love-2 ul li:nth-of-type(4) .starburst svg {
  animation-timing-function: linear;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
  width: 100%;
  height: 100%;
  opacity: 0.05;
}
.why-love-2 ul li:nth-of-type(4) .starburst svg:nth-of-type(1) {
  animation-iteration-count: infinite;
  animation-duration: 5000ms;
  animation-name: starAnim;
  animation-fill-mode: forwards;
  animation-delay: 0ms;
  width: 110%;
  height: 110%;
}
.why-love-2 ul li:nth-of-type(4) .starburst svg:nth-of-type(2) {
  animation-iteration-count: infinite;
  animation-duration: 7500ms;
  animation-name: starAnim;
  animation-fill-mode: forwards;
  animation-delay: 0ms;
}
.why-love-2 ul li:nth-of-type(4) .starburst svg * {
  fill: #fff !important;
}
.why-love-2 .btn-new {
  position: absolute;
  top: 100%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(50%);
}
@media all and (max-width: 1500px) {
  .why-love-2 ul li p {
    font-size: 1em;
    bottom: 20px;
    min-width: 0;
    width: 100%;
    bottom: 0;
    margin: 0;
    border-radius: 0px;
  }
  .why-love-2 ul li:nth-of-type(2) {
    overflow: hidden;
  }
  .why-love-2 ul li:nth-of-type(2) .genre {
    font-size: 1em;
    padding: 11px 10px 9px 10px;
  }
  .why-love-2 ul li:nth-of-type(4) img {
    width: 240px;
  }
}
@media all and (max-width: 1200px) {
  .why-love-2 ul li {
    width: 50%;
  }
  .why-love-2 ul li:nth-of-type(2) {
    overflow: hidden;
  }
}
@media all and (max-width: 1050px) {
  .why-love-2 h4 {
    margin: 0 auto 40px auto;
  }
}
@media all and (max-width: 650px) {
  .why-love-2 {
    margin-bottom: 80px;
  }
  .why-love-2 h4 {
    padding: 0 20px;
  }
  .why-love-2 ul li {
    width: 100%;
    float: none;
  }
  .why-love-2 ul li:nth-of-type(4) img {
    width: 160px;
    margin-top: -20px;
  }
  .why-love-2 .btn-new {
    width: 80%;
  }
}
.no-webp .why-love-2 ul li:nth-of-type(2) {
  background: #000 url('/img/content/homepage/why-love/genre-bg.jpg') no-repeat;
  background-size: cover;
}
.join-us {
  text-align: center;
  margin-top: 80px;
}
.join-us .testimonial-holder {
  padding-bottom: 80px;
  position: relative;
  height: 620px;
}
.join-us .testimonial-holder .testimonial {
  text-align: left;
  transition: all 400ms cubic-bezier(0.8, 0, 0.145, 1);
  position: absolute;
  top: 0;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%);
}
.join-us .testimonial-holder .testimonial .testimonial-img {
  display: block;
  width: 300px;
  height: auto;
  margin: 0 auto 20px;
  border: 10px solid rgba(0, 0, 0, 0.05);
  border-radius: 400px;
}
.join-us .testimonial-holder .testimonial blockquote {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background: #f3f2f2;
  margin: 0 auto;
  font-size: 2em;
  border-radius: 1px;
}
.join-us .testimonial-holder .testimonial blockquote:before {
  content: '\201C';
  margin: 0 0 0 -13px;
}
.join-us .testimonial-holder .testimonial blockquote .src {
  display: block;
  font-size: 0.8em;
  margin-top: 20px;
}
.join-us .testimonial-holder .testimonial.out-r {
  opacity: 0;
  transform: translateX(0%);
}
.join-us .testimonial-holder .testimonial.out-l {
  opacity: 0;
  transform: translateX(-100%);
}
.join-us .testimonial-holder .inds {
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 40px;
  right: auto;
  transform: translateX(-50%);
}
.join-us .testimonial-holder .inds span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #d7d6d6;
  display: inline-block;
  margin-left: 10px;
  transition: all 1000ms cubic-bezier(0.8, 0, 0.145, 1);
}
.join-us .testimonial-holder .inds span.active {
  background: #33a0e1;
}
.join-us .testimonial-holder .nxt,
.join-us .testimonial-holder .prv {
  position: absolute;
  bottom: 200px;
  width: 40px;
  outline: none;
}
.join-us .testimonial-holder .nxt.nxt,
.join-us .testimonial-holder .prv.nxt {
  right: 300px;
}
.join-us .testimonial-holder .nxt.prv,
.join-us .testimonial-holder .prv.prv {
  left: 300px;
  transform: rotate(180deg);
}
.join-us .testimonial-holder .nxt svg,
.join-us .testimonial-holder .prv svg {
  width: 100%;
  height: auto;
}
.join-us .testimonial-holder .nxt svg *,
.join-us .testimonial-holder .prv svg * {
  fill: #8d8d92;
}
.join-us .testimonial-holder .nxt:hover svg *,
.join-us .testimonial-holder .prv:hover svg * {
  fill: #33a0e1;
}
.join-us h5 {
  margin-bottom: 80px;
}
@media all and (max-width: 1500px) {
  .join-us .testimonial-holder .nxt.nxt,
  .join-us .testimonial-holder .prv.nxt {
    right: 200px;
  }
  .join-us .testimonial-holder .nxt.prv,
  .join-us .testimonial-holder .prv.prv {
    left: 200px;
  }
}
@media all and (max-width: 1200px) {
  .join-us .testimonial-holder .nxt.nxt,
  .join-us .testimonial-holder .prv.nxt {
    right: 100px;
  }
  .join-us .testimonial-holder .nxt.prv,
  .join-us .testimonial-holder .prv.prv {
    left: 100px;
  }
}
@media all and (max-width: 900px) {
  .join-us .testimonial-holder .testimonial blockquote {
    max-width: auto;
    min-width: 400px;
  }
  .join-us .testimonial-holder .nxt.nxt,
  .join-us .testimonial-holder .prv.nxt {
    right: 0px;
  }
  .join-us .testimonial-holder .nxt.prv,
  .join-us .testimonial-holder .prv.prv {
    left: 0px;
  }
}
@media all and (max-width: 650px) {
  .join-us .testimonial-holder {
    height: 540px;
  }
  .join-us .testimonial-holder .testimonial .testimonial-img {
    width: 200px;
  }
  .join-us .testimonial-holder .testimonial blockquote {
    width: 300px;
    min-width: 0;
  }
  .join-us .testimonial-holder .nxt,
  .join-us .testimonial-holder .prv {
    bottom: 30px;
  }
}
.who-are-you {
  max-width: 100%;
  padding: 0;
}
.who-are-you h4 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 4em;
}
.who-are-you h6 {
  text-align: center;
  margin-bottom: 80px;
  color: #8d8d92;
}
.who-are-you .type {
  height: 90vh;
  position: relative;
  text-shadow: 0px 0px 100px #000;
}
.who-are-you .type .copy {
  width: 650px;
  width: 40%;
  max-width: 650px;
  margin: 0 0 0 5%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 400ms;
}
.who-are-you .type blockquote {
  font-size: 3em;
  position: relative;
  color: #454546;
  color: #fff;
}
.who-are-you .type blockquote:before {
  content: '\201C';
  position: absolute;
  top: 0;
  left: -16px;
  bottom: auto;
  right: auto;
}
.who-are-you .type blockquote:after {
  content: '\201D';
}
.who-are-you .type p,
.who-are-you .type ul {
  font-size: 2em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.who-are-you .type ul {
  margin-bottom: 0;
  margin-left: -20px;
}
.who-are-you .type ul + p {
  margin-top: 40px;
}
.who-are-you .type .pointer-up,
.who-are-you .type .pointer-down {
  height: 12px;
}
.who-are-you .type .feature {
  position: absolute;
  top: 50%;
  left: auto;
  bottom: auto;
  right: 5%;
  transform: translateY(-50%) translateX(0%);
  width: 40%;
}
.who-are-you .type .feature.feature-l {
  left: 5%;
  right: auto;
}
.who-are-you .type .feature .media {
  margin-top: 72px;
  border-radius: 4px;
  overflow: hidden;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 800ms;
}
.who-are-you .type .feature .media .caption {
  background: #33a0e1;
}
.who-are-you .type .feature .media .caption.green {
  background: #79c906;
}
.who-are-you .type .feature .media .caption .pointer-up {
  left: 30px;
}
.who-are-you .type .feature .rodi-quote {
  position: relative;
  max-width: 800px;
  transition: all 800ms cubic-bezier(0.8, 0, 0.145, 1);
  transition-delay: 800ms;
}
.who-are-you .type .feature .rodi-quote img {
  display: block;
  border-radius: 400px;
  border: 10px solid rgba(0, 0, 0, 0.2);
  width: 200px;
  position: absolute;
  top: 100%;
  left: auto;
  bottom: auto;
  right: 0;
  z-index: 2;
  transform: translateY(-50%);
}
.who-are-you .type .feature .rodi-quote blockquote {
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  border-radius: 1px;
  margin: 0;
  font-size: 2em;
}
.who-are-you .type .feature .rodi-quote blockquote:before,
.who-are-you .type .feature .rodi-quote blockquote:after {
  display: none;
}
.who-are-you .type .feature .rodi-quote blockquote .src {
  display: block;
  font-size: 0.6em;
  color: #8d3db8;
  margin-top: 20px;
}
.who-are-you .type.type-r .copy {
  float: right;
  margin: 0 10% 0 0;
}
.who-are-you .type.anim-out .copy {
  transform: translateY(50%);
  opacity: 0;
}
.who-are-you .type.anim-out .media {
  transform: translateY(50%);
  opacity: 0;
}
.who-are-you .type.anim-out .rodi-quote {
  transform: translateY(50%);
  opacity: 0;
}
.who-are-you .type:before {
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
  pointer-events: none;
  display: none;
}
.who-are-you .type:nth-of-type(1) {
  background: #33a0e1;
  background: #050e14 url('/img/content/homepage/types/type-bg-band.webp') no-repeat;
  background-size: auto 100%;
  background-position: 100% 0;
}
.who-are-you .type:nth-of-type(2) {
  background: #79c906;
  background: #080d03 url('/img/content/homepage/types/type-bg-live.webp') no-repeat;
  background-size: auto 100%;
  background-position: 0 0;
}
.who-are-you .type:nth-of-type(3) {
  background: #ff4b3e;
  background: #000000 url('/img/content/homepage/types/type-bg-proud.webp') no-repeat;
  background-size: auto 100%;
  background-position: 0 0;
}
@media all and (min-width: 1500px) {
  .who-are-you .type .copy {
    margin-left: 10%;
  }
  .who-are-you .type .feature {
    right: 10%;
  }
  .who-are-you .type .feature.feature-l {
    left: 10%;
    right: auto;
  }
}
@media all and (max-width: 1400px) {
  .who-are-you .type blockquote {
    font-size: 2.5em;
  }
  .who-are-you .type p,
  .who-are-you .type ul {
    font-size: 1.8em;
  }
}
@media all and (max-width: 900px) {
  .who-are-you .type {
    height: auto;
    padding: 80px;
  }
  .who-are-you .type .copy {
    position: static;
    position: relative;
    max-width: 100%;
    width: 100%;
    transform: none;
    margin: 0;
  }
  .who-are-you .type.type-r .copy {
    position: static;
    position: relative;
    max-width: 100%;
    width: 100%;
    transform: none;
    margin: 0;
    float: none;
  }
  .who-are-you .type .feature {
    position: static;
    width: 100%;
    transform: none;
    left: auto;
    right: auto;
  }
  .who-are-you .type .feature.feature-l {
    position: static;
    width: 100%;
    transform: none;
  }
}
@media all and (max-width: 650px) {
  .who-are-you .type {
    padding: 80px 40px 40px 40px;
  }
  .who-are-you .type .feature .rodi-quote img {
    position: static;
    transform: none;
    margin: 0 auto 40px;
  }
  .who-are-you .type .feature .media {
    margin-bottom: 0;
  }
  .who-are-you .type:before {
    display: block;
  }
}
@media all and (max-width: 650px) {
  .who-are-you {
    margin-bottom: 80px;
  }
  .who-are-you h4,
  .who-are-you h6 {
    padding: 0 20px;
  }
}
.no-webp .who-are-you .type:nth-of-type(1) {
  background: #33a0e1;
  background: #050e14 url('/img/content/homepage/types/type-bg-band.jpg') no-repeat;
  background-size: auto 100%;
  background-position: 100% 0;
}
.no-webp .who-are-you .type:nth-of-type(2) {
  background: #79c906;
  background: #080d03 url('/img/content/homepage/types/type-bg-live.jpg') no-repeat;
  background-size: auto 100%;
  background-position: 0 0;
}
.no-webp .who-are-you .type:nth-of-type(3) {
  background: #ff4b3e;
  background: #000000 url('/img/content/homepage/types/type-bg-proud.jpg') no-repeat;
  background-size: auto 100%;
  background-position: 0 0;
}
.melodics-ipad {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  transform: translateY(10%) translateX(25%);
  z-index: 3;
  background: #0c0c0c;
  border-radius: 22px;
  padding: 14px 46px;
}
.melodics-ipad:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #3c3d3d;
  position: absolute;
  top: 50%;
  left: auto;
  bottom: auto;
  right: 23px;
  transform: translateY(-50%) translateX(50%);
}
.melodics-ipad .home {
  background: #292829;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 24px;
  bottom: auto;
  right: auto;
  transform: translateY(-50%) translateX(-50%);
}
.melodics-ipad .home:before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.melodics-ipad img {
  display: block;
  height: 576px;
  width: auto;
  height: 300px;
}
.melodics-ipad .msg {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 20px;
  right: 100%;
  white-space: nowrap;
  color: #8d8d92;
  font-size: 1.6em;
  padding-right: 20px;
}
@media all and (max-width: 1050px) {
  .melodics-ipad {
    border-radius: 16px;
    transform: translateY(-10%) translateX(25%);
  }
  .melodics-ipad img {
    height: 200px;
  }
}
@media all and (max-width: 900px) {
  .melodics-ipad {
    display: none;
  }
}
/*# sourceMappingURL=homepage.css.map */