@media screen and (min-width: 992px) {
    div#video-how-to-use,
    div#video-introduction {
      scroll-margin-top: 140px; /* whatever is a nice number that gets you past the header */
    }
}
@media screen and (max-width: 991px) {
    div#video-how-to-use,
    div#video-introduction {
      scroll-margin-top: 20px; /* whatever is a nice number that gets you past the header */
    }
}

iframe {
  max-width: 100vw!important;
}

.w-checkbox {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}

.w-checkbox::before {
  content: ' ';
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

.w-checkbox::after {
  content: ' ';
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  clear: both;
}

.w-checkbox-input {
  float: left;
  margin-bottom: 0px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: 4px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}

.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

body {
  font-family: 'Sf pro display', sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
}

.body-bg {
    background: rgb(4,6,8);
    background: -moz-linear-gradient(30deg, rgba(4,6,8,1) 31%, rgba(61,58,53,1) 100%);
    background: -webkit-linear-gradient(30deg, rgba(4,6,8,1) 31%, rgba(61,58,53,1) 100%);
    background: linear-gradient(30deg, rgba(4,6,8,1) 31%, rgba(61,58,53,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#040608",endColorstr="#3d3a35",GradientType=1);
    position: fixed;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: -1; // this is optional
}

.body {
  /* background-color: #171717; */
  /* background-image: radial-gradient(circle farthest-corner at 110% -70%, #fc9925, transparent 49%), radial-gradient(circle closest-corner at 40% 0%, rgba(252, 153, 37, 0.11) 15%, #171717 87%); */
}

.hero-section {
  /* background-image: radial-gradient(circle farthest-corner at 110% -70%, #fc9925, transparent 49%), radial-gradient(circle farthest-side at -10% -170%, #fc9925 15%, #171717 87%); */
}

.hero-section.padding-top {
  padding-top: 180px;
  background-image: none;
}

.content-wrapper {
  max-width: 1200px;
  padding: 40px;
}

.content-wrapper.footer {
  padding-top: 32px;
  padding-bottom: 32px;
}

.content-wrapper.quote-desktop {
  display: block;
  overflow: hidden;
  margin-top: 50px;
}

.content-wrapper.quote-mobile {
  display: none;
  margin-top: 50px;
}

.content-wrapper.cta-buttons {
  padding-top: 0px;
}

.button {
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #767676;
  font-size: 16px;
  font-weight: 700;
}

.button:hover {
  -webkit-transform: translate(0px, -5px);
  -ms-transform: translate(0px, -5px);
  transform: translate(0px, -5px);
}

.button.outline-yellow {
  border: 1px solid #ffe12e;
  background-color: transparent;
  color: #ffe12e;
}

.button.outline-yellow.show-mobile {
  display: none;
}

.button.gray {
  background-color: #272729;
  color: #767676;
}

.button.gray.padding-right-32 {
  margin-right: 32px;
}

.button.gray.padding-right-32.buy {
  width: 100%;
  height: 50px;
  background-color: #676767;
  color: #e2e2e2;
}

.button.yellow {
  background-color: #ffe12e;
  color: #1e1f26;
}

.button.yellow.buy {
  width: 100%;
  height: 50px;
}

.button.yellow.windows {
  width: 100%;
  height: 50px;
  margin-bottom: 8px;
}

.button.yellow.mac {
  width: 100%;
  height: 50px;
  margin-bottom: 8px;
}

.button.yellow {
  background-color: #ffe12e;
  color: #1e1f26;
}

.navbar {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: block;
  margin-bottom: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  border-bottom: 1px solid #676767;
  background-color: transparent;
}

.container {
  position: relative;
  max-width: 1200px;
  padding-right: 40px;
  padding-left: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-menu {
  z-index: 10;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.brand {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  width: 280px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.brand.w--current {
  margin-top: 0px;
}

.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.price {
  position: absolute;
  left: 0%;
  top: 60px;
  right: 0%;
  bottom: 0%;
  color: #ffe12e;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.button-div {
  position: relative;
  margin-left: 32px;
}

.sticky-footer-mobile {
    display: none;
}

.grid {
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  -ms-grid-columns: 289px 1fr;
  grid-template-columns: 289px 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.heading-1 {
  color: #f8cc24;
  font-size: 45px;
  line-height: 54px;
  text-align: right;
}

.heading-1.padding-32-bottom {
  margin-top: 0px;
  margin-bottom: 32px;
  color: #ffe12e;
}

.hero-subtitle {
  color: #676767;
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}

.quote-avatar-circle {
  position: absolute;
  left: -35px;
  z-index: 3;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background-color: #535353;
  background-image: linear-gradient(45deg, #535353, #171717);
}

.quote-avatar-circle._1 {
  top: 0px;
  background-image: -webkit-gradient(linear, left top, right top, from(#535353), to(#171717));
  background-image: linear-gradient(90deg, #535353, #171717);
}

.quote-avatar-circle._2 {
  left: -70px;
  top: 0px;
  z-index: 2;
  border-radius: 999px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.4)), to(rgba(49, 49, 49, 0.4))), url('../images/Hardwell_1.jpg'), -webkit-gradient(linear, left top, right top, from(#303030), to(#171717));
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.4), rgba(49, 49, 49, 0.4)), url('../images/Hardwell_1.jpg'), linear-gradient(90deg, #303030, #171717);
  background-position: 0px 0px, 0px 0px, 0px 0px;
  background-size: auto, cover, auto;
}

.quote-avatar-circle._3 {
  left: -105px;
  top: 0px;
  z-index: 1;
  border-radius: 999px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.6)), to(rgba(49, 49, 49, 0.6))), url('../images/Albin-Nedler.jpeg'), -webkit-gradient(linear, left top, right top, from(#202020), to(#171717));
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.6), rgba(49, 49, 49, 0.6)), url('../images/Albin-Nedler.jpeg'), linear-gradient(90deg, #202020, #171717);
  background-position: 0px 0px, 0px 0px, 0px 0px;
  background-size: auto, cover, auto;
}

.quote-avatar-circle.slide-2 {
  top: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.2)), to(rgba(49, 49, 49, 0.2))), url('../images/Armin-van-Buuren.jpg');
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.2), rgba(49, 49, 49, 0.2)), url('../images/Armin-van-Buuren.jpg');
  background-position: 0px 0px, 20% 7%;
  background-size: auto, cover;
}

.quote-avatar-circle.slide-1 {
  top: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.2)), to(rgba(49, 49, 49, 0.2))), url('../images/Guetta2.jpeg'), -webkit-gradient(linear, left top, right top, from(#535353), to(#171717));
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.2), rgba(49, 49, 49, 0.2)), url('../images/Guetta2.jpeg'), linear-gradient(90deg, #535353, #171717);
  background-position: 0px 0px, 50% 59%, 0px 0px;
  background-size: auto, auto 450px, auto;
}

.quote-avatar-circle.hardwell-2 {
  top: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.2)), to(rgba(49, 49, 49, 0.2))), url('../images/Hardwell_1.jpg'), -webkit-gradient(linear, left top, right top, from(#535353), to(#171717));
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.2), rgba(49, 49, 49, 0.2)), url('../images/Hardwell_1.jpg'), linear-gradient(90deg, #535353, #171717);
  background-position: 0px 0px, 50% 59%, 0px 0px;
  background-size: auto, cover, auto;
}

.quote-avatar-circle.albin-3 {
  left: -70px;
  top: 0px;
  z-index: 2;
  border-radius: 999px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.4)), to(rgba(49, 49, 49, 0.4))), url('../images/Albin-Nedler.jpeg'), -webkit-gradient(linear, left top, right top, from(#303030), to(#171717));
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.4), rgba(49, 49, 49, 0.4)), url('../images/Albin-Nedler.jpeg'), linear-gradient(90deg, #303030, #171717);
  background-position: 0px 0px, 0px 0px, 0px 0px;
  background-size: auto, cover, auto;
}

.quote-avatar-circle.david-2 {
  left: -105px;
  top: 0px;
  z-index: 1;
  border-radius: 999px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.6)), to(rgba(49, 49, 49, 0.6))), url('../images/Guetta2.jpeg'), -webkit-gradient(linear, left top, right top, from(#202020), to(#171717));
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.6), rgba(49, 49, 49, 0.6)), url('../images/Guetta2.jpeg'), linear-gradient(90deg, #202020, #171717);
  background-position: 0px 0px, 50% 50%, 0px 0px;
  background-size: auto, auto 450px, auto;
}

.quote-avatar-circle.albin-no3 {
  top: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.2)), to(rgba(49, 49, 49, 0.2))), url('../images/Albin-Nedler.jpeg'), -webkit-gradient(linear, left top, right top, from(#535353), to(#171717));
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.2), rgba(49, 49, 49, 0.2)), url('../images/Albin-Nedler.jpeg'), linear-gradient(90deg, #535353, #171717);
  background-position: 0px 0px, 50% 59%, 0px 0px;
  background-size: auto, cover, auto;
}

.quote-avatar-circle.david-3 {
  left: -70px;
  top: 0px;
  z-index: 2;
  border-radius: 999px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.4)), to(rgba(49, 49, 49, 0.4))), url('../images/Guetta2.jpeg'), -webkit-gradient(linear, left top, right top, from(#303030), to(#171717));
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.4), rgba(49, 49, 49, 0.4)), url('../images/Guetta2.jpeg'), linear-gradient(90deg, #303030, #171717);
  background-position: 0px 0px, 50% 50%, 0px 0px;
  background-size: auto, auto 450px, auto;
}

.quote-avatar-circle.armin-3 {
  left: -105px;
  top: 0px;
  z-index: 1;
  border-radius: 999px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.6)), to(rgba(49, 49, 49, 0.6))), url('../images/Armin-van-Buuren.jpg'), -webkit-gradient(linear, left top, right top, from(#202020), to(#171717));
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.6), rgba(49, 49, 49, 0.6)), url('../images/Armin-van-Buuren.jpg'), linear-gradient(90deg, #202020, #171717);
  background-position: 0px 0px, 0px 0px, 0px 0px;
  background-size: auto, cover, auto;
}

.quote-avatar-circle.armin-4 {
  left: -70px;
  top: 0px;
  z-index: 2;
  border-radius: 999px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.4)), to(rgba(49, 49, 49, 0.4))), url('../images/Armin-van-Buuren.jpg'), -webkit-gradient(linear, left top, right top, from(#303030), to(#171717));
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.4), rgba(49, 49, 49, 0.4)), url('../images/Armin-van-Buuren.jpg'), linear-gradient(90deg, #303030, #171717);
  background-position: 0px 0px, 0px 0px, 0px 0px;
  background-size: auto, cover, auto;
}

.quote-avatar-circle.hardwell-4 {
  left: -105px;
  top: 0px;
  z-index: 1;
  border-radius: 999px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 49, 49, 0.6)), to(rgba(49, 49, 49, 0.6))), url('../images/Hardwell_1.jpg'), -webkit-gradient(linear, left top, right top, from(#202020), to(#171717));
  background-image: linear-gradient(180deg, rgba(49, 49, 49, 0.6), rgba(49, 49, 49, 0.6)), url('../images/Hardwell_1.jpg'), linear-gradient(90deg, #202020, #171717);
  background-position: 0px 0px, 0px 0px, 0px 0px;
  background-size: auto, cover, auto;
}

.quote-slider-wrapper {
  position: relative;
}

.quote-wrapper {
  display: -ms-grid;
  display: grid;
  margin-bottom: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.quote-wrapper.desktop {
  margin-left: 110px;
}

.quote {
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
  color: #fff;
  font-size: 24px;
  line-height: 29px;
  font-weight: 400;
}

.quote-name {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
}

.image {
  position: absolute;
  left: 15px;
  top: -30px;
  right: 2%;
  bottom: -34%;
}

.quote-div {
  position: relative;
}

.heading-2 {
  color: #fff;
  font-size: 24px;
  line-height: 34px;
}

.heading-2.small-title {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 32px;
  font-size: 19px;
  line-height: 23px;
}

.content-wrapper.centered {
  text-align: center;
}

.paragraph-large {
  color: #989898;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
}

.paragraph-large.padding-32-bottom {
  margin-bottom: 32px;
}

.paragraph-large._16-padding-40-bottom {
  margin-bottom: 40px;
  font-size: 16px;
}

.content-grid {
  grid-column-gap: 60px;
  grid-row-gap: 80px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.content-grid.padding-bottom-80 {
  margin-bottom: 80px;
}

.content-grid.padding-bottom-80.features {
  grid-column-gap: 60px;
  grid-row-gap: 44px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.block-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.block-heading.video {
  margin-top: -10px;
  margin-bottom: 33px;
}

.block-heading.video.mobile {
  display: none;
}

.play-icon {
  margin-right: -15px;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 14px;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.content-div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 400px;
  margin-top: 32px;
  padding: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 14px;
  background-color: hsla(0, 0%, 100%, 0.03);
}

.paragraph {
  margin-bottom: 0px;
  color: #989898;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.paragraph.small {
  font-size: 14px;
  line-height: 18px;
}

.paragraph.small.max-with-280 {
  max-width: 280px;
}

.paragraph.small.max-with-280.align-left {
  text-align: left;
}

.introduction-img {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.used-by {
  max-width: 920px;
  margin: 110px auto;
  color: #ffe12e;
  font-size: 52px;
  line-height: 54px;
  text-align: center;
}

.artist-picture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 260px;
  padding: 24px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-radius: 14px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 9%, 0.8)), to(transparent));
  background-image: linear-gradient(0deg, hsla(0, 0%, 9%, 0.8), transparent);
}

.artist-picture._1 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 9%, 0.8)), to(transparent)), url('../images/Timbaland.png');
  background-image: linear-gradient(0deg, hsla(0, 0%, 9%, 0.8), transparent), url('../images/Timbaland.png');
  background-position: 0px 0px, 50% 0%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.artist-picture._2 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 9%, 0.8)), to(transparent)), url('../images/Hardwell_1.jpg');
  background-image: linear-gradient(0deg, hsla(0, 0%, 9%, 0.8), transparent), url('../images/Hardwell_1.jpg');
  background-position: 0px 0px, 50% 31%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.artist-picture._3 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 9%, 0.8)), to(transparent)), url('../images/Guetta2.jpeg');
  background-image: linear-gradient(0deg, hsla(0, 0%, 9%, 0.8), transparent), url('../images/Guetta2.jpeg');
  background-position: 0px 0px, 50% 60%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.artist-picture._4 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 9%, 0.8)), to(transparent)), url('../images/Alesso2.png');
  background-image: linear-gradient(0deg, hsla(0, 0%, 9%, 0.8), transparent), url('../images/Alesso2.png');
  background-position: 0px 0px, 50% 43%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.artist-picture._5 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 9%, 0.8)), to(transparent)), url('../images/Chainsmokers.jpeg');
  background-image: linear-gradient(0deg, hsla(0, 0%, 9%, 0.8), transparent), url('../images/Chainsmokers.jpeg');
  background-position: 0px 0px, 50% 10%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.artist-picture._6 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 9%, 0.8)), to(transparent)), url('../images/Ben-Böhmer.jpeg');
  background-image: linear-gradient(0deg, hsla(0, 0%, 9%, 0.8), transparent), url('../images/Ben-Böhmer.jpeg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.artist-picture._7 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 9%, 0.8)), to(transparent)), url('../images/Showtek.webp');
  background-image: linear-gradient(0deg, hsla(0, 0%, 9%, 0.8), transparent), url('../images/Showtek.webp');
  background-position: 0px 0px, 50% 10%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.artist-picture._8 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 9%, 0.8)), to(transparent)), url('../images/Armin-van-Buuren.jpg');
  background-image: linear-gradient(0deg, hsla(0, 0%, 9%, 0.8), transparent), url('../images/Armin-van-Buuren.jpg');
  background-position: 0px 0px, 50% 10%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}
.artist-picture._9 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 9%, 0.8)), to(transparent)), url('../images/zedd.jpg');
  background-image: linear-gradient(0deg, hsla(0, 0%, 9%, 0.8), transparent), url('../images/zedd.jpg');
  background-position: 0px 0px, 50% 10%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}
.artist-picture._10 {
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 9%, 0.8)), to(transparent)), url('../images/cashmoneyap.jpg');
  background-image: linear-gradient(0deg, hsla(0, 0%, 9%, 0.8), transparent), url('../images/cashmoneyap.jpg');
  background-position: 0px 0px, 50% 10%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.link {
  color: #ffe12e;
  text-decoration: none;
}

.link.grey {
  color: #989898;
  text-decoration: underline;
}

.footer {
  margin-top: 100px;
  background-color: #1f1f1f;
  text-align: center;
}

.copyright {
  margin-bottom: 0px;
  color: #989898;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
}

.copyright.spacing {
  margin-right: 8px;
  margin-left: 8px;
}

.copyright.link {
  color: #ddd;
}

.hero-mini-title-mobile {
  display: none;
  color: #fff;
  font-size: 16px;
  text-align: right;
}

.show-mobile {
  display: none;
}

.question {
  color: #d4d4d4;
  font-weight: 700;
}

.deepdive-lightbox {
  position: relative;
}

.kickstart-2---deep-dive {
  position: absolute;
  z-index: 1;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  bottom: 0;
  max-width: 200px;
}

.lightbox-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 14px;
}

.faq-scroll {
  overflow: auto;
  height: 340px;
  margin-right: -20px;
  margin-bottom: 0px;
  padding-right: 20px;
  color: #989898;
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
}

.video-play-icon {
  z-index: 1;
}

.video-item {
    display: block;
    border-radius: 14px;

}
.video-item:hover {
    /* display: block; */

    overflow: hidden;
}
.video-item .deepdive-lightbox {
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 60% 50%;
    object-position: 60% 50%;
}

.video-item:hover .deepdive-lightbox {
    border-radius: inherit;
    -moz-transform: scale(1.06);
    -webkit-transform: scale(1.06);
    -o-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.popup-content-wrapper---brix {
  position: relative;
  z-index: 100;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 3px 14px 0 rgba(74, 58, 255, 0.16), 0 -2px 4px 0 rgba(20, 20, 43, 0.12), 0 12px 44px 0 rgba(20, 20, 43, 0.34);
}

.popup-content-wrapper---brix.popup-1-content-wrapper---brix-copy {
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 14px;
  box-shadow: 0 3px 14px 0 rgba(0, 0, 0, 0.16), 0 -2px 4px 0 rgba(0, 0, 0, 0.12), 0 12px 44px 0 rgba(0, 0, 0, 0.34);
}

.popup-1---modal {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 64px 64px 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 14px;
  background-color: #1e1e1e;
  background-image: radial-gradient(circle farthest-corner at -20% -120%, #fc9925, #1e1e1e 68%);
  color: #fff;
  text-align: center;
}

.overlay---brix {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.61);
}

.close-popup---brix {
  position: absolute;
  left: auto;
  top: 24px;
  right: 24px;
  bottom: auto;
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
  cursor: pointer;
}

.close-popup---brix:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.popup-wrapper---trial {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.popup-wrapper---buy {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.heading-3 {
  margin-bottom: 16px;
}

.grid-2 {
  width: 100%;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.image-10 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.trial-button-grid {
  width: 100%;
  margin-bottom: 40px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.lightbox-link-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-9 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-10 {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto auto auto;
  grid-template-rows: auto auto auto auto;
}

.text-block {
  color: #ddd;
  font-size: 19px;
  line-height: 26px;
  letter-spacing: 3px;
  font-weight: 400;
}

.nicky-romero-img-wrapper {
  position: relative;
  overflow: hidden;
}

.mask-2 {
  overflow: visible;
}

.slider-2 {
  background-color: transparent;
}

.slide-nav-2 {
  top: 200px;
  display: block;
}

.right-arrow-2 {
  display: none;
}

.left-arrow-2 {
  display: none;
}

.david-guetta {
  position: relative;
  z-index: 4;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background-image: url('../images/Guetta2.jpeg');
  background-position: 50% 59%;
  background-size: auto 450px;
}

.albin {
  position: relative;
  z-index: 4;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background-image: url('../images/Albin-Nedler.jpeg');
  background-position: 20% 7%;
  background-size: auto 270px;
}

.heading-features {
  color: #ffe12e;
  font-size: 38px;
  line-height: 54px;
  text-align: center;
}

.new {
  color: #ffe12e;
  font-weight: 400;
}

.add-ons_accordion-body-contents {
  opacity: 1;
  color: #989898;
  font-size: 16px;
  line-height: 26px;
}

.add-ons_accordion-body {
  display: block;
  padding-left: 3.2rem;
}

.add-ons_accordion-body.add-ons_js-accordion-body {
  padding-bottom: 1rem;
  padding-left: 0rem;
}

.add-ons_accordion-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.add-ons_accordion-header.add-ons_js-accordion-header {
  padding-top: 1rem;
  padding-bottom: 1rem;
  cursor: pointer;
}

.add-ons_component {
  padding: 32px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 14px;
  background-color: hsla(0, 0%, 100%, 0.03);
}

.add-ons_image-wrapper {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
}

.add-ons_accordion-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 45%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #cdd0d7;
  box-shadow: none;
  text-align: left;
  text-decoration: none;
}

.add-ons_accordion-item.add-ons_js-accordion-item {
  border-bottom-color: #676767;
  box-shadow: none;
}

.add-ons_accordion-item.add-ons_js-accordion-item.active {
  cursor: default;
}

.add-ons_accordion-item.add-ons_js-accordion-item.active:hover {
  box-shadow: none;
}

.add-ons_accordion-item > .add-ons_accordion-header:after {
  margin-right: 5px;
  transition: .3s all;
  background-image: url('../images/chevron.png');
  background-size: 15px 10px;
  background-repeat: no-repeat;
  display: inline-block;
  width: 15px;
  height: 15px;
  content:"";
  transform: rotate(0deg);
  opacity: 1;
}

.add-ons_accordion-item.active > .add-ons_accordion-header:after {
  transform: rotate(-180deg);
}

.add-ons_accordion-body.add-ons_js-accordion-body {
	display: none;
}

.add-ons_accordion-title {
  margin-top: 10px;
  margin-bottom: 0px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #fff;
  font-size: 19px;
  line-height: 23px;
}

.add-ons_accordion {
  display: block;
}

.add-ons_accordion.add-ons_js-accordion {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 2rem;
}

.add-ons_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0% 50%;
  object-position: 0% 50%;
}

.fs-cc-banner_close {
  margin-left: 0.75rem;
  padding: 0.625rem;
  border-radius: 999rem;
  background-color: #fff;
  box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
}

.fs-cc-banner_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 62.5rem;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.fs-cc-banner_buttons-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  grid-auto-columns: 1fr;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.fs-cc-banner_text {
  margin-right: 1.5rem;
  color: #ddd;
}

.fs-cc-banner_text-link {
  border-bottom: 2px solid #ffe12e;
  color: #ffe12e;
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-banner_close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.fs-cc-banner_button {
  min-width: 8.75rem;
  margin-left: 1rem;
  padding: 0.625rem 1.25rem;
  border-style: solid;
  border-width: 2px;
  border-color: #ffe12e;
  border-radius: 6px;
  background-color: #ffe12e;
  color: #1e1f26;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.fs-cc-banner_button.fs-cc-button-alt {
  border-color: #676767;
  background-color: #676767;
  color: #ddd;
}

.fs-cc-banner_component {
  position: fixed;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 998;
  display: none;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(67, 83, 255, 0.16);
  background-color: #313131;
}

.fs-cc-manager_component {
  position: fixed;
  left: auto;
  top: auto;
  right: 1.25rem;
  bottom: 5rem;
  z-index: 999;
  display: none;
}

.fs-cc-manager_button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 999rem;
  background-color: #676767;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  color: #333;
  cursor: pointer;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-manager_icon {
  width: 1.5rem;
  height: 1.5rem;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-prefs_checkbox-field {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 2.75rem;
  height: 1.5rem;
  margin-bottom: 0px;
  padding: 0.125rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 999rem;
  background-color: #ccc;
}

.fs-cc-prefs_content {
  overflow: scroll;
  height: 100%;
  padding: 2.5rem 2rem;
}

.fs-cc-prefs_checkbox {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin-top: 0px;
  margin-left: 0px;
  opacity: 0;
  cursor: pointer;
}

.fs-cc-prefs_toggle-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 2.5rem;
}

.fs-cc-prefs_text {
  color: #313131;
  font-size: 0.75rem;
}

.fs-cc-prefs_title {
  color: #313131;
  font-size: 1.5rem;
  line-height: 1.2em;
  font-weight: 700;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-prefs_component {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 997;
  display: none;
  width: 100%;
  height: 100%;
  margin-bottom: 0px;
  padding: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.fs-cc-prefs_label {
  margin-top: 0px;
  margin-right: 2rem;
  margin-bottom: 0px;
  color: #171717;
  font-size: 1rem;
  font-weight: 700;
}

.fs-cc-prefs_button {
  margin-right: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-style: solid;
  border-width: 2px;
  border-color: #ffe12e;
  border-radius: 6px;
  background-color: #ffe12e;
  color: #171717;
  font-size: 0.875rem;
  font-weight: 700;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  border-color: #676767;
  background-color: #fff;
  color: #676767;
}

.fs-cc-prefs_buttons-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  margin-right: -0.5rem;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_form {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 70vh;
  max-width: 36rem;
  margin-bottom: 0px;
  border-radius: 1rem;
  background-color: #fff;
}

.fs-cc-prefs_space-small {
  margin-bottom: 0.75rem;
}

.fs-cc-prefs_close-icon {
  width: 1rem;
  height: 1rem;
  color: #021a7c;
}

.fs-cc-prefs_overlay {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 9%, 0.6);
}

.fs-cc-prefs_toggle {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background-color: #fff;
}

.fs-cc-prefs_close {
  position: absolute;
  left: auto;
  top: -0.75rem;
  right: -0.75rem;
  bottom: auto;
  z-index: 1;
  padding: 0.625rem;
  border-radius: 100%;
  background-color: #f5f6ff;
  box-shadow: -1px 1px 12px 0 rgba(51, 51, 51, 0.1);
  color: #333;
  font-size: 1.25rem;
  text-decoration: none;
  cursor: pointer;
}

.fs-cc-prefs_option {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.fs-cc-prefs_trigger {
  display: none;
}

.text-span-4 {
  color: #676767;
  font-size: 16px;
  font-weight: 400;
}

.heading-buy {
  margin-bottom: 40px;
}

.bold-text {
  color: #676767;
}

.bold-text.gold {
  color: #ffe12e;
}

.admin-2 {
  position: relative;
  z-index: 4;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background-image: url('../images/Armin-van-Buuren.jpg');
  background-position: 20% 7%;
  background-size: cover;
}

.hardwell-3 {
  position: relative;
  z-index: 4;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background-image: url('../images/Hardwell_1.jpg');
  background-position: 20% 7%;
  background-size: cover;
}

.armin {
  position: relative;
  z-index: 4;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background-image: url('../images/Albin-Nedler.jpeg');
  background-position: 20% 7%;
  background-size: auto 270px;
}

.hardwell {
  position: relative;
  z-index: 4;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background-image: url('../images/Albin-Nedler.jpeg');
  background-position: 20% 7%;
  background-size: auto 270px;
}

.slider-5 {
  height: auto;
  background-color: transparent;
}

.right-arrow-4 {
  display: none;
}

.icon {
  display: none;
}

.left-arrow-4 {
  display: none;
}

.icon-2 {
  display: none;
}

.div-block-11 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cookie-declaration-imprint {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-12 {
  overflow: auto;
  width: 100%;
  height: 300px;
}

.cookie-declaration {
  overflow: auto;
  height: 340px;
  margin-right: -20px;
  margin-bottom: 0px;
  padding-right: 20px;
  color: #989898;
  font-size: 19px;
  line-height: 26px;
  font-weight: 700;
  text-align: left;
}

.title {
  color: #ddd;
  font-size: 24px;
}

@media screen and (max-width: 991px) {

    .button-wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .button-wrapper .button {
        padding-top: 20px;
        width: 140px;
        height: 60px;
    }
    .button-wrapper .button.show-mobile {
        padding-top: 10px;
    }
    .button-wrapper .button.show-mobile span {
        display: block;
        font-weight: 400;
        font-size: 15px;
    }

  .sticky-footer-mobile {
      display: block;
      position: fixed;
      bottom: 0px;
      background-color: #333;
      width: 100%;
      height: 60px;
      left: 0px;
      z-index: 997;
  }

  .sticky-footer-mobile .button {
      height: 50px;
      margin: 5px 10px;
      padding: 5px 16px;
      width: 140px;
      text-align: center;

  }
  .sticky-footer-mobile .button.w-nav-link {
      padding-top: 15px;
      background-color: #444;
      color: #b6b6b6;
      font-size: 15px;
  }
  .sticky-footer-mobile .button.outline-yellow {
      padding-top: 5px;
      background-color: #ffe12e;
      color: #3b3b3b;
      font-size: 16px;
  }
  .sticky-footer-mobile .button:hover {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  .sticky-footer-mobile .price-mobile {
      color: #3b3b3b;
      margin-top: 0px;
      font-weight: 400;
      font-size: 15px;
      display: block;

  }
  .sticky-footer-mobile .div-block {
      margin: 0 auto;
      width: 320px;
  }
  .sticky-footer-mobile .button-div {
      margin-left: 0px;
  }

  .hero-section.padding-top {
    padding-top: 0px;
  }

  .content-wrapper {
    padding-right: 40px;
    padding-left: 40px;
  }

  .content-wrapper.quote-desktop {
    overflow: hidden;
  }

  .button.outline-yellow.show-mobile {
    display: inline-block;
    border-color: #ffe12e;
    color: #ffe12e;
  }

  .button.yellow {
    display: none;
  }

  .button.yellow.buy {
    display: block;
  }

  .button.yellow.windows {
    display: block;
  }

  .button.yellow.mac {
    display: block;
  }

  .button.yellow {
    display: none;
  }

  .navbar {
    position: static;
    border-bottom-color: transparent;
  }

  .brand.w--current {
    margin-top: 14px;
  }

  .grid {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .quote-wrapper {
    padding-right: 40px;
    padding-left: 40px;
  }

  .quote-wrapper.desktop {
    margin-left: 40px;
  }

  .quote-div {
    margin-bottom: 24px;
  }

  .content-grid {
    grid-column-gap: 32px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }

  .content-grid.padding-bottom-80 {
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .content-grid.padding-bottom-80.features {
    margin-bottom: 0px;
  }

  .video-wrapper {
    height: 380px;
  }

  .content-div {
    height: auto;
  }

  .used-by {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 45px;
  }

  .video-item .deepdive-lightbox {
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 60% 50%;
    object-position: 60% 50%;
  }

  .kickstart-2---deep-dive {
    display: block;
    margin-top: 80px;
    /* margin-left: -10px; */
    max-width: 180px;
    bottom: 0;
    left: -10px;
  }

  .popup-content-wrapper---brix {
    width: auto;
  }

  .popup-content-wrapper---brix.popup-1-content-wrapper---brix-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    margin-right: auto;
    margin-left: auto;
  }

  .div-block-9 {
    top: 10px;
    left: 20px;
    margin-top: -70px!important;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .video-play-icon.deepdive {
      width: 40px;
  }

  .slider-2 {
    height: auto;
  }

  .slide-nav-2 {
    top: auto;
    bottom: -24px;
  }

  .add-ons_image-wrapper {
    position: static;
    width: 100%;
    height: 28.125rem;
    margin-top: 2rem;
  }

  .add-ons_accordion-item.add-ons_js-accordion-item {
    width: 100%;
  }

  .add-ons_accordion-title {
    white-space: nowrap;
  }

  .add-ons_accordion.add-ons_js-accordion {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .add-ons_image {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
  }

  .fs-cc-banner_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 1rem;
  }

  .fs-cc-banner_text {
    margin-right: 0rem;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    background-image: radial-gradient(circle farthest-corner at 20% -60%, #fc9925, transparent 50%), radial-gradient(circle farthest-side at -110% -290%, #fc9925, #171717 97%);
  }

  .content-wrapper {
    padding-right: 60px;
    padding-left: 60px;
  }

  .content-wrapper.footer {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .content-wrapper.quote-desktop {
    display: none;
  }

  .content-wrapper.quote-mobile {
    display: block;
    overflow: hidden;
    margin-top: 0px;
    padding-top: 40px;
    padding-bottom: 0px;
  }

  .content-wrapper.no-padding-top-mobile {
    padding-top: 0px;
  }

  .content-wrapper.cta-buttons {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .button.outline-yellow.show-mobile {
    display: inline-block;
  }

  .grid {
    grid-row-gap: 40px;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .heading-1.padding-32-bottom {
    font-size: 56px;
    line-height: 68px;
    text-align: left;
  }

  .hero-subtitle {
    display: none;
  }

  .quote-avatar-circle._1 {
    left: auto;
    top: 0%;
    right: -10px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#535353));
    background-image: linear-gradient(90deg, #171717, #535353);
  }

  .quote-avatar-circle._2 {
    left: auto;
    top: 0%;
    right: -20px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#303030));
    background-image: linear-gradient(90deg, #171717, #303030);
  }

  .quote-avatar-circle._3 {
    left: auto;
    top: 0%;
    right: -30px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#202020));
    background-image: linear-gradient(90deg, #171717, #202020);
  }

  .quote-avatar-circle.slide-2 {
    left: auto;
    top: 0%;
    right: -10px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#535353));
    background-image: linear-gradient(90deg, #171717, #535353);
  }

  .quote-avatar-circle.slide-1 {
    left: auto;
    top: 0%;
    right: -10px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#535353));
    background-image: linear-gradient(90deg, #171717, #535353);
  }

  .quote-avatar-circle.hardwell-2 {
    left: auto;
    top: 0%;
    right: -10px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#535353));
    background-image: linear-gradient(90deg, #171717, #535353);
  }

  .quote-avatar-circle.albin-3 {
    left: auto;
    top: 0%;
    right: -20px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#303030));
    background-image: linear-gradient(90deg, #171717, #303030);
  }

  .quote-avatar-circle.david-2 {
    left: auto;
    top: 0%;
    right: -30px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#202020));
    background-image: linear-gradient(90deg, #171717, #202020);
  }

  .quote-avatar-circle.albin-no3 {
    left: auto;
    top: 0%;
    right: -10px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#535353));
    background-image: linear-gradient(90deg, #171717, #535353);
  }

  .quote-avatar-circle.david-3 {
    left: auto;
    top: 0%;
    right: -20px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#303030));
    background-image: linear-gradient(90deg, #171717, #303030);
  }

  .quote-avatar-circle.armin-3 {
    left: auto;
    top: 0%;
    right: -30px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#202020));
    background-image: linear-gradient(90deg, #171717, #202020);
  }

  .quote-avatar-circle.armin-4 {
    left: auto;
    top: 0%;
    right: -20px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#303030));
    background-image: linear-gradient(90deg, #171717, #303030);
  }

  .quote-avatar-circle.hardwell-4 {
    left: auto;
    top: 0%;
    right: -30px;
    bottom: 0%;
    width: 120px;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, right top, from(#171717), to(#202020));
    background-image: linear-gradient(90deg, #171717, #202020);
  }

  .quote-wrapper {
    height: auto;
    padding: 40px 0px;
  }

  .quote {
    font-size: 20px;
    line-height: 26px;
  }

  .quote-name {
    font-size: 20px;
    line-height: 26px;
  }

  .image {
    left: auto;
    top: -20px;
    right: -20px;
    bottom: 0%;
    width: 80px;
  }

  .quote-div {
    padding-bottom: 24px;
  }

  .heading-2 {
    font-size: 24px;
  }

  .heading-2.small-title {
    margin-right: 16px;
    margin-left: 0px;
    font-size: 24px;
    line-height: 34px;
  }

  .heading-2.small-title.mobile {
    margin-bottom: 32px;
  }

  .heading-2.yellow {
    color: #ffe12e;
  }

  .content-wrapper.centered.no-padding-top-mobile {
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .content-wrapper.centered.no-padding-top-mobile.cta-buttons {
    padding-top: 40px;
  }

  .paragraph-large.padding-32-bottom {
    font-size: 18px;
    line-height: 26px;

  }

  .button-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .content-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .content-grid.padding-bottom-80 {
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .block-heading.video {
    display: none;
  }

  .block-heading.video.mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .video-wrapper {
    height: 280px;
  }

  .content-div {
    padding: 0px;
    background-color: transparent;
  }

  .introduction-img {
    height: 280px;
  }

  .used-by {
    margin-top: 0px;
    margin-bottom: 40px;
  }

  .artist-picture {
    height: 200px;
  }

  .copyright {
    font-size: 12px;
  }

  .hero-mini-title-mobile {
    display: block;
    color: #676767;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-align: left;
  }

  .div-block-8 {
    margin-right: -32px;
    margin-left: -32px;
  }

  .hide-mobile {
    display: none;
  }

  .show-mobile {
    display: block;
  }

  .deepdive-lightbox {
    height: 280px;
    -o-object-position: 52% 50%;
    object-position: 52% 50%;
  }

  .kickstart-2---deep-dive {
    width: 170px;
  }

  .popup-content-wrapper---brix.popup-1-content-wrapper---brix-copy {
    left: 24px;
    right: 24px;
    max-width: none;
    border-radius: 20px;
  }

  .popup-1---modal {
    max-width: none;
    padding: 32px;
  }

  .popup-wrapper---trial {
    padding-right: 24px;
    padding-left: 24px;
  }

  .popup-wrapper---buy {
    padding-right: 24px;
    padding-left: 24px;
  }

  .div-block-9 {
    margin-top: 0px;
    padding-top: 56px;
  }

  .div-block-10 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .david-guetta {
    width: 120px;
    height: 120px;
    background-position: 40% 55%;
  }

  .albin {
    width: 120px;
    height: 120px;
    background-position: 10% 7%;
    background-size: auto 180px;
  }

  .left-arrow-3 {
    left: -480px;
    display: none;
  }

  .right-arrow-3 {
    left: 707px;
    display: none;
  }

  .slider-3 {
    height: auto;
    background-color: transparent;
  }

  .mask-3 {
    overflow: visible;
    height: auto;
  }

  .heading-features {
    font-size: 32px;
  }

  .add-ons_accordion-body.add-ons_js-accordion-body {
    padding-bottom: 1.5rem;
    padding-left: 0rem;
  }

  .add-ons_accordion-header.add-ons_js-accordion-header {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .add-ons_image-wrapper {
    height: 22rem;
  }

  .add-ons_accordion-item {
    box-shadow: none;
  }

  .add-ons_accordion {
    width: 100%;
  }

  .add-ons_image {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
  }

  .fs-cc-banner_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .fs-cc-prefs_title {
    font-size: 1.25rem;
  }

  .admin-2 {
    width: 120px;
    height: 120px;
    background-position: 10% 7%;
    background-size: auto 180px;
  }

  .hardwell-3 {
    width: 120px;
    height: 120px;
    background-position: 10% 7%;
    background-size: auto 180px;
  }

  .armin {
    width: 120px;
    height: 120px;
    background-image: url('../images/Armin-van-Buuren.jpg');
    background-position: 10% 7%;
    background-size: cover;
  }

  .hardwell {
    width: 120px;
    height: 120px;
    background-image: url('../images/Hardwell_1.jpg');
    background-position: 10% 7%;
    background-size: cover;
  }

  .cookie-declaration-imprint {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 479px) {
  .content-wrapper {
    padding-right: 32px;
    padding-left: 32px;
  }

  .navbar {
    margin-bottom: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .brand {
    width: 210px;
  }

  .grid {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .heading-1.padding-32-bottom {
    font-size: 40px;
    line-height: 50px;
  }

  .quote-wrapper {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .quote {
    text-align: center;
  }

  .quote-name {
    text-align: center;
  }

  .paragraph.small.max-with-280.align-left {
    text-align: center;
  }

  .used-by {
    margin-top: 0px;
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 42px;
  }

  .copyright.spacing {
    display: none;
  }

  .div-block-8 {
    margin-right: -16px;
    margin-left: -16px;
  }

  .logo-img {
    width: 200px;
  }

  .popup-content-wrapper---brix {
    border-radius: 24px;
  }

  .popup-content-wrapper---brix.popup-1-content-wrapper---brix-copy {
    left: 16px;
    right: 16px;
    border-radius: 16px;
  }

  .popup-1---modal {
    padding: 40px 16px 32px;
  }

  .popup-wrapper---trial {
    padding-right: 16px;
    padding-left: 16px;
  }

  .popup-wrapper---buy {
    padding-right: 16px;
    padding-left: 16px;
  }

  .grid-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .trial-button-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .div-block-9 {
    margin-top: 0px;
    padding-top: 56px;
  }

  .add-ons_accordion-body {
    padding-left: 56px;
  }

  .add-ons_accordion-body.add-ons_js-accordion-body {
    padding-right: 0px;
    padding-left: 0px;
  }

  .fs-cc-banner_close {
    position: absolute;
    left: auto;
    top: -1.5rem;
    right: 0.75rem;
    bottom: auto;
  }

  .fs-cc-banner_buttons-wrapper {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: 0.5rem;
    margin-left: 0rem;
  }

  .fs-cc-prefs_content {
    padding: 1.5rem;
  }

  .fs-cc-prefs_component {
    padding: 1.5rem;
  }

  .fs-cc-prefs_button {
    margin-bottom: 0.5rem;
  }

  .div-block-11 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cookie-declaration-imprint {
    padding-right: 16px;
    padding-left: 16px;
  }
}

#w-node-ba586314-49ea-3fec-b433-d9ced6deb562-1e86c8c7 {
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

#w-node-ba586314-49ea-3fec-b433-d9ced6deb564-1e86c8c7 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-ba586314-49ea-3fec-b433-d9ced6deb566-1e86c8c7 {
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-ba586314-49ea-3fec-b433-d9ced6deb568-1e86c8c7 {
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_35b3a6fe-c7f5-d403-9664-66b3a93c237a-1e86c8c7 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a6770fb4-9d0e-bce7-8035-f816bf225ea5-1e86c8c7 {
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

#w-node-a6770fb4-9d0e-bce7-8035-f816bf225ea9-1e86c8c7 {
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_4139ac22-cf10-7527-d6b0-e923cec51a37-1e86c8c7 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a6770fb4-9d0e-bce7-8035-f816bf225eab-1e86c8c7 {
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-f2d34d38-b63e-d23d-d5e7-7dab757efdb5-1e86c8c7 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_8036ceb0-97a7-fe05-3cb6-245074e347bd-1e86c8c7 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-ef5fd4d0-fd5c-3492-f5ec-97824cb9f87d-1e86c8c7 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#video-introduction {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_4f1d9c50-103f-63df-7a8e-a1188460bcbb-1e86c8c7 {
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
}

#w-node-dcc03ebe-eb84-18c0-4980-8f115c60bbbf-1e86c8c7 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-_64bd4dc9-19be-46b5-9ab5-d7e5b7ebbd84-1e86c8c7 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-_49a644f3-0e10-c3ed-860d-2e23893883e3-1e86c8c7 {
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

#w-node-bdfdb9ca-a6eb-6d60-616b-ba79b4b3338c-1e86c8c7 {
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-span: 0;
  grid-column-end: 2;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

#w-node-_036cf11c-f33c-5f44-09bd-c87af005c9ba-1e86c8c7 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-_25464ebd-a5fd-1d09-788a-da55ee9a035e-1e86c8c7 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_5c87b64d-0fac-86e0-eb87-51eb243e0540-1e86c8c7 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-d49c0bd6-b83d-48fe-b2b3-f621a1186ef5-1e86c8c7 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_3c3e5928-26ce-89f3-6a69-675ab0a8a41c-1e86c8c7 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_28d0f3d0-dcd5-ef55-b73d-6867d680545c-1e86c8c7 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_724cc274-0d74-eaa7-a4fe-30aa68f54b40-1e86c8c7 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_06506145-9702-2565-6e00-11fee9353720-1e86c8c7 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-d8a8cd36-8407-a0ef-7583-4178f6a12334-1e86c8c7 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_9720e321-7561-8e2a-6a58-aeda62df91b8-1e86c8c7 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-e9d83465-3bdb-e69a-4e43-8f9d950ee2bd-1e86c8c7 {
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}



@media screen and (max-width: 991px) {
  #w-node-ef5fd4d0-fd5c-3492-f5ec-97824cb9f87d-1e86c8c7 {
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 0;
    grid-row-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  #video-introduction {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  #w-node-_64bd4dc9-19be-46b5-9ab5-d7e5b7ebbd84-1e86c8c7 {
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
  }

  #w-node-_49a644f3-0e10-c3ed-860d-2e23893883e3-1e86c8c7 {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-column: 1;
    grid-column-start: 1;
  }

  #w-node-bdfdb9ca-a6eb-6d60-616b-ba79b4b3338c-1e86c8c7 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  #w-node-_036cf11c-f33c-5f44-09bd-c87af005c9ba-1e86c8c7 {
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
    -ms-grid-row: 3;
    grid-row-start: 3;
  }

  #w-node-_25464ebd-a5fd-1d09-788a-da55ee9a035e-1e86c8c7 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  #w-node-e9d83465-3bdb-e69a-4e43-8f9d950ee2bd-1e86c8c7 {
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f2d34d38-b63e-d23d-d5e7-7dab757efdb5-1e86c8c7 {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_34437b6a-b759-477e-51eb-758b372f85f0-1e86c8c7 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #video-introduction {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }

  #w-node-_64bd4dc9-19be-46b5-9ab5-d7e5b7ebbd84-1e86c8c7 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-_64bd4dc9-19be-46b5-9ab5-d7e5b7ebbd84-1e86c8c7 .w-layout-grid {
      display: block;
  }
  .video-item {
      margin-bottom: 15px;
  }

  #w-node-_49a644f3-0e10-c3ed-860d-2e23893883e3-1e86c8c7 {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -ms-grid-column: 1;
    grid-column-start: 1;
  }

  #w-node-bdfdb9ca-a6eb-6d60-616b-ba79b4b3338c-1e86c8c7 {
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-_036cf11c-f33c-5f44-09bd-c87af005c9ba-1e86c8c7 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-_25464ebd-a5fd-1d09-788a-da55ee9a035e-1e86c8c7 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ba586314-49ea-3fec-b433-d9ced6deb562-1e86c8c7 {
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-ba586314-49ea-3fec-b433-d9ced6deb564-1e86c8c7 {
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
  }

  #w-node-ba586314-49ea-3fec-b433-d9ced6deb566-1e86c8c7 {
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 0;
    grid-row-end: 2;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
  }

  #w-node-ba586314-49ea-3fec-b433-d9ced6deb568-1e86c8c7 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
  }

  #w-node-a6770fb4-9d0e-bce7-8035-f816bf225ea5-1e86c8c7 {
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }

  #w-node-a6770fb4-9d0e-bce7-8035-f816bf225ea9-1e86c8c7 {
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 0;
    grid-row-end: 2;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
  }

  #w-node-a6770fb4-9d0e-bce7-8035-f816bf225eab-1e86c8c7 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
  }

  #w-node-_0bd38f8c-5b6e-2545-e057-e5c32730de48-1e86c8c7 {
    -ms-grid-column-align: center;
    justify-self: center;
  }

  #w-node-db90cbe0-14e6-e295-7bb9-a7bcc5d8a12e-1e86c8c7 {
    -ms-grid-column-align: center;
    justify-self: center;
  }

  #w-node-_3593ce34-eaa9-b133-f8ef-8fcf46e395b6-1e86c8c7 {
    -ms-grid-column-align: center;
    justify-self: center;
  }

  #w-node-c3b7f29a-6733-7ebf-8919-bca556b4c7cf-1e86c8c7 {
    -ms-grid-column-align: center;
    justify-self: center;
  }

  #w-node-_4f1d9c50-103f-63df-7a8e-a1188460bcbb-1e86c8c7 {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
  }
}



@font-face {
  font-family: 'Sf pro display';
  src: url('../fonts/SF-Pro-Display-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sf pro display';
  src: url('../fonts/SF-Pro-Display-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
