body {
  font-family: "Inter", sans-serif;
  line-height: 1.25rem;
  margin: 0px;
  padding: 0px;
}
a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}
/* FONT SETTINGS */
h1 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  margin: 0;
}

h2 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: "Inter";
  font-weight: 400;
  margin: 0;
}
h3 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #f0f0f0;
  font-family: "Inter";
  font-weight: 400;

  margin: 0;
}
h4 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #f0f0f0;
  font-family: "Inter";
  font-weight: 500;

  margin: 0;
}
h5 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #f0f0f0;
  font-family: "Inter";
  font-weight: normal;

  margin: 0;
}

p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #f0f0f0;
  font-family: "Inter";
  font-weight: normal;
}
p#Inter {
  color: #f0f0f0;
  font-family: "Inter";
  text-decoration: underline;
  text-underline-position: under;
}

blockquote {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  margin: 0;
}

/* END FONT SETTINGS */
/* FONT SIZES FOR THE LANDING PAGE FOR DESKTOP + MOBILE */

h1 {
  font-size: 4.375rem;
  letter-spacing: -0.188rem;
  line-height: 5.313rem;
}
h2 {
  font-size: 1.65rem;
  letter-spacing: -0.063rem;
}
h3 {
  font-size: 1.625rem;
  line-height: 2.063rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1rem;
}
li {
  font-size: 1.25rem;
}
p {
  font-size: 1.625rem;
  line-height: 2.063rem;
  margin-bottom: 0;
}
blockquote {
  font-size: 2.188rem;
  line-height: 2.688rem;
}

button {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin: 0;
  font-size: 1.25rem;
  line-height: 2.688rem;
}

.device-text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.563rem;
}
.sub-title-text {
  font-weight: 400;
  line-height: 1.563rem;
}
.highlight-cta-text {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem !important;
    letter-spacing: -0.063rem !important;
    line-height: 2.813rem !important;
  }
  h2 {
    font-size: 1.563rem !important;
    letter-spacing: -0.057rem !important;
    line-height: 1.875rem !important;
  }
  h3 {
    font-size: 1.25rem !important;
  }
  h4 {
    font-size: 1.25rem !important;
  }
  h5 {
    font-size: 1rem !important;
  }
  li {
    font-size: 0.875rem !important;
  }
  p {
    font-size: 1rem !important;
    line-height: 1.375rem !important;
    letter-spacing: -0.036rem !important;
  }
  blockquote {
    font-size: 1.25rem;
    line-height: 1.563rem;
  }
  .device-text {
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    line-height: 1.125rem !important;
  }
  .sub-title-text {
    font-weight: 400;
    line-height: 1.563rem;
  }
  .highlight-cta-text {
    font-size: 0.875rem !important;
  }
}
/* END FONT SIZES FOR THE LANDING PAGE FOR DESKTOP + MOBILE */

.text-reason-yellow {
  color: #f9cb61;
}
.text-reason-white {
  color: #f0f0f0;
}
.reason-button {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  padding-left: 34px;
  padding-right: 34px;
  background-color: transparent;
  border-color: #f0f0f0;
  color: #f0f0f0;
  border: 1px solid #f0f0f0;
}
.reason-logo {
  width: 170px;
  height: auto;
}
@media (max-width: 768px) {
  .reason-logo {
    width: 120px;
    height: auto;
  }
  .reason-button {
    font-size: 1rem;
    padding-left: 26px;
    padding-right: 26px;
  }
}

.reason-button:hover,
.reason-button:active {
  border-color: #f9cb61;
  color: #f9cb61;
  background-color: transparent;
}
.reason-button:focus {
  outline-color: #f9cb61;
}
.text-reason-gray {
  color: #f0f0f0;
  opacity: 0.8;
}

.extra-fields {
  list-style-type: none;
}

.main-bg-color {
  background-color: #232323;
}
.secondary-bg-color {
  background-color: #2a2a2a;
}
.landing-wrapper {
  background-color: #232323;
}

.page-wrap .grid-layout .container {
  grid-gap: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* END OVERRIDING BOOTSTRAP BUTTON */

/* OVERRIDING BOOTSTRAP CONTAINER */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px !important;
  padding-left: 20px !important;
}
@media (min-width: 576px) {
  .container {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1096px;
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}
/* END OVERRIDING BOOTSTRAP CONTAINER */

.container-large {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1360px) {
  .container-large {
    width: 1350px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.heading-section-0 {
  margin-bottom: 34px;
}

@media (max-width: 767px) {
  .heading-section-0 {
    margin-bottom: 27px;
  }
}

.section-1-body-wrapper {
  max-width: 1000px;
}

/* ARROWS FOR SECTION2 */
.prev_arrow {
  display: block;
  left: -110px;
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  opacity: 0.8;
}
.prev_arrow:hover {
  opacity: 1;
}
.next_arrow {
  display: block;
  position: absolute;
  cursor: pointer;
  right: -93px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  opacity: 0.8;
}
.next_arrow:hover {
  opacity: 1;
}

/* tab for device cards */
.tab-content {
  padding-top: 1rem;
}

/* Override slick carousel settings */
.slick-track {
  margin: 0 auto;
}

/* FIX THE BLUE LINE IN SAFARI */
.slick-slide {
  outline: none;
}

.slider-section-1 ul {
  list-style-type: none;
}
.slider-section-1 {
  margin: 0 -10px;
}
.slider-section-1 .slick-list .slick-track .slider-item {
  margin: 0 10px;
}
/*Active button on slideshow*/
.slider-section-1 .slick-active p {
  color: white;
  text-decoration: underline;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

/* THE NAV BAR IN SECTION 1 */
.slider-dots li {
  border-bottom: 1px solid transparent;
  color: #9d9e9f;
  display: inline-block;
  list-style-type: none;
  margin: 0 2rem 0.7rem 0;
  padding: 0 0 0.4rem 0;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#section1 .slider-dots .slick-active {
  border-bottom: 1px solid white !important;
  color: #dbdbdb !important;
}
.slider-dots {
  padding-inline-start: 0px;
}
li:hover {
  cursor: pointer;
}

/* Fixes the height adaption on the Devices carousel */
.slick-slide {
  height: 0px !important;
}
.slick-slide.slick-active {
  height: 100% !important;
}

/* Fix image width always fills the carousel Devices */
.device-carousel-image .slick-slide img {
  width: 100% !important;
}

.slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

.slider {
  opacity: 1;
  -webkit-transition: opacity 2000s ease-in-out;
  -moz-transition: opacity 2000s ease-in-out;
  -ms-transition: opacity 2000s ease-in-out;
  -o-transition: opacity 2000s ease-in-out;
}

@media (max-width: 767px) {
  .nav {
    display: block;
  }
  .nav li {
    padding: 3px;
    margin-bottom: 3px;
  }
}

/* DEVICES */
.section-2-card-rounded {
  /* fill parent */
  background-color: #303030;
  border-radius: 5px; /* 5px rounded corners */
}
.device-shadow {
  filter: drop-shadow(8px 8px 18px rgba(0, 0, 0, 0.5));
}
/* Products on the landingpage */
.device-button-text {
  opacity: 0.5;
}
.active .device-button-text {
  opacity: 1;
}

/* BADGE FOR THE DEVICES */
[badge]:after {
  opacity: 0.5;
  background-color: #f0f0f0;
  border-radius: 30px;
  color: #232323;
  content: attr(badge);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-top: -3px;
  margin-left: 7px;
  padding: 0.25em 0.6em;
  position: absolute;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  width: auto;
}
.active [badge]:after {
  opacity: 1;
}

[badge^="-"]:after,
[badge="0"]:after,
[badge=""]:after {
  display: none;
}

@media (max-width: 768px) {
  [badge]:after {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
  }
}

#devices_landing_page_nav {
  padding: 0;
}

#devices_landing_page_nav li .nav-link {
  padding: 0 0 0 0;
}
.device-image-wrapper {
  min-height: 270px;
}
.device-excerpt {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  height: 100px; /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 20px;
  line-height: 25px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .device-excerpt {
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    height: 14px * 18px * 4; /* Fallback for non-webkit */
    margin: 0 auto;
    font-size: 14px;
    line-height: 18px;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.device-CTA {
  border-bottom: 1px solid #f9cb61;
  display: inline-block;
  list-style-type: none;
  margin: 0 1rem 0.7rem 0;
  padding: 4px 0 0rem 0;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
/* END DEVICES */

/* AUDIO PLAYER */
.audio-player {
  --player-button-width: 3vh;

  --space: 0.5em;
  left: 0;

  position: relative;
  top: 0;
}

.audio-player button:focus {
  outline: 0;
}

.player-button {
  width: auto;
  height: auto;
  fill: #f0f0f0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.play-shadow {
  -webkit-filter: drop-shadow(4px 8px 8px rgba(0, 0, 0, 0.6));
  filter: drop-shadow(4px 8px 8px rgb(0 0 0 / 0.6));
}

.timeline {
  -webkit-appearance: none;
  background-color: transparent;
  background-image: linear-gradient(#f0f0f0, #f0f0f0);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  bottom: 0;
  height: 0.6em;
  margin: 0px;
  position: absolute;
  width: 100%;
}
.timeline-no-show {
  height: 0em;
}

.timeline::-webkit-slider-thumb {
  -webkit-appearance: none;
  border-radius: 50%;
  cursor: pointer;
  height: 1em;
  opacity: 0;
  width: 1em;
}

.timeline::-moz-range-thumb {
  -webkit-appearance: none;
  border-radius: 50%;
  cursor: pointer;
  height: 1em;
  opacity: 0;
  width: 1em;
}

.timeline::-ms-thumb {
  -webkit-appearance: none;
  border-radius: 50%;
  cursor: pointer;
  height: 1em;
  opacity: 0;
  width: 1em;
}

.timeline::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

.timeline::-moz-range-track {
  -webkit-appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

.timeline::-ms-track {
  -webkit-appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
}
/* FIX ROUNDED CORNERS ON IOS */
input {
  border-radius: 0;
}

input[type="search"] {
  -webkit-appearance: none;
}
/* END AUDIO PLAYER */

/* SOUNDPACKS */

.soundpack:last-child {
  margin-bottom: 0 !important;
}

.soundpack-shadow {
  box-shadow: 1px 2px 2px hsl(0deg 0% 9% / 0.2),
    2px 4px 4px hsl(0deg 0% 9% / 0.2), 4px 8px 8px hsl(0deg 0% 9% / 0.2),
    8px 16px 16px hsl(0deg 0% 9% / 0.2);
}

/* divider for artist quote */
.border-primary {
  border-color: #f9cb61 !important;
}

@media (min-width: 992px) {
  .border-left {
    border: 0px solid !important;
  }
}
/* Section 5 cards */
.reason-card-rounded {
  background-color: #303030;
  border-radius: 5px;
  color: white;
  min-height: 334px;
}
.reason-card-wrapper-rounded {
  width: 100%;
}

.reason-cards:last-child {
  padding-bottom: 0 !important;
}

.infoimage{
  width:100%;
  height: auto;
}