@import url('https://fonts.googleapis.com/css?family=Montserrat:500,600,800&display=swap');

@media (min-width: 768px) {
  .hide-on-desktop {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 300px;
}

/* HEADER */
.header {
  position: -webkit-sticky;
  position: sticky;
  min-width: 300px;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  header.header .col-xs-2 {
    width: 16.66666667%;
  }
  header.header .col-xs-3 {
    width: 25%;
  }
  header.header .col-xs-4 {
    width: 33.33333333%;
  }
  header.header .col-xs-5 {
    width: 41.66666667%;
  }
}
@media (min-width: 768px) {
  header.header .col-sm-2 {
    width: 16.66666667%;
  }
  header.header .col-sm-6 {
    width: 50%;
  }
}
/* HEADER */

/* CAROUSEL */
.product-carousel,
.product-carousel__control {
  display: flex;
}
.product-carousel,
.product-carousel__control {
  flex-direction: row;
  align-items: center;
}
.product-carousel {
  margin-left: -15px;
  margin-right: -15px;
  background-image: url('/img/carousel-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
.product-carousel,
.product-carousel__control {
  justify-content: center;
}
.product-carousel__control.left,
.product-carousel__control.right,
.product-carousel__control {
  font-size: 25px;
  background: none;
}
.product-carousel__inner {
  min-height: 290px;
}
.product-carousel__img {
  display: block;
  margin: auto;
}
.product-carousel ~ .product-3d-view {
  float: right;
  margin-top: -100px;
}
/* CAROUSEL */

/* PRODUCT */
.product-options,
.product-title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.product-title {
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
  color: inherit;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  margin: 10px 0;
}
.product-title span {
  font-weight: 900;
  margin-left: 10px;
  margin-right: 10px;
}
.product-title .product-actions {
  display: flex;
}
.product-title .product-actions .button {
  margin-top: 5px;
  margin-bottom: 5px;
  height: 34px;
  font-size: 14px;
  padding-left: 3px;
  padding-right: 3px;
}
.product-details {
  padding-top: 25px;
}
.product-link {
  display: inline-flex;
  flex-direction: row;
  color: #ff3b30;
}
.product-link:hover {
  color: #ff3b30;
}
.product-link:after {
  content: '';
  display: block;
  width: 5px;
  margin-left: 5px;
  background-image: url('/img/landing/chevron.png');
  background-position: center;
  background-repeat: no-repeat;
}
.product-3d-view {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'proxima_nova_rgbold', Arial, Helvetica, sans-serif;
  text-align: center;
  color: black;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 550;
  z-index: 1;
}
.product-3d-view.review {
  background: none;
}
.product-3d-view img {
  display: block;
  margin: 0 auto;;
}
.product-colors,
.product-options {
  list-style: none;
  padding: 0;
}
.product-colors {
  margin: 10px 0;
  font-size: 18px;
}
.product-colors a {
  color: black;
}
.product-options {
  margin: 25px 0;
}
.product-options__icon {
  margin-right: 10px;
}
.product-options li {
  display: flex;
  flex-direction: row;
  margin-right: 10px;
}
.product-options li:last-of-type {
  margin-right: 0;
}
@media (min-width: 768px) {
  .section--carousel {
    background-image: url('/img/carousel-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 15px;
    padding-bottom: 25px;
  }
  .product-carousel {
    background: none;
  }
  .section--carousel .product-3d-view {
    float: left;
    margin-top: -77px;
  }
}
@media (min-width: 992px) {}
/* PRODUCT */

/* PRODUCT CARD */
.product-card {
  display: flex;
  flex-direction: column;
  font-family: 'proxima_nova_rgbold', sans-serif;
  text-align: center;
  color: #000000;
  font-size: 14px;
  padding: 0;
}
.product-card:hover {
  color: #ff3b30;
}
.product-card:hover img {
  transform: scale(1.01);
}
.product-card__title {
  font-family: 'proxima_nova_ltlight', sans-serif;
  font-size: 18px;
}
.product-card__img {
  margin: 0 0 15px;
  padding-top: 25px;
  padding-bottom: 15px;
  background-color: #3cb292;
}
.product-card__img,
.product-card__img img {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.product-card__link {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  font-size: 18px;
  color: #ff3b30;
}
.product-card__link:hover {
  color: #ff3b30;
}
.product-card__link:after {
  content: '';
  display: block;
  width: 5px;
  margin-left: 5px;
  background-image: url('/img/landing/chevron.png');
  background-position: center;
  background-repeat: no-repeat;
}
.product-card img {
  display: block;
  max-width: 70%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .product-card {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {}
/* PRODUCT CARD */

/* UI */
.button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 100px;
  height: 38px;
  font-family: 'proxima_nova_rgregular', sans-serif;
  font-size: 15px;
  line-height: 1;
  margin-right: 15px;
  margin-bottom: 15px;
  border-radius: 38px;
  word-break: break-all;
  border: 1px solid transparent;
  transition: all .15s ease-in-out;
  box-sizing: border-box;
}
.button * {
  pointer-events: none;
}
.button:last-of-type,
.button:last-child {
  margin-right: 0;
}
.button--primary {
  color: white;
  background-color: #ee4b49;
}
.button--primary:hover,
.button--success:hover {
  opacity: 0.95;
}
.button--primary:active {
  box-shadow: 0 0 1px 1px #ee4b49;
}
.button--success:active {
  box-shadow: 0 0 0 1px #439c62;
}
.button--success {
  color: white;
  background-color: #439c62;
}
.form-radio {
  position: absolute;
  opacity: 0;
}
.form-radio + label {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  font-weight: normal;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
}
.form-radio + label:before {
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid #777777;
}
.form-radio:checked + label:before {
  background-image: url('/img/icons/icon-checked.png');
  background-repeat: no-repeat;
  background-position: center;
}
.form-radio + label .icon-circle-color {
  margin-left: 4px;
  margin-right: 4px;
}
.icon-circle-color.color-checked {
  background-image: url('/img/icons/icon-checked.png');
  background-repeat: no-repeat;
  background-position: center;
}
.icon-circle-color {
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1.2px solid #777777;
  background-color: #ffffff;
}
.icon-circle-color--0 {
  border-color: #777777;
  background-color: #dfd1c7;
}
.icon-circle-color--1 {
  border-color: #943e2c;
  background-color: #943e2c;
}
.icon-circle-color--2 {
  border-color: #d9d9d9;
  background-color: #d9d9d9;
}
.icon-circle-color--3 {
  border-color: #795546;
  background-color: #795546;
}
.delimiter {
  height: 2px;
  border: none;
  border-radius: 2px;
  background-color: #cccccc;
}
.list-dotted li {
  display: flex;
  flex-direction: row;
  margin-top: 7px;
  margin-bottom: 7px;
}
.list-dotted li:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 7px;
  margin-right: 10px;
  background-color: #489f62;
}
/* UI */

/* SECTIONS */
.section {
  font-size: 16px;
  font-family: 'proxima_nova_rgregular', sans-serif;
  line-height: 1.5625;
  color: #000000;
}
.section__img {
  display: block;
  max-width: 100%;
}
.section__title,
.section__lead {
  margin-bottom: 15px;
}
.section__title {
  font-family: 'proxima_nova_rgbold', sans-serif;
  font-size: 35px;
  margin-bottom: 15px;
}
.section__lead {
  font-size: 18px;
}
.section p {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .section {
    font-size: 17px;
  }
}

/* section carousel */
.section--carousel {
  padding-bottom: 25px;
}

/* section sonik */
.section--sonik {
  background-color: #3a69b2;
  color: #ffffff;
  padding-top: 50px;
  margin-bottom: 90px;
}
.section--sonik .section__img:last-of-type {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -55px;
}
@media (min-width: 768px) {
  .section--sonik {
    padding-bottom: 25px;
  }
  .section--sonik .section__img:first-of-type {
    max-width: calc(100% + 60px);
    margin: 33% -15px -25px -45px;
  }
  .section--sonik .section__img:last-of-type {
    max-width: 90%;
    margin-bottom: -70px;
  }
}
@media (min-width: 992px) {
  .section--sonik .section__img:first-of-type {
    margin-top: 0;
  }
}

/* section sound */
.section--sonik-sound {
  background-image: url('/img/landing/section-sound-bg.jpg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  background-color: #3db595;
  padding-top: 50px;
  color: #ffffff;
}
.section--sonik-sound .section__img {
  opacity: 0;
}
@media (min-width: 768px) {
  .section--sonik-sound {
    background: #ffffff;
    padding-top: 0;
    padding-bottom: 50px;
    color: #000000;
  }
  .section--sonik-sound p {
    margin-bottom: 15px;
  }
  .section--sonik-sound .section__img,
  .section--sonik-sound__block {
    height: 460px;
    overflow: auto;
  }
  .section--sonik-sound .section__img {
    background-color: #3db595;
    object-fit: cover;
    opacity: 1;
  }
  .section--sonik-sound__block {
    background-color: #d7dae1;
    padding: 30px;
    /* margin-right: -15px; */
  }
  .section--sonik-sound__block p:last-of-type {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .section--sonik-sound__block {
    padding: 45px 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* section sonik mp3 */
.section--sonik-mp3 {
  padding-bottom: 50px;
  background: rgb(215,218,225);
  background: linear-gradient(180deg, rgba(215,218,225,1) 0%, #ffffff 100%);
}
.section--sonik-mp3 .section__img {
  margin-top: -30%;
  z-index: 1;
}
.section--sonik-mp3 .section__img--mp3 {
  margin: -15% -15px 15px;
  max-width: calc(100% + 30px);
}
@media (min-width: 768px) {
  .section--sonik-mp3 {
    position: relative;
    padding-top: 50px;
    padding-bottom: 65px;
  }
  .section--sonik-mp3:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 200px;
    margin-top: -100px;
    background-image: url('/img/landing/section-mp3-spiral.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    z-index: 0;
  }
  .section--sonik-mp3 .section__img {
    max-width: calc(100% + 30px);
    margin: 30px -15px 0;
  }
  .section--sonik-mp3 .section__img-wrapper {
    position: relative;
    margin-top: -30px;
  }
  .section--sonik-mp3 .section__img--mp3 {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .section--sonik-mp3 .section__img {
    margin-top: 0;
  }
  .section--sonik-mp3:after {
    height: 277px;
    margin-top: -200px;
  }
}

/* section sonik interface */
.section--sonik-interface {
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: 'proxima_nova_rgregular', sans-serif;
  background-color: #fff;
}
.section--sonik-interface .section__img {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .section--sonik-interface {
    padding-top: 100px;
  }
  .section--sonik-interface .section__title {
    margin-bottom: 25px;
  }
}
@media (min-width: 992px) {}

/* section sonik ips */
.section--sonik-ips {
  background-color: #dadee5;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* section sonik ahd */
.section--sonik-ahd {
  background-color: #e77985;
  padding-top: 50px;
  margin-bottom: 90px;
  color: #ffffff;
}
.section--sonik-ahd .section__img {
  margin: 30px auto -65px;
  max-width: 80%;
}
@media (min-width: 768px) {
  .section--sonik-ahd {
    background: #ffffff;
    padding-bottom: 0px;
    margin-bottom: 0;
    color: #000000;
  }
  .section--sonik-ahd p {
    margin-bottom: 15px;
  }
  .section--sonik-ahd__block {
    background-color: #d7dae1;
    padding: 40px 30px;
    height: 450px;
  }
  .section--sonik-ahd__block-img {
    background-color: #f07c86;
  }
  .section--sonik-ahd .section__img {
    max-width: 100%;
    margin: 30% auto;
  }
}
@media (min-width: 992px) {
  .section--sonik-ahd .section__img {
    margin: 10% auto;
  }
}

/* section sonik security */
.section--sonik-security {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section--sonik-security img {
  max-width: calc(100% + 30px);
  margin: 15px -15px;
}
.section--sonik-security .product-link {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .section--sonik-security {
    font-size: 18px;
    text-align: center;
  }
  .section--sonik-security .section__title {
    margin-bottom: 25px;
  }
  .section--sonik-security img {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* section sonik panels */
.section--sonik-panels {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .section--sonik-panels .section__title {
    margin-bottom: 25px;
  }
}

/* section sonik questions */
.section--sonik-questions {
  padding-bottom: 90px;
}
.section--sonik-questions .section__title {
  text-align: center;
  margin-bottom: 25px;
}
.section--sonik-questions img {
  margin: 0 auto;
}
.section--sonik-questions .button {
  min-width: 150px;
  height: 50px;
  margin-top: 40%;
  margin-left: 15px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .section--sonik-questions .section__title {
    text-align: left;
    margin-top: 25px;
    font-size: 50px;
  }
  .section--sonik-questions .button {
    margin-top: 25px;
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .section--sonik-questions img {
    max-width: 435px;
  }
}

/* SECTIONS */

/* FEATURES */
.features h3,
.features .list-dotted {
  font-family: 'proxima_nova_rgbold', sans-serif;
  line-height: 1.5625;
}
.features h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.features .list-dotted {
  font-size: 15px;
}
.features-details {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.5625;
  color: #545454;
}
.features-details h4 {
  font-family: 'proxima_nova_rgbold', sans-serif;
  font-size: 13px;
  color: #000000;
  margin-bottom: 10px;
  text-transform: uppercase;
}
/* FEATURES */
