body {
  background-color: #0e0f10;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  body {
    padding-top: calc(64px + 1.5rem);
  }
}

body.overflow {
  overflow: hidden;
}

a:hover {
  color: #ffffff;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 400;
}

h3 {
  text-transform: uppercase;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
}

.text-19 {
  font-size: 19px;
  font-size: 1.1875rem;
}

.content--62 {
  width: 62%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .content--62 {
    width: 100%;
    padding: 0 1.5rem;
  }
}

header {
  position: sticky;
  top: 0;
  background-color: #0e0f10;
  padding: 2rem 0 5rem;
}

@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0e0f10;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 0;
    min-height: 64px;
  }

  header.open {
    height: 100%;
    overflow: auto;
  }
}

.btn-mobile-nav {
  display: none;
  position: absolute;
  top: 0.25rem;
  right: 1rem;
  width: 2rem;
  height: 1.5rem;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  align-items: center;
  cursor: pointer;
  transition: border 0.5s ease-in-out;
}

.btn-mobile-nav:before,
.btn-mobile-nav:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transition: transform 0.5s ease-in-out;
}

.btn-mobile-nav--close {
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.btn-mobile-nav--close:before {
  transform: rotate(45deg);
}

.btn-mobile-nav--close:after {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .btn-mobile-nav {
    display: flex;
  }
}

.navbar {
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }
}

.navbar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

@media (max-width: 768px) {
  .navbar__list {
    display: none;
  }

  header.open .navbar__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 1.5rem;
  }
}

.navbar__item {
  position: relative;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .navbar__item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

.navbar__item--ico {
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .navbar__item--ico {
    width: 33%;
    align-items: center;
    margin-top: 2rem;
  }
}

.navbar__link {
  display: flex;
  padding: 0.5rem 1.375rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: 9px;
  transition: all 0.5s ease-in-out;
}

.navbar__link--active,
.navbar__link:hover {
  background-color: #ffffff;
  color: #0e0f10;
  border-radius: 18px;
  width: 100%;
}

.navbar__link--ico {
  padding: 0;
}

.navbar__link--ico:hover {
  background-color: transparent;
}

@media (max-width: 768px) {
  .navbar__link--ico img {
    width: auto;
    height: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar__link {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.subnav {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 1rem;
  padding-top: 1.5rem;
}

.subnav:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 3.125rem;
  width: 1rem;
  height: 1rem;
  background-image: url("../images/arrow-left-white.6f0d47e98ab0.svg");
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .subnav:before {
    display: none;
  }
}

@media (max-width: 768px) {
  .subnav {
    width: 100%;
    position: relative;
    right: unset;
    top: unset;
    padding-top: 1rem;
    margin-top: 0;
  }

  .subnav:after {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    background-color: #ffffff;
    position: absolute;
    top: -0.5rem;
    left: 3rem;
    transform: rotate(45deg);
  }
}

.subnav__list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .subnav__list {
    flex-direction: column;
  }
}

.subnav__item {
  margin-left: 1.5rem;
}

@media (max-width: 768px) {
  .subnav__item {
    margin-top: 1rem;
    margin-left: 1.375rem;
  }
}

.subnav__link {
  padding-bottom: 0.25rem;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.5s ease-in-out;
}

.subnav__link--active,
.subnav__link:hover {
  border-bottom-color: #ffffff;
}

.navbar__item--form {
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .navbar__item--form {
    width: 100%;
    margin-top: 1rem;
    margin-left: unset;
    padding: 0 1.375rem;
  }

  .navbar__item--form form,
  .navbar__item--form .form-group {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar__item--ico {
    width: 50%;
  }
}

.container--y {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

@media (max-width: 768px) {
  .container--y {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.container--2y {
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
}

@media (max-width: 768px) {
  .container--2y {
    padding-top: 5.125rem;
    padding-bottom: 5.125rem;
  }
}

.highlight__brand {
  margin-bottom: 2rem;
}

.highlight,
.product-list {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 1;
  align-self: end;
}

.highlight__media {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  justify-self: end;
  width: 85%;
}

.product-list {
  height: 100%;
  padding-left: 1.5rem;
  align-self: start;
  border-left: 1px solid #ffffff;
}

@media (max-width: 768px) {
  .product-list {
    padding-right: 1.5rem;
  }
}

.product-list__item {
  margin-bottom: 1.5rem;
}

.product-list__item--active .product-list__title {
  position: relative;
  left: -27px;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  border-left: 5px solid #ffffff;
  padding-left: 1.3125rem;
}

@media (max-width: 768px) {
  .product-list__item--active .product-list__title {
    left: -24px;
    padding-left: 17px;
  }
}

.product-list__item--active .product-list__body,
.product-list__item--active .product-list__follow,
.product-list__item--active .product-list__media {
  display: block;
}

@media (max-width: 768px) {
  .product-list__item {
    margin-bottom: 1.5rem;
  }
}

.product-list__title {
  position: relative;
  left: -27px;
  padding-left: 21px;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 400;
  border-left: 5px solid transparent;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.product-list__title:hover {
  border-left-color: #ffffff;
}

.product-list__body {
  display: none;
  margin-top: 1rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.product-list__follow {
  display: none;
  margin-top: 0.75rem;
}

.product-list__follow a {
  display: inline-flex;
  padding: 0.25rem 1rem;
  border-radius: 14px;
  background-color: #ffffff;
  text-decoration: none;
  color: #0e0f10;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}

.product-list__follow a:hover {
  text-decoration: underline;
}

.product-list__media {
  max-width: 100%;
  margin-top: 1rem;
  display: none;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 396px 924px 1fr;
  height: calc(100vh - 180px);
}

.grid .highlight__media {
  align-self: center;
}

.grid .highlight {
  align-self: center;
}

.grid.grid--73 {
  grid-template-columns: 1fr 924px 396px 1fr;
}

.grid.grid--73 .highlight__media {
  grid-column-start: 1;
  grid-column-end: 3;
  justify-self: start;
}

@media (max-width: 768px) {
  .grid.grid--73 .highlight__media {
    right: unset;
    left: -1.5rem;
  }
}

.grid.grid--73 .highlight {
  grid-column-start: 3;
  grid-column-end: 4;
  align-self: center;
}

@media (max-width: 1336px) {
  .grid.grid--73 {
    grid-template-columns: 1fr 70% 30% 1fr;
  }
}

@media (max-width: 768px) {
  .grid {
    display: flex;
    flex-direction: column;
    padding: 0 calc(1.5rem * 0.5);
    height: auto;
  }

  .grid .highlight__media {
    margin-top: 1.5rem;
    align-self: flex-end;
    right: -1.5rem;
    position: relative;
    max-width: 100%;
    width: auto;
  }
}

@media (max-width: 1336px) {
  .grid {
    grid-template-columns: 1fr 30% 70% 1fr;
  }
}

.highlight--media {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 768px) {
  .highlight--media {
    height: 50vh;
  }
}

.highlight--light {
  background-color: #ffffff;
  color: #0e0f10;
}

.item__title {
  margin-top: 2.625rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .item__title {
    margin: 1rem 0 0;
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 500;
  }
}

.item__body {
  margin-bottom: 0;
  font-size: 19px;
  font-size: 1.1875rem;
}

@media (max-width: 768px) {
  .item__body {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
  }
}

.item__title,
.item__body {
  width: 70%;
}

@media (max-width: 768px) {

  .item__title,
  .item__body {
    width: 100%;
  }
}

.swiper {
  padding-bottom: 5.3125rem;
}

.swiper.swiper--single {
  left: calc(0px - (80px / 2));
  padding-bottom: 2.6875rem;
  width: calc(728px + 80px);
}

@media (max-width: 768px) {
  .swiper.swiper--single {
    max-width: 100%;
    left: unset;
  }
}

.swiper--single .swiper-slide figure {
  margin-left: 80px;
}

@media (max-width: 768px) {
  .swiper--single .swiper-slide figure {
    margin-left: 0;
    padding: 1.5rem;
  }
}

.swiper--multi .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 56%;
}

@media (max-width: 768px) {
  .swiper--multi .swiper-slide {
    width: 100%;
  }
}

.swiper-pagination {
  bottom: 0;
  height: 60px;
  border-top: 1px solid #0e0f10;
  z-index: 2;
}

.swiper--single .swiper-pagination {
  border-top-width: 0;
}

.swiper-button {
  position: absolute;
  bottom: 0;
  right: 0;
  top: unset;
  left: unset;
  width: 60px;
  height: 60px;
  display: flex;
  background-color: #ffffff;
  border: 1px solid #0e0f10;
  color: #0e0f10;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease-in-out;
}

.swiper-button.swiper-button-prev {
  right: 59px;
}

.swiper-button:after {
  font-size: 14px;
}

.swiper-button:hover {
  background-color: #0e0f10;
  color: #ffffff;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product__media {
  position: relative;
  max-width: 600px;
  transform: translateY(-10%);
}

@media (max-width: 768px) {
  .product__media {
    max-width: 100%;
  }
}

.product__brand {
  margin-bottom: 1.5rem;
}

.product__price {
  margin-bottom: 1rem;
  text-align: center;
}

.product__price p {
  margin: 0;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.2;
}

.btn {
  padding: 1rem 4.625rem;
  font-size: 19px;
  font-size: 1.1875rem;
  border-radius: 28px;
  font-weight: 700;
}

.product .btn {
  margin-top: 1.5rem;
}

.btn.btn--primary {
  background-color: #ffffff;
  color: #0e0f10;
}

figure {
  position: relative;
  padding: 3.75rem;
  border: 1px solid #0e0f10;
}

figure:before {
  content: '';
  display: flex;
  position: absolute;
  top: -1px;
  left: -80px;
  width: 80px;
  height: 80px;
  background-image: url("../images/quote-icon.3baa3e42acbb.svg");
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  figure:before {
    top: unset;
    left: unset;
    bottom: 0;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-size: cover;
  }
}

figure blockquote {
  font-size: 19px;
  font-size: 1.1875rem;
}

figure figcaption cite {
  font-style: normal;
  font-size: 14px;
  font-size: 0.875rem;
}

figure figcaption cite strong {
  display: block;
}

footer {
  margin-top: 6.25rem;
  padding: 1.5rem 0;
  background-color: #0e0f10;
}

footer p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
}

.search-form {
  position: relative;
  display: flex;
  align-content: stretch;
}

.search-form .form-group {
  position: relative;
  margin: 0;
}

.search-form input:focus {
  box-shadow: unset;
  border-color: #ced4da;
}

.search-form button {
  display: inline-flex;
  width: 48px;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-width: 0;
}

.search-form #query-results {
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
  padding-top: 0.5rem;
  background-color: #ffffff;
  width: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 1px solid #ced4da;
  border-top-width: 0;
}

.search-form #query-results ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-form #query-results ul li {
  padding: 0.25rem 0.5rem;
}

.search-form #query-results ul a {
  color: #0e0f10;
  text-decoration: none;
}

.search-form #query-results ul a:hover {
  color: #0e0f10;
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.7135eed35f17.map */