@charset "UTF-8";
#the_platform {
  margin-top: 20px !important;
}

#loader_overlay {
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

.navigation {
  height: 63px;
  display: grid;
  grid-template-columns: 107px auto 256px;
}
.navigation > div {
  display: flex;
  align-items: center;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.navigation .right_content {
  justify-content: right;
}
.navigation #current-slide-name {
  padding-left: 30px;
}
.navigation #logo {
  justify-content: flex-start;
}
.navigation #logo img {
  height: 38px;
}
.navigation ul#scenes {
  display: none;
  height: 21px;
  display: flex;
  list-style-type: none;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.navigation ul#scenes li {
  transition: 0.6s;
  font-size: 0.8rem;
  color: #d8d8d8;
  text-transform: uppercase;
  cursor: pointer;
}
.navigation ul#scenes li.active {
  font-size: 1.4rem;
  color: white;
}
.navigation .icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 44px;
  width: 100%;
}
.navigation .icons img {
  width: 30px;
  height: 30px;
}

.nav-drawer {
  position: absolute;
  width: auto;
  height: 100%;
  max-height: calc(100% - 5px);
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #121212;
  overflow: scroll;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  transition: 0.4s;
}
.nav-drawer a {
  color: inherit;
  text-decoration: none;
}
.nav-drawer ul#scenes {
  padding: 0;
  margin: 0;
}
.nav-drawer ul#scenes li.scene {
  font-size: 1.5rem;
  color: #7d7d7d;
  list-style-type: none;
  padding: 10px 0 10px 16px;
  margin: 0;
}
.nav-drawer ul#scenes li.scene .label {
  display: grid;
  grid-template-columns: 180px 50px 50px;
  cursor: pointer;
}
.nav-drawer ul#scenes li.scene .label .title {
  text-transform: uppercase;
}
.nav-drawer ul#scenes li.scene .label .count {
  text-align: center;
}
.nav-drawer ul#scenes li.scene .label .chevron {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-drawer ul#scenes li.scene .label .chevron svg {
  transition: 0.4s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav-drawer ul#scenes li.scene .label .chevron svg path {
  fill: #7d7d7d;
}
.nav-drawer ul#scenes li.scene ul.clips {
  list-style-type: disc;
  list-style-position: outside;
  padding: 15px 0 24px 20px;
  display: none;
}
.nav-drawer ul#scenes li.scene ul.clips li._clip {
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Proxima Nova", sans-serif;
  padding: 8px 0;
}
.nav-drawer ul#scenes li.scene ul.clips li._clip.active {
  color: #53aacc;
}
.nav-drawer ul#scenes li.scene.active .label {
  color: #53aacc;
}
.nav-drawer ul#scenes li.scene.active .label .chevron svg path {
  fill: #53aacc;
}
.nav-drawer ul#scenes li.scene.header {
  font-size: 1rem;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 20px;
}
.nav-drawer ul#scenes li.scene.open .label .chevron svg {
  transition: 0.4s;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.nav-drawer.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#nav_toggle {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: "Titillium Web", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  justify-content: center;
  position: relative;
  text-transform: uppercase;
}
#nav_toggle .toggle-icon {
  margin: 6px;
  width: 17px;
  display: inline-block;
}
#nav_toggle .toggle-icon:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
}
#nav_toggle .toggle-icon:before {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
}
#nav_toggle .toggle-icon div {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
}
#nav_toggle .close {
  display: none;
}

.nav-drawer #nav_toggle {
  justify-content: start;
  padding: 10px 0 0 10px;
}

#nav_toggle.open .close {
  display: inline;
}
#nav_toggle.open .menu {
  display: none;
}
#nav_toggle.open .toggle-icon:before {
  -webkit-transform: translateY(4px) rotate(135deg);
          transform: translateY(4px) rotate(135deg);
}
#nav_toggle.open .toggle-icon:after {
  -webkit-transform: translateY(-4px) rotate(-135deg);
          transform: translateY(-4px) rotate(-135deg);
}
#nav_toggle.open .toggle-icon div {
  -webkit-transform: scale(0);
          transform: scale(0);
}

body.carscom .navigation > div {
  font-family: "SharpSans", sans-serif;
}
body.carscom #nav_toggle {
  font-family: "SharpSans", sans-serif;
}
body.carscom .nav-drawer ul#scenes li.scene .label .title {
  font-family: "SharpSans", sans-serif;
}
body.carscom .nav-drawer ul#scenes li.scene.active .label {
  color: #CD44DA;
}
body.carscom .nav-drawer ul#scenes li.scene.active .label .chevron svg path {
  fill: #CD44DA;
}
body.carscom .nav-drawer ul#scenes li.scene ul.clips li._clip.active {
  color: #CD44DA;
}

body.carsparent .navigation > div {
  font-family: "SharpSans", sans-serif;
}
body.carsparent #nav_toggle {
  font-family: "SharpSans", sans-serif;
}
body.carsparent .nav-drawer ul#scenes li.scene .label .title {
  font-family: "SharpSans", sans-serif;
}
body.carsparent .nav-drawer ul#scenes li.scene.active .label {
  color: #CD44DA;
}
body.carsparent .nav-drawer ul#scenes li.scene.active .label .chevron svg path {
  fill: #CD44DA;
}
body.carsparent .nav-drawer ul#scenes li.scene ul.clips li._clip.active {
  color: #CD44DA;
}

body.accutrade .navigation > div {
  font-family: "Lato", sans-serif;
  text-transform: none;
}
body.accutrade #nav_toggle {
  font-family: "Lato", sans-serif;
  text-transform: none;
}
body.accutrade .nav-drawer ul#scenes li.scene .label .title {
  font-family: "Lato", sans-serif;
  text-transform: none;
}
body.accutrade .nav-drawer ul#scenes li.scene.active .label {
  color: #009BD8;
}
body.accutrade .nav-drawer ul#scenes li.scene.active .label .chevron svg path {
  fill: #009BD8;
}
body.accutrade .nav-drawer ul#scenes li.scene ul.clips li._clip.active {
  color: #009BD8;
}

@font-face {
  font-family: "Proxima Nova";
  font-weight: 500;
  src: url("fonts/ProximaNova/ProximaNova-Regular.eot");
  /* IE9 Compat Modes */
  src: url("fonts/ProximaNova/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/ProximaNova/ProximaNova-Regular.woff2") format("woff2"), url("fonts/ProximaNova/ProximaNova-Regular.woff") format("woff"), url("fonts/ProximaNova/ProximaNova-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Proxima Nova";
  font-weight: 700;
  src: url("fonts/ProximaNova/ProximaNova-Bold.eot");
  /* IE9 Compat Modes */
  src: url("fonts/ProximaNova/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/ProximaNova/ProximaNova-Bold.woff2") format("woff2"), url("fonts/ProximaNova/ProximaNova-Bold.woff") format("woff"), url("fonts/ProximaNova/ProximaNova-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "SharpSans";
  font-display: swap;
  src: local("Sharp Sans Display No1 Bold"), local("SharpSansDisplayNo1-Bold"), url(fonts/sharpsans/SharpSansDisplayNo1-Bold.woff2) format("woff2"), url(fonts/sharpsans/SharpSansDisplayNo1-Bold.woff) format("woff"), url(fonts/sharpsans/SharpSansDisplayNo1-Bold.ttf) format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "SharpSans";
  font-display: swap;
  src: local("Sharp Sans Display No1 Thin"), local("SharpSansDisplayNo1-Thin"), url(fonts/sharpsans/SharpSansDisplayNo1-Thin.woff2) format("woff2"), url(fonts/sharpsans/SharpSansDisplayNo1-Thin.woff) format("woff"), url(fonts/sharpsans/SharpSansDisplayNo1-Thin.ttf) format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "SharpSans";
  font-display: swap;
  src: local("Sharp Sans Display No1 Book"), local("SharpSansDisplayNo1-Book"), url(fonts/sharpsans/SharpSansDisplayNo1-Book.woff2) format("woff2"), url(fonts/sharpsans/SharpSansDisplayNo1-Book.woff) format("woff"), url(fonts/sharpsans/SharpSansDisplayNo1-Book.ttf) format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "SharpSans";
  src: url(fonts/sharpsans/SharpSansDisplayNo1-semibold.woff2) format("woff2"), url(fonts/sharpsans/SharpSansDisplayNo1-semibold.woff) format("woff"), url(fonts/sharpsans/SharpSansDisplayNo1-semibold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("fonts/inter/Inter-Regular.woff2") format("woff2"), url("fonts/inter/Inter-Regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("fonts/inter/Inter-Italic.woff2") format("woff2"), url("fonts/inter/Inter-Italic.woff") format("woff");
  font-weight: Normal;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("fonts/inter/Inter-Bold.woff2") format("woff2"), url("fonts/inter/Inter-Bold.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("fonts/inter/Inter-BoldItalic.woff2") format("woff2"), url("fonts/inter/Inter-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@-webkit-keyframes "fadeIn" {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes "fadeIn" {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes "slideInRight" {
  from {
    opacity: 0;
    -webkit-transform: translate(-20px, 0);
            transform: translate(-20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes "slideInRight" {
  from {
    opacity: 0;
    -webkit-transform: translate(-20px, 0);
            transform: translate(-20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes "slideInDown" {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes "slideInDown" {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes "scaleIn" {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes "scaleIn" {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
html {
  font-size: 10px;
}

body {
  background-color: black;
  color: white;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100vh;
}

img {
  max-width: 100%;
}

.app {
  position: relative;
  width: 100%;
}
.app .clip-wrapper {
  width: 100%;
  position: relative;
  min-height: 500px;
}
.app .clip-wrapper .poster {
  width: 100%;
  height: auto;
}
.app .clip-wrapper .clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 1;
  transition: 0.1s;
  z-index: 1;
}
.app .clip-wrapper .clip.loading {
  opacity: 0.1;
}
.app .video-wrapper {
  width: 100%;
}
.app .video-wrapper video {
  width: 100%;
  height: auto;
}
.app .modal {
  position: absolute;
  background-color: #53aacc;
  width: 280px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  transition: 1s;
  box-shadow: 0px 3px 21px -5px rgba(0, 0, 0, 0.75);
}
.app .modal h2 {
  font-size: 2.2rem;
  color: white;
  margin-left: 1rem;
  margin-right: 1rem;
}
.app .modal h2 span {
  font-size: 17px;
}
.app .modal p {
  color: black;
  background-color: white;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.5rem;
  border-radius: 10px 10px 0 0;
  padding: 20px 28px 30px;
  margin: 0;
}
.app .modal .nav {
  white-space: nowrap;
  display: flex;
  width: 100%;
  background-color: #f4f7f8;
}
.app .modal .nav button {
  border: 0;
  margin: 0;
  padding: 0;
  height: 54px;
  width: 93px;
  background-color: #f4f7f8;
  position: relative;
  cursor: pointer;
}
.app .modal .nav button svg {
  max-width: 25px;
}
.app .modal .nav button svg path {
  fill: #53aacc;
  stroke: #53aacc;
  stroke-width: 2;
}
.app .modal .nav button:not(:last-child):before {
  position: absolute;
  content: " ";
  top: 10px;
  right: 0;
  width: 1px;
  height: 36px;
  background-color: white;
}
.app .modal .nav button:disabled svg path {
  stroke: #a4acaf;
}
.app .modal .nav button.reload {
  opacity: 0;
}
.app .modal .nav button.back svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.app .modal.show {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}
.app .modal.complete .nav button.reload {
  transition: 1s;
  opacity: 1;
}

.slide {
  width: 100%;
  height: 100%;
  background: #000;
}
.slide h1 {
  font-weight: bold;
  margin: 0.7em 0;
  font-size: 60px;
  margin-top: 0;
  margin-bottom: 30px;
}
.slide h2 {
  font-weight: bold;
  margin: 0.7em 0;
  font-size: 24px;
}
.slide h3 {
  font-weight: bold;
  margin: 0.7em 0;
  font-size: 20px;
}
.slide h4 {
  font-weight: bold;
  margin: 0.7em 0;
  font-size: 18px;
  letter-spacing: 0.03em;
}
.slide h1.subhead {
  font-weight: 400;
  text-transform: none;
}
.slide h2.subhead {
  font-weight: 400;
  text-transform: none;
}
.slide h3.subhead {
  font-weight: 400;
  text-transform: none;
}
.slide h4.subhead {
  font-weight: 400;
  text-transform: none;
}
.slide a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
}
.slide a:hover {
  color: #53aacc;
}
.slide a:focus {
  color: #53aacc;
}
.slide a:active {
  color: #53aacc;
}
.slide a.btn {
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 20px;
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  padding: 14px 24px;
  margin: 10px 0;
  line-height: 1.2;
  display: inline-block;
  min-width: 190px;
  text-align: center;
}
.slide a.btn:hover {
  background: transparent;
  color: #fff;
}
.slide a.btn:focus {
  background: transparent;
  color: #fff;
}
.slide a.btn:active {
  background: transparent;
  color: #fff;
}
.slide a.btn.btn-blue {
  background: #53aacc;
  border-color: #53aacc;
  color: #fff;
}
.slide a.btn.btn-blue:hover {
  background: #3f829d;
  border-color: #3f829d;
}
.slide a.btn.btn-blue:focus {
  background: #3f829d;
  border-color: #3f829d;
}
.slide a.btn.btn-blue:active {
  background: #3f829d;
  border-color: #3f829d;
}
.slide a.btn.btn-outline-blue {
  background: transparent;
  border-color: #53aacc;
  color: #53aacc;
}
.slide a.btn.btn-outline-blue:hover {
  background: #53aacc;
  border-color: #53aacc;
  color: #fff;
}
.slide a.btn.btn-outline-blue:focus {
  background: #53aacc;
  border-color: #53aacc;
  color: #fff;
}
.slide a.btn.btn-outline-blue:active {
  background: #53aacc;
  border-color: #53aacc;
  color: #fff;
}
.slide a.btn.btn-green {
  background: #61bb2b;
  border-color: #61bb2b;
  color: #fff;
}
.slide a.btn.btn-green:hover {
  background: #267e30;
  border-color: #267e30;
}
.slide a.btn.btn-green:focus {
  background: #267e30;
  border-color: #267e30;
}
.slide a.btn.btn-green:active {
  background: #267e30;
  border-color: #267e30;
}
.slide .green {
  color: #61bb2b;
}
.slide .green.large {
  font-size: 1.42em;
}
.slide p.notation {
  font-size: 15px;
  font-weight: 400;
  margin-top: 0;
}

.slide-container {
  background: #000;
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 16px;
}
.slide-container .background {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  height: calc(100vh - 118px);
}
.slide-container .background:after {
  z-index: 1;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  content: "";
  position: absolute;
}
.slide-container .background video {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  z-index: 0;
}
.slide-container .contents {
  padding: 10vh 10vw;
  text-align: center;
  position: relative;
  z-index: 3;
}
.slide-container .navigation {
  height: 118px;
  padding: 26px 10vw;
  text-align: center;
}
.slide-container .navigation:after {
  content: "";
  display: table;
  clear: both;
}
.slide-container .navigation .half:nth-of-type(2n) {
  border-left: 1px solid #fff;
  margin-left: -1px;
}
.slide-container .navigation a {
  text-transform: uppercase;
}
.slide-container .navigation a svg {
  fill: white;
  stroke: white;
  stroke-miterlimit: 10;
  stroke-width: 1.8px;
  transition: all 0.3s;
}
.slide-container .navigation a:hover svg {
  fill: #53aacc;
  stroke: #53aacc;
}
.slide-container .navigation a:focus svg {
  fill: #53aacc;
  stroke: #53aacc;
}
.slide-container .navigation a:active svg {
  fill: #53aacc;
  stroke: #53aacc;
}
.slide-container .navigation h3 {
  margin-top: 0;
  margin-bottom: 24px;
}
.slide-container .half {
  float: left;
  width: 50%;
}
.slide-container .testimonials-container {
  overflow: hidden;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  width: 740px;
  max-width: 80%;
}
.slide-container .testimonials {
  margin-top: 40px;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  padding: 20px 40px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.slide-container .testimonials:after {
  content: "";
  display: table;
  clear: both;
}
.slide-container .testimonials .slick-list {
  overflow: visible;
}
.slide-container .testimonials .slick-list .slick-slide:focus {
  outline: none;
}
.slide-container .testimonials .testimonial {
  font-family: "Proxima Nova", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.slide-container .testimonials .testimonial:after {
  content: "";
  display: table;
  clear: both;
}
.slide-container .testimonials .quote {
  padding: 0 54px;
  position: relative;
  font-size: 27px;
  font-weight: bold;
}
.slide-container .testimonials .quote:before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 70px;
  color: #53aacc;
  font-weight: bold;
  font-family: "Proxima Nova", sans-serif;
  line-height: 1;
}
.slide-container .testimonials .quote:after {
  content: "“";
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 70px;
  color: #53aacc;
  font-weight: bold;
  font-family: "Proxima Nova", sans-serif;
  line-height: 1;
  content: "”";
  left: auto;
  right: 0;
}
.slide-container .testimonials .round {
  border-radius: 50%;
  overflow: hidden;
  width: 80px;
  height: 80px;
  margin: -50px auto 30px auto;
}
.slide-container .testimonials.slick-initialized {
  opacity: 1;
}
.slide-container .full-screen .background {
  height: 100vh;
  background-position: top left;
}
.slide-container .full-screen .background:after {
  display: none;
}
.slide-container .full-screen #start-tour {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  font-size: 18px;
  background: #222222;
  bottom: -50px;
  right: -35px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.slide-container .full-screen #start-tour img {
  margin-bottom: 10px;
  opacity: 0;
}
.slide-container .full-screen #start-tour span {
  margin-bottom: 18px;
  display: block;
  opacity: 0;
  -webkit-transform: translate(-20%, 0);
          transform: translate(-20%, 0);
}
.slide-container .full-screen #start-tour.animate {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.slide-container .full-screen #start-tour.animate img {
  opacity: 1;
  transition: all 0.3s 0.6s linear;
}
.slide-container .full-screen #start-tour.animate span {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  transition: all 0.3s 0.8s ease-in-out;
}

#login .background {
  -webkit-filter: blur(1rem);
          filter: blur(1rem);
  transition: 1s;
}
#login .background.clear {
  -webkit-filter: blur(0rem);
          filter: blur(0rem);
}
#login .foreground {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#login .foreground .form {
  max-width: 478px;
  background-color: white;
  border: 1px solid #e2e2e2;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  padding: 49px 58px;
  transition: 0.5s;
}
#login .foreground .form .header {
  color: #222222;
  text-align: center;
  border-bottom: 1px solid #d8d8d8;
}
#login .foreground .form .header div {
  font-size: 1.8rem;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 500;
}
#login .foreground .form .header h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 10px 0;
}
#login .foreground .form .header h2 span {
  font-weight: 500;
}
#login .foreground .form .header h2 span.blue {
  color: #53aacc;
}
#login .foreground .form .header h3 {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Proxima Nova", sans-serif;
  margin: 0 0 44px;
}
#login .foreground .form .body {
  padding-top: 15px;
  font-weight: 500;
  font-family: "Proxima Nova", sans-serif;
}
#login .foreground .form .body .disclaimer {
  display: none;
  color: #bf3c3c;
}
#login .foreground .form .body label {
  display: block;
  font-size: 1.7rem;
  color: #222222;
  margin: 26px 0 9px;
}
#login .foreground .form .body input {
  padding: 10px;
  display: block;
  width: 100%;
  font-size: 16px;
  background: #f4f7f8;
  border: 1px solid #ebebeb;
  margin-bottom: 15px;
}
#login .foreground .form .body input::-webkit-input-placeholder {
  color: #a0a0a0;
  opacity: 1;
}
#login .foreground .form .body input::-moz-placeholder {
  color: #a0a0a0;
  opacity: 1;
}
#login .foreground .form .body input:-ms-input-placeholder {
  color: #a0a0a0;
  opacity: 1;
}
#login .foreground .form .body input::placeholder {
  color: #a0a0a0;
  opacity: 1;
}
#login .foreground .form .body input.invalid {
  background-color: #f1c7c7;
}
#login .foreground .form .body button {
  margin-top: 25px;
  display: block;
  width: 100%;
  color: white;
  font-weight: 500;
  font-family: "Proxima Nova", sans-serif;
  padding: 12px;
  background-color: #61bb2b;
  border: 0;
}
#login .foreground .form .body button:hover {
  background-color: #267e30;
}
#login .foreground .form.submit {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  opacity: 0;
}

#welcome .full-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  box-shadow: -10px 0 30px -10px black;
  transition: all 1s ease-in-out;
}
#welcome .full-screen#opening {
  z-index: 30;
}
#welcome .full-screen#code {
  z-index: 20;
}
#welcome .full-screen#lets-go .contents {
  width: 50%;
  font-size: 22px;
  text-align: left;
  font-weight: 400;
}
#welcome .full-screen#lets-go .contents * {
  opacity: 0;
}
#welcome .full-screen#lets-go .contents .logo {
  margin-bottom: 30px;
}
#welcome .full-screen#lets-go .contents h1 {
  text-align: left;
  opacity: 1;
  font-size: 68px;
  line-height: 1.05;
  margin-bottom: 20px;
}
#welcome .full-screen#lets-go .contents h1 span {
  display: block;
}
#welcome .full-screen#lets-go .contents h1 .smaller {
  font-size: 50px;
}
#welcome .full-screen#lets-go .contents span.divider {
  margin: 20px 0;
  display: block;
  width: 38px;
  height: 5px;
  background: #53aacc;
}
#welcome .full-screen#lets-go .contents h4 {
  line-height: 1.5;
  margin: 40px 0;
}

#welcome.animate #opening {
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
}

#welcome.animate.animate-2 #opening {
  -webkit-transform: translate(75%, 0);
          transform: translate(75%, 0);
}
#welcome.animate.animate-2 #code {
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
}

#welcome.animate.animate-3 #lets-go .timeline-01 {
  -webkit-animation: fadeIn 0.4s linear 0s 1 forwards;
          animation: fadeIn 0.4s linear 0s 1 forwards;
}
#welcome.animate.animate-3 #lets-go .timeline-02 {
  -webkit-animation: slideInRight 0.4s ease-in-out 0.4s 1 forwards;
          animation: slideInRight 0.4s ease-in-out 0.4s 1 forwards;
}
#welcome.animate.animate-3 #lets-go .timeline-03 {
  -webkit-animation: slideInRight 0.4s ease-in-out 0.6s 1 forwards;
          animation: slideInRight 0.4s ease-in-out 0.6s 1 forwards;
}
#welcome.animate.animate-3 #lets-go .timeline-04 {
  -webkit-animation: slideInRight 0.3s ease-in-out 0.8s 1 forwards;
          animation: slideInRight 0.3s ease-in-out 0.8s 1 forwards;
}
#welcome.animate.animate-3 #lets-go .timeline-05 {
  -webkit-animation: slideInDown 0.4s ease-in-out 1.2s 1 forwards;
          animation: slideInDown 0.4s ease-in-out 1.2s 1 forwards;
}
#welcome.animate.animate-3 #lets-go .timeline-06 {
  -webkit-animation: slideInDown 0.4s ease-in-out 1.4s 1 forwards;
          animation: slideInDown 0.4s ease-in-out 1.4s 1 forwards;
}
#welcome.animate.animate-3 #lets-go .timeline-07 {
  -webkit-animation: scaleIn 0.4s ease-in-out 1.6s 1 forwards;
          animation: scaleIn 0.4s ease-in-out 1.6s 1 forwards;
}

#welcome-mobile {
  text-align: center;
  padding: 29px;
}
#welcome-mobile h2 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  margin-top: 1.9rem;
  margin-bottom: 4.7rem;
}
#welcome-mobile h3 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 1.3rem;
}
#welcome-mobile p {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 5rem;
}
#welcome-mobile p span {
  white-space: nowrap;
}
#welcome-mobile .btn {
  width: 100%;
  text-align: center;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  border: 1px solid #53aacc;
  color: white;
  display: flex;
  height: 52px;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#welcome-mobile .btn svg {
  margin-right: 10px;
}
#welcome-mobile .btn.btn-blue {
  background-color: #53aacc;
}

#slide-support-end .heart {
  height: 70px;
  vertical-align: top;
}
#slide-support-end h1 {
  margin-top: 50px;
  margin-bottom: 0px;
}
#slide-support-end h2 {
  margin-bottom: 6px;
}
#slide-support-end a#watch-testimonials:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid white;
  display: inline-block;
  margin-left: 16px;
}
#slide-support-end .navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#slide-support-end .navigation .half a.next-slide {
  float: left;
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#slide-support-end .navigation .half a.prev-slide {
  float: left;
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  float: right;
}
#slide-support-end .navigation .half a.prev-slide svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

#slide-the-end h1 {
  margin-bottom: 14px;
}
#slide-the-end h2 {
  margin-top: 0;
  margin-bottom: 60px;
}
#slide-the-end .background {
  height: calc(100vh - 186px);
}
#slide-the-end .navigation {
  height: 186px;
}
#slide-the-end .navigation a {
  height: 76px;
  padding: 0 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#slide-the-end .navigation a svg {
  margin-left: 10px;
}
#slide-the-end .navigation .di-logo {
  width: 30px;
  margin-right: 32px;
}
#slide-the-end .navigation .chevy-logo {
  margin-right: 34px;
  width: 64px;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s, visibility 0s 0.5s, z-index 0s 0.5s;
}
.video-modal *:focus {
  outline: none;
}
.video-modal .container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  max-width: 90%;
  max-height: 100%;
  width: 100%;
  -webkit-transform: scale(0.8) translate(-50%, -50%);
          transform: scale(0.8) translate(-50%, -50%);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  opacity: 0;
  background: black;
  transition: all 0.4s;
}
.video-modal .container video {
  width: 100%;
}
.video-modal .container .close {
  position: absolute;
  z-index: 10;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  padding: 0 10px;
  top: 10px;
  right: 15px;
}

.video-modal.active {
  z-index: 10;
  visibility: visible;
  display: block;
  opacity: 1;
  transition: visibility 0s, z-index 0s, opacity 0.4s;
}
.video-modal.active .container {
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.4s 0.4s;
}

@media (min-width: 821px) {
  .hidden-desktop {
    display: none;
  }
}
@media (max-width: 820px) {
  .hidden-mobile {
    display: none;
  }

  .welcome-body {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-image: url("../images/mobile-bg.jpg");
  }
}
body.dealerinspire .slide h1, body.dealerinspire .slide h2, body.dealerinspire .slide h3, body.dealerinspire .slide h4 {
  text-transform: uppercase;
}

#cars_logo {
  display: none;
}

body.carscom {
  background-color: #532380;
  font-family: "SharpSans", sans-serif;
}
body.carscom #di_icons {
  display: none !important;
}
body.carscom #cars_logo {
  display: flex;
  padding-right: 30px;
  text-align: right;
  align-items: center;
  justify-content: flex-end;
}
body.carscom #cars_logo img {
  max-height: 31px;
}
body.carscom .app .modal {
  background-color: #532380;
}
body.carscom .app .modal .nav button svg path {
  fill: #CD44DA;
  stroke: #CD44DA;
}
body.carscom .app .modal p {
  font-family: "Inter", sans-serif;
}

.page-template-page-slideshow {
  background-color: black;
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
.page-template-page-slideshow p {
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  font-style: normal;
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  font-style: normal;
  width: 75%;
}
.page-template-page-slideshow .slide-navigation {
  bottom: 0;
  position: absolute;
  bottom: 0;
  position: absolute;
  z-indx: 5;
}
.page-template-page-slideshow .navigation {
  z-index: 100;
  position: fixed;
  top: calc(50vh - 24.9vw - 30px);
  align-items: center;
  width: 100%;
}
.page-template-page-slideshow .navigation #nav_toggle {
  justify-content: center;
  cursor: pointer;
  position: relative;
  position: relative;
  justify-content: center;
  cursor: pointer;
  position: relative;
  position: relative;
}
.page-template-page-slideshow .navigation #nav_toggle .toggle-icon {
  margin: -2px 5px;
  width: 17px;
  display: inline-block;
  margin: -2px 5px;
  width: 17px;
  display: inline-block;
}
.page-template-page-slideshow .navigation #nav_toggle .toggle-icon:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
}
.page-template-page-slideshow .navigation #nav_toggle .toggle-icon:before {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
}
.page-template-page-slideshow .navigation #nav_toggle .toggle-icon div {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
}
.page-template-page-slideshow .navigation #nav_toggle .close {
  display: none;
  display: none;
}
.page-template-page-slideshow .navigation #current-slide-name {
  padding-left: 9px;
}
.page-template-page-slideshow .navigation #nav_toggle.open .menu {
  display: none;
}
.page-template-page-slideshow .navigation #nav_toggle.open .toggle-icon:before {
  -webkit-transform: translateY(4px) rotate(135deg);
          transform: translateY(4px) rotate(135deg);
}
.page-template-page-slideshow .navigation #nav_toggle.open .toggle-icon:after {
  -webkit-transform: translateY(-4px) rotate(-135deg);
          transform: translateY(-4px) rotate(-135deg);
  transform: translateY(-4px) rotate(-135deg);
}
.page-template-page-slideshow .navigation #nav_toggle.open .toggle-icon div {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.page-template-page-slideshow .navigation #nav_toggle.open .close {
  display: inline;
  display: inline;
}
.page-template-page-slideshow .navigation > div {
  display: flex;
  align-items: center;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.page-template-page-slideshow .navigation .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
}
.page-template-page-slideshow .navigation .progress-bar .inner-bar {
  width: 0%;
  transition: 0.5s;
  height: 4px;
  background-color: #53aacc;
  position: relative;
}
.page-template-page-slideshow .navigation .progress-bar .inner-bar:after {
  width: 7px;
  height: 7px;
  background-color: white;
  border: 1px solid #53aacc;
  position: absolute;
  right: -2px;
  top: -2px;
  content: " ";
  border-radius: 4px;
}
.page-template-page-slideshow .navigation ul#scenes {
  display: none;
  height: 21px;
  display: flex;
  list-style-type: none;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.page-template-page-slideshow .navigation ul#scenes li {
  transition: 0.6s;
  font-size: 0.8rem;
  color: #d8d8d8;
  text-transform: uppercase;
  cursor: pointer;
}
.page-template-page-slideshow .navigation ul#scenes li.active {
  font-size: 1.4rem;
  color: white;
}
.page-template-page-slideshow section {
  height: 49.8vw;
  max-height: 49.8vw;
  width: 100%;
  position: fixed;
  left: 0;
  transition: 1s;
  font-size: 20px;
  background-color: #101010;
  margin-top: 63px;
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  transition: 1s;
  font-size: 20px;
  background-color: #101010;
}
.page-template-page-slideshow section.active {
  z-index: 2;
  opacity: 1;
  z-index: 2;
  opacity: 1;
}
.page-template-page-slideshow .d-flex {
  display: flex;
  display: flex;
}
.page-template-page-slideshow .align-items-center {
  align-items: center;
  align-items: center;
}
.page-template-page-slideshow section.sd-slide {
  z-index: 1;
  transition: 0;
  visibility: hidden;
}
.page-template-page-slideshow section.sd-slide .copy {
  opacity: 0;
  transition: 1s;
}
.page-template-page-slideshow section.sd-slide .background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-template-page-slideshow section.sd-slide .background .gradient-overlay.overlay-left-lg {
  background: linear-gradient(90deg, #101010 0%, #101010 33%, rgba(14, 14, 14, 0.525648) 46%, rgba(1, 1, 1, 0) 73%, transparent 100%);
}
.page-template-page-slideshow section.sd-slide .background .bg-img {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.page-template-page-slideshow section.sd-slide .background .bg-vid {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.page-template-page-slideshow section.sd-slide .background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  height: auto;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.page-template-page-slideshow section.sd-slide .background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  height: auto;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.page-template-page-slideshow section.sd-slide .background.overlay:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 16, 16, 0.3);
}
.page-template-page-slideshow section.sd-slide.active {
  z-index: 3;
  opacity: 1;
  visibility: visible;
}
.page-template-page-slideshow section.sd-slide.active .copy {
  opacity: 1;
  transition: 1s;
  z-index: 4;
  position: relative;
}
.page-template-page-slideshow section.sd-slide.deactivating {
  z-index: 2;
  visibility: visible;
}
.page-template-page-slideshow section.sd-slide.background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-template-page-slideshow section.sd-slide.background.overlay:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 16, 16, 0.3);
}
.page-template-page-slideshow .background .gradient-overlay {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.page-template-page-slideshow img {
  max-width: 100%;
  height: auto;
}
.page-template-page-slideshow video {
  max-width: 100%;
  height: auto;
}
.page-template-page-slideshow .container-fluid {
  padding-left: 95px;
  padding-right: 95px;
}
.page-template-page-slideshow .sd-slide h2 {
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 4.6rem;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.1;
}
.page-template-page-slideshow .sd-slide .col-6 {
  display: flex;
  flex-direction: column;
  width: 600px;
  height: 410px;
  position: absolute;
  top: 12vw;
  z-index: 5;
}
.page-template-page-slideshow .container-fluid.button-container {
  padding-left: 0;
  margin-top: 50px;
}
.page-template-page-slideshow button {
  font-family: "Proxima Nova", sans-serif;
  font-size: 17px;
  font-weight: 400;
}
.page-template-page-slideshow button.ghost {
  background: transparent;
  border: 2px solid #53AACC;
  color: #fff;
  padding: 10px 40px;
  margin-right: 15px;
}
.page-template-page-slideshow button.ghost:hover {
  background-color: #264e5d;
}
.page-template-page-slideshow button.blue {
  color: #fff;
  padding: 12px 40px;
  background: #53b4dc;
  font-weight: 400;
  border: 0;
}
.page-template-page-slideshow button.blue:hover {
  background-color: #264e5d;
}
.page-template-page-slideshow .container-fluid.copy {
  z-index: 5;
  margin-left: 100px;
}
.page-template-page-slideshow h2:before {
  background-image: url(https://www.thesuperdemo.com/wp-content/uploads/2021/04/Asset-1.svg);
  width: 75px;
  height: 88px;
  position: absolute;
  display: block;
  content: " ";
  margin-left: -50px;
  margin-top: -30px;
  background-repeat: no-repeat;
}
.page-template-page-slideshow .nav-drawer {
  position: absolute;
  width: auto;
  height: 49.8vw;
  max-height: 49.8vw;
  top: calc(50vh - 24.9vw + 30px);
  left: 0;
  z-index: 10;
  background-color: #121212;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  transition: 0.4s;
}
.page-template-page-slideshow .nav-drawer ul#scenes {
  padding: 0;
  margin: 0;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene {
  font-size: 1.5rem;
  color: #7d7d7d;
  list-style-type: none;
  padding: 10px 0 10px 16px;
  margin: 0;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene .label {
  display: grid;
  grid-template-columns: 180px 50px 50px;
  cursor: pointer;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene .label .title {
  text-transform: uppercase;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene .label .count {
  text-align: center;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene .label .chevron {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene .label .chevron svg {
  transition: 0.4s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene .label .chevron svg path {
  fill: #7d7d7d;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene ul.clips {
  list-style-type: disc;
  list-style-position: outside;
  padding: 15px 0 24px 20px;
  display: none;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene ul.clips li._clip {
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Proxima Nova", sans-serif;
  padding: 8px 0;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene ul.clips li._clip.active {
  color: #53aacc;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene.active .label {
  color: #53aacc;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene.active .label .chevron svg path {
  fill: #53aacc;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene.header {
  font-size: 1rem;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 20px;
}
.page-template-page-slideshow .nav-drawer ul#scenes li.scene.open .label .chevron svg {
  transition: 0.4s;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.page-template-page-slideshow .nav-drawer.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

body.dealerinspire.page-template-page-slideshow button {
  text-transform: uppercase;
}
body.dealerinspire.page-template-page-slideshow .navigation #nav_toggle:after {
  position: absolute;
  content: " ";
  width: 1px;
  height: 15px;
  top: 2px;
  right: 6px;
  background-color: white;
}

body.carscom.page-template-page-slideshow .sd-slide h2 {
  font-family: "SharpSans", sans-serif;
}
body.carscom.page-template-page-slideshow .sd-slide h2::before {
  display: none;
}
body.carscom.page-template-page-slideshow p {
  font-family: "Inter", sans-serif;
}
body.carscom.page-template-page-slideshow .navigation {
  grid-template-columns: 107px auto;
}
body.carscom.page-template-page-slideshow .navigation #current-slide-name {
  display: none;
}
body.carscom.page-template-page-slideshow .navigation #nav-toggle:after {
  height: 0px;
}
body.carscom.page-template-page-slideshow .navigation .progress-bar .inner-bar {
  background-color: #02BBDB;
}
body.carscom.page-template-page-slideshow button.blue {
  background-color: #02BBDB;
}
body.carscom.page-template-page-slideshow button.ghost {
  border-color: #02BBDB;
}

/*# sourceMappingURL=style.css.map */
body.single-presentation.di_2024 .container-fluid.copy, body.single-presentation.ccmn .container-fluid.copy {
  z-index: 1;
  margin-left: 40px;
}
body.single-presentation.di_2024 #clip-stage .clip.slide .col-6 {
  display: flex;
  flex-direction: column;
  width: 600px;
  height: auto;
  position: relative;
  top: 12vw;
  z-index: 5;
  padding-bottom: 66px;
}

body.single-presentation #clip-stage .clip.slide .callout.purple.purple::before {
  background: transparent !important;
}
body.single-presentation.di_2024 #clip-stage .clip.slide .callout.purple {
  background: #DCEBF0 !important;
}
body.single-presentation.di_2024 #clip-stage .clip.slide .callout {
  margin-top: 30px;
  padding: 15px 20px !important;
  border-radius: 6px !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  color: #0093C5 !important;
  min-height: auto !important;
  font-family: "SharpSans", sans-serif;
  width: fit-content !important;
  
}
body.single-presentation.di_2024 #clip-stage .clip.slide .callout .bignumber {
  font-family: "SharpSans", sans-serif !important;
  font-style: normal;
  font-weight: 700;
  font-size: 62px;
  line-height: 100%;
}

body.single-presentation.ccmn #clip-stage .clip.slide .col-6 {
  display: flex;
  flex-direction: column;
  width: 600px;
  height: auto;
  position: relative;
  top: 0;
  z-index: 5;
  padding-bottom: 66px;
}
body.single-presentation.ccmn #clip-stage .clip .background .gradient-overlay {
  background: linear-gradient(90deg, #2A0A3D, transparent);
  display: block;
  left: 0;
  right: 35% !important;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
}
body.single-presentation.ccmn #clip-stage .clip {
  width: 100%;
  height: 100%;
  transition: 1s;
  font-size: 20px;
  background-color: #2A0A3D;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
}
body.single-presentation.ccmn #clip-stage .clip.slide .callout.purple {
  background: #A74DCE !important;
}
body.single-presentation.ccmn #clip-stage .clip.slide .callout {
  margin-top: 30px;
  padding: 15px 30px;
  border-radius: 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  color: #fff;
  min-height: auto;
  width: fit-content;
}
body.single-presentation.ccmn #clip-stage .clip.slide .callout .bignumber {
  font-family: "SharpSans", sans-serif !important;
  font-style: normal;
  font-weight: 700;
  font-size: 62px;
  line-height: 100%;
}

body.single-presentation.ccmn .slide a.btn.btn-blue {
  background: #C09BEC;
}
body.single-presentation.ccmn .slide a.btn {
  font-weight: 700;
  letter-spacing: 0;
  font-size: 18px;
  background: #fff;
  border: 0;
  color: #2A0A3D;
  padding: 12px 50px;
  margin: 10px 0;
  line-height: 18px;
  display: inline-block;
  min-width: auto;
  text-align: center;
}

.slide-navigation {
  position: absolute;
  bottom: 0;
}
body.single-presentation #clip-stage .clip.slide .disclaimer {
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 150%;
  margin-top: 150px !important;
}
body.single-presentation #clip-stage .clip.slide .callout .bignumber {
  font-family: "Sharp Sans Display No1";
  font-style: normal;
  font-weight: 700;
  font-size: 40px !important;
  line-height: 100%;
}
body.single-presentation #clip-stage .clip.slide p {
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px !important;
  font-style: normal;
  width: 75%;
}
body.single-presentation #clip-stage .clip.slide .disclaimer {
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 150%;
  margin-top: 50px;
  position: absolute;
  bottom: -91px;
}
.slide-navigation, .slide-navigation-last {
  position: absolute;
  bottom: -5%;
}
.slide-navigation-last .buttons-left .blue.next-button, .slide-navigation-last .buttons-left .ghost.back-button {
  display: inline-flex !important;
}
a.ghost.next-button {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 40px;
  border-radius: 6px;
  text-transform: capitalize;
  display: inline-block !important;
  font-family: "Proxima Nova", sans-serif;
  font-size: 17px;
}
a.ghost.next-button:hover {
  background: #264e5d;
}
a.blue.back-button {
  color: #fff;
  padding: 12px 40px;
  margin-right: 15px;
  background: #0093C5;
  font-weight: 400;
  border: 0;
  display: inline-block !important;
  text-transform: none;
  font-family: "Proxima Nova", sans-serif;
  font-size: 17px;
  border-radius: 6px;
}
.smallwords {
  font-family: 'Proxima Nova' !important;
  font-size: 16px;
  font-weight: normal;
}
body.single-presentation #clip-stage .clip .background .gradient-overlay {
  background: linear-gradient(90deg, #101010, transparent);
  display: block;
  left: 0;
  right: 75% !important;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
}