@charset "UTF-8";
@import url(partials/jquery.mCustomScrollbar.min.css);
@import url(partials/slick.css);

.owl-carousel .animated {
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.owl-carousel .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
    display: none;
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-item > img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("../about/images/owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
}

.owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.owl-nav {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0px;
}

.owl-nav .owl-next,
.owl-nav .owl-prev {
    width: 20px;
    height: 40px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    will-change: transform;
}

.owl-nav .owl-next:hover,
.owl-nav .owl-prev:hover {
    -webkit-transform: scale(1.05) translateY(-50%);
    transform: scale(1.05) translateY(-50%);
}

.owl-nav .owl-next:active,
.owl-nav .owl-prev:active {
    -webkit-transform: scale(0.95) translateY(-50%);
    transform: scale(0.95) translateY(-50%);
}

.owl-nav .owl-next {
    right: 0;
    background: url(../img/next.png) no-repeat center center/contain;
}

.owl-nav .owl-prev {
    left: 0;
    background: url(../img/prev.png) no-repeat center center/contain;
}

.nav-wrapper {
    -webkit-transition: none !important;
    transition: none !important;
}

@font-face {
    font-family: 'LG Smart';
    src: url("../fonts/LGSmartRegular__W.eot");
    src: url("../fonts/LGSmartRegular__W.eot?#FooAnything") format("embedded-opentype"), url("../fonts/LGSmartRegular__W.woff") format("woff"), url("../fonts/LGSmartRegular__W.ttf") format("truetype"), url("../fonts/LGSmartRegular__W.svg#LGFontRegular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LG Smart';
    src: url("../fonts/LGSmartLight__W.eot");
    src: url("../fonts/LGSmartLight__W.eot?#FooAnything") format("embedded-opentype"), url("../fonts/LGSmartLight__W.woff") format("woff"), url("../fonts/LGSmartLight__W.ttf") format("truetype"), url("../fonts/LGSmartLight__W.svg#LGFontLight") format("svg");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'LG Smart';
    src: url("../fonts/LGSmartSemiBold__W.eot");
    src: url("../fonts/LGSmartSemiBold__W.eot?#FooAnything") format("embedded-opentype"), url("../fonts/LGSmartSemiBold__W.woff") format("woff"), url("../fonts/LGSmartSemiBold__W.ttf") format("truetype"), url("../fonts/LGSmartSemiBold__W.svg#LGFontMedium") format("svg");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'LG Smart';
    src: url("../fonts/LGSmartBold__W.eot");
    src: url("../fonts/LGSmartBold__W.eot?#FooAnything") format("embedded-opentype"), url("../fonts/LGSmartBold__W.woff") format("woff"), url("../fonts/LGSmartBold__W.ttf") format("truetype"), url("../fonts/LGSmartBold__W.svg#LGFontMedium") format("svg");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'LG Smart';
    src: url("../fonts/LGSmartRegularItalic__W.eot");
    src: url("../fonts/LGSmartRegularItalic__W.eot?#FooAnything") format("embedded-opentype"), url("../fonts/LGSmartRegularItalic__W.woff") format("woff"), url("../fonts/LGSmartRegularItalic__W.woff2") format("woff2"), url("../fonts/LGSmartRegularItalic__W.ttf") format("truetype"), url("../fonts/LGSmartRegularItalic__W.svg#LGFontMedium") format("svg");
    font-weight: normal;
    font-style: italic;
}

* {
    padding: 0;
    margin: 0;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'LG Smart', Arial, Helvetica, sans-serif;
}

.body-height {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
}

.main-header {
    position: relative;
    z-index: 1;
}

.page-outer {
    width: 100%;
    position: relative;
}

.page-outer img {
    width: 100%;
    display: block;
}

.section-wrap img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}

b {
    font-weight: 900;
}

sup {
    font-size: 0.5em;
}

.fadeInAnim {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.fadeOutAnim {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.fade {
    opacity: 0;
}

html {
    height: 100%;
}

body.fixed {
    overflow: hidden;
    height: 100%;
}

body.hidden {
    overflow: hidden;
    height: 100%;
}

.desk {
    display: block !important;
}

.mob {
    display: none !important;
}

.owl-dots.disabled,
.owl-nav.disabled,
.owl-prev.disabled,
.owl-next.disabled {
    display: none !important;
}

.main-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.section-wrap {
    width: 90%;
    max-width: 1920px;
    margin: auto;
    font-weight: 700;
    height: 100%;
    position: relative;
}

.progress-bar-wrap {
    width: 90%;
    max-width: 1920px;
    left: 50%;
    bottom: 8.5vh;
    position: fixed;
    display: none;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 7;
    display: none !important;
}

.buy-button-mob {
    display: none;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: calc(1.5vw);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.progress-bar.light .progress-bar-line {
    background: #FFF;
}

.progress-bar.light .progress-bar-line-current {
    background: #a50034;
}

.progress-bar.light .progress-bar-text {
    color: #FFF;
}

.progress-bar-text {
    font-weight: 300;
    margin-right: 3em;
    width: 1.4em;
}

.progress-bar-line {
    width: calc(100% - 4.4em);
    height: 2px;
    background: #DCDCDC;
    position: relative;
}

.progress-bar-line-current {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: #000;
}

.button {
    display: inline-block;
    color: #FFF;
    border-radius: 6px;
    background: #a50034;
    border: 1px solid #a50034;
    text-align: center;
    padding: 0.5em 1em;
    font-size: calc(1.75vw);
    line-height: 1.3;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.button:hover {
    text-decoration: none;
    background: #e10b4b;
    border: 1px solid #e10b4b;
    color: #fff;
}

.button:active {
    text-decoration: none;
    background: #d7104b;
    border: 1px solid #d7104b;
    color: #fff;
}

.hero-bg {
    position: -webkit-sticky;
    position: sticky;
    height: calc(100vh);
}

.hero-bg.active {
    background-position: center bottom;
}

.hero-bg.active .canvas-bg,
.hero-bg.active .hero-bg-img {
    top: 0;
}

.hero-bg-img {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: calc(100vh);
    overflow: hidden;
    background: radial-gradient(500.17px at 50% 44.36%, #4B4B59 0%, #323232 59.2%, #1C1C1C 100%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.hero-bg-img:after {
    content: "";
    width: 100%;
    height: 32%;
    bottom: 0;
    left: 0;
    background: #FFF;
    z-index: 1;
    position: absolute;
}

.video-bg-slider-wrap-bg {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.video-bg-slider-wrap-bg.active {
    opacity: 1;
}

.video-bg-slider-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video-bg-slider-wrap .video-bg-slider,
.video-bg-slider-wrap .video-bg-slider-item {
    width: 100vw;
    height: 100vh;
}

.video-bg-slider-wrap .video-bg-item-1 {
    background: url(../img/01-desk.jpg?v=23) no-repeat top center/cover;
}

.video-bg-slider-wrap .video-bg-item-2 {
    background: url(../img/02-desk.jpg?v=23) no-repeat top center/cover;
}

.video-bg-slider-wrap .video-bg-item-3 {
    background: url(../img/03-desk.jpg?v=23) no-repeat bottom center/cover;
}

.video-bg-slider-wrap-bg.active .slick-active .video-bg-slider-item {
    -webkit-animation: zoomIn 5s linear forwards;
    animation: zoomIn 5s linear forwards;
}

.canvas-bg {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.canvas-bg.active {
    opacity: 1;
}

.section {
    height: calc(100vh);
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    overflow: hidden;
    top: 0;
    background: radial-gradient(883.5px at 50% 52.39%, #FFFFFF 0%, #F8FCFF 100%);
}

.section-1,
.section-1-1,
.section-2,
.section-3 {
    position: relative;
}

.section-outer {
    position: relative;
    z-index: 6;
}

.prod-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24.3vw;
    max-width: 388.8px;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.prod-img .product-img-inner {
    -webkit-transform: translate(-3%, 4%);
    transform: translate(-3%, 4%);
    width: 89%;
    margin: 0 auto;
}

.prod-img.transition {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.prod-img.first {
    top: auto;
    bottom: 0;
    -webkit-transform: translate(-50%, 0%) scale(1);
    transform: translate(-50%, 0%) scale(1);
}

.prod-img.no-shadow:after {
    display: none;
}

.circle {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg) scale(-1);
    transform: translate(-50%, -50%) rotate(90deg) scale(-1);
}

.circle svg {
    -webkit-transition: 0.9s;
    transition: 0.9s;
    width: 100%;
    stroke-dashoffset: 500%;
    stroke-dasharray: 500%;
}

.circle svg.full {
    stroke-dashoffset: 186%;
}

.prod-img.side .product-img-inner {
    -webkit-animation: rotateWm 0.5s forwards steps(8);
    animation: rotateWm 0.5s forwards steps(8);
}

.prod-img.side.front .product-img-inner {
    -webkit-animation: rotateWmBack 0.5s forwards steps(8);
    animation: rotateWmBack 0.5s forwards steps(8);
}

.product-img-inner-side {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: 0;
    height: calc(27.2vw);
    max-height: 435px;
    background-image: url(../img/wm_sprite_vivace_L.png);
    background-size: cover;
    background-position: 100% 0%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.product-img-inner {
    width: 100%;
    height: calc(27.2vw);
    max-height: 435px;
    background-image: url(../img/wm_sprite_vivace_L.png);
    background-size: cover;
    background-position: 0% 0%;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.product-img-inner ~ .line-top,
.product-img-inner ~ .line-bottom {
    opacity: 0;
    content: "";
    width: 65%;
    left: 14%;
    position: absolute;
}

.product-img-inner ~ .line-top .line,
.product-img-inner ~ .line-bottom .line {
    background: #000;
    height: 1px;
    width: 0;
    position: relative;
    -webkit-transition: 0.9s;
    transition: 0.9s;
}

.product-img-inner ~ .line-top .line:before, .product-img-inner ~ .line-top .line:after,
.product-img-inner ~ .line-bottom .line:before,
.product-img-inner ~ .line-bottom .line:after {
    content: "";
    height: 10px;
    width: 1px;
    background: #000;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-img-inner ~ .line-top .line-text,
.product-img-inner ~ .line-bottom .line-text {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 2vw;
}

.product-img-inner ~ .line-top .line-text span,
.product-img-inner ~ .line-bottom .line-text span {
    font-size: 0.5em;
}

.product-img-inner ~ .line-top.animated .line,
.product-img-inner ~ .line-bottom.animated .line {
    width: 100%;
}

.product-img-inner ~ .line-top.animated .line:before,
.product-img-inner ~ .line-bottom.animated .line:before {
    left: 0;
}

.product-img-inner ~ .line-top.animated .line:after,
.product-img-inner ~ .line-bottom.animated .line:after {
    right: 0;
}

.product-img-inner ~ .line-top {
    top: -10%;
}

.product-img-inner ~ .line-top .line-text {
    top: -1.3em;
}

.product-img-inner ~ .line-bottom {
    bottom: -10%;
}

.product-img-inner ~ .line-bottom .line-text {
    bottom: -1.3em;
}

.product-img-inner.lines ~ .line-top,
.product-img-inner.lines ~ .line-bottom {
    opacity: 1;
}

.turbowash-sp {
    position: absolute;
    display: none;
    top: 48.6%;
    left: 50.2%;
    width: 15.82vw;
    height: 15.82vw;
    max-width: 253.12px;
    max-height: 253.12px;
    background-image: url(../img/sprite.png);
    z-index: 1;
    background-size: cover;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.turbowash-sp.visible {
    display: block;
    -webkit-animation: turbowash 1s infinite steps(15, end);
    animation: turbowash 1s infinite steps(15, end);
}

.spacer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.hero-wm-bg {
    position: absolute;
    bottom: 2vh;
    width: 44%;
    left: 50%;
    height: 80vh;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 800px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.hero-wm-bg.slim {
    width: 15%;
}

.hero-wm-wrap {
    width: 17.35vw;
    max-width: 320px;
    height: 23.8vw;
    max-height: 439px;
    position: absolute;
    bottom: 0;
}

.hero-wm-wrap.first-hero-wm {
    left: 0;
}

.hero-wm-wrap.last-hero-wm {
    right: 0;
}

.hero-content {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #FFF;
}

.hero-title {
    position: absolute;
    color: #FFF;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: calc(3.75vw);
    font-weight: 300;
    text-align: center;
    line-height: 1;
    width: 80%;
    top: 5vh;
    padding-top: 0.6em;
}

.hero-title-inner {
    width: 100%;
    margin: auto;
    font-weight: 300;
}

.hero-title-inner svg {
    display: inline-block;
    width: 10vw;
    max-width: 160px;
    vertical-align: middle;
}

.hero-title-inner .cls-1 {
    fill: #a50034;
}

.hero-title-inner .cls-2 {
    fill: #fff;
}

.hero-button-wrap {
    width: 36%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.hero-title-content {
    font-weight: 300;
    font-size: calc(3.75vw);
    width: 36%;
    line-height: 0.9;
    padding-top: 2.5em;
}

.hero-img-wrap {
    width: 30%;
    overflow: hidden;
}

.hero-img {
    width: 90%;
    margin: auto;
    display: none;
}

.hero-text {
    margin-top: 0.4em;
    font-size: 0.6em;
}

.scroll-text-wrap {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: calc(1.5vw);
    padding-right: 5em;
    color: #000;
    width: 31%;
    text-align: center;
}

.scroll-text-wrap img {
    width: 0.4em;
    margin: auto;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

.section-sticky-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 3;
    background: #FFF;
}

.sticky-menu-wrapper {
    position: relative;
}

.sticky-menu-wrapper.no-height {
    padding-bottom: 1px;
    margin-bottom: -8vw;
    height: auto;
    padding-top: 90vh;
}

.z-index {
    z-index: 0 !important;
    -webkit-transition: none !important;
    transition: none !important;
}

.sticky-menu {
    position: absolute;
    top: 0;
    width: 90%;
    margin: 0 auto;
    max-width: 1920px;
    z-index: 7;
    opacity: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.sticky-menu.z-index {
    z-index: -1;
}

.sticky-menu.light {
    color: #FFF;
}

.sticky-menu.light .cls-2 {
    fill: #fff;
}

.sticky-menu.light .product-button {
    color: #FFF;
    border-color: #FFF;
}

.sticky-menu.light .product-button:hover {
    color: #000;
    background: #FFF;
}

.sticky-menu.no-sticky {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.sticky-menu.no-sticky .sticky-title {
    font-size: 3.125vw;
    font-weight: 300;
    text-align: center;
    line-height: 1;
    position: relative;
    margin: auto;
    top: 0.1em;
}

.sticky-menu-inner {
    margin-top: 2.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.sticky-menu-button {
    position: absolute;
    top: 0.5em;
    right: 0;
}

.sticky-menu-logo {
    position: absolute;
    top: 0;
    left: 0;
    font-size: calc(4.375vw);
    width: 2.75em;
}

.sticky-menu-logo.absolute-logo {
    position: absolute;
    left: 0;
    top: 0;
}

.scroll-text {
    margin-top: 1em;
    text-transform: uppercase;
    font-size: 0.7em;
}

.section-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.section.section-1-1,
.section.section-1 {
    padding-top: 0;
    background: none;
}

.section-1-1,
.section-2,
.section-3 {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.section.section-1 {
    padding-top: 106px;
    padding-bottom: 8vh;
}

.section-1,
.section-1-1,
.section-2,
.section-3 {
    background: radial-gradient(883.5px at 50% 52.39%, #FFFFFF 0%, #F8FCFF 100%);
    opacity: 0;
    z-index: -1;
    padding-top: calc(7vh);
    padding-bottom: calc(14vh);
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.section-1.active,
.section-1-1.active,
.section-2.active,
.section-3.active {
    z-index: 2;
    opacity: 1;
}

.section-1-1 .section-inner {
    background: none;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.section-1-1-main-slider-wrap {
    color: #FFF;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 3;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-1-1-main-slider-dots {
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 1.875vw;
    font-weight: 900;
    width: 7.5em;
    border-bottom: 2px solid #a50034;
    padding-top: 3em;
}

.section-1-1-main-slider-dot-inner {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.section-1-1-main-slider-dot-inner:after {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.section-1-1-main-slider-dot {
    margin: 0 0.25em;
    height: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.section-1-1-main-slider-dot.active .section-1-1-main-slider-dot-inner {
    font-size: 2em;
    position: relative;
}

.section-1-1-main-slider-dot.active .section-1-1-main-slider-dot-inner:after {
    content: "";
    height: 2px;
    width: 120%;
    position: absolute;
    background: #DCDCDC;
    left: -10%;
    top: 100%;
}

.section-1-1-main-slider {
    text-align: center;
    font-size: 2.25vw;
    width: 90%;
    margin: 0 auto;
    font-weight: 300;
}

.section-1-1-main-slider-item {
    line-height: 1.2;
    height: 3.6em;
    width: 57%;
    margin: 0 auto;
}

.section-1-1-main-slider-item.wide {
    width: 90%;
}

.section-1-1-content,
.section-2-content,
.section-3-content,
.section-4-content,
.section-5-content,
.section-1-1-info,
.section-2-info,
.section-3-info,
.section-4-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 36%;
}

.section-content-top {
    width: 42%;
    font-size: calc(4.375vw);
    height: 2.1em;
    opacity: 0;
    z-index: -1;
}

.section-1-1-info-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    color: #FFF;
}

.section-1-1-info-middle-slider {
    width: 80%;
}

.section-1-1-info-middle-slide {
    padding-left: 1px;
    position: relative;
}

.section-1-1-info-middle-slide .disclamer {
    position: relative;
    top: -1.5em;
    font-size: 12px;
    padding-left: 1px;
    font-weight: 300;
    color: #999;
}

.section-1-1-info-middle-slide.fake-content {
    padding-bottom: 5vw;
    padding-top: 5vw;
}

.section-1-1-info-middle-slide.fake-content .section-1-1-info-middle-title,
.section-1-1-info-middle-slide.fake-content .section-1-1-info-middle-title-big,
.section-1-1-info-middle-slide.fake-content .section-1-1-info-middle-text {
    opacity: 0;
    position: relative;
    z-index: -5;
}

.section-1-1-info-middle-slide.fake-content .section-1-1-slider-item {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section-1-1-info-middle-title {
    font-size: 1.8em;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.5em;
}

.section-1-1-info-middle-title svg {
    width: 30%;
    margin-bottom: 0.2em;
}

.section-1-1-info-middle-title .cls-1 {
    fill: #a50034;
}

.section-1-1-info-middle-title .cls-2 {
    fill: #fff;
}

.section-1-1-info-middle-title-big {
    font-size: 8.5vw;
}

.section-1-1-info-middle-title-big.transform-left {
    position: relative;
    left: -0.1em;
}

.section-1-1-info-middle-text {
    font-size: 1.75vw;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 4em;
    padding-left: 4px;
}

.section-1-1-info-middle-text.hight-text {
    margin-bottom: 5em;
}

.section-1-1-info-middle-text p {
    margin-bottom: 1em;
    line-height: 1.1;
}

.section-1-1-info-middle-text p:last-child {
    margin-bottom: 0;
}

.section-1-1-info-middle-text .smaller {
    font-size: 0.8em;
}

.section-1-1-slider-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 80%;
}

.section-1-1-slider-dot {
    height: 2px;
    width: 49%;
    background: #a50034;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.section-1-1-slider-dot:hover {
    background: #BABABA;
}

.section-1-1-slider-dot.active {
    background: #BABABA;
    cursor: default;
}

.watch-video-wrap {
    position: absolute;
    right: 0;
    top: calc(100% + 5.5vh);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.watch-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 300;
    cursor: pointer;
}

.watch-video #circle4,
.watch-video #path2-6 {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.watch-video:hover #circle4 {
    fill: #fff !important;
}

.watch-video:hover #path2-6 {
    fill: #a50034 !important;
}

.watch-video-text {
    margin-right: 1em;
}

.watch-video-icon {
    width: 2.4em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.section-content-top-title {
    font-weight: bold;
}

.section-content-top-title svg {
    display: block;
}

.section-content-top-title .cls-1 {
    fill: #a50034;
}

.section-content-top-title .cls-2 {
    fill: #000;
}

.section-content-top-text {
    font-size: 0.26em;
    margin-top: 0.3em;
    line-height: 1.1;
}

.product-button {
    font-size: calc(0.9vw);
    line-height: 1;
    padding: 1em 3.5em 0.9em;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    display: block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.product-button.light {
    border-color: #FFF;
    color: #FFF;
}

.product-button.light:hover {
    background: #FFF;
    color: #000;
}

.product-button:hover {
    color: #FFF;
    background: #000;
}

.section-info-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    max-height: 147px;
    height: calc(9.19vw);
    position: relative;
    opacity: 0;
    z-index: -1;
}

.wm-dd-slider-wrap {
    opacity: 0;
    position: absolute;
    left: 51%;
    top: 46.5%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 2.8vw;
    color: #FFF;
    text-align: center;
    font-weight: 300;
    line-height: 1;
    z-index: 1;
}

.wm-dd-slider-wrap.animation {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
    opacity: 1;
}

.wm-dd-slide {
    height: 2em;
    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;
}

.wm-marker {
    position: absolute;
    display: none;
    opacity: 0;
    top: -5%;
    left: 12%;
    z-index: 2;
    margin-top: -1px;
    width: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.wm-marker .wm-cardio-wrap {
    height: 5vw;
    max-height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wm-marker .wm-line-wrap {
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}

.wm-marker .wm-line-wrap svg {
    width: 100%;
    display: block;
    stroke-dasharray: 200%;
    stroke-dashoffset: 200%;
    -webkit-animation: cardioBack 2.4s forwards;
    animation: cardioBack 2.4s forwards;
}

.wm-marker.visible {
    display: block;
}

.wm-marker.visible .wm-cardio-wrap svg {
    width: 100%;
    height: auto;
    display: block;
    stroke-dasharray: 200%;
    stroke-dashoffset: 200%;
    -webkit-animation: cardio 1.4s forwards;
    animation: cardio 1.4s forwards;
}

.wm-marker.visible .wm-line {
    position: relative;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(10%, #7F2041), color-stop(28%, #E260A1), color-stop(42%, #FC7EB7), color-stop(56%, #DC4A7D), color-stop(70%, #EB51BA), color-stop(84%, #D2356E), color-stop(90%, #A22B51), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #7F2041 10% #7F2041 14%, #E260A1 28%, #FC7EB7 42%, #DC4A7D 56%, #EB51BA 70%, #D2356E 84%, #A22B51 90%, rgba(0, 0, 0, 0) 100%);
    height: 2px;
}

.wm-marker.point {
    opacity: 1;
}

.wm-marker.point:after {
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.wm-marker:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 50%;
    background: url(../img/ai-core.png) no-repeat center center/contain;
    width: 5vw;
    height: 5vw;
    max-width: 80px;
    max-height: 80px;
    opacity: 0;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.section-1-1-slider {
    width: 85%;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: -5vw;
}

.section-1-1-slider .owl-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.section-1-1-slider-item {
    width: 98%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 8.5vw;
}

.section-1-1-slider-item.core {
    width: 58%;
    margin: auto;
    padding-top: 0.25em;
}

.section-1-1-slider-item.drum {
    width: 60%;
    margin: auto;
    padding-top: 0.48em;
}

.section-1-1-slider-item.extra-small {
    width: 35%;
    margin: auto;
}

.tshirt-outer {
    position: relative;
    margin-top: -0.3em;
}

.tshirt-outer:after {
    content: "";
    width: 60%;
    left: 15%;
    height: 2%;
    top: 90%;
    position: absolute;
    background: #212121;
    -webkit-filter: blur(0.2vw);
    filter: blur(0.2vw);
    opacity: .05;
    border-radius: 50%;
    -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
    transform: matrix(1, 0, 0, -1, 0, 0);
}

.tshirt {
    width: 100%;
    background: url(../img/tshirt/T-Shirt_360_720_50-1.png) no-repeat center center/contain;
    height: 30vw;
    max-width: 480px;
}

.cloth-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 98%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 0.25em;
    margin: auto;
}

.cloth-item {
    width: 40%;
}

.cloth-text {
    font-size: 1.5vw;
    line-height: 1;
    text-align: center;
    margin-top: 1em;
    color: #FFF;
    font-weight: 300;
}

.cloth-text svg {
    width: 70%;
}

.cloth-text .cls-1 {
    fill: #a50034;
}

.cloth-text .cls-2 {
    fill: #fff;
}

.section-2-content-middle,
.section-3-content-middle,
.section-4-content-middle,
.section-2-info-middle,
.section-3-info-middle,
.section-4-info-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.section-2-info-middle,
.section-3-info-middle,
.section-4-info-middle {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.section-2-content-middle-num,
.section-3-content-middle-num,
.section-4-content-middle-num,
.section-2-info-middle-num,
.section-3-info-middle-num,
.section-4-info-middle-num {
    font-size: calc(14.375vw);
    margin-right: 0.1em;
    line-height: 0.8;
    font-weight: normal;
}

.section-3-info-middle-num,
.section-2-info-middle-num {
    margin-right: 0;
}

.section-2-content-middle-num-text,
.section-3-content-middle-num-text,
.section-4-content-middle-num-text,
.section-2-info-middle-num-text,
.section-3-info-middle-num-text,
.section-4-info-middle-num-text {
    font-size: calc(7.5vw);
}

.section-3-info-middle {
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.section-3-info-middle.visible {
    opacity: 1;
}

.section-3-info-middle-num {
    margin-top: 0.12em;
}

.section-3-info-middle-num-text {
    font-size: 5.75vw;
    position: absolute;
    top: 90%;
    width: 2.6em;
    line-height: 0.8;
    text-align: center;
    right: 0;
}

.section-4-info-middle,
.section-4-content-middle {
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.section-4-info-middle.visible,
.section-4-content-middle.visible {
    opacity: 1;
}

.section-2-outer {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.section-2-content-bottom {
    font-size: calc(3.5vw);
    position: relative;
    font-weight: 300;
}

.section-2-content-bottom-inner {
    position: absolute;
    top: -0.29em;
    left: 0;
    line-height: 1.27;
    width: 75%;
}

.section-2-info,
.section-3-info {
    width: 31%;
}

.section-3-content-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: calc(3.75vw);
    line-height: 1;
    font-weight: 300;
}

.section-3-content-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.section-3-content-bottom .disclamer {
    font-size: 12px;
    font-weight: 300;
    color: #999;
}

.section-2-content-bottom-text {
    position: relative;
    z-index: -1;
    width: 86%;
    visibility: hidden;
}

.section-2-content-bottom-text,
.section-2-info-bottom-text {
    font-size: 1.5vw;
    font-weight: 300;
}

.section-3-content-middle-title {
    width: 75%;
    margin-top: 6.735vw;
    font-size: 3.125vw;
}

.section-3-content-middle-text {
    width: 70%;
}

.section-3-content-middle-text {
    font-size: 0.4em;
    margin-top: 2em;
}

.section-3-content-bottom,
.section-3-info-bottom {
    height: 9vw;
    max-height: 144px;
}

.section-4-outer {
    height: calc(180vh);
    position: relative;
    z-index: 5;
}

.section-4 {
    color: #FFF;
    padding-top: calc(7vh);
    padding-bottom: calc(14vh);
    z-index: 2;
}

.section-4 .sticky-menu {
    color: #FFF;
}

.section-4 .sticky-menu .cls-2 {
    fill: #fff;
}

.section-4 .sticky-menu .product-button {
    color: #FFF;
    border-color: #FFF;
}

.section-4 .sticky-menu .product-button:hover {
    color: #000;
    background: #FFF;
}

.section-4-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-4-info,
.section-4-content {
    width: 32%;
}

.section-4-center {
    width: 38%;
    text-align: center;
}

.section-4-center-title {
    font-size: 3.5vw;
    font-weight: 300;
    line-height: 1;
    padding-bottom: 1.25em;
}

.section-4-center-title sup {
    margin-right: -1.5em;
}

.section-4 .section-content-top {
    width: 26%;
}

.section-4-content-middle-bottom {
    padding-top: calc(2.5vw);
}

.section-4-content-bottom-title {
    font-size: calc(3.75vw);
    padding-top: 0.8em;
    font-weight: 300;
    line-height: 0.9;
}

.section-4-content-bottom-text {
    font-size: calc(1.875vw);
    margin-top: 1em;
    margin-bottom: 1em;
    font-weight: 300;
    line-height: 1.1;
}

.section-4-info {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.section-4-info-bottom {
    font-size: calc(1.875vw);
    line-height: 1.1;
    font-weight: 300;
    width: 85%;
    margin-top: 1em;
    margin-bottom: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    left: 3vw;
    position: relative;
}

.section-5 {
    background: #F8FDFF;
    padding-top: calc(7vh);
    padding-bottom: calc(14vh);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.section-5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30vh;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #E3F0F4), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, #E3F0F4 40%, rgba(0, 0, 0, 0) 100%);
}

.section-5 .slide-light {
    display: block;
}

.section-5 .slide-dark {
    display: none;
}

.section-5 .section-inner {
    position: relative;
    z-index: 1;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.section-5.dark {
    color: #FFF;
    background: #1D191B;
}

.section-5.dark:after {
    display: none;
}

.section-5.dark .slide-dark {
    display: block;
}

.section-5.dark .slide-light {
    display: none;
}

.design-text-item-title {
    font-size: 3.75vw;
    font-weight: 300;
    margin-bottom: 0.5em;
}

.section-5-content-middle-text {
    font-weight: 300;
    font-size: calc(1.5vw);
    margin-top: 0.5em;
}

.section-5-content-middle-text p {
    margin-bottom: 1.5em;
    line-height: 1.2;
    width: 80%;
}

.section-5-content-middle-text p:last-child {
    margin-bottom: 0;
}

.section-5-outer {
    height: calc(200vh);
    position: relative;
    z-index: 4;
}

.section-5-slider {
    width: 63%;
    height: calc(100% + 21vh);
    position: relative;
    top: -7vh;
}

.section-5-slider-inner {
    width: 126%;
    height: 100%;
}

.section-5-slider-inner .owl-stage-outer,
.section-5-slider-inner .owl-stage,
.section-5-slider-inner .owl-item {
    height: 100%;
}

.section-5-slider-inner .owl-nav {
    width: 80%;
    left: 0;
    top: 100%;
}

.section-5-slider-inner .owl-nav .owl-next,
.section-5-slider-inner .owl-nav .owl-prev {
    height: 10vw;
    width: 7vw;
}

.section-5-slider-inner .owl-nav .owl-next {
    right: 0;
}

.section-5-slider-inner .owl-nav .owl-prev {
    left: 0;
}

.section-5-slider-inner .owl-dot {
    position: relative;
}

.section-5-slider-inner .owl-dot:after {
    content: "";
    position: absolute;
    height: 40px;
    top: 50%;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.section-5-slider-inner .slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.section-5-slider-inner .slide-in {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}

.section-5-slider-inner .slide-in.drum {
    height: 96%;
    margin-top: 2vh;
}

.section-5-slider-inner .glass-wrap {
    position: absolute;
    border-radius: 50%;
    top: 3.5vw;
    left: 10.8vw;
    width: 46vw;
    height: 59.1vw;
    -webkit-transform: rotate(-43deg);
    transform: rotate(-43deg);
    overflow: hidden;
}

.section-5-slider-inner .glass-wrap.vertical {
    top: 5.7vh;
    left: 50%;
    margin-left: -2.2vh;
    width: 72.5vh;
    height: 94vh;
    -webkit-transform: translateX(-50%) rotate(-43deg);
    transform: translateX(-50%) rotate(-43deg);
}

.section-5-slider-inner .glass-wrap .glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-5-slider-inner .glass-wrap .glass:hover:after {
    opacity: 1;
    top: -30%;
    left: -30%;
    -webkit-transition-property: left, top, opacity;
    transition-property: left, top, opacity;
    -webkit-transition-duration: 1.7s, 1.7s, 0.15s;
    transition-duration: 1.7s, 1.7s, 0.15s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.section-5-slider-inner .glass-wrap .glass:after {
    content: "";
    position: absolute;
    top: -110%;
    left: -210%;
    width: 200%;
    height: 200%;
    opacity: 1;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(77%, rgba(255, 255, 255, 0)), color-stop(92%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0) 100%);
}

.section-5-slider-inner .glass-wrap .glass.animated:after {
    -webkit-animation: shine 1.7s ease;
    animation: shine 1.7s ease;
}

.section-5-slider-inner .glass-wrap .glass-popup-button-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(43deg);
    transform: translate(-50%, -50%) rotate(43deg);
    color: #FFF;
    font-weight: 900;
    font-size: 1.5vw;
    z-index: 1;
    line-height: 1;
    width: 9em;
    height: 9em;
}

.section-5-slider-inner .glass-wrap .glass-popup-button {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.section-5-slider-inner .glass-wrap .glass-popup {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

.section-5-slider-inner .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 25%;
    margin: auto;
    position: absolute;
    bottom: calc(8.5vh);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20.5%;
    z-index: 2;
}

.section-5-slider-inner .owl-dots .owl-dot {
    background: #999;
    height: 2px;
    width: 48%;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.section-5-slider-inner .owl-dots .owl-dot:hover, .section-5-slider-inner .owl-dots .owl-dot.active {
    background: #a50034;
}

.section-5-slider-inner .owl-dots .owl-dot.active {
    cursor: default;
}

.colors-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 3em;
    font-size: 1.125vw;
}

.colors-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 2em;
    cursor: pointer;
}

.colors-item:last-child {
    margin-right: 0;
}

.colors-item:hover .colors-circle:after, .colors-item.active .colors-circle:after {
    content: "";
    width: 120%;
    height: 120%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid #BEBEBE;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.colors-item.active {
    cursor: default;
}

.colors-circle {
    width: 40px;
    height: 40px;
    position: relative;
    margin-left: 1em;
    border-radius: 50%;
}

.design-text-item {
    margin-left: 4px;
}

.section-6 {
    background: #000;
    color: #FFF;
    padding-bottom: 8vh;
}

.section-6 .section-content-top-title .cls-2 {
    fill: #fff;
}

.section-6 .product-button {
    color: #FFF;
    border-color: #FFF;
}

.section-6 .product-button:hover {
    color: #000;
    background: #FFF;
}

.section-7 {
    background: -webkit-gradient(linear, left top, left bottom, from(#F8FDFF), color-stop(30.02%, #F8FDFF), color-stop(76.03%, #F8FDFF), to(#DBEAF0));
    background: linear-gradient(180deg, #F8FDFF 0%, #F8FDFF 30.02%, #F8FDFF 76.03%, #DBEAF0 100%);
    color: #000;
    padding-bottom: 0;
    height: 56.2vw;
}

.section-7 .section-7-slide.slide-dark .section-content-top-title .cls-2 {
    fill: #000;
}

.section-7 .section-7-slide .section-content-top-title .cls-2 {
    fill: #fff;
}

.section-7 .section-7-slide .section-content-top-text {
    color: #FFF;
}

.section-7 .section-7-slide.slide-dark .section-content-top-text {
    color: #000;
}

.section-7 .section-7-slide .product-button {
    color: #000;
    border-color: #000;
}

.section-7 .section-7-slide .product-button:hover {
    color: #fff;
    background: #000;
}

.section-7 .section-7-slide.slide-dark .product-button {
    color: #000;
    border-color: #000;
}

.section-7 .section-7-slide.slide-dark .product-button:hover {
    color: #fff;
    background: #000;
}

.section-7-slider {
    width: 100vw;
}

.section-7-page {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section-7-slider-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 1.875vw;
    font-weight: 900;
    width: auto;
    visibility: visible;
    border-bottom: 2px solid #a50034;
    padding-top: 4.5em;
}

.section-7-slider-dot-inner {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.section-7-slider-dot-inner:after {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.section-7-slider-dot {
    margin: 0 0.25em;
    height: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    color: #000;
}

.section-7-slider-dot:hover .section-7-slider-dot-inner {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.section-7-slider-dot:hover .section-7-slider-dot-inner:after {
    content: "";
    height: 2px;
    width: 120%;
    position: absolute;
    background: inherit;
    left: -10%;
    top: 100%;
}

.section-7-slider-dot.active {
    cursor: default;
}

.section-7-slider-dot.active .section-7-slider-dot-inner {
    font-size: 2em;
    position: relative;
}

.section-7-slider-dot.active .section-7-slider-dot-inner:after {
    content: "";
    height: 2px;
    width: 120%;
    position: absolute;
    background: #a50034;
    left: -10%;
    top: 100%;
}

.section-7-slide-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.section-7-slide-left {
    width: 50%;
}

.section-7-slide-right {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-7-slide-right.desk {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.slide-right-text {
    font-size: 2.25vw;
    margin: 0 auto;
    line-height: 1.2em;
    min-height: 2.4em;
    height: auto;
    width: 70%;
    text-align: center;
    font-weight: 300;
}

.slide-right-text.left {
    text-align: left;
}

.slide-right-text .text-small {
    font-size: 0.66em;
    margin-top: 1em;
    line-height: 1.2;
    width: 75%;
}

.slide-right-bubbles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto 3em;
}

.slide-right-bubble-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 33.33%;
}

.slide-right-bubble {
    width: 11.4vw;
    height: 11.4vw;
    background: #FFF;
    border-radius: 50%;
    font-size: 1vw;
    padding: 0.8em;
    margin-top: 1em;
    position: relative;
    text-align: center;
    font-weight: 900;
}

.slide-right-bubble-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slide-right-bubble-text {
    width: 100%;
}

.slide-right-bubble-icon {
    width: 50%;
}

.slide-right-bubble-tech {
    width: 25%;
}

.slide-right-bubble-tech.long {
    width: 63%;
}

.slide-right-logo {
    width: 30%;
    margin: 1.2em auto;
}

.slide-right-img {
    width: 43%;
    margin: 0 auto;
}

.slide-right-img.big {
    width: 46%;
}

.section-7-slide {
    position: relative;
}

.section-7-slide-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.section-7-slide-center-text {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    font-size: 0.875em;
    text-align: center;
    font-weight: 900;
    margin-top: 0.7em;
    line-height: 1.2;
}

.section-6-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.section-7-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.video-slider-wrap {
    width: 85%;
}

.video-slider-wrap .owl-stage-outer {
    width: 100vw;
}

.video-slider .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: auto;
    position: absolute;
    bottom: -38px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: calc(-17.5% + 25px);
    z-index: 2;
}

.video-slider .owl-dots .owl-dot {
    background: #a50034;
    height: 2px;
    position: relative;
    width: 5vw;
    max-width: 80px;
    margin-right: 10px;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.video-slider .owl-dots .owl-dot:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.video-slider .owl-dots .owl-dot:last-child {
    margin-right: 0;
}

.video-slider .owl-dots .owl-dot:hover, .video-slider .owl-dots .owl-dot.active {
    background: #999;
}

.video-slider .owl-dots .owl-dot.active {
    cursor: default;
}

.video-slider .owl-nav {
    width: calc(20vw + 80px);
    max-width: 315px;
    bottom: -23px;
    right: -17.5%;
    left: auto;
    top: auto;
}

.video-slider .owl-nav .owl-next,
.video-slider .owl-nav .owl-prev {
    width: 15px;
    height: 25.5px;
    -webkit-transform: none;
    transform: none;
}

.video-slider .owl-nav .owl-next:hover,
.video-slider .owl-nav .owl-prev:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.video-slider .owl-nav .owl-next:active,
.video-slider .owl-nav .owl-prev:active {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.video-slider .owl-nav .owl-prev {
    background: url(../img/video-slider-prev.svg) no-repeat center center/contain;
}

.video-slider .owl-nav .owl-next {
    background: url(../img/video-slider-next.svg) no-repeat center center/contain;
}

.video-slider-item-wrap {
    position: relative;
    width: 85%;
    cursor: pointer;
}

.video-slider-item-wrap:hover .video-slider-item-play rect {
    fill: #a50034;
    stroke: #a50034;
}

.video-slider-item-wrap:hover .video-slider-item-play path {
    fill: #fff;
}

.video-slider-item-wrap .repeat {
    position: absolute;
    top: 50%;
    left: 150%;
    width: 20%;
    cursor: pointer;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video-slider-item-content {
    position: absolute;
    width: 94%;
    left: 3%;
    bottom: 2.2vw;
    font-size: 2.1vw;
    font-weight: 300;
}

.video-slider-item-play {
    width: 15%;
}

.video-slider-item-play rect,
.video-slider-item-play path {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.video-slider-item-play svg {
    width: 100%;
    display: block;
}

.video-slider-item-title {
    margin-top: 0.1em;
}

.filters-title-wrap {
    position: relative;
    padding-bottom: 1vw;
    max-width: 90%;
    margin: auto;
}

.filters {
    background: #FFF;
    position: relative;
}

.filters .sticky-menu {
    opacity: 1;
}

.filters-wrap {
    max-width: 1920px;
    margin: 0 auto;
    background: #DFDFDF;
    padding: 1vw 5vw;
    border-radius: 5px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
}

.filters-inner {
    font-size: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.color-label.all-colors {
    display: none;
}

.filters-title {
    font-size: calc(3vw);
    line-height: 0.65;
    text-align: center;
    padding-top: 2.5vw;
    padding-bottom: 1em;
    font-weight: bold;
    position: relative;
    top: 0.15em;
}

.filters-qn {
    width: 10%;
    text-align: right;
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filters-qn-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0.2em;
}

.select-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.filters-select {
    font-size: 20px;
    background: #FFF url(../img/select-arrow.svg) no-repeat right 0.4em center/15px 8px;
    padding: 0.2em 1em;
    padding-right: 2em;
    line-height: 1;
    border-radius: 2em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.filters-select::-ms-expand {
    display: none;
}

.filters-select:focus, .filters-select:active {
    outline: none;
}

.checkbox-label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkbox {
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #BABABA;
    background: #FFF;
    margin-right: 10px;
    position: relative;
    border-radius: 50%;
}

.checkbox-label .checkbox svg {
    display: none;
    position: absolute;
    width: 90%;
    max-height: 90%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.checkbox-label .checkbox-text {
    width: calc(100% - 30px);
}

.checkbox-label input:checked ~ .checkbox svg {
    display: block;
}

.filters-color {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.color-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.color-label input {
    display: none;
}

.color-label .colorbox {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    border: 1px solid #BABABA;
    position: relative;
    border-radius: 20px;
}

.color-label .colorbox.color-all {
    background: linear-gradient(45deg, #ffffff 0%, #ffffff 48%, #f90e32 48%, #f90e32 52%, #ffffff 52%, #ffffff 100%);
}

.color-label .colorbox.color-silver {
    background: -webkit-gradient(linear, left top, left bottom, from(#D4D4D4), to(#979797));
    background: linear-gradient(180deg, #D4D4D4 0%, #979797 100%);
}

.color-label .colorbox.color-white {
    background: #FFF;
}

.color-label .colorbox.color-platinum {
    background: #333;
}

.color-label input:checked ~ .colorbox:after {
    content: "";
    width: 140%;
    height: 140%;
    top: 50%;
    left: 50%;
    border-radius: 40px;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid #a50034;
}

.filters-reset {
    will-change: transform;
    font-size: calc(1vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.filters-reset:hover .filters-reset-icon {
    background: #e10b4b;
}

.filters-reset .filters-reset-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #a50034;
    margin-left: 0.5em;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.filters-reset .filters-reset-icon:after, .filters-reset .filters-reset-icon:before {
    content: "";
    width: 60%;
    height: 2px;
    background: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.filters-reset .filters-reset-icon:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.filters-reset .filters-reset-text {
    font-size: 1.5em;
    line-height: 1;
}

.wtb-block {
    max-width: 1600px;
    width: 90%;
    margin: 10px auto 0;
    padding-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wtb-block .owl-item {
    padding: 4px 0;
}

.wtb-item {
    width: calc(33.33% - 20px);
    background: #FFF;
    font-size: calc(3vw);
    padding: 0.5em;
    text-align: left;
    color: #000;
    position: relative;
    overflow: hidden;
    margin: 10px;
    -webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
}

.wtb-item.hide {
    display: none;
}

.all-models {
    margin: -30px auto 30px;
    font-size: 1.5vw;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.all-models-text {
    margin-top: 0.7em;
}

.all-models-icon {
    width: 2em;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wtb-title {
    line-height: 1;
    position: relative;
    margin: auto;
    font-size: 14px;
    text-align: center;
    width: 90%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.2em;
    margin: 0;
}

.wtb-subtitle {
    font-size: 14px;
    padding: 0.2em;
    position: relative;
}

.wtb-subtitle span {
    color: #FFF;
    background: #a50034;
    font-size: 0.8em;
    margin-left: 0.5em;
    border-radius: 2em;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 1.2em;
    width: 1.2em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    cursor: pointer;
}

.wtb-title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.wtb-buttons-row {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wtb-button {
    width: 70%;
    font-size: 14px;
    margin-bottom: 0.3em;
    padding: 0.8em 0;
    border: 1px solid #000;
    text-decoration: none;
    color: #FFF;
    background: #000;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.wtb-button:hover {
    background: #e10b4b;
    border-color: #e10b4b;
}

.wtb-button.buy-online {
    color: #000;
    background: #FFF;
}

.wtb-button.buy-online:hover {
    color: #FFF;
    background: #000;
    border-color: #000;
}

.wtb-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    -webkit-transition: 3s;
    transition: 3s;
}

.wtb-item-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 1;
    text-align: center;
    display: none;
}

.wtb-item-popup-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 2vw;
    height: 2vw;
    max-width: 32px;
    max-height: 32px;
    border-radius: 50%;
    background: #a50034;
    cursor: pointer;
}

.wtb-item-popup-close:before, .wtb-item-popup-close:after {
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    background: #FFF;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.wtb-item-popup-close:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.wtb-item-popup-title {
    font-size: 32px;
    font-weight: 600;
    padding: 0 1em;
}

.wtb-item-popup-model {
    font-size: 18px;
    padding: 0 0.5em;
    margin-bottom: 1.5em;
    margin-top: 0.5em;
}

.wtb-item-popup-features {
    font-size: 18px;
    padding: 0 0.5em;
}

.wtb-item-popup-features li {
    margin-bottom: 0.2em;
    font-size: 14px;
    list-style-type: none;
    position: relative;
}

.wtb-item-popup-features li:before {
    content: "•";
    padding-right: 0.2em;
    font-size: 1.2em;
}

.wtb-item-popup-features li:last-child {
    margin-bottom: 0;
}

.wtb-item-row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
    text-decoration: none;
}

.wtb-item-img {
    width: 80%;
}

.wtb-item-price {
    font-size: 14px;
    margin-top: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.price-info {
    margin-left: 10px;
    position: relative;
}

.price-info .tooltip-button {
    display: block;
    position: relative;
    width: 16px;
}

.price-info .tooltip-button .hover {
    display: none;
}

.price-info .tooltip-button:hover .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.price-info .tooltip {
    display: none;
    position: absolute;
    top: auto;
    bottom: 25px;
    right: -45px;
    width: auto;
    padding: 19px 19px 17px;
    border-radius: 5px;
    background: #fff;
    font-size: 14px;
    z-index: 1;
    border: 1px solid #a5a5a5;
    line-height: normal;
    color: #333;
    width: 200px;
}

.price-info .tooltip-button:hover:after,
.price-info .tooltip-button:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border: solid transparent;
    margin-left: -12px;
    border-width: 12px 12px 0;
    border-color: rgba(243, 243, 243, 0);
    z-index: 3;
}

.price-info .tooltip-button:hover:before {
    border-top-color: #a5a5a5;
    top: -10px;
}

.price-info .tooltip-button:hover:after {
    top: -11px;
    border-top-color: #fff;
}

.price-info .tooltip-button:hover + .tooltip {
    display: block;
}

.wtb-item-features {
    width: 100%;
    font-size: 14px;
    min-height: 7.5em;
    line-height: 1;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wtb-item-features span {
    font-size: 0.67em;
}

.wtb-item-features li {
    margin-bottom: 0.3em;
    list-style-type: none;
    position: relative;
}

.wtb-item-features li:before {
    content: "•";
    padding-right: 0.2em;
    font-size: 1.2em;
}

.wtb-item-features li:last-child {
    margin-bottom: 0;
}

.wtb-weight-wrap {
    font-size: 3.125vw;
    line-height: 1;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.wtb-weight-wrap .wtb-weight,
.wtb-weight-wrap .wtb-width {
    padding: 0.1em 0.3em;
    position: relative;
}

.wtb-weight-wrap .wtb-weight:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 70%;
    width: 1px;
    background: #000;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.no-results {
    display: none;
    width: 100%;
}

.no-results-inner {
    height: calc(30vw);
    max-height: 480px;
    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;
    font-size: calc(3vw);
}

.disclamer-section {
    font-size: 12px;
    padding: 2em 0;
    background: #E9ECF0;
    color: #666;
    font-weight: 300;
}

.disclamer-section p {
    margin-bottom: 0.1em;
    font-weight: 300;
}

.disclamer-section p:last-child {
    margin-bottom: 0;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: radial-gradient(500.17px at 50% 44.36%, #4B4B59 0%, #323232 59.2%, #1C1C1C 100%);
    display: none;
    color: #FFF;
}

.popup img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-wrap {
    width: 90%;
    margin: 0 auto;
    max-width: 1920px;
}

.popup-header {
    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;
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
}

.popup-logo-wrap {
    font-size: calc(4.375vw);
    width: 2.75em;
}

.popup-logo-wrap svg {
    display: block;
    width: 100%;
    height: auto;
}

.popup-logo-wrap svg .cls-2 {
    fill: #fff;
}

.popup-logo-text {
    font-size: .26em;
    margin-top: .3em;
    line-height: 1.1;
}

.popup-close-wrap {
    font-size: calc(4.375vw);
    width: 2.75em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.popup-close {
    width: 2.6vw;
    max-width: 41px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.popup-close svg {
    display: block;
    width: 100%;
    height: auto;
}

.popup-close:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.popup-title {
    font-size: 2.8vw;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.popup-header .cls-1 {
    fill: #a50034;
}

.popup-content {
    width: 70%;
    margin: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.popup-content-slider {
    margin: auto;
}

.popup-content-slider .owl-item {
    left: 2px;
}

.popup-content-slider .owl-nav {
    width: 140%;
    top: 50%;
    left: -20%;
}

.popup-content-slider .owl-nav .owl-next,
.popup-content-slider .owl-nav .owl-prev {
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    width: 50px;
    height: 50px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.popup-content-slider .owl-nav .owl-next:hover,
.popup-content-slider .owl-nav .owl-prev:hover {
    -webkit-transform: translateY(-50%) scale(1.05);
    transform: translateY(-50%) scale(1.05);
}

.popup-content-slider .owl-nav .owl-next:active,
.popup-content-slider .owl-nav .owl-prev:active {
    -webkit-transform: translateY(-50%) scale(0.95);
    transform: translateY(-50%) scale(0.95);
}

.popup-content-slider .owl-nav .owl-prev {
    background: url(../img/video-slider-prev.svg) no-repeat center center/contain;
    left: 0;
}

.popup-content-slider .owl-nav .owl-next {
    right: 0;
    background: url(../img/video-slider-next.svg) no-repeat center center/contain;
}

.popup-content-slider-item {
    position: relative;
}

.popup-video {
    width: 100%;
    max-height: 100%;
}

.slider-popup {
    opacity: 0;
}

.slider-popup.active {
    opacity: 1;
}

.slider-popup .popup-logo-wrap {
    display: none;
}

.slider-popup .popup-header {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.popup-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: #000;
}

.popup-video-container.active {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.popup-video-container.active iframe {
    width: 100%;
    height: 100%;
}

.popup-play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10%;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.popup-play:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
}

/********** ie ***************/
.page-outer.ie {
    overflow: hidden;
}

.page-outer.ie .product-img-inner ~ .line-bottom .line,
.page-outer.ie .product-img-inner ~ .line-top .line {
    height: 2px;
}

.page-outer.ie .hero-title-inner svg {
    height: 3.2vw;
    max-height: 51px;
}

.page-outer.ie .cloth-text svg {
    height: 1.5vw;
    max-height: 24px;
}

.page-outer.ie .hero-bg-img {
    top: -120%;
}

.page-outer.ie .hero-bg.active .hero-bg-img {
    top: 0;
}

.page-outer.ie .section-content-top-title svg {
    height: 3.2vw;
    max-height: 51px;
}

.page-outer.ie .sticky-title {
    display: none;
}

.page-outer.ie .section-6-outer .section-6 {
    position: relative;
}

.page-outer.ie .section-7-outer .section-7 {
    position: relative;
}

.page-outer.ie .sticky-menu-wrapper {
    position: relative;
    z-index: 3;
}

.page-outer.ie .section-1 {
    margin: 0 auto !important;
}

.page-outer.ie .section-4 {
    position: relative;
    background: url(../img/anim/cloth_13_1_00001.jpg) no-repeat center center/cover;
}

.page-outer.ie .section-5-outer {
    overflow: hidden;
}

.page-outer.ie .section-5-outer,
.page-outer.ie .section-4-outer,
.page-outer.ie .section-outer {
    height: auto;
    margin: 0 auto;
}

.page-outer.ie .section-1-1-slider,
.page-outer.ie .section-3-info-middle {
    opacity: 1;
}

.page-outer.ie .section-4-canvas {
    display: none;
}

.page-outer.ie .section-4-content-middle, .page-outer.ie .section-4-info-middle {
    opacity: 1;
}

.page-outer.ie .section-5-slider .owl-stage-outer {
    -webkit-transform: none !important;
    transform: none !important;
}

.page-outer.ie .wtb-item-row {
    display: block;
}

.page-outer.ie .wtb-item-img {
    margin: auto;
}

.page-outer.ie .filters {
    margin-top: 40px;
}

.page-outer.ie .wtb-weight-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}

.page-outer.ie .progress-bar {
    display: none;
}

.page-outer.ie .section-2-content-bottom-text {
    opacity: 0;
}

.page-outer.ie .section-7-slider-dots,
.page-outer.ie .section-1-1-main-slider-dots {
    padding-top: 2em;
}

.page-outer.ie .hero-title {
    top: 2vh;
}

.page-outer.ie .wtb-title-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page-outer.ie .wtb-title-wrap .wtb-title {
    width: auto;
}

.page-outer.ie .all-models {
    margin-bottom: 0;
    padding-bottom: 30px;
}

.page-outer.ie .video-bg-slider-wrap-bg.active .slick-active .video-bg-slider-item {
    -webkit-animation: none;
    animation: none;
}

.popup.ie .popup-logo-wrap svg {
    height: 3.2vw;
    max-height: 51px;
}

/************* wide ************/
.page-outer.wide .prod-img.first {
    -webkit-transform: translate(-50%, 0) scale(1);
    transform: translate(-50%, 0) scale(1);
}

.page-outer.wide .hero-wm-wrap {
    width: 34.15vh;
    height: 45vh;
}

.page-outer.wide .hero-wm-bg {
    width: 100vh;
}

.page-outer.wide .hero-wm-bg.slim {
    width: 35vh;
}

.page-outer.wide .prod-img {
    width: 50.3vh;
}

.page-outer.wide .product-img-inner, .page-outer.wide .product-img-inner-side {
    height: 55vh;
}

.page-outer.wide .section-1-1-main-slider {
    font-size: 5vh;
}

.page-outer.wide .page-outer.wide .section-1-1-main-slider {
    font-size: 5vh;
}

.page-outer.wide .section-7-slider-dots,
.page-outer.wide .section-1-1-main-slider-dots {
    font-size: 4vh;
}

.page-outer.wide .section-6 {
    min-height: 46vw;
}

.page-outer.wide .section-7 {
    min-height: 46vw;
}

@-webkit-keyframes opacity {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

@keyframes opacity {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

@media (min-width: 1601px) {
    .section-1-1-main-slider-dots {
        font-size: 30px;
    }

    .section-1-1-main-slider {
        font-size: 36px;
    }

    .section-1-1-slider {
        margin-bottom: -80px;
    }

    .section-1-1-info-middle-slide.fake-content {
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .sticky-menu.no-sticky .sticky-title {
        font-size: 50px;
    }

    .wm-dd-slider {
        font-size: 45px;
    }

    .hero-title {
        font-size: 60px;
    }

    .sticky-menu-wrapper {
        margin-bottom: -128px;
    }

    .sticky-menu-inner {
        margin-top: 40px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-text {
        font-size: 42px;
    }

    .hero-text-outer {
        font-size: 36px;
    }

    .scroll-text-wrap {
        font-size: 24px;
    }

    .sticky-menu-logo {
        font-size: 70px;
    }

    .section-content-top,
    .section-info-top {
        font-size: 70px;
    }

    .product-button {
        font-size: 14px;
    }

    .progress-bar {
        font-size: 24px;
    }

    .section-2-content-middle-num,
    .section-3-content-middle-num,
    .section-4-content-middle-num,
    .section-2-info-middle-num,
    .section-3-info-middle-num,
    .section-4-info-middle-num {
        font-size: 230px;
    }

    .section-2-content-middle-num-text,
    .section-3-content-middle-num-text,
    .section-4-content-middle-num-text,
    .section-2-info-middle-num-text,
    .section-3-info-middle-num-text,
    .section-4-info-middle-num-text {
        font-size: 120px;
    }

    .product-img-inner .line-top .line .line-text,
    .product-img-inner .line-bottom .line .line-text {
        font-size: 32px;
    }

    .section-1-1-info-middle-title-big {
        font-size: 136px;
    }

    .section-1-1-info-middle-title {
        font-size: 45px;
    }

    .section-1-1-info-middle-text {
        font-size: 28px;
    }

    .section-1-1-slider-item {
        font-size: 136px;
    }

    .cloth-text {
        font-size: 24px;
    }

    .section-2-content-bottom {
        font-size: 56px;
    }

    .section-3-content-middle {
        font-size: 60px;
    }

    .section-3-content-middle-title {
        margin-top: 108px;
        font-size: 50px;
    }

    .section-3-info-middle-num-text {
        font-size: 92px;
    }

    .section-2-content-bottom-text,
    .section-2-info-bottom-text {
        font-size: 24px;
    }

    .section-4-content-bottom-title {
        font-size: 60px;
    }

    .section-4-content-bottom-text {
        font-size: 30px;
    }

    .section-4-info-bottom {
        font-size: 30px;
        left: 48px;
    }

    .design-text-item-title {
        font-size: 60px;
    }

    .section-5-content-middle-text {
        font-size: 24px;
    }

    .section-4-content-middle-bottom {
        padding-top: 40px;
    }

    .section-4-center-title {
        font-size: 50px;
    }

    .section-5-slider-inner .glass .glass-popup,
    .section-5-slider-inner .glass .glass-popup-button {
        font-size: 24px;
    }

    .colors-panel {
        font-size: 18px;
    }

    .video-slider-item-content {
        font-size: 35px;
        bottom: 35px;
    }

    .filters-qn {
        font-size: 24px;
    }

    .filters-reset {
        font-size: 16px;
    }

    .wtb-item {
        font-size: 60px;
    }

    .filters-wrap {
        padding-left: 80px;
        padding-right: 80px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .filters-title-wrap {
        margin-bottom: 16px;
    }

    .no-results-inner {
        font-size: 48px;
    }

    .filters-title {
        font-size: 60px;
        padding-top: 40px;
    }

    .wtb-weight-wrap {
        font-size: 50px;
    }

    .page-outer.ie .section-1 .hero-img {
        margin-top: 160px;
    }

    .popup-header {
        padding-top: 40px;
        padding-bottom: 24px;
    }

    .popup-header .popup-logo-wrap {
        font-size: 70px;
    }

    .popup-header .popup-close-wrap {
        font-size: 70px;
    }

    .popup-header .popup-title {
        font-size: 45px;
    }

    .all-models {
        font-size: 24px;
    }

    .ie.page-outer .sticky-menu-wrapper {
        margin-bottom: 0;
    }
}

@media (min-width: 1601px) and (min-height: 850px) {
    .prod-img.first {
        -webkit-transform: translate(-50%, -10%) scale(1.2);
        transform: translate(-50%, -10%) scale(1.2);
    }
}

@media (max-width: 1400px) {
    .prod-img.first {
        -webkit-transform: translate(-50%, 0%) scale(1);
        transform: translate(-50%, 0%) scale(1);
    }
}

/********animation*******/
.section-5-slider .owl-stage-outer {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.section-2-content-middle,
.section-2-info-middle {
    opacity: 0;
}

@media (max-width: 767px) {
    body.fixed {
        width: 100%;
        height: auto;
        overflow: unset;
    }

    .section-5-content{
        position: absolute;
        top: 55%;
    }

    .section-5.dark .slide-dark.not-mob {
        display: none;
    }

    .desk {
        display: none !important;
    }

    .mob {
        display: block !important;
    }

    .section-1,
    .section-1-1,
    .section-2,
    .section-3 {
        opacity: 1;
    }

    .section-3 .circle,
    .section-3 .turbowash-sp {
        display: block;
    }

    .hero-bg {
        height: auto;
        position: static;
    }

    .section {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 165vw;
        z-index: 1;
    }

    .hero-wm-bg {
        bottom: auto;
        top: 92vw;
        width: 80%;
    }

    .hero-bg-img {
        top: 165vw;
        height: 165vw;
        overflow: unset;
    }

    .hero-bg-img:after {
        height: 30%;
    }

    .hero-button-wrap {
        display: none;
    }

    .section-outer {
        overflow: hidden;
    }

    .sticky-menu-inner {
        margin-top: 5vw;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .sticky-menu-logo {
        position: static;
        font-size: 15vw;
    }

    .sticky-menu-button {
        display: none;
    }

    .hero-title {
        top: 0;
    }

    .hero-wm-wrap {
        width: 31.35vw;
        height: 44.8vw;
        position: relative;
    }

    .prod-img.first {
        bottom: auto;
        top: 88vw;
    }

    .section.section-1 {
        padding-bottom: 10vw;
    }

    .section-2,
    .section-3,
    .section-4,
    .section-5,
    .section-6,
    .section-7,
    .section-1-1 {
        padding-top: 5vw;
        padding-bottom: 10vw;
    }

    .section-2 .sticky-menu,
    .section-3 .sticky-menu,
    .section-4 .sticky-menu,
    .section-5 .sticky-menu,
    .section-6 .sticky-menu,
    .section-7 .sticky-menu,
    .section-1-1 .sticky-menu {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 1;
        left: 50%;
    }

    .section-1-1-info-middle-slider .owl-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .section-7-slider-dots,
    .section-1-1-main-slider-dots {
        padding-top: 0;
        font-size: 6.25vw;
        border-bottom: none;
        visibility: visible;
    }

    .video-bg-slider-wrap-bg {
        top: 165vw;
        opacity: 1;
    }

    .video-bg-slider-wrap-bg:after {
        background: -webkit-gradient(linear, left top, left bottom, from(#000000), color-stop(19.33%, #000000), color-stop(60%, rgba(0, 0, 0, 0)));
        background: linear-gradient(180deg, #000000 0%, #000000 19.33%, rgba(0, 0, 0, 0) 60%);
    }

    .video-bg-slider-wrap-bg:before {
        content: "";
        width: 100%;
        height: 33%;
        bottom: -1%;
        left: 0;
        background: #FFF;
        z-index: 1;
        position: absolute;
    }

    .video-bg-slider-wrap-bg.active .slick-active .video-bg-slider-item {
        -webkit-animation: none;
        animation: none;
    }

    .video-bg-slider-wrap .video-bg-item-1 {
        background: url(../img/01.jpg?v=23) no-repeat top center/cover;
    }

    .video-bg-slider-wrap .video-bg-item-2 {
        background: url(../img/02.jpg?v=23) no-repeat top center/cover;
    }

    .video-bg-slider-wrap .video-bg-item-3 {
        background: url(../img/03.jpg?v=23) no-repeat top center/cover;
    }

    .section-1-1-main-slider-dot.active .section-1-1-main-slider-dot-inner:after {
        width: 3vw;
        height: 3vw;
        left: 50%;
    }

    .section-1-1-main-slider-dot:hover.active .section-1-1-main-slider-dot-inner:after {
        background: #DCDCDC;
    }

    .section-1-1-main-slider-dot:hover .section-1-1-main-slider-dot-inner:after {
        background: #a50034;
        width: 3vw;
        height: 3vw;
        left: 50%;
    }

    .section-1-1-main-slider-dot .section-1-1-main-slider-dot-inner {
        position: relative;
    }

    .section-1-1-main-slider-dot .section-1-1-main-slider-dot-inner:after {
        content: "";
        position: absolute;
        top: 100%;
        width: 3vw;
        height: 3vw;
        border-radius: 50%;
        left: 50%;
        background: #a50034;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .section-7-page {
        top: 24vw;
    }

    .section-7 .section-7-slide.slide-dark .section-content-top-title .cls-2 {
        fill: #fff;
    }

    .section-7 .section-7-slide.slide-dark .section-content-top-text {
        color: #FFF;
    }

    .section-7-slide-right.desk {
        display: none !important;
    }

    .section-7-slide-center {
        display: none;
    }

    .section-7-slider-dot {
        color: #FFF;
    }

    .section-7-slider-dot.active .section-7-slider-dot-inner:after {
        width: 3vw;
        height: 3vw;
        left: 50%;
        background: #a50034;
    }

    .section-7-slider-dot:hover .section-7-slider-dot-inner:after {
        background: #a50034;
        width: 3vw;
        height: 3vw;
        left: 50%;
    }

    .section-7-slider-dot .section-7-slider-dot-inner {
        position: relative;
    }

    .section-7-slider-dot .section-7-slider-dot-inner:after {
        content: "";
        position: absolute;
        top: 100%;
        width: 3vw;
        height: 3vw;
        border-radius: 50%;
        left: 50%;
        background: #fff;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .section-7-slider .owl-nav {
        width: 90%;
        left: 5%;
    }

    .section-7-slider .owl-stage {
        display: block;
    }

    .section-7-slider .slide-mob-text {
        position: absolute;
        top: 44vw;
        color: #FFF;
        left: 50%;
        font-size: 4.5vw;
        line-height: 1.3;
        width: 90%;
        text-align: center;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .section-1-1-main-slider {
        width: 90%;
        position: relative;
    }

    .section-1-1-main-slider .owl-nav {
        top: 30vw;
        width: 111%;
        left: -5.5%;
    }

    .section-1-1-main-slider-item {
        font-size: 4.5vw;
        line-height: 1.3;
        margin-top: 1.5em;
        height: 9em;
        width: 95%;
    }

    .video-bg-slider-wrap,
    .video-bg-slider-wrap .video-bg-slider,
    .video-bg-slider-wrap .video-bg-slider-item,
    .video-bg-slider-wrap-bg {
        height: 165vw;
    }

    .watch-video-wrap {
        bottom: auto;
        top: 145vw;
        font-size: 5.5vw;
        color: #FFF;
        left: 0;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        right: auto;
        width: 100%;
    }

    .watch-video {
        font-weight: 900;
        text-align: center;
    }

    .watch-video-text {
        margin-right: 0;
        color: #000;
    }

    .section-1-1-main-slider-wrap {
        padding-top: 25vw;
    }

    .product-img-inner, .product-img-inner-side {
        height: 48vw;
        -webkit-transform: translateY(4%);
        transform: translateY(4%);
    }

    .prod-img {
        width: 44.8vw;
        top: 60vw;
    }

    .turbowash-sp {
        width: 27.2vw;
        height: 27.2vw;
        left: 48.2%;
    }

    .circle {
        width: 145%;
    }

    .hero-img-wrap {
        display: none;
    }

    .slick-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .section-1-1-content {
        display: none;
    }

    .section-1-1-slider-dots {
        display: none;
    }

    .section-1-1-info {
        width: 100%;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .section-1-1-info-middle {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .section-1-1-info-bottom {
        display: none;
    }

    .section-1-1-info-middle-slide {
        color: #000;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .section-1-1-info-middle-slide .cls-2 {
        fill: #000;
    }

    .section-1-1-info-middle-text {
        font-size: 4vw;
    }

    .section-1-1-info-middle-text.hight-text {
        margin-bottom: 0;
    }

    .section-2 {
        padding-bottom: 11vh;
    }

    .section-2 .section-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .section-2 .section-2-total {
        width: 100%;
        text-align: center;
        font-weight: 300;
        font-size: 4vw;
        margin-top: 1em;
    }

    .section-2 .section-2-outer {
        height: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .section-2-content,
    .section-2-info {
        width: 50%;
        height: auto;
    }

    .section-2-content-bottom,
    .section-2-info-bottom {
        display: none;
    }

    .section-2-content-middle,
    .section-2-info-middle {
        opacity: 1;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .section-2-content-middle {
        position: relative;
    }

    .section-2-content-middle:after {
        content: "";
        width: 2px;
        height: 88%;
        position: absolute;
        right: 0;
        top: 8%;
        background: #000;
    }

    .section-4-info-middle-num,
    .section-4-content-middle-num,
    .section-3-info-middle-num,
    .section-2-content-middle-num,
    .section-2-info-middle-num {
        margin: 0 auto;
        font-size: 20vw;
        line-height: 0.9;
    }

    .product-img-inner ~ .line-top {
        top: -4%;
    }

    .product-img-inner ~ .line-bottom {
        bottom: -4%;
    }

    .product-img-inner ~ .line-bottom .line-text,
    .product-img-inner ~ .line-top .line-text {
        font-size: 5vw;
    }

    .product-img-inner ~ .line-bottom .line-text span,
    .product-img-inner ~ .line-top .line-text span {
        font-size: 0.8em;
    }

    .section-3-info-middle-num {
        text-align: center;
    }

    .section-3-info-bottom {
        display: none;
    }

    .section-3-info-middle {
        margin: 0 auto;
        opacity: 1;
        display: block;
        height: auto;
        -webkit-transition: none;
        transition: none;
    }

    .section-2-content-middle-num-text,
    .section-2-info-middle-num-text,
    .section-3-content-middle-num-text,
    .section-3-info-middle-num-text,
    .section-4-content-middle-num-text,
    .section-4-info-middle-num-text {
        font-size: 9.4vw;
        line-height: 0.8;
    }

    .section-3-info-middle-num-text {
        position: static;
        margin: auto;
    }

    .section-wrap {
        width: 90%;
    }

    .section-info-top,
    .section-content-top {
        display: none;
    }

    .section-4 {
        background: url(../img/SteamPlus.jpg) no-repeat center center/cover;
    }

    .section-4-canvas {
        display: none;
    }

    .section-4-center-title {
        font-size: 6.25vw;
        width: 80%;
        margin: 0 auto;
    }

    .section-4-content-bottom-text {
        margin: auto;
        height: 5.2em;
        line-height: 1.3;
    }

    .section-4-content-bottom-text,
    .section-4-info-bottom {
        font-size: 4.375vw;
        text-align: center;
        width: 90%;
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .section-4-info-bottom,
    .section-4-content-bottom {
        height: 5.2em;
        font-size: 4.375vw;
        margin: 0.5em auto 0;
        line-height: 1.3;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .section-4-info-bottom {
        left: 0;
    }

    .hero-title {
        font-size: 7vw;
        margin-top: 1.5em;
        width: 80%;
        padding-bottom: 0.5em;
        padding-top: 1.5em;
        text-align: center;
    }

    .hero-text-outer {
        width: 100%;
    }

    .hero-text {
        font-size: 6.25vw;
        text-align: center;
        padding-top: 0;
        font-weight: 300;
        display: none;
    }

    .hero-title-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        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;
    }

    .hero-title-inner svg {
        width: 35vw;
        margin-bottom: 0;
        margin-top: 2vw;
        -ms-order: 2;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .scroll-text-wrap {
        display: none;
    }

    .section-3-info {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .section-3-info-middle-text {
        text-align: center;
        margin: 0 auto;
        font-size: 4vw;
        margin-top: 1em;
        font-weight: 300;
        margin-bottom: 2em;
    }

    .section-3-info-middle-text b {
        font-weight: 900;
        display: block;
    }

    .section-2 .section-inner,
    .section-3 .section-inner {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .section-3-content {
        display: none;
    }

    .section-3 .hero-img-wrap {
        display: none;
    }

    .section-3-info {
        width: 100%;
    }

    .section-4 {
        padding-top: 30vw;
        padding-bottom: 15vh;
    }

    .section-4 .section-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .section-4 .section-4-content,
    .section-4 .section-4-info {
        width: 50%;
        height: auto;
    }

    .section-4 .section-4-center {
        width: 100%;
        -ms-order: -1;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .section-4-content-middle {
        position: relative;
    }

    .section-4-content-middle:after {
        content: "";
        width: 2px;
        height: 88%;
        position: absolute;
        right: 0;
        top: 8%;
        background: #fff;
    }

    .section-4-info-middle,
    .section-4-content-middle {
        width: 100%;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .progress-bar {
        display: none !important;
    }

    .colors-panel {
        display: none;
    }

    .glass-wrap {
        display: none;
    }

    .section-4-outer {
        background: #000;
        height: 165vw;
    }

    .section-5-outer {
        background: #1D191B;
        height: 165vw;
    }

    .section-5 {
        padding-top: 0;
        padding-bottom: 15vh;
    }

    .section-5-slider-inner .slide {
        padding-top: 30vw;
        height: auto;
    }

    .section-5 .section-inner {
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .section-5-content-middle-text {
        text-align: center;
        width: 80%;
        margin: 0 auto;
    }

    .section-5 .section-content-top-title .cls-2 {
        fill: #fff;
    }

    .section-5-slider {
        height: auto;
        top: 0;
        -ms-order: -1;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        width: 100%;
    }

    .section-5-slider-inner {
        width: 100%;
    }

    .section-5-slider-inner .owl-nav {
        width: 100%;
        top: 55%;
    }

    .section-5-slider-inner .slide-in.drum,
    .section-5-slider-inner .slide-in {
        height: 47vw;
        margin-top: 0;
        background-position: 50% 50%;
    }

    .section-5-content {
        width: 100%;
    }

    .section-5-content .section-spacer {
        display: none;
    }

    .design-text-item-title {
        font-size: 6.25vw;
        margin-top: 1em;
    }

    .section-5-content-middle-text {
        font-size: 4.2vw;
    }

    .section-5-content-middle-text p {
        margin: 0;
        width: 100%;
    }

    .video-slider-item-wrap .repeat {
        left: 130%;
    }

    .video-slider .owl-dots {
        width: 117%;
        right: auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .video-slider .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin-right: 15px;
        position: relative;
    }

    .video-slider .owl-dots .owl-dot:last-child {
        margin-right: 0;
    }

    .section-7 {
        height: 143vw;
        padding-bottom: 0;
        padding-top: 0;
    }

    .section-7-slide .sticky-title {
        display: none;
    }

    .section-6 {
        padding-top: 30vw;
        padding-bottom: 15vh;
    }

    .section-6 .sticky-title {
        display: none;
    }

    .section-6 .section-6-title {
        color: #FFF;
        text-align: center;
        margin: 1em auto 0;
        font-size: 6.25vw;
    }

    .video-slider-item-content {
        left: 5%;
        width: 90%;
        line-height: 1;
    }

    .filters-sticky-wrap {
        position: relative;
        z-index: 4;
    }

    .filters-wrap {
        height: calc(100vh - 23vw);
        position: absolute;
        width: 100%;
        top: -2px;
        left: 0;
        padding: 0;
        background: #FFF;
        z-index: 2;
        display: none;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .filters-wrap.visible {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-transform: none;
        transform: none;
    }

    .filters-inner {
        background: #FFF;
        padding-top: 3vw;
        height: calc(100vh - 23vw);
        width: 100%;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .checkbox-label {
        width: 100%;
        padding-left: 10vw;
        padding-right: 10vw;
        padding-top: 3.5vh;
        padding-bottom: 3.5vh;
    }

    .select-wrap {
        width: 100%;
        padding-left: 10vw;
        padding-right: 10vw;
        background: #F5F5F5;
        padding-top: 3.5vh;
        padding-bottom: 3.5vh;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .filters-select {
        padding: .4em 1.5em .4em 1em;
        width: 47%;
    }

    .filters-color {
        width: 100%;
        padding-left: 10vw;
        padding-right: 10vw;
        background: #F5F5F5;
        padding-top: 3.5vh;
        padding-bottom: 3.5vh;
    }

    .filters-qn {
        padding-left: 10vw;
        padding-right: 10vw;
        padding-top: 3.5vh;
        padding-bottom: 3.5vh;
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .filters-title {
        line-height: 1.2;
    }

    .wtb-block {
        height: auto;
        min-height: auto;
        padding-bottom: 0;
        width: 100%;
    }

    .wtb-block .owl-dots {
        margin: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-top: 20px;
        padding-bottom: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .wtb-block .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        margin-right: 10px;
        border-radius: 50%;
        background: #a50034;
    }

    .wtb-block .owl-dots .owl-dot:last-child {
        margin-right: 0;
    }

    .wtb-block .owl-dots .owl-dot.active {
        background: #BABABA;
    }

    .wtb-item-features {
        display: none;
    }

    .all-models {
        display: none;
    }

    .filters .sticky-menu.no-sticky {
        top: 0;
        left: 0;
        background: #FFF;
        width: 100%;
        z-index: 5;
        -webkit-transform: none;
        transform: none;
    }

    .filters-reset {
        width: 100%;
        padding-left: 10vw;
        padding-right: 10vw;
        background: #F5F5F5;
        padding-top: 3.5vh;
        padding-bottom: 3.5vh;
    }

    .filters-reset .filters-reset-icon {
        margin-left: 0;
        margin-right: 0.5em;
        -ms-order: -1;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .filters-color-text {
        -ms-order: -1;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .color-label .colorbox {
        margin-right: 0;
        margin-left: 20px;
        width: 30px;
        height: 30px;
    }

    .filters-reset {
        font-size: 22px;
    }

    .filters-reset .filters-reset-text {
        font-size: 1em;
    }

    .buy-button-mob {
        display: block;
        position: fixed;
        bottom: 3.5vh;
        color: #fff;
        background: #a50034;
        font-size: 3.2vw;
        letter-spacing: 0.2em;
        text-align: center;
        padding: 0.8em;
        width: 100%;
        left: 0%;
        z-index: 7;
        border-radius: 5px;
    }

    .buy-button-mob.fake {
        position: absolute;
        display: none;
    }

    .buy-button-mob.absolute {
        position: absolute;
    }

    .buy-button-mob.hidden {
        display: none !important;
    }

    .filters-title {
        font-size: 6vw;
        width: 80%;
        margin: auto;
    }

    .sticky-filters,
    .filters-close {
        position: absolute;
        top: 5vw;
        right: 5vw;
        width: 10vw;
        z-index: 3;
    }

    .sticky-filters .opened {
        display: none;
    }

    .sticky-filters .closed {
        display: block;
    }

    .sticky-filters.visible .opened {
        display: block;
    }

    .sticky-filters.visible .closed {
        display: none;
    }

    .wtb-item.hide {
        display: block;
    }

    .wtb-weight-wrap {
        font-size: 8vw;
    }

    .wtb-subtitle, .wtb-title {
        font-size: 4vw;
    }

    .wtb-weight-wrap .wtb-weight, .wtb-weight-wrap .wtb-width {
        padding: 0.1em 0.2em;
    }

    .wtb-weight-wrap .wtb-weight span, .wtb-weight-wrap .wtb-width span {
        font-size: 0.5em;
    }

    .wtb-item {
        margin: 0 auto;
        width: 90%;
        max-width: 375px;
    }

    .wtb-button {
        padding: 0.5em 0;
        font-size: 12px;
    }

    .wtb-buttons-row {
        margin-top: 0;
    }

    .popup-logo,
    .popup-logo-text {
        display: none;
    }

    .popup-close-wrap {
        font-size: 3.5vw;
    }

    .popup-close {
        width: 16vw;
        max-width: 100%;
    }

    .popup-content-slider .owl-nav .owl-next,
    .popup-content-slider .owl-nav .owl-prev {
        width: 20px;
        height: 20px;
    }

    .popup-content {
        width: calc(105% - 40px);
    }

    .popup-content-slider .owl-nav {
        width: calc(100% + 50px);
        left: -25px;
    }

    .popup-title {
        font-size: 6vw;
        text-align: center;
        width: 65%;
    }

    .video-slider-item-content {
        font-size: 6vw;
    }

    .video-slider-item-title {
        height: 2.5em;
    }

    .popup-content-slider {
        margin: auto;
    }

    .popup-content-slider .owl-stage {
        display: block;
    }

    .popup-content-slider .owl-item {
        left: 1px;
    }

    .no-results-inner {
        font-size: 6vw;
        min-height: 50vh;
    }

    /****mobile-wide****/
}

@media (max-height: 700px) {
    .page-outer.ie .prod-img {
        width: 21.3vw;
    }

    .page-outer.ie .product-img-inner, .page-outer.ie .product-img-inner-side {
        max-height: 23vw;
    }

    .page-outer.ie .hero-wm-wrap {
        width: 15.35vw;
        height: 20.8vw;
    }

    .page-outer.ie .turbowash-sp {
        width: 14.4vw;
        height: 14.4vw;
    }
}

@media (max-width: 767px) and (orientation: portrait) {
    .design-slider .slide img {
        height: auto;
        width: 100%;
    }

    .design-slider {
        height: auto !important;
    }
}

@-webkit-keyframes arrow {
    from {
        -webkit-transform: none;
        transform: none;
    }
    to {
        -webkit-transform: translate(20%, -20%);
        transform: translate(20%, -20%);
    }
}

@keyframes arrow {
    from {
        -webkit-transform: none;
        transform: none;
    }
    to {
        -webkit-transform: translate(20%, -20%);
        transform: translate(20%, -20%);
    }
}

@-webkit-keyframes copter {
    from {
        -webkit-transform: none;
        transform: none;
    }
    to {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
}

@keyframes copter {
    from {
        -webkit-transform: none;
        transform: none;
    }
    to {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
}

@-webkit-keyframes turbowash {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes turbowash {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@-webkit-keyframes rotateWm {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes rotateWm {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@-webkit-keyframes rotateWmBack {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes rotateWmBack {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@-webkit-keyframes cardio {
    0% {
        stroke-dashoffset: -200%;
    }
    100% {
        stroke-dashoffset: 200%;
    }
}

@keyframes cardio {
    0% {
        stroke-dashoffset: -200%;
    }
    100% {
        stroke-dashoffset: 200%;
    }
}

@-webkit-keyframes cardioBack {
    0% {
        stroke-dashoffset: 200%;
    }
    100% {
        stroke-dashoffset: -200%;
    }
}

@keyframes cardioBack {
    0% {
        stroke-dashoffset: 200%;
    }
    100% {
        stroke-dashoffset: -200%;
    }
}

@-webkit-keyframes zoomIn {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes zoomIn {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes shine {
    0% {
        top: -110%;
        left: -210%;
    }
    100% {
        top: -30%;
        left: -30%;
    }
}

@keyframes shine {
    0% {
        top: -110%;
        left: -210%;
    }
    100% {
        top: -30%;
        left: -30%;
    }
}

.footer-cta {
    width: 100%;
    background: #F1F1F1;
    padding: 10px 0;
    z-index: 2;
}

.footer-cta.static {
    width: 100%;
}

.footer-cta.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
}

.footer-cta ul {
    text-align: center;
    width: 95%;
    max-width: 991px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-cta ul li {
    display: inline-block;
    margin: 5px 0;
    min-width: 120px;
    margin-right: 1.5%;
    margin-left: 1.5%;
}

.footer-cta ul li a {
    display: block;
    border-radius: 5px;
    border: solid 1px #333333;
    color: #333333;
    height: 30px;
    line-height: 30px;
    font-size: 11px;
    text-align: center;
    padding: 0 10px;
    text-decoration: none;
}

@media only screen and (min-width: 768px) {
    .footer-cta {
        padding: 15px 0;
    }

    .footer-cta ul li {
        margin: 5px 1.5%;
        width: 30%;
    }

    .footer-cta ul li a {
        padding: 0;
        padding-right: 10px;
        padding-left: 10px;
        height: 34px;
        line-height: 34px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 1680px) {
    .footer-cta ul li a {
        height: 40px;
        line-height: 40px;
    }
}

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

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

.flip-device-cover {
    display: none;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    text-align: center;
    -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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flip-device-text {
    font-size: 5vw;
    line-height: 1;
    display: block;
    margin-bottom: 3vw;
    font-weight: 300;
}

.flip-device img {
    width: 12vw;
    height: 12vw;
}

@media (max-width: 850px) and (max-height: 450px) and (orientation: landscape) {
    .flip-device-cover {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}


.disclamer-section .section-wrap {
    height: auto;
}