* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Nunito Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito Sans", sans-serif;
}

#vsl-section {
	width: 100% !important;
	height: auto;
	margin: 0 !important;
	margin-top: -9px !important;
	padding: 20px 0;
	background-color: white;
	/* background-image: linear-gradient(to top, white, var(--secondary-color-dark)); */
}

#vsl-container {
	max-width: 950px;
	margin: 0 auto;
	padding: 5px 12px 15px;
	text-align: center;
}

.vsl-container h1 {
	font-size: 30px;
	text-align: left;
}

.video_vturb {
	padding-top: 15px;
	margin: 0 auto;
	max-width: 800px;
}

@media (max-width: 996px) {
	#vsl-section h1 {
		font-size: 23px;
	}
}

.video_vturb p {
	font-size: 0.9rem !important;
	color: var(--contrast-color) !important;
}

/* CTA Headline */
.cta-headline {
  position: relative;
  background-color: var(--primary-color-dark);
  z-index: 1;
}

.cta-headline h2 {
  color: white;
}

.cta-headline h2 span {
  color: var(--third-color);
}

@media (max-width: 599px) {
  .cta-headline h2 {
    font-size: 1.2em;
  }
}

.cta-headline .timer {
  font-size: 2.2em;
  line-height: 1;
  font-weight: 800;
  color: white;
  margin: 0.25em auto 0;
}
@media (max-width: 599px) {
  .cta-headline .timer {
    font-size: 16px !important;
  }
}



/* CTA Status */
ul.strip3-list {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  margin: 0;
}

.strip3-list .hourglass {
  height: 24px;
  width: 24px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(93%) saturate(7483%)
    hue-rotate(0deg) brightness(101%) contrast(107%);
  animation: rotateHourglass 4s ease-in-out infinite;
}

.strip3-list .clock {
  animation: fade 1s normal infinite;
}

.spot-icon {
  margin-top: -6px;
}
@media (max-width: 991px) {
  ul.strip3-list {
    padding-left: 0;
  }
}
ul.strip3-list li {
  padding: 0 22px;
  position: relative;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  text-align: center;
  list-style: none;
}
@media (max-width: 991px) {
  ul.strip3-list li {
    font-size: 14px;
    line-height: 20px;
  }
  ul.strip3-list li::after {
    display: none;
  }
}

@media (max-width: 991px) {
  ul.strip3-list li {
    margin: 5px 0;
  }
}
ul.strip3-list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  height: 18px;
  background: #e6dede;
  width: 2px;
}
ul.strip3-list li:last-child::after {
  display: none;
}
ul.strip3-list li:nth-child(1):before {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 4px 0;
  width: 14px;
  height: 14px;
  background: #11b142;
  border-radius: 50%;
  content: "";
  animation: pulseFade 1s ease-in-out infinite;
}

/* Hourglass Animation */
@keyframes rotateHourglass {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(360deg);
  }
  80% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* END Hourglass Animation */

/* Pulse Fade Animation */
@keyframes pulseFade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* END Pulse Fade Animation */
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
/* Fade Animation */

/* END Fade Animation */
/* END CTA Status */