﻿@charset "UTF-8";

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/subset-Oswald-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/subset-Oswald-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/subset-Oswald-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/subset-Oswald-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/subset-Raleway-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


html {
    -webkit-text-size-adjust: none;
}

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

body, div {
  margin: 0;
  padding: 0;
}

body {
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 16px;
	font-weight: 300;
	text-align: center;
	color: #000;
	line-height: 2;
}

/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-size: 16px;
	overflow: hidden;
}

/* Section */

.section {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
}

.section.wide {
	max-width: 1400px;
}

/* Header */

#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 216px;
	background: #000;
	color: #fff;
	padding: 0 50px;
	font-size: 18px;
}

#header .logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 33px;
	font-weight: normal;
	line-height: 1.48;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

#header .logo img {
	display: block;
	width: 5.242424242424242em;
	margin-right: 0.4848484848484848em;
}

#header .options {
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	font-family: 'Raleway', Arial, sans-serif;
	font-weight: normal;
}

#header .options .btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 42px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

#header .options .btns a,
a.checkoutBtn {
	display: inline-block;
	position: relative;
	border: 1px solid #fff;
	color: #fff;
	padding: 3.5px 20px 3.5px 50px;
	margin-left: 15px;
	border-radius: 5px;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

#header .options .btns a:before,
a.checkoutBtn:before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	bottom: 0;
	width: 50px;
	background: no-repeat center;
	-webkit-transition: -webkit-filter 0.3s;
	transition: -webkit-filter 0.3s;
	-o-transition: filter 0.3s;
	transition: filter 0.3s;
	transition: filter 0.3s, -webkit-filter 0.3s;
}

#header .options .btns a.basket:before {
	background-image: url(../images/basket-ico.svg);
}

#header .options .btns a.cart:before,
a.checkoutBtn:before {
	background-image: url(../images/cart-ico.svg);
}

#header .options .btns a:hover,
a.checkoutBtn:hover {
	background-color: #fff;
	color: #000;
}

#header .options .btns a:hover:before,
a.checkoutBtn:hover:before {
	-webkit-filter: brightness(0) saturate(100%);
	        filter: brightness(0) saturate(100%);
}

#header #navigation {
	margin-right: 8px;
}

#header #navigation ul {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

#header #navigation ul li {
	margin: 0 0 0 40px;
	padding: 0;
	list-style: none;
}

#header #navigation ul li a {
	position: relative;
	display: inline-block;
	color: #FFF;
}

#header #navigation>ul>li a:after {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 0;
	opacity: 0;
	height: 1px;
	background: #fff;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#header #navigation>ul>li.active a:after,
#header #navigation>ul>li:hover a:after {
	left: 0;
	right: 0;
	opacity: 1;
}

/* Intro */

#intro {
	position: relative;
	border-bottom: 3px solid #000;
	padding-top: 387px;
}

#intro .bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;
}

#intro .product {
	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;
	position: absolute;
	right: 113px;
	top: 41px;
	width: 306px;
	height: 280px;
	background: #000;
	border-radius: 25px;
}

#intro .product img {
	display: block;
	margin: 0 auto;
	width: 55.22875816993464%;
}

#intro .info {
	position: relative;
	background: rgba(255,255,255,0.9);
}

#intro .info .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#intro .info .left {
	width: 700px;
	padding-top: 45px;
	padding-bottom: 45px;
	padding-right: 20px;
}

#intro .info .left>:last-child {
	margin-bottom: 0;
}

#intro .info .right {
	position: relative;
	width: 420px;
	margin-left: auto;
	padding: 35px 40px;
	z-index: 1;
}

#intro .info .right:before {
	content: "";
	position: absolute;
	left: 0;
	right: -9999em;
	top: 0;
	bottom: 0;
	background: #fff;
	z-index: -1;
}

#intro .info .right h2 {
	margin-bottom: 10px;
}

#intro .info .right .btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-top: 25px;
}

#intro .info .right .btns .linkBtn {
	margin-top: 0;
	margin-bottom: 0;
}

#intro .info .right .btns .linkBtn:last-child {
	margin-right: 0;
}

/* Content */

#content .section {
	padding-top: 50px;
	padding-bottom: 50px;
}

#content .section>:last-child {
	margin-bottom: 0;
}

/* Intro Text */

.introText {
	text-align: center;
	margin-bottom: 50px;
}

.introText>:last-child {
	margin-bottom: 0;
}

.introText h2 {
	margin-bottom: 13px;
}

.introText h3 {
	font-weight: 500;
}

/* Image Text */

.imageText {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 140px;
}

.imageText .image {
	width: 500px;
}

.imageText .image img {
	display: block;
	width: 100%;
	border-radius: 50px;
}

.imageText .text {
	width: 640px;
	margin-left: auto;
}

/* Quote Text */

.quoteText {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-bottom: 115px;
}

.quoteText .text {
	width: 580px;
	padding-left: 20px;
}

.quoteText .quote {
	position: relative;
	width: 635px;
	margin-left: auto;
	padding-left: 85px;
	z-index: 1;
}

.quoteText .quote:before {
	content: "";
	position: absolute;
	left: 0;
	right: -9999em;
	top: 0;
	bottom: 0;
	background: #000;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	z-index: -1;
}

/* Call to Action */

.cta {
	background: #000;
	padding: 45px 60px;
	border-radius: 50px;
	margin-bottom: 100px;
	color: #fff;
}

.cta>:last-child {
	margin-bottom: 0;
}

/* Gallery Text */

.galleryText {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-bottom: 70px;
}

.galleryText .text {
	width: 700px;
}

.galleryText .gallery {
	width: 490px;
	margin-left: auto;
}

.galleryText .gallery ul {
	margin: 0 -20px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.galleryText .gallery ul li {
	margin: 0 0 40px;
	padding: 0 20px;
	list-style: none;
	width: 50%;
}

.galleryText .gallery ul li a {
	display: block;
	border-radius: 50px;
	overflow: hidden;
}

.galleryText .gallery ul li img {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 1.5s;
	transition: -webkit-transform 1.5s;
	-o-transition: transform 1.5s;
	transition: transform 1.5s;
	transition: transform 1.5s, -webkit-transform 1.5s;
}

.galleryText .gallery ul li a:hover img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

/* Full Width */

.fullWidth {
	position: relative;
	text-align: center;
	padding: 68px 145px;
	margin-bottom: 95px;
	z-index: 1;
}

.fullWidth:before {
	content: "";
	position: absolute;
	left: -9999em;
	right: -9999em;
	top: 0;
	bottom: 0;
	background: #f5f5f5;
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
	z-index: -1;
}

.fullWidth>:last-child {
	margin-bottom: 0;
}

/* Two Columns */

.twoCols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 95px;
}

.twoCols .col {
	width: 590px;
}

/* Form Slider */

#formSlider {
	padding-top: 70px;
	padding-bottom: 70px;
	border-bottom: 3px solid #000;
	color: #fff;
}

#formSlider .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 50px;
}

#formSlider .section .quote {
	background: #000000;
	padding: 0 60px 0 60px;
	width: 50%;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
}

#formSlider .section .slider {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 50%;
	overflow: hidden;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

#formSlider .section .slider .swiper-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

#formSlider .slider .swiper-slide {
	position: relative;
}

#formSlider .slider .swiper-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}

#formSlider .slider .swiper-slide img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;
}

#formSlider .slider .swiper-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	bottom: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 0 9.5px;
}

#formSlider .slider .swiper-pagination-bullet {
	margin: 0 2.5px 5px;
	opacity: 1;
	width: 10px;
	height: 10px;
	outline: none;
	background: #fff;
}

#formSlider .slider .swiper-pagination-bullet-active {
	background-color: #000;
}

/* Form Box */

.formBox {
	max-width: 550px;
	padding-top: 43px;
	padding-bottom: 43px;
	color: #fff;
}

.formBox>:last-child {
	margin-bottom: 0;
}

.formBox .info {
	max-width: 440px;
	margin-bottom: 35px;
}

.formBox .fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 -10px;
}

.formBox .fields .field {
	width: 50%;
	padding: 0 10px;
	margin-bottom: 20px;
}

.formBox .fields .field .textbox {
	display: block;
	margin: 0;
	padding: 0 27px;
	width: 100%;
	height: 47px;
	border: 1px solid #fff;
	color: #fff;
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 16px;
	font-weight: normal;
	background: none;
	border-radius: 60px;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

.formBox .submitBtn {
	margin: 0;
}

/* Watch */

#watch {
	background: #f5f5f5;
}

#watch .section {
	padding: 70px 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#watch .video {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 548px;
	height: 360px;
	background: #010101;
	border-radius: 50px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	overflow: hidden;
}

#watch .video img {
	-webkit-transition: -webkit-transform 2s;
	transition: -webkit-transform 2s;
	-o-transition: transform 2s;
	transition: transform 2s;
	transition: transform 2s, -webkit-transform 2s;
}

#watch .video:hover img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1)
}

#watch .video:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 70px;
	height: 70px;
	margin-top: -35px;
	margin-left: -35px;
	border: 2px solid #fff;
	border-radius: 100%;
	background: url(../images/play-btn.svg) no-repeat center;
	-webkit-transition: -webkit-transform 1s;
	transition: -webkit-transform 1s;
	-o-transition: transform 1s;
	transition: transform 1s;
	transition: transform 1s, -webkit-transform 1s;
}

#watch .video:hover:after {
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}

#watch .text {
	margin-left: auto;
	width: 470px;
}

#watch .text>:last-child {
	margin-bottom: 0;
}

/* Footer */

#footer {
	background: #000;
	color: #fff;
	font-family: 'Raleway', Arial, sans-serif;
	font-size: 18px;
	font-weight: normal;
}

#footer a.checkoutBtn {
	margin: 0;
}

#footer .section {
	padding: 42px 25px 30px;
}

#footer .options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

#footer .options .left {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding-right: 20px;
	padding-left: 6px;
}

#footer .links ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 10px;
	padding: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#footer .links li {
	margin: 0 40px 0 0;
	padding: 0;
	list-style: none;
}

#footer .copyright {
	margin: 0;
	font-size: 14px;
}

#footer .copyright .cloud {
	display: inline-block;
	padding-left: 22px;
	background: url(../images/cloud-ico.svg) no-repeat 0 7px;
}

/* Hamburger */

.hamburger {
	display: none;
	position: absolute;
	top: 0;
	right: 7px;
	overflow: visible;
	margin-top: 3px;
	margin-left: 5px;
	-webkit-transform: scale(0.8);
	    -ms-transform: scale(0.8);
	        transform: scale(0.8);
	-webkit-transition-timing-function: linear;
	     -o-transition-timing-function: linear;
	        transition-timing-function: linear;
	-webkit-transition-duration: .15s;
	     -o-transition-duration: .15s;
	        transition-duration: .15s;
	-webkit-transition-property: opacity, -webkit-filter;
	transition-property: opacity, -webkit-filter;
	-o-transition-property: opacity, filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	text-transform: none;
	color: inherit;
	border: 0;
	background-color: transparent;
}

.hamburger.is-active:hover,
.hamburger:hover {
	opacity: 1
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
	background-color: #fff;
}

.hamburger-box {
	display: inline-block;
	width: 32px;
	height: 24px;
}

.hamburger-inner {
	top: 50%;
	display: block;
	margin-top: -4px
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	position: absolute;
	width: 32px;
	height: 4px;
	-webkit-transition-timing-function: ease;
	     -o-transition-timing-function: ease;
	        transition-timing-function: ease;
	-webkit-transition-duration: .15s;
	     -o-transition-duration: .15s;
	        transition-duration: .15s;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	border-radius: 4px;
	background-color: #fff;
}

.hamburger-inner:after,
.hamburger-inner:before {
	display: block;
	content: ""
}

.hamburger-inner:before {
	top: -10px
}

.hamburger-inner:after {
	bottom: -10px
}

.hamburger .hamburger-inner {
	-webkit-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	     -o-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	        transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	-webkit-transition-duration: .22s;
	     -o-transition-duration: .22s;
	        transition-duration: .22s
}

.hamburger .hamburger-inner:before {
	-webkit-transition: top .1s ease-in .25s, opacity .1s ease-in;
	-o-transition: top .1s ease-in .25s, opacity .1s ease-in;
	transition: top .1s ease-in .25s, opacity .1s ease-in
}

.hamburger .hamburger-inner:after {
	-webkit-transition: bottom .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
	-o-transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19), -webkit-transform .22s cubic-bezier(.55, .055, .675, .19)
}

.hamburger.is-active .hamburger-inner {
	-webkit-transition-delay: .12s;
	     -o-transition-delay: .12s;
	        transition-delay: .12s;
	-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	     -o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	-webkit-transform: rotate(225deg);
	    -ms-transform: rotate(225deg);
	        transform: rotate(225deg)
}

.hamburger.is-active .hamburger-inner:before {
	top: 0;
	-webkit-transition: top .1s ease-out, opacity .1s ease-out .12s;
	-o-transition: top .1s ease-out, opacity .1s ease-out .12s;
	transition: top .1s ease-out, opacity .1s ease-out .12s;
	opacity: 0
}

.hamburger.is-active .hamburger-inner:after {
	bottom: 0;
	-webkit-transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	-o-transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg)
}

.mm-panel {
	background: #000;
	font-weight: 600;
	text-transform: uppercase;
}

.mm-navbar>* {
	min-height: 40px;
	background: #fff;
}

.mm-navbar__title>span {
	color: #000;
	padding-left: 10px;
}

.mm-listitem.active, 
.mm-listitem .active {
	background-color: #151515;
}

/* Miscelleneous */

p {
	margin: 0 0 20px;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Oswald', Arial, sans-serif;
	font-weight: normal;
	margin: 0 0 19px;
	line-height: 1.48;
}

h2 {
	font-size: 30px;
	margin-bottom: 17px;
}

h3 {
	font-size: 22px;
	margin-bottom: 20px;
}

h4 {
	font-size: 16px;
	margin-bottom: 20px;
}

ul,
ol {
	padding: 0 0 0 20px;
	margin-top: 0;
	margin-bottom: 30px;
}

a {
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
}

img {
	border: 0;
	max-width: 100%;

}

.linkBtn {
	position: relative;
	display: table;
	color: #fff;
	line-height: 1;
	min-width: 7.25em;
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 16px;
	font-weight: normal;
	letter-spacing: 0.0142857142857143em;
	margin: 1.428571428571429em 0.9375em 1.428571428571429em 0;
	background: #000;
	padding: 14.5px 1.25em;
	border: 1px solid hwb(240 51% 49%);
	border-radius: 2.142857142857143em;
	cursor: pointer;
	text-align: center;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.linkBtn:hover {
	background-color: #191919;
	color: #fff;
}

.linkBtn.linkBtnBlack {
	background: none;
	border-color: #fff;
}

.linkBtn.linkBtnBlack:hover {
	background-color: #fff;
	color: #000;
}

.clear {
	clear: both;
}

.clearfix:after { 
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden; 
}

.clearfix { 
  display: inline-block;  
}

* html .clearfix{  
  height: 1%;  
}

.clearfix {  
  display: block;  
}

input::-moz-focus-inner { 
    border: 0;
    padding: 0;
}


form {
	margin: 0;
	padding: 0;
}

input, select, textarea {
    border-radius: 0;
}

strong {
	font-weight: 400;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

:-moz-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {  
	color: inherit;
	opacity: 1;
}

/* Media Queries */

/* Large Screens */

/* Tablet Screens (Landscape) */

@media only screen and (max-width : 1450px) {
	.section {
		max-width: 1200px;
	}	

	.section.wide {
		max-width: 1230px;
	}

	#intro .product {
		right: 50px;
	}

	#formSlider .section .quote {
		padding-left: 30px;
		padding-right: 30px;
	}

	#watch .section {
		padding-left: 50px;
		padding-right: 50px;
	}

	.imageText {
		margin-bottom: 100px;
	}

	.quoteText .text {
		width: 523px;
	}

	.galleryText .text {
		width: 670px;
	}

	.twoCols .col {
		width: 575px;
	}

	.fullWidth,
	.twoCols {
		margin-bottom: 75px;
	}
}

@media only screen and (max-width : 1260px) {
	.section,
	.section.wide {
		max-width: 970px;
	}	

	#header {
		padding-left: 20px;
		padding-right: 20px;
		height: 180px;
	}

	#header #navigation ul li {
		margin-left: 25px;
	}

	#intro .product {
		right: 25px;
	}

	.formBox .info {
		margin-bottom: 20px;
	}

	#watch .section {
		padding-left: 15px;
		padding-right: 15px;
	}

	#watch .video {
		width: 400px;
	}
		
	.imageText {
		margin-bottom: 50px;
	}

	.quoteText {
		margin-bottom: 50px;
	}

	.imageText .image {
		width: 403px;
	}

	.imageText .text {
		width: 524px;
	}

	.quoteText .text {
		width: 403px;
		padding-left: 0;
	}

	.quoteText .quote {
		width: 524px;
		padding-left: 30px;
	}
	
	.cta {
		padding-left: 50px;
		padding-right: 50px;
	}

	.galleryText .text {
		width: 530px;
	}

	.galleryText .gallery {
		width: 400px;
	}

	.galleryText .gallery ul {
		margin-left: -10px;
		margin-right: -10px;
	}

	.galleryText .gallery ul li {
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 20px;
	}

	.fullWidth {
		padding-left: 60px;
		padding-right: 60px;
	}

	.twoCols .col {
		width: 465px;
	}
}

/* Tablet Screens (Portrait) */

@media only screen and (max-width : 991px) {
	.section,
	.section.wide {
		max-width: 750px;
		padding-left: 15px;
		padding-right: 15px;
	}

	#header {
		padding-left: 15px;
		padding-right: 15px;
	}

	#header .logo {
		position: relative;
		left: 15px;
		top: 15px;
		font-size: 30px;
	}

	#header #navigation {
		margin-right: 0;
	}

	#header #navigation ul li {
		margin-left: 30px;
	}

	#header .options .btns {
		margin-bottom: 63px;
	}

	.introText {
		margin-bottom: 35px;
	}

	#intro {
		padding-top: 310px;
	}

	#intro .product {
		width: 247px;
		height: 246px;
		top: 30px;
	}

	#intro .info .right {
		padding-left: 20px;
		padding-right: 20px;
		width: 455px;
	}

	#formSlider {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.formBox {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.formBox .fields {
		margin-left: -5px;
		margin-right: -5px;
	}

	.formBox .fields .field {
		padding-left: 5px;
		padding-right: 5px;
	}

	.formBox .fields .field .textbox {
		padding-left: 20px;
		padding-right: 20px;
	}

	#watch .section {
		padding-top: 45px;
		padding-bottom: 45px;
	}

	#watch .text {
		width: 367px;
	}

	#watch .video {
		width: 300px;
		height: 320px;
	}

	.imageText {
		margin-bottom: 35px;
	}
		
	.imageText .text {
		width: 385px;
	}

	.imageText .image {
		width: 305px;
	}

	.quoteText {
		margin-bottom: 35px;
	}

	.quoteText .quote {
		width: 385px;
	}

	.quoteText .text {
		width: 305px;
	}

	.galleryText {
		margin-bottom: 50px;
	}

	.galleryText .text {
		width: 400px;
	}

	.galleryText .gallery {
		width: 300px;
	}

	.twoCols .col {
		width: 343px;
	}

	.cta {
		padding: 30px;
		margin-bottom: 70px;
	}

	.fullWidth {
		padding-left: 40px;
		padding-right: 40px;
	}

	#footer .logo {
		width: 100px;
	}
	
	#footer .options {
		margin-top: 20px;
	}

	#footer .options .left {
		padding-left: 0;
	}

	#footer .links li {
		margin-right: 19px;
	}

	h2 {
		font-size: 25px;
	}
}

/* Mobile Screens */

@media only screen and (max-width : 767px) {
	.hamburger {
		display: block;
	}

	body #header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		min-height: 310px;
		padding-top: 121px;
		padding-bottom: 31px;
		height: -webkit-fit-content;
	}
	
	#header .logo {
		position: relative;
		left: 0;
		top: 0;
		margin: 0 auto 15px;
		font-size: 32px;
	}

	#header #navigation {
		display: none;
	}

	#header .options {
		margin: 0;
	}

	#header .options .btns {
		margin: 0 -5px;
	}

	#header .options .btns a {
		margin: 0 5px;
	}

	#content .section {
		padding-top: 45px;
		padding-bottom: 45px;
	}

	.introText {
		margin-bottom: 30px;
	}
		
	#intro {
		padding-top: 279px;
	}
	
	#intro .product {
		width: 210px;
		height: 216px;
		top: 30px;
		right: 50%;
		margin-right: -105px;
	}

	#intro .info .section {
		display: block;
		text-align: center;
	}

	#intro .info .left {
		width: auto;
		padding: 25px 15px;
	}

	#intro .info .right {
		width: auto;
		padding: 25px 15px;
	}

	#intro .info .right:before {
		left: -9999em;
	}

	#intro .info .right .btns {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		margin-top: 20px;
	}

	#intro .info .right .btns .linkBtn {
		margin-left: 5px;
		margin-right: 5px;
	}

	.twoCols {
		display: block;
		text-align: center;
	}

	.twoCols .col {
		width: auto;
	}

	#formSlider {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	#formSlider .section {
		padding: 0 15px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	#formSlider .section .slider {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		width: 100%;
		border-radius: 30px;
		margin-bottom: 15px;
	}

	#formSlider .section .slider .swiper-wrapper {
		position: static;
	}
	
	#formSlider .slider .swiper-slide {
		padding-bottom: 71.42857142857143%;
	}

	#formSlider .slider .swiper-pagination {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	#formSlider .section .quote {
		width: 100%;
		border-radius: 30px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.formBox {
		max-width: 100%;
		text-align: center;
	}

	.formBox .info {
		max-width: 100%;
	}

	.formBox .fields .field {
		width: 100%;
	}

	.formBox .submitBtn {
		margin-left: auto;
		margin-right: auto;
	}
	
	#watch .section {
		display: block;
		text-align: center;
		padding: 35px 15px;
	}

	#watch .video {
		width: 290px;
		height: 285px;
		margin-left: auto;
		margin-right: auto;
		border-radius: 30px;
		margin-bottom: 20px;
	}

	#watch .text {
		width: auto;
	}
	
	.fancybox-slide {
		padding: 15px;
	}

	.imageText {
		display: block;
	}

	.imageText .image {
		margin: 0 auto 30px;
		width: 290px;
	}

	.imageText .image img {
		border-radius: 30px;
	}

	.imageText .text {
		width: auto;
		text-align: center;
	}

	.quoteText {
		display: block;
	}

	.quoteText .text {
		width: auto;
		text-align: center;
	}

	.quoteText .quote {
		width: auto;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.quoteText .quote:before {
		right: 0;
		border-radius: 30px;
	}

	.galleryText {
		display: block;
	}

	.galleryText .text {
		width: auto;
		text-align: center;
		margin-bottom: 40px;
	}
	
	.galleryText .gallery {
		margin: 0 auto;
		width: auto;
		max-width: 400px;
	}

	.galleryText .gallery ul li a {
		border-radius: 30px;
	}

	.fullWidth {
		padding: 50px 0;
	}

	.fullWidth, .twoCols {
		margin-bottom: 50px;
	}

	.twoCols .col {
		margin-bottom: 40px;
	}

	.twoCols .col:last-child {
		margin-bottom: 0;
	}

	.cta {
		border-radius: 30px;
		text-align: center;
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 45px;
	}

	ul {
		padding: 0;
		list-style: none;
	}

	#footer .section {
		padding-left: 15px;
		padding-right: 15px;
	}

	#footer a.checkoutBtn {
		display: table;
		margin: 0 auto 40px;
	}

	#footer .options {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	#footer .options .logo {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		display: block;
		margin: 0 auto 20px;
	}

	#footer .links {
		display: block;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	#footer .links li {
		margin: 0;
		text-align: center;
	}

	#footer .options {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}

	#footer .options .left {
		width: auto;
		padding: 0;
	}

	#footer .copyright {
		text-align: center;
	}

	#footer .logo {
		width: 125px;
	}
	
	.linkBtn {
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (max-width : 479px) {

}