html {
  font-size: 16px;
  --header-height: 86px;
  scroll-behavior: smooth;
}

body {
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
  font-weight: 300;
  scroll-behavior: smooth;
}

.main-header {
  width: 100%;
  height: var(--header-height);
  padding-left: 1rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-size: 1rem;
  position: fixed;
  top: 0;
  z-index: 3;
}

.main-header div:first-child {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-header div:first-child h1 {
  font-size: 0.9rem;
  letter-spacing: 0.6px;
  margin: 0;
  padding: 0;
}

.main-header nav {
  font-size: 1.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
}

.main-header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.main-header nav ul li {
  float: left;
  text-align: center;
  padding: 1rem;
}

.main-header nav ul li a,
.main-header nav ul li a:hover {
  color: #000;
  font-weight: 300;
  text-decoration: none;
}

.main-header nav div:last-child {
  width: 10px;
}

@media screen and (min-width: 768px) {
  .main-header nav {
    display: block;
  }
  .main-header nav ul li {
    padding: 1rem 3rem;
  }
  .main-header div:last-child {
    width: 10px;
  }
}

@media screen and (min-width: 768px) and (min-width: 991px) {
  .main-header div:last-child {
    width: 320px;
  }
}

.logo {
  margin-right: 1rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 4.25rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0.625rem;
}

h3 {
  text-align: center;
  font-size: 1.5rem;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #3b6eff;
  text-transform: uppercase;
}

h4 {
  font-size: 2.125rem;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  text-transform: uppercase;
}

p {
  font-size: 1.25rem;
  line-height: 1.5;
}

hr {
  width: 40px;
  height: 2px;
}

#content {
  scroll-behavior: smooth;
}

.mhl1 {
  position: relative;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-top: var(--header-height);
}

.mhl1 .bg {
  background: url(images/lifestyle-sonic-carrier-mobile.jpg) no-repeat;
  background-size: cover;
  padding-bottom: calc(620 / 828 * 100%);
  width: 100%;
  height: 100%;
}

.mhl1 .text {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
}

.mhl1 .text hr {
  color: #fff;
  border-top: 2px solid #fff;
}

@media screen and (min-width: 1200px) {
  .mhl1 {
    width: 100%;
  }
  .mhl1::before {
    content: "";
    width: 1px;
    margin-left: -1px;
    float: left;
    height: 0;
    padding-bottom: calc(743 / 1920 * 100%);
  }
  .mhl1::after {
    content: "";
    display: table;
    clear: both;
  }
  .mhl1 .bg {
    background: url(images/lifestyle-sonic-carrier.jpg) no-repeat;
    background-position: right;
    background-size: cover;
    position: absolute;
    top: 0;
    padding-bottom: calc(743 / 1920 * 100%);
  }
  .mhl1 .text {
    position: absolute;
    width: 70%;
    bottom: 0;
    left: 15%;
    right: 15%;
    z-index: 2;
  }
}

.mhl2 {
  background: #ebeff8;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.mhl2 hr {
  display: none;
  margin-left: 0;
  color: #000;
  border-top: 2px solid #000;
}

.mhl2 .left {
  --boxsize: 100%;
  width: var(--boxsize);
  background: url(images/lifestyle-x7-mobile.jpg) no-repeat;
  background-size: cover;
  padding-top: calc(620 / 828 * var(--boxsize));
}

.mhl2 .right {
  width: 100%;
  text-align: left;
  background: #fff;
  padding: 2rem;
}

@media screen and (min-width: 960px) {
  .mhl2 {
    padding: 2rem 0 2rem 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mhl2 hr {
    display: block;
  }
  .mhl2 .left {
    --boxsize: 70%;
    background: url(images/lifestyle-x7.jpg) no-repeat;
    background-position: bottom center;
    padding-top: calc(743 / 1282 * var(--boxsize));
  }
}

@media screen and (min-width: 960px) and (min-width: 1920px) {
  .mhl2 .left {
    background-position: center;
  }
}

@media screen and (min-width: 960px) {
  .mhl2 .right {
    width: 50%;
    margin-left: -10%;
    padding: 2rem 4.5%;
  }
}

.mhl3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mhl3 .left {
  background: #000;
  color: #fff;
  width: 100%;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mhl3 .left hr {
  margin-left: 0;
  display: none;
}

.mhl3 .right {
  --boxsize: 100%;
  width: var(--boxsize);
  padding-top: calc(620 / 828 * var(--boxsize));
  background: url(images/lifestyle-ae9-mobile.jpg) no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .mhl3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mhl3 .left {
    width: 50%;
    padding: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mhl3 .left hr {
    display: block;
  }
  .mhl3 .right {
    --boxsize: 50%;
    width: var(--boxsize);
    background: url(images/lifestyle-ae9.jpg) no-repeat;
    background-size: cover;
    padding-top: calc(743 / 1237 * var(--boxsize));
  }
}

#products {
  background: #ebeff8;
  padding-bottom: 4rem;
}

#products header {
  background: #21384d;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  display: block;
  margin-bottom: 2rem;
}

#products header h2 {
  margin-top: 0.625rem;
}

#products .product-cell {
  padding: 2.5rem 1rem 0 1rem;
  text-align: center;
}

@media screen and (min-width: 480px) {
  #products .product-cell {
    padding: 2.5rem 2.5rem 0 2.5rem;
  }
}

#products .product-cell img {
  margin-bottom: 2rem;
}

#products .product-cell h3,
#products .product-cell h4 {
  margin-bottom: 2rem;
}

#products p {
  font-size: 1.1rem;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  #products::before {
    content: "";
    display: block;
    height: var(--header-height);
    margin-top: calc(0 - var(--header-height));
    visibility: hidden;
  }
}

.button {
  display: block;
  margin: 2rem auto 0 auto;
  padding: 0 1.5rem;
  height: 3.75rem;
  line-height: 3.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  width: 160px;
  margin-top: 2rem;
}

@media screen and (min-width: 480px) {
  .button {
    display: inline-block;
    margin-top: 2rem;
  }
}

.button:hover, .button:active, .button:focus {
  text-decoration: none;
}

@media screen and (min-width: 480px) {
  .button + .button {
    margin-left: 1.5rem;
  }
}

.btn-learn-more {
  background-color: #fff;
  color: #000;
  outline: 2px solid #000;
}

.btn-learn-more:hover, .btn-learn-more:active, .btn-learn-more:focus {
  outline: 2px solid #000;
  background-color: #efefef;
  color: #000;
}

.btn-buy-now {
  background-color: #3b6eff;
  color: #fff;
  outline: 2px solid #3b6eff;
}

.btn-buy-now:hover, .btn-buy-now:active, .btn-buy-now:focus {
  outline: 2px solid #3b6eff;
  -webkit-filter: contrast(100);
          filter: contrast(100);
  color: #fff;
}

footer {
  height: 86px;
  background-color: #21384d;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}
/*# sourceMappingURL=styles.css.map */