@charset "UTF-8";
/* ======
CSS ARCHITECTURE: The 7-1 Pattern  */
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop
ORDER: Base + typography > general layout + grid > page layout > components
1em = 16px
*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadeScale {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes fadeScale {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes up {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes up {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes grow {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); } }

@keyframes grow {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); } }

@-webkit-keyframes fade-slide-down {
  0% {
    -webkit-transform: translateY(-4rem);
    transform: translateY(-4rem); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fade-slide-down {
  0% {
    -webkit-transform: translateY(-4rem);
    transform: translateY(-4rem); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@-webkit-keyframes header-translate {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes header-translate {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  outline: none; }

a:active {
  border: 10px dotted grey; }

a:focus {
  border: 0px dotted grey; }

html {
  font-size: 62.5%; }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 52.5%; } }
  @media only screen and (max-width: 37.5em) {
    html {
      font-size: 42.5%; } }

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* ====================================
TYPOGRAPHY  */
@font-face {
  font-family: 'AvanteInt';
  src: url("../fonts/AAvanteIntBold.woff2") format("woff2"), url("../fonts/AAvanteIntBold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'AvanteBs';
  src: url("../fonts/AAvanteBsExtraBold.woff2") format("woff2"), url("../fonts/AAvanteBsExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal; }

@font-face {
  font-family: 'AvanteTck';
  src: url("../fonts/AAvanteTckMedium.woff2") format("woff2"), url("../fonts/AAvanteTckMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Proxima Nova Rg';
  src: url("../fonts/ProximaNova-Bold.woff2") format("woff2"), url("../fonts/ProximaNova-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

body {
  font-size: 1.6rem;
  color: #000000;
  line-height: 1.6; }

a {
  text-decoration: none;
  color: #000000; }

/* -------------------------- */
/* Push */
/* -------------------------- */
.intro-effect-push:not(.notrans) .intro,
.intro-effect-push:not(.notrans) > .title,
.intro-effect-push:not(.notrans) .content > div {
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s; }

.intro-effect-push:not(.notrans) .intro {
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s; }

.intro-effect-push .codrops-demos a {
  color: #108576; }

.intro-effect-push .intro {
  position: absolute;
  z-index: 1500; }

.intro-effect-push > .title {
  position: relative;
  top: auto;
  left: auto;
  padding: 6em 1em 2em; }

.intro-effect-push > .title,
.intro-effect-push .content > div {
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
  opacity: 0; }
  @media only screen and (max-width: 37.5em) {
    .intro-effect-push > .title,
    .intro-effect-push .content > div {
      -webkit-transform: translateY(52rem);
      transform: translateY(52rem);
      opacity: 0.5; } }

.intro-effect-push.modify > .title,
.intro-effect-push.modify .content > div {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1; }

.intro-effect-push.modify .intro {
  opacity: 0;
  -webkit-transform: translateY(-100%) scale(0.9);
  transform: translateY(-100%) scale(0.9); }

/* Delays */
.intro-effect-push.modify:not(.notrans) > .title {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s; }

.intro-effect-push.modify:not(.notrans) .content > div {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s; }

.btn {
  font-family: 'AvanteBs', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  border: 0;
  background: #f4d5d3;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 16rem;
  height: 8rem;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: 1;
  overflow: hidden; }
  .btn::before {
    background: #000000;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    z-index: -1;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .3s;
    transition: all .3s; }
  .btn span {
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s; }
  .btn:hover {
    background: #000000;
    color: #ffffff; }
    .btn:hover span {
      -webkit-transform: translateX(0.5rem);
      transform: translateX(0.5rem); }
    .btn:hover::before {
      -webkit-transform: translateX(0);
      transform: translateX(0); }
    .btn:hover .icon-right-sharp,
    .btn:hover .play-icon {
      fill: #ffffff; }
  @media only screen and (max-width: 37.5em) {
    .btn {
      max-width: 15rem;
      height: 5rem; } }
  .btn--play .play-icon {
    margin-left: 1rem;
    -webkit-transition: all .8s;
    transition: all .8s; }
    @media only screen and (max-width: 37.5em) {
      .btn--play .play-icon {
        -webkit-transform: scale(0.8);
        transform: scale(0.8); } }
  .btn--playsharp {
    width: 16rem;
    height: 8rem; }
    @media only screen and (max-width: 37.5em) {
      .btn--playsharp {
        height: 5rem; } }
    .btn--playsharp .icon-right-sharp {
      -webkit-transition: all .4s ease;
      transition: all .4s ease;
      margin-left: 2.5rem; }

.link {
  font-family: 'AvanteInt', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  -webkit-transition: all .4s;
  transition: all .4s;
  letter-spacing: 0.2rem;
  display: inline-block;
  position: relative;
  padding-left: 6rem;
  font-weight: bold;
  overflow: hidden; }
  .link span {
    -webkit-transition: all .3s;
    transition: all .3s;
    position: relative;
    display: block; }
    .link span:hover {
      -webkit-transform: translateX(-0.5rem);
      transform: translateX(-0.5rem); }
  .link:hover::after {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  .link::after {
    -webkit-transition: all .4s;
    transition: all .4s;
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 0.1rem;
    background: #000000;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    bottom: 0.4rem; }
  .link::before {
    content: '';
    display: block;
    position: absolute;
    width: 5rem;
    height: 0.1rem;
    background: #000000;
    left: 0;
    bottom: 0.4rem; }
  .link--back {
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding-left: 0;
    overflow: inherit; }
    .link--back::before {
      display: none !important; }
    .link--back::after {
      display: none !important; }
    .link--back:hover {
      -webkit-transform: translateX(-0.5rem);
      transform: translateX(-0.5rem); }
      .link--back:hover .icon-arrow-back {
        -webkit-transform: translateX(-0.3rem);
        transform: translateX(-0.3rem); }
    .link--back .icon-arrow-back {
      margin-right: 1rem;
      -webkit-transition: -webkit-transform .4s;
      transition: -webkit-transform .4s;
      transition: transform .4s;
      transition: transform .4s, -webkit-transform .4s; }

.wishlist-button {
  border: 0;
  background: transparent;
  cursor: pointer; }

.icon-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.2rem;
  height: 3.2rem;
  opacity: 1;
  background: #f4d5d3;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 999; }
  .icon-close:hover {
    background: #ffffff; }
    .icon-close:hover:before {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .icon-close:hover:after {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
  .icon-close:before, .icon-close:after {
    -webkit-transition: all .3s;
    transition: all .3s;
    top: 0.4rem;
    position: absolute;
    left: 1.5rem;
    content: ' ';
    height: 2.5rem;
    width: 0.3rem;
    background-color: #000000; }
  .icon-close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .icon-close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }

.slider-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 0;
  height: 8rem;
  width: 16rem;
  overflow: hidden; }
  .slider-control .prev,
  .slider-control .next {
    background: #ffffff;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    cursor: pointer;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .3s;
    transition: all .3s;
    position: relative;
    z-index: 1;
    overflow: hidden; }
    .slider-control .prev.slick-disabled,
    .slider-control .next.slick-disabled {
      cursor: not-allowed;
      pointer-events: none; }
    .slider-control .prev::before,
    .slider-control .next::before {
      background: #000000;
      position: absolute;
      content: '';
      height: 100%;
      width: 100%;
      z-index: -1;
      -webkit-transition: all .3s;
      transition: all .3s; }
    .slider-control .prev:hover,
    .slider-control .next:hover {
      background: #000000; }
      .slider-control .prev:hover .icon-next,
      .slider-control .prev:hover .icon-prev,
      .slider-control .next:hover .icon-next,
      .slider-control .next:hover .icon-prev {
        fill: #ffffff;
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s; }
      .slider-control .prev:hover .icon-next,
      .slider-control .next:hover .icon-next {
        -webkit-transform: rotate(180deg) translateX(-0.5rem);
        transform: rotate(180deg) translateX(-0.5rem); }
      .slider-control .prev:hover .icon-prev,
      .slider-control .next:hover .icon-prev {
        -webkit-transform: translateX(-0.5rem);
        transform: translateX(-0.5rem); }
      .slider-control .prev:hover::before,
      .slider-control .next:hover::before {
        -webkit-transform: translateX(0);
        transform: translateX(0); }
  .slider-control .prev::before {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  .slider-control .next::before {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  .slider-control .next .icon-next {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  @media only screen and (max-width: 37.5em) {
    .slider-control {
      height: 6rem;
      width: 9.8rem; } }

.product {
  position: relative; }
  .product__box {
    height: 68rem;
    width: 30.2rem; }
    @media only screen and (max-width: 37.5em) {
      .product__box {
        height: 60rem; } }
    .product__box .wishlist-icon {
      position: absolute;
      right: 0;
      padding: 1rem; }
  .product__img {
    height: 38rem;
    max-width: 100%;
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.4rem;
    top: 0; }
    .product__img img {
      max-width: 100%; }
  .product__title {
    font-family: 'AvanteInt', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    line-height: 3.2rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    height: 14.4rem; }
  .product__top-panel {
    height: 60rem;
    background: #f5f5f5;
    position: relative;
    top: 0; }
    @media only screen and (max-width: 37.5em) {
      .product__top-panel {
        height: 52rem; } }
  .product__bottom-panel {
    position: relative;
    top: -8rem; }
    @media only screen and (max-width: 37.5em) {
      .product__bottom-panel {
        top: -5rem; } }
    .product__bottom-panel .btn--playsharp {
      position: absolute;
      top: 0;
      right: -7.5rem; }
  .product__compare-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    width: 100%;
    background: #292929d6;
    top: 0;
    display: flex;
    flex-direction: column;
    height: 60rem; }
    .product__compare-panel .btn--playsharp {
      margin-top: 0.1rem;
      right: auto;
      bottom: 0;
      position: relative;
      text-align: left;
      float: left; }
      .product__compare-panel .btn--playsharp span {
        max-width: 10.7rem;
        display: inline-block;
        float: left;
        text-align: left; }
      .product__compare-panel .btn--playsharp .icon-right-sharp {
        margin-left: -0.5rem; }
  .product__comment {
    top: 0;
    font-family: 'AvanteTck', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    max-width: 16rem;
    line-height: 2.6rem;
    margin-left: 2.5rem; }
  .product .slick-slide {
    width: 37.7rem;
    opacity: 0.4;
    -webkit-transition: all .4s;
    transition: all .4s; }
    .product .slick-slide .product__box .product__comment {
      height: 8rem;
      overflow: hidden;
      -webkit-transition: all .4s;
      transition: all .4s; }
      @media only screen and (max-width: 37.5em) {
        .product .slick-slide .product__box .product__comment {
          height: 5rem; } }
    .product .slick-slide.slick-active {
      opacity: 1; }
      .product .slick-slide.slick-active .product__box .product__comment {
        height: inherit;
        overflow: inherit; }
  .product .slider-control {
    bottom: 3rem; }
    @media only screen and (max-width: 37.5em) {
      .product .slider-control {
        bottom: 5rem; } }

.testimonial {
  padding-top: 7rem; }
  .testimonial__wrapper {
    background: #F4D5D3;
    padding: 8rem 6rem 8rem 8rem; }
    @media only screen and (max-width: 37.5em) {
      .testimonial__wrapper {
        padding: 4rem 3rem 4rem 4rem; } }
  .testimonial__img {
    max-width: 24rem;
    margin-right: 7rem; }
  .testimonial__single.slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 37.5em) {
      .testimonial__single.slick-slide {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        /*  justify-content: center;
                text-align: center; */ } }
  .testimonial__quote {
    font-family: 'AvanteInt', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    letter-spacing: 0.18rem;
    line-height: 3.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-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    @media only screen and (max-width: 37.5em) {
      .testimonial__quote {
        padding-top: 2rem; } }
  .testimonial__author {
    display: block;
    padding-top: 4rem; }

body.modal-open {
  overflow: hidden; }

#popup {
  background-color: rgba(0, 0, 0, 0.85);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5100;
  /*   Added */
  visibility: hidden; }
  #popup__close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    z-index: 99999; }
  #popup .videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0; }
    #popup .videoWrapper iframe {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      /*   Added */
      visibility: hidden;
      width: 70%;
      height: 70%; }

.row {
  max-width: 144rem;
  margin: 0 auto;
  padding-left: 8rem;
  padding-right: 8rem; }
  .row.fluid-right {
    padding-right: 0;
    margin-right: 0;
    margin: auto; }
  @media only screen and (max-width: 75em) {
    .row {
      padding-left: 5rem;
      padding-right: 5rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
  background: #ffffff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1600;
  opacity: 0;
  -webkit-animation: header-translate 1s .1s ease forwards;
  animation: header-translate 1s .1s ease forwards; }
  .header .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; }
  .header.scale {
    -webkit-box-shadow: 1px 0px 12px 0px #00000014;
    box-shadow: 1px 0px 12px 0px #00000014; }
    .header.scale .header__logo {
      height: 6.5rem; }
      .header.scale .header__logo img {
        height: 6.5rem; }
  .header__logo {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    -ms-flex-item-align: center;
    align-self: center;
    height: 8rem; }
    .header__logo img {
      -webkit-transition: all .4s ease;
      transition: all .4s ease;
      height: 8rem; }
  .header .navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: end;
    align-self: flex-end; }
    .header .navigation__list {
      list-style: none; }
    .header .navigation__item {
      display: inline-block;
      padding-left: 1.5rem;
      padding-right: 1.5rem; }
      .header .navigation__item a {
        font-family: 'AvanteInt', sans-serif;
        font-weight: bold;
        font-size: 1.1rem;
        letter-spacing: 0.1rem;
        position: relative;
        display: inline-block;
        outline: none;
        text-decoration: none;
        text-transform: uppercase;
        text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
        overflow: hidden;
        padding: 0 4px;
        height: 1.1em; }
        .header .navigation__item a:hover, .header .navigation__item a:focus {
          outline: none; }
        .header .navigation__item a span {
          position: relative;
          display: inline-block;
          -webkit-transition: -webkit-transform 0.3s;
          transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
          transition: transform 0.3s, -webkit-transform 0.3s; }
        .header .navigation__item a span::before {
          position: absolute;
          top: 100%;
          content: attr(data-hover);
          font-weight: 700;
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }
        .header .navigation__item a:hover span,
        .header .navigation__item a:focus span {
          -webkit-transform: translateY(-100%);
          transform: translateY(-100%); }
    .header .navigation__icon {
      padding-left: 1.5rem; }

.intro {
  width: 100vw;
  height: 82vh;
  padding-left: 8rem;
  padding-right: 8rem;
  margin-bottom: 10vh; }
  .intro__wrapper {
    overflow: hidden;
    height: 100%; }
  @media only screen and (min-width: 106.2em) {
    .intro {
      height: 85vh; } }
  @media only screen and (max-width: 75em) {
    .intro {
      padding-left: 5rem;
      padding-right: 5rem; } }
  @media only screen and (max-width: 37.5em) {
    .intro {
      height: 60vh; } }
  .intro__img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-animation: fade-slide-down 2s 0.2s cubic-bezier(0, 0.5, 0, 1) forwards;
    animation: fade-slide-down 2s 0.2s cubic-bezier(0, 0.5, 0, 1) forwards;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    @media only screen and (max-width: 37.5em) {
      .intro__img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover; } }
  .intro__details {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: auto;
    bottom: 0;
    text-align: center;
    width: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
  .intro__name {
    font-family: 'AvanteInt', sans-serif;
    font-size: 2.8rem;
    line-height: 4rem;
    letter-spacing: 0.4rem;
    color: #ffffff;
    opacity: 0;
    -webkit-animation: fadeIn 1s .4s forwards;
    animation: fadeIn 1s .4s forwards; }
    @media only screen and (max-width: 37.5em) {
      .intro__name {
        font-size: 2rem; } }
  .intro__title {
    font-family: 'AvanteInt', sans-serif;
    display: block;
    font-size: 1.4rem;
    line-height: 2rem;
    letter-spacing: 1rem;
    color: #d1cccc; }
    @media only screen and (max-width: 37.5em) {
      .intro__title {
        font-size: 1.2rem; } }
  .intro__slogan {
    font-family: 'AvanteInt', sans-serif;
    font-size: 8rem;
    color: #ffffff;
    letter-spacing: 0.1rem;
    bottom: 0;
    display: block;
    line-height: 1;
    -webkit-transform: translateY(6rem);
    transform: translateY(6rem);
    opacity: 0;
    -webkit-animation: up 500ms .4s linear forwards;
    animation: up 500ms .4s linear forwards; }
    .intro__slogan__container {
      font-size: 0;
      position: relative;
      overflow: hidden;
      padding-bottom: 0.4rem;
      margin: 2rem 0; }
    @media only screen and (max-width: 37.5em) {
      .intro__slogan {
        font-size: 4rem;
        margin-bottom: 0; } }
  .intro .btn--play {
    top: 3.5rem;
    position: relative;
    opacity: 0;
    -webkit-animation: fadeScale 1s .4s forwards;
    animation: fadeScale 1s .4s forwards; }
    @media only screen and (max-width: 37.5em) {
      .intro .btn--play {
        top: 2rem; } }

.about {
  padding-top: 3rem;
  padding-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media only screen and (max-width: 37.5em) {
    .about {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  .about__meta {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30.6rem;
    flex: 0 0 30.6rem;
    margin-right: 9.5rem; }
    @media only screen and (max-width: 56.25em) {
      .about__meta {
        margin-right: 6.5rem; } }
    @media only screen and (max-width: 37.5em) {
      .about__meta {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%; } }
  .about__img {
    width: 100%; }
  .about__caption {
    font-family: 'AvanteInt', sans-serif;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 5rem; }
    .about__caption span {
      display: block;
      font-size: 1.4rem;
      letter-spacing: 0.8rem;
      color: #d1cccc; }
  .about__quote {
    position: relative;
    max-width: 80.7rem;
    width: 100%;
    overflow: hidden; }
    .about__quote__img {
      position: absolute;
      z-index: -1;
      max-height: 63.2rem;
      max-width: 100%; }
      @media only screen and (max-width: 37.5em) {
        .about__quote__img {
          top: 1rem; } }
    .about__quote--big {
      font-family: 'AvanteInt', sans-serif;
      font-weight: 800;
      font-size: 5.4rem;
      letter-spacing: 0.2rem;
      position: relative;
      max-width: 50rem;
      margin: 0 auto;
      line-height: 6.4rem;
      text-align: center;
      margin-top: 18rem;
      margin-bottom: 12rem; }
      @media only screen and (max-width: 56.25em) {
        .about__quote--big {
          font-size: 4.5rem;
          line-height: 4rem;
          margin-top: 8rem;
          margin-bottom: 8rem; } }
      .about__quote--big::before, .about__quote--big::after {
        font-family: 'AvanteTck', sans-serif;
        font-size: 18rem;
        position: absolute;
        display: block;
        font-weight: 500; }
        @media only screen and (max-width: 56.25em) {
          .about__quote--big::before, .about__quote--big::after {
            font-size: 12rem; } }
      .about__quote--big::before {
        content: '“';
        left: -4rem; }
        @media only screen and (max-width: 56.25em) {
          .about__quote--big::before {
            top: -1rem;
            left: 0; } }
      .about__quote--big::after {
        content: '”';
        right: -4rem; }
        @media only screen and (max-width: 56.25em) {
          .about__quote--big::after {
            right: 0; } }
    .about__quote--small {
      font-family: 'AvanteInt', sans-serif;
      font-weight: 800;
      font-size: 2rem;
      letter-spacing: 0.2rem;
      line-height: 3rem;
      max-width: 70rem; }
      @media only screen and (max-width: 37.5em) {
        .about__quote--small {
          line-height: 2.5rem; } }

.product {
  padding-top: 6rem;
  padding-bottom: 3rem;
  padding-right: 0;
  margin-right: 0;
  width: 100%; }
  .product__sub-title {
    font-family: 'AvanteBs', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    line-height: 1.8rem;
    padding-bottom: 1.6rem; }

.gallery {
  background: #000000;
  margin: 3rem 0;
  padding: 8rem 0; }
  @media only screen and (max-width: 37.5em) {
    .gallery {
      padding: 6rem 0; } }
  .gallery__carousel {
    max-width: 50%; }
    @media only screen and (max-width: 37.5em) {
      .gallery__carousel {
        max-width: 100%; } }
  .gallery__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 37.5em) {
      .gallery__wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 100%; } }
  .gallery__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%; }
    @media only screen and (max-width: 37.5em) {
      .gallery__details {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 100%; } }
  .gallery__title {
    font-family: 'AvanteInt', sans-serif;
    font-weight: 800;
    font-size: 6.2rem;
    letter-spacing: 0.06rem;
    line-height: 6rem;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 46%; }
    @media only screen and (max-width: 75em) {
      .gallery__title {
        font-size: 4rem;
        line-height: 4rem; } }
    @media only screen and (max-width: 37.5em) {
      .gallery__title {
        font-size: 6.2rem;
        line-height: 5.2rem; } }
  .gallery__single {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-height: 28rem;
    position: relative; }
    @media only screen and (max-width: 75em) {
      .gallery__single {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
        min-height: 5rem; } }
    .gallery__single img {
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%;
      z-index: -1; }
    .gallery__single .link-gallery {
      color: #ffffff;
      position: absolute;
      bottom: 0; }
      @media only screen and (max-width: 75em) {
        .gallery__single .link-gallery {
          bottom: 0.5rem; } }
      .gallery__single .link-gallery::before {
        background: #ffffff; }
      .gallery__single .link-gallery::after {
        background: #ffffff; }
    .gallery__single .btn--playsharp {
      height: 4rem;
      position: absolute;
      right: -8rem;
      bottom: 0;
      z-index: 1; }
      @media only screen and (max-width: 37.5em) {
        .gallery__single .btn--playsharp {
          right: 0; } }
    .gallery__single .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      .gallery__single .play-icon svg path {
        -webkit-transition: all .3s;
        transition: all .3s; }
      .gallery__single .play-icon:hover svg path {
        fill: #000000; }
  .gallery__sub-title {
    font-family: 'AvanteBs', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    line-height: 1.8rem;
    padding-bottom: 1.6rem;
    color: #ffffff; }

footer .share {
  padding-top: 8rem;
  padding-bottom: 10rem; }
  footer .share__wrapper {
    text-align: center;
    overflow: hidden; }
  footer .share .vertline {
    display: block;
    height: 8rem;
    width: 0.2rem;
    background: #000000;
    margin: 0 auto;
    margin-bottom: 1.6rem; }
  footer .share__text {
    font-family: 'AvanteBs', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1.8rem;
    letter-spacing: 0.3rem;
    display: block; }
  footer .share__icons {
    list-style: none;
    margin-top: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    footer .share__icons li {
      -ms-flex-item-align: auto;
      align-self: auto;
      margin: 0 2.2rem;
      display: inline-block; }
      footer .share__icons li a svg,
      footer .share__icons li a g {
        -webkit-transition: all .1s;
        transition: all .1s; }
      footer .share__icons li a:hover svg {
        fill: #f4d5d3; }
        footer .share__icons li a:hover svg g {
          stroke: #f4d5d3; }
