@charset "utf-8";
/* CSS Document */

/*--------RESET CSS--------*/
body {
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding:0;
	background:#fff;
	color:#000000;
	text-align:center;
	font-family: 'Poppins';
	font-weight:400;
	}
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {margin: 0;padding: 0;}
header, section, footer, aside, nav, main, article, figure {display: block;}
table, tr, td {border: 0;}
a {outline: none;color: inherit;text-decoration: none;}
img {border: none; height:auto;}
li {list-style: none;}
* {box-sizing: border-box;}
.img-full {max-width: 100%;}
.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
	}

/*--------FONTS--------*/


@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Italic.woff2') format('woff2'),
	url('Poppins-Italic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
	}
@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Medium.woff2') format('woff2'),
	url('Poppins-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Regular.woff2') format('woff2'),
	url('Poppins-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Poppins';
	src: url('Poppins-SemiBold.woff2') format('woff2'),
	url('Poppins-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Josefin Sans';
	src: url('JosefinSans-Bold.woff2') format('woff2'),
	url('JosefinSans-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Josefin Sans';
	src: url('JosefinSans-Medium.woff2') format('woff2'),
	url('JosefinSans-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	}

/*--------MAIN-CSS-START--------*/
.wrapper{
	overflow:hidden;
	}
.container {
	width:1170px;
	margin:0 auto;
	padding:0;
	position:relative;
	}

/*--------TOP-STRIP--------*/
.top-strip{
	background:#ff3b3b;
	float:left;
	width:100%;
	padding:9px 0 3px;
	position:relative;
	z-index:1;
	}
.top-strip__text{
	float:left;
	width:100%;
	font-size:14px;
	line-height:20px;
	color:#fff;
	letter-spacing:0.5px;
	font-weight:400;
	}
.top-strip__link{
	text-decoration:underline;
	}

/*--------HEADER--------*/
.header{
	float: left;
	width: 100%;
	margin-bottom:80px;
	position:relative;
	z-index:3;
	}
.header__fixed{
	float:left;
	width:100%;
	height:80px;
	padding:11px 0;
	margin-top:-80px;
	background:#00456a;
	position:relative;
	top:80px;
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	}
.fixed-nav .header__fixed{
	z-index: 11;
	position: fixed;
	top:0;
	margin-top:0;
	transition: margin .3s ease-out;
	-webkit-transition: margin .3s ease-out;
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	}				
.header__logo{
	float:left;
	width:177px;
	}
ul.header__menu{
	display:inline-block;
	vertical-align:middle;
	margin:16px 0 0 0;
	}
ul.header__menu li{
	float:left;
	padding:0 25px;
	position:relative;
	}
ul.header__menu li a{
	color:#fff;
	font-size:17px;
	line-height:16px;
	font-weight:400;
	letter-spacing:0.5px;
	}
.header__button-box{
	float:right;
	width:177px;
	}
.header__button{
    float: right;
	width: 140px;
    height: 45px;
    color: #fff;
    font-size:18px;
    line-height:48px;
    font-weight:500;
	letter-spacing:0.5px;
	text-align: center;
	margin-top:7px;
	border-radius:5px;
	background:#28ca0d;
	}
	
/*--------HAMBURGER MENU--------*/
.header__menu-icon{
    cursor: pointer;
    position:absolute;
    right: 15px;
    top: 16px;
	z-index:16;
	height:30px;
	}
.header__menu-icon button{
	outline: none;
    -webkit-appearance: none;
	background: none;
	padding:0;
    cursor: pointer;
	border: none;
	}
.bar1, .bar2, .bar3 {
	width: 25px;
	height: 3px;
	background-color: #fff;
	transition: 0.4s;
	-webkit-border-radius: 2px 2px 2px 2px;
	border-radius: 2px 2px 2px 2px;
	}
.bar2{margin: 4px 0;}
.dl-active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-5px, 5px);
	transform: rotate(-45deg) translate(-5px, 5px);
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-5px, -5px);
	transform: rotate(45deg) translate(-5px, -5px);
	}	
.header__mobile-menu{
	left:0;
	position:fixed;
	top:99px;
	background:rgba(255,255,255,1);
	z-index:10;
	right:0;
	overflow:scroll;
	display:none;
	box-shadow:0 0 10px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 0 10px 1px rgba(0,0,0,0.2);
	}
.mobimenu-top{ top:70px;}	
.header__mobile-menu li{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:1px solid #dddddd;
	}
.header__mobile-menu li a{
	float:left;
	width:100%;
	padding:12px 20px;
	font-size:15px;
	color:#000;
	font-weight:500;
	}	
.header__mobile-menu li a:hover{color:#000;}

/*--------SHIPPING-STRIP--------*/
.shipping-strip{
	float:left;
	width:100%;
	background:#fff;
	padding:10px 0 5px;
	position:relative;
	z-index:1;
	}
.shipping-strip__inner{
	float:left;
	width:100%;
	display:flex;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	flex-wrap:wrap;
	justify-content:space-between;	
	}
.shipping-strip__text-box{
	display:inline-block;
	vertical-align:top;
	width:33.33%;
	}
.shipping-strip__text-box:first-child{ text-align:left;}
.shipping-strip__text-box:second-child{ text-align:center;}
.shipping-strip__text-box:last-child{ text-align:right;}
.shipping-strip__icon{
	display:inline-block;
	vertical-align:middle;
	margin: -4px 5px 0 0;
	width:20px;
	}
.shipping-strip__text{
	display:inline-block;
	vertical-align:middle;
	font-size:14px;
	line-height:20px;
	font-weight:400;
	color:#363636;
	letter-spacing:0.5px;
	text-transform:uppercase;
	}


/*------BANNER-SECTION------*/
.banner-section {
    float:left;
    width:100%;
	padding:40px 0 40px;
	background: rgb(246,251,255);
	background: linear-gradient(90deg, rgba(246,251,255,1) 0%, rgba(191,217,235,1) 100%);
	}
.banner-section__left{
	float:left;
	width:55%;
	text-align:left;
	}
.banner-section__top-text{
	float:left;
	width:100%;
	text-align:left;
	font-size:18px;
	line-height:24px;
	font-weight:500;
	color:#000;
	letter-spacing:0.5px;
	text-transform:uppercase;
	}
.banner-section__top-text img{
	display:inline-block;
	vertical-align:middle;
	margin:-6px 8px 0 0;
	width:22px;
	}
.banner-section__heading{
	float:left;
	width:100%;
	color:#00456a;
	font-family: 'Josefin Sans';
	font-size:54px;
	line-height:60px;
	font-weight:700;
	letter-spacing:0.5px;
	text-transform:uppercase;
	margin-top:5px;
	padding-bottom:25px;
	border-bottom:1px solid #b2ccdf;
	}
.banner-section__image-box{
	float:left;
	width:100%;
	position:relative;
	}
.banner-section__logo{
	position:absolute;
	top:-440px;
	right:-580px;
	}
.banner-section__model{
	position:absolute;
	top: -283px;
    right: -890px;
    width: 690px;
	}
.banner-section__seal{
	position:absolute;
	top:-120px;
	right:-190px;
	}
.banner-section__product{
	position:absolute;
	top:10px;
	right:-620px;
	}
.banner-section__product-mob{ display:none;}
.banner-section__strip{
	float:left;
	width:90%;
	margin-top:20px;
	}
.banner-section__strip img{
	display:inline-block;
	vertical-align:middle;
	border-radius:50%;
	margin-right:10px;
	}
.banner-section__strip p{
	display:inline-block;
	vertical-align:middle;
	width:calc(100% - 70px);
	font-size:18px;
	line-height:26px;
	font-weight:400;
	color:#000;
	letter-spacing:0.5px;
	margin-top:5px;
	}
.banner-section__list{
	float:left;
	width:100%;
	margin-top:20px;
	}
.banner-section__list li{
	float:left;
	width:100%;
	padding-left:35px;
	background:url(../images/banner-list-check.png) no-repeat 0 2px;
	font-size:20px;
	line-height:30px;
	font-weight:500;
	color:#000;
	letter-spacing:0.5px;
	margin-top:10px;
	}
.button-box{
	display:inline-block;
	vertical-align:top;
	margin-top:40px;
	width:100%;
	max-width:400px;
	text-align:center;
	}
.common-button{
	float:left;
	width:100%;
	height:65px;
	font-size:22px;
	line-height:70px;
	font-weight:700;
	letter-spacing:0.5px;
	color:#fff;
	text-transform:uppercase;
	background:#28ca0d;
	border-radius:6px;
	box-shadow: 0px 5px 5px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 5px 5px 1px rgba(0,0,0,0.2);
	}
.button-caption{
	float:left;
	width:100%;
	margin-top:10px;
	font-size:16px;
	line-height:24px;
	font-weight:400;
	letter-spacing:0.5px;
	color:#000;
	}
.button-caption img{
	display:inline-block;
	vertical-align:middle;
	margin:0 10px 0 0;
	}
.button-top-text{
	float:left;
	width:100%;
	margin-bottom:7px;
	font-size:15px;
	line-height:22px;
	font-weight:500;
	letter-spacing:0.5px;
	color:#000;
	}
.btn_star{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 7px 0 0 ;
	}
/*--------TOP-REVIEW--------*/
.top-review{
	float:left;
	width:100%;
	padding:20px 0 30px;
	border-bottom:1px solid #e1e1e1;
	}
.top-review__box{
	float:left;
	width:50%;
	padding-left:70px;
	position:relative;
	text-align:left;
	}
.top-review__reviewer{
	border-radius:50%;
	position:absolute;
	top:0;
	left:0;
	}
.top-review__star{
	display:block;
	margin:0 0;
	}
.top-review__head{
	float:left;
	width:100%;
	margin-top:10px;
	font-family: 'Josefin Sans';
	font-size:20px;
	line-height:24px;
	font-weight:700;
	color:#192f23;
	letter-spacing:0.5px;
	}
.top-review__text{
	float:left;
	width:100%;
	margin-top:10px;
	font-size:17px;
	line-height:24px;
	font-weight:400;
	letter-spacing:0.5px;
	font-style:italic;
	color:#000;
	}
.top-review__name{
	float:left;
	width:100%;
	margin-top:10px;
	font-size:15px;
	line-height:20px;
	font-weight:500;
	color:#192f23;
	}
.top-review__name span{
    display: inline-block;
    vertical-align: middle;
	font-size:13px;
	line-height:20px;
	font-weight:400;
	}
.top-review__verified-icon{
	display: inline-block;
    vertical-align: middle;
	margin:-2px 2px 0 3px;
	width:12px;
	}
.top-review__seen-on{
	float:left;
	width:100%;
	margin-top:30px;
	}
.top-review__seen-head{
	float:left;
	width:100%;
	position:relative;
	}
.top-review__seen-head:before{
	content:'';
	position:absolute;
	top:14px;
	left:0;
	right:0;
	height:1px;
	background:#e1e1e1;
	}
.top-review__seen-head span{
	display:inline-block;
	vertical-align:middle;
	background:#fff;
	position:relative;
	z-index:1;
	padding:0 40px;
	font-family: 'Josefin Sans';
	font-size:12px;
	line-height:12px;
	font-weight:700;
	color:#555555;
	letter-spacing:1px;
	text-transform:uppercase;
	}
.top-review__seen-icon-list{
	float:left;
	width:100%;
	margin-top:20px;
	display:flex;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	align-items:center;
	justify-content:center;
	}
.top-review__seen-icon{
	width:auto;
	padding:0 38px;
	}
.top-review__seen-icon img{
	display:block;
	margin:0 auto;
	max-width:100%;
	}

/*----REVIEW-SECTION----*/
.review-section{
	float:left;
	width:100%;
	padding:60px 0 60px;
	background:#FFF;
	position:relative;
	z-index:1;
	}
.common-heading{
	float:left;
	width:100%;
	font-family: 'Josefin Sans';
	font-size:42px;
	line-height:52px;
	font-weight:700;
	color:#00456a;
	margin-bottom:10px;
	letter-spacing:0.5px;
	text-transform:uppercase;
	}
.review-section__video-row{
	float:left;
	width:100%;
	margin-top:40px;
	padding:0 100px;
	}
.review-section__video-col{
	float:left;
	width:33.333%;
	text-align:center;
	padding:0 15px;
	position: relative;
	}
.review-section__video-box{
	float:left;
	width:100%;
	cursor: pointer;
    overflow: hidden;
	border-radius: 10px;
	position: relative;
	}
.review-section__video-image,.review-section__video-box video{
	float: left;
    width: 100%;
    height: 100%;
    background: #000;
	}
.vdo-overlay{
	position:absolute;
	left:0;
	width:100%;
	top:0;
	height:100%;
	display:none;
	z-index:1;
	}

.review-section__review-list{
	float:left;
	width:100%;
	margin-top:40px;
	display:flex;
	flex-wrap:wrap;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	justify-content:space-between;
	}
.review-heading{
	float: left;
    width: 100%;
    font-family: 'Josefin Sans';
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: #00456a;
    letter-spacing: 0.5px;
    text-transform: uppercase;
	margin-top:50px;
	}
.review-section__review-box{
	width:32%;
	padding:30px 20px 25px;
	border-radius:6px;
	text-align:center;
	box-shadow:0 0 12px 2px rgba(0,0,0,0.1);
	-webkit-box-shadow:0 0 12px 2px rgba(0,0,0,0.1);
	display:flex;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	flex-direction:column;
	justify-content:space-between;
	}
.review-section__review-box-top{
	float:left;
	width:100%;
	}
.review-section__star{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
.review-section__heading{
	float:left;
	width:100%;
	margin-top:15px;
	font-size:18px;
	line-height:20px;
	font-weight:700;
	color:#00456a;
	letter-spacing:0.5px;
	text-transform:uppercase;
	}
.review-section__text{
	float:left;
	width:100%;
	margin-top:10px;
	font-size:16px;
	line-height:24px;
	font-weight:400;
	color:#000;
	letter-spacing:0.5px;
	}
.review-section__name{
	float:left;
	width:100%;
	margin-top:15px;
	font-size:16px;
	line-height:20px;
	font-weight:500;
	color:#00456a;
	letter-spacing:0.5px;
	}
.review-section__name img{
	display:inline-block;
	vertical-align:top;
	margin:3px 5px 0 0;
	width:12px;
	}
.review-section__name span{
	display:inline-block;
	vertical-align:top;
	color:#192f23;
	font-size:13px;
	line-height:24px;
	font-weight:400;
	}

/*------INTRO-SECTION-------*/
.intro-section{
	float:left;
	width:100%;
	padding:60px 0;
	position:relative;
	background: #edf6fe;
	}
.intro-section__contents{
	float:left;
	width:100%;
	margin-top:40px;
	display:flex;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:space-between;
	}
.intro-section__left{
	float:left;
	width:53%;
	}
.intro-section__video-box{
	float:left;
	width:100%;
	border-radius:8px;
	border:3px solid #fff;
	position:relative;
	overflow:hidden;
	box-shadow:0 0 10px 0 rgba(0,0,0,0.3);
	-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,0.3);
	cursor:pointer;
	}
.intro-section__video-box video, .intro-section__video-thumbnail {
	float:left;
    width: 100%;
    height: 100%;
    background: #000;
	}
.intro-section__right{
	float:right;
	width:42%;
	text-align:left;
	}
.intro-section__right .common-text:first-child{ margin-top:0;}
.common-text{
	float:left;
	width:100%;
	margin-top:10px;
	font-size:16px;
	line-height:24px;
	font-weight:400;
	color:#393939;
	letter-spacing:0.5px;
	}
.margin-top-30{ margin-top:30px;}
.intro-section__feature-list{
	float:left;
	width:100%;
	margin-top:60px;
	padding:0 200px;
	text-align:center;
	display:flex;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	justify-content:space-between;
	}
.intro-section__feature-list li{
	width:33.33%;
	padding:0 20px;
	}
.intro-section__feature-icon{
	display:block;
	margin:0 auto;
	border-radius:50%;
	}
.intro-section__feature-text{
	float:left;
	width:100%;
	margin-top:15px;
	font-size:16px;
	line-height:22px;
	font-weight:500;
	color:#000;
	}

/*------BENEFIT-SECTION-------*/
.benefit-section{
	float:left;
	width:100%;
	padding:60px 0 60px;
	}
.benefit-section__list-box{
	float:left;
	width:100%;
	margin-top:35px;
	position:relative;
	}
.benefit-section__list-product{
	position:absolute;
	top:-20px;
	left:50%;
	transform:translateX(-50%);
	z-index:1;
	width:490px;
	}
.benefit-section__list{
	width:35%;
	}
.benefit-section__list li{
	float:left;
	width:100%;
	text-align:right;
	position:relative;
	padding: 25px 80px 30px 0;
	border-top:1px solid #e0d0f0;
	}
.benefit-section__list li:first-child{ border-top:none;}
.benefit-section__list.fr li{
	text-align:left;
	padding: 25px 0 30px 80px;
	}
.benefit-section__list-head{
	float:left;
	width:100%;
	font-family: 'Josefin Sans';
	font-size:24px;
	line-height:30px;
	font-weight:700;
	color:#000;
	text-transform:uppercase;
	margin-bottom:5px;
	}
.benefit-section__list-check{
	position:absolute;
	z-index:2;
	width:35px;
	}
.benefit-section__list-check1{ top:100px; right:-50px;}
.benefit-section__list-check2{ top:60px; right:30px;}
.benefit-section__list-check3{ top:40px; right:-60px;}
.benefit-section__list-check4{ top:100px; left:-50px;}
.benefit-section__list-check5{ top:60px; left:30px;}
.benefit-section__list-check6{ top:40px; left:-60px;}
.benefit-section__features{
	float:left;
	width:100%;
	margin-top:60px;
	display:flex;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	justify-content:space-between;
	}
.benefit-section__features li{
	width:16.66%;
	text-align:center;
	}
.benefit-section__features li img{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
.benefit-section__features li p{
	float:left;
	width:100%;
	font-size:14px;
	line-height:18px;
	font-weight:700;
	color:#09436a;
	text-transform:uppercase;
	margin-top:12px;
	}

/*------SMILE-SECTION-------*/
.smile-section{
	float:left;
	width:100%;
	padding:60px 0;
	background:#edf6fe;
	}
.smile-section__steps-list{
	float:left;
	width:100%;
	margin-top:40px;
	display:flex;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	justify-content:space-between;
	}
.smile-section__step{
	width:33.33%;
	padding:0 30px;
	}
.smile-section__step:first-child{ padding-left:0;}
.smile-section__step:last-child{ padding-right:0;}
.smile-section__step-no{
	display:inline-block;
	vertical-align:top;
	border-radius:50%;
	width:30px;
	height:30px;
	padding-top:9px;
	background:#00456a;
	font-size:15px;
	line-height:15px;
	font-weight:500;
	color:#fff;
	position:relative;
	}
.smile-section__step-no:after{
	content:'';
	background:url(../images/dotted-line.png) repeat-x;
	height:2px;
	width:320px;
	position:absolute;
	left:60px;
	top:14px;
	}
.smile-section__step:last-child .smile-section__step-no:after{ display:none;}
.smile-section__step-image{
	display:block;
	margin:0 auto;
	max-width:100%;
	margin-top:35px;
	}
.smile-section__step-text{
	float:left;
	width:100%;
	margin-top:20px;
	font-size:18px;
	line-height:26px;
	font-weight:600;
	color:#000;
	letter-spacing:0.5px;
	}

/*------COMPARE-SECTION-------*/
.compare-section{
	float:left;
	width:100%;
	padding:60px 0;
	background:#fff;
	}
.compare-section__chart{
	display:inline-block;
	vertical-align:top;
	width:100%;
	max-width:1030px;
	margin:120px 0 10px;
	background:#f5f5f5;
	border-radius:6px;
	}
.compare-section__column1{
	float:left;
	width:40%;
	}
.compare-section__column1-list{
	float:left;
	width:100%;
	text-align:left;
	}
.compare-section__column1-list li{
	float:left;
	width:100%;
	height:54px;
	display:flex;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	align-items:center;
	padding-left:20px;
	font-size:16px;
	line-height:20px;
	font-weight:400;
	color:#000;
	letter-spacing:0.5px;
	padding-top:4px;
	}
.compare-section__column1-list li:nth-child(even){ background:#f9f9f9;}
.compare-section__column2{
	float:left;
	width:24%;
	background:#00456a;
	}
.compare-section__column2-top{
	float:left;
	width:100%;
	background:#266180;
	height:75px;
	margin-top:-75px;
	display:grid;
	place-items:center;
	border-radius:10px 10px 0 0;
	}
.compare-section__column2-top img{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
.compare-section__column2-list{
	float:left;
	width:100%;
	}
.compare-section__column2-list li{
	float:left;
	width:100%;
	height:54px;
	display:flex;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	align-items:center;
	justify-content:center;
	}
.compare-section__column2-list li:nth-child(even){ background:#266180;}
.compare-section__column2-list li img{ max-width:100%; width:25px;}
.compare-section__column2-bottom{
	float:left;
	width:100%;
	height:10px;
	background:#00456a;
	border-radius:0 0 10px 10px;
	margin-bottom:-10px;
	}
.compare-section__column3{
	float:left;
	width:18%;
	}
.compare-section__column3-text{
	float:left;
	width:100%;
	height:50px;
	margin-top:-50px;
	background:#fff;
	font-size:15px;
	line-height:18px;
	color:#000;
	text-transform:uppercase;
	}
.compare-section__column3-list{
	float:left;
	width:100%;
	}
.compare-section__column3-list li{
	float:left;
	width:100%;
	height:54px;
	display:flex;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	align-items:center;
	justify-content:center;
	}
.compare-section__column3-list li:nth-child(even){ background:#f9f9f9;}
.compare-section__column3-list li img{ max-width:100%; width:25px;}

/*------CUSTOMER-SECTION-------*/
.customer-section{
	float:left;
	width:100%;
	padding:60px 0;
	background:#edf6fe;
	}
.customer-section__list{
	float:left;
	width:100%;
	display:flex;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	justify-content:space-between;
	}
.customer-section__list-box{
	width:31%;
	background:#fff;
	border-radius:6px;
	padding:20px 20px 100px;
	margin-top:40px;
	text-align:left;
	box-shadow:0 0 10px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,0.1);
	position:relative;
	}
.customer-section__list-box-top{
	float:left;
	width:100%;
	}
.customer-section__list-name{
	position:absolute;
	bottom:10px;
	left:20px;
	right:20px;
	font-size:18px;
	line-height:20px;
	font-weight:600;
	color:#00456a;
	letter-spacing:0.5px;
	padding:15px 0 0;
	border-top:1px solid #ebebeb;
	}
.customer-section__list-name img{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 5px 0 0;
	width:12px;
	}
.customer-section__list-name span{
	display:inline-block;
	vertical-align:middle;
	font-size:13px;
	line-height:20px;
	font-weight:400;
	color:#192f23;
	letter-spacing:0.5px;
	}
.customer-section__list-star{
	display:inline-block;
	vertical-align:top;
	margin:15px 0 0;
	max-width:100%;
	}
.customer-section__list-head{
	float:left;
	width:100%;
	margin-top:15px;
	font-size:18px;
	line-height:26px;
	font-weight:700;
	color:#00456a;
	letter-spacing:0.5px;
	}
.customer-section__list-text{ font-weight:400;}
.customer-section__list-image{
	float:left;
	width:100%;
	display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
	border-bottom:1px solid #ebebeb;
	padding-bottom:10px;
	}
.customer-section__list-image li{
	width:48%;
	text-align:center;
	}
.customer-section__list-image li img{
	display:block;
	margin:0 auto;
	width:100%;
	}
.customer-section__list-image li p{
	font-size:10px;
	line-height:16px;
	font-weight:400;
	color:#000;
	letter-spacing:0.5px;
	text-transform:uppercase;
	margin-top:5px;
	}

/*------FAQ-SECTION-------*/
.faq-section{
	float:left;
	width:100%;
	padding:60px 0;
	background: rgb(237,246,254);
	background: linear-gradient(0deg, rgba(237,246,254,1) 0%, rgba(255,255,255,1) 100%);
	}
.faq-section__box{
	float:left;
	width:100%;
	margin-top:30px;
	}
.faq-section__container{
	width:48%;
	}	
.faq-section__slide-toggle{
	float:left;
	width:100%;
	background:#fff;
	border-radius:8px;
	-webkit-box-shadow:0 5px 10px 0 rgba(0,0,0,0.1);
	box-shadow:0 5px 10px 0 rgba(0,0,0,0.1);
	margin-top:25px;
	padding:10px 15px 10px 20px;
	}
.accordion{
	float:left;
	width:100%;
	text-align:left;
	background:url(../images/close.png) no-repeat 100% center;
	padding:12px 20px 8px 0;
	font-size:17px;
	line-height:24px;
	font-weight:500;
	color:#000;
	letter-spacing:0.5px;
	cursor:pointer;
	position:relative;
	}
.faq-section__accordion-heading.accordion-open{
	background:url(../images/open.png) no-repeat 100% center;
	border:none;
	}
.faq-section__accordion-content{
	float:left;
	width:100%;
	text-align:left;
	padding:0 0 10px 0;
	}
.faq-section__accordion-text{
	float:left;
	width:100%;
	font-size:16px;
	line-height:25px;
	letter-spacing:0.5px;
	color:#3d3d3d;
	margin-top:5px;
	}


/*----FOOTER-SECTION----*/
.footer{
	float:left;
	width:100%;
	padding:35px 0 40px;
	background:#FFF;
	position:relative;
	}
.footer__logo{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
.footer__links{
	float:left;
	width:100%;
	margin-top:35px;
	}
.footer__links li{
	display:inline-block;
	vertical-align:top;
	position:relative;
	padding:0 20px;
	font-size:17px;
	line-height:20px;
	font-weight:400;
	color:#2d2d2d;
	letter-spacing:0.5px;
	}
.footer__links li:first-child{ padding-left:0;}
.footer__links li:last-child{ padding-right:0;}
.footer__links li:after{
	content:'';
	position:absolute;
	top:2px;
	bottom:3px;
	right:-3px;
	width:1px;
	background:#6b6b6b;
	}
.footer__links li:last-child:after{ display:none;}
.footer__copyright{
	float:left;
	width:100%;
	margin-top:10px;
	font-size:17px;
	line-height:20px;
	font-weight:400;
	color:#2d2d2d;
	}
.footer__text{
	float:left;
	width:100%;
	margin-top:30px;
	font-size:13px;
	line-height:21px;
	font-weight:400;
	color:#2d2d2d;
	letter-spacing:0.5px;
	}


.fl{ float:left;}
.fr{ float:right;}
.showTab, .showMob{ display:none;}
.showDesk{ display:block;}
.hideDesk{ display:none;}
.hide1187{ display:block;}

/*------Pulse------*/
.pulse {
	animation-name: pulse;
	-webkit-animation-name: pulse;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	}
@keyframes pulse {
0% {transform: scale(0.9);}
50% {transform: scale(1);}
100% {transform: scale(0.9);}
}

@-webkit-keyframes pulse {
0% {-webkit-transform: scale(0.95);}
50% {-webkit-transform: scale(1);}
100% {-webkit-transform: scale(0.95);}
}	



/*---------Media Querry---------*/

@media only screen and (max-width:1187px){
.container{width:1004px;}
.hide1187{ display:none;}

.top-strip { padding: 6px 0 3px;}
.top-strip__text { font-size: 13px; line-height: 20px;}

.banner-section { padding: 30px 0 30px;}
.banner-section__top-text { font-size: 17px; line-height: 22px;}
.banner-section__heading { font-size: 48px; line-height: 60px; margin-top: 5px; padding-bottom:25px;}
.banner-section__logo { top: -410px; right: -470px; width: 520px;}
.banner-section__model { top: -250px; right: -800px; width: 650px;}
.banner-section__seal { top: -60px; right: -150px; width: 100px;}
.banner-section__product { top: 40px; right: -580px; width: 650px;}
.banner-section__strip { float: left; width: 100%;}
.banner-section__strip p { font-size: 17px;}

.top-review__box { width: 58%;}
.top-review__seen-icon { padding: 0 25px;}

.review-section { padding: 50px 0;}
.common-heading { font-size: 40px; line-height: 50px;}

.intro-section { padding: 50px 0;}
.intro-section__left { width: 48%;}
.intro-section__right { width: 48%;}
.intro-section__feature-list { padding: 0 150px;}

.benefit-section { padding: 50px 0;}
.benefit-section__list-box { margin-top: 20px;}
.benefit-section__list { width: 37%;}
.benefit-section__list-product { top: 20px; width: 380px;}
.benefit-section__list li { padding: 25px 70px 30px 0;}
.benefit-section__list.fr li { padding: 25px 0 30px 70px;}
.benefit-section__list-head { font-size: 22px; line-height: 28px;}
.benefit-section__list-check1{ top:100px;}
.benefit-section__list-check2{ right:25px;}
.benefit-section__list-check3{ top:60px;}
.benefit-section__list-check4{ top:100px;}
.benefit-section__list-check5{ left:25px;}
.benefit-section__list-check6{ top:60px;}
.benefit-section__features { margin-top: 40px;}

.smile-section { padding: 50px 0;}
.smile-section__step-no:after { width: 260px;}

.compare-section {padding: 50px 0;}
.customer-section { padding: 50px 0;}

.faq-section { padding: 50px 0;}
.faq-section__box { margin-top: 10px;}
}


@media only screen and (max-width:1021px){
.container{width:750px;}

.showDesk {display: none;}
.showTab {display: block;}

.top-strip__text span{ display:none;}

.header { margin-bottom: 70px;}
.header__fixed { height: 70px; padding: 10px 0; margin-top: -70px; top: 70px;}
.header__logo { width: 156px;}

.shipping-strip { padding: 6px 0 2px;}
.shipping-strip__text { font-size: 13px; letter-spacing: 0;}

.banner-section { padding: 20px 0;}
.banner-section__left { width: 56%;}
.banner-section__top-text { font-size: 14px; line-height: 18px;}
.banner-section__top-text img { margin: -6px 5px 0 0;}
.banner-section__heading { font-size: 36px; line-height: 46px; margin-top: 10px; padding-bottom: 20px;}
.banner-section__logo { top: -380px; right: -430px; width: 460px;}
.banner-section__model { top: -220px; right: -680px; width: 600px;}
.banner-section__seal { right: -110px; width: 80px;}
.banner-section__product { top: 80px; right: -500px; width: 550px;}
.banner-section__strip { width: 100%; margin-top:15px;}
.banner-section__strip p { font-size: 15px; line-height: 23px;}
.banner-section__list { margin-top: 20px;}
.banner-section__list li { padding-left: 30px; font-size: 17px; line-height: 27px;}
.button-box { margin-top: 30px; max-width: 360px;}
.common-button { height: 60px; line-height: 68px;}

.top-review { padding: 20px 0 20px;}
.top-review__box { width: 100%;}
.top-review__text { font-size: 16px;}
.top-review__seen-on { margin-top: 15px;}
.top-review__seen-icon-list { margin-top: 10px;}
.top-review__seen-icon { padding: 0 15px;}

.review-section { padding: 40px 0;}
.common-heading { font-size: 30px; line-height: 38px;}
.review-section__video-row { margin-top: 30px; padding: 0 50px;}
.review-section__review-list { margin-top: 30px;}
.review-section__review-box { padding: 20px 18px 15px;}
.review-heading{font-size:24px;}

.intro-section { padding: 40px 0;}
.intro-section__contents { margin-top: 30px; justify-content: center;}
.intro-section__left { width: 60%;}
.intro-section__right { width: 92%; text-align: center; margin-top: 30px;}
.margin-top-30 { margin-top: 20px;}
.intro-section__feature-list { margin-top: 30px; padding:0 60px;}
.intro-section__feature-icon { width: 50px;}
.intro-section__feature-text { margin-top: 10px; font-size: 15px; line-height: 21px;}

.benefit-section { padding: 40px 0;}
.benefit-section__list-box { margin-top: 10px;}
.benefit-section__list-product { width: 260px; top:70px;}
.benefit-section__list { width: 33%;}
.benefit-section__list li { padding: 15px 0 20px 0;}
.benefit-section__list.fr li { padding: 15px 0 20px 0;}
.benefit-section__list-head { font-size: 18px; line-height: 24px; margin-bottom:0;}
.benefit-section__list-check { width: 26px;}
.benefit-section__list-check1{ top:18px; right:-40px;}
.benefit-section__list-check2{ top:18px; right:-40px;}
.benefit-section__list-check3{ top:18px; right:-40px;}
.benefit-section__list-check4{ top:18px; left:-40px;}
.benefit-section__list-check5{ top:18px; left:-40px;}
.benefit-section__list-check6{ top:18px; left:-40px;}
.benefit-section__features { margin-top: 20px;}
.benefit-section__features li img { width: 55px;}

.smile-section { padding: 40px 0;}
.smile-section__steps-list { margin-top: 30px;}
.smile-section__step { padding:0; width:30%;}
.smile-section__step-no:after { width: 170px;}
.smile-section__step-text {  font-size: 17px; line-height: 25px;}

.compare-section { padding: 40px 0;}
.compare-section__chart { margin: 100px 0 10px;}
.compare-section__column1 { width: 42%;}
.compare-section__column2 { width: 24%;}
.compare-section__column2-top { padding: 0 20px;}
.compare-section__column3 { width: 17%;}
.compare-section__column3-text { font-size: 14px; line-height: 20px;}

.customer-section { padding: 40px 0;}
.customer-section__list-box { width: 32%; padding: 15px 15px 95px 15px; margin-top: 30px;}
.customer-section__list-name{left:15px; right:15px;}

.faq-section { padding: 40px 0;}
.faq-section__container { width: 100%;}

.footer { padding: 30px 0 34px;}
.footer__links { margin-top: 25px;}
.footer__links li { font-size: 14px; line-height: 18px;}
.footer__copyright { margin-top: 5px; font-size: 14px; line-height: 18px;}
.footer__text { margin-top: 20px; font-size: 12px; line-height: 20px;}
}

@media only screen and (max-width:767px){
.container{width:100%; padding:0 15px; max-width:600px; box-sizing:border-box;}
.showDesk{display:none;}
.showMob{display:block;}
.hideMob{ display:none;}

.top-strip__text { font-size: 11px; line-height: 18px;}

.header { margin-bottom: 55px;}
.header__fixed { height: 55px; padding: 5px 0; margin-top: -55px; top: 55px;}
.header__logo { width: 135px;}
.header__menu-icon { top: 14px;}
.header__mobile-menu { top: 82px;}
.mobimenu-top { top: 55px;}

.shipping-strip__inner{ flex-direction: column; width:calc(100% + 30px); margin-left:-15px;}
.shipping-strip__text-box { width: auto !important;}
.shipping-strip__text-box:first-child, .shipping-strip__text-box:last-child{ text-align:center;}
.shipping-strip__text{font-size:15px;}

.banner-section__left { width: 100%; text-align:center;}
.banner-section__top-text { font-size: 12px; line-height: 16px; text-align:center; letter-spacing:0;}
.banner-section__heading { font-size: 34px; line-height: 40px; padding-bottom: 5px; letter-spacing:0; border:none;}
.banner-section__image-box { margin-top:10px;}
.banner-section__product { display:none;}
.banner-section__seal { display:none;}
.banner-section__product-mob{ display:block; margin:0 0 0 -15px; width:calc(100% + 30px);}
.banner-section__strip{margin-top:10px;}
.banner-section__strip img { margin-right: 5px; width: 45px;}
.banner-section__strip p { font-size: 13px; line-height: 19px; text-align:left;}
.banner-section__list { text-align:left; margin-top:10px; float:none; display:inline-block; vertical-align: top; max-width:360px;}
.banner-section__list li { padding-left: 25px; font-size: 16px; line-height: 25px; background-size: 18px; letter-spacing:0;}
.button-caption { font-size: 15px; line-height: 19px;}

.top-review__box { width: 100%; padding-left:50px;}
.top-review__reviewer { width: 40px;}
.top-review__head { margin-top: 5px; font-size: 16px; line-height: 16px;}
.top-review__text { font-size: 14px; line-height: 20px;}
.top-review__seen-head span {  padding: 0 15px;}
.top-review__seen-icon-list{ width:calc(100% + 30px); margin-left:-15px; margin-top:0;}
.top-review__seen-icon{ margin-top:15px; padding:0 8px;}
.top-review__seen-icon img { max-width: 85%;}

.review-section { padding: 25px 0 30px;}
.common-heading { font-size: 22px; line-height: 30px; margin-bottom:5px;}
.review-section__video-row { margin-top: 20px; padding: 0; width:calc(100% + 30px); margin-left:-15px;}
.review-section__review-list { margin:0 10px; justify-content:center; padding:0 35px; width: calc(100% + 30px); margin-left: -15px;}
.review-section__review-box { width:auto; margin:20px 0 0 0; text-align:left; min-height: 340px;}
.review-section__star{ margin:0;}
.review-heading{font-size:20px; line-height:32px; margin:30px 0 0 0;}

.intro-section{ padding: 25px 0 30px;}
.intro-section__left { width: 100%; max-width:380px;}
.intro-section__right { width: 100%;}
.margin-top-30 { margin-top: 15px;}
.intro-section__feature-list { padding: 0;}
.intro-section__feature-list li { padding: 0 5px;}
.intro-section__feature-icon { width: 45px;}
.intro-section__feature-text { font-size: 12px; line-height: 18px;}
.intro-section__right .common-text{text-align:left;}

.benefit-section { padding: 25px 0 30px;}
.benefit-section__list-product { position:static; display:block; margin:0 auto; max-width:100%; transform:none; width:300px;}
.benefit-section__list { width: 100%;}
.benefit-section__list:last-child { border-top:1px solid #e0d0f0;}
.benefit-section__list li{ text-align:left; padding: 20px 0 20px 0;}
.benefit-section__list.fr li { text-align: left;}
.benefit-section__list-head{ padding-left:30px; background:url(../images/benefit-list-check.png) no-repeat 0 3px; background-size:22px;}
.benefit-section__list li .common-text{padding-left:30px;}
.benefit-section__features { margin-top: 0; flex-wrap:wrap;}
.benefit-section__features li { width: 33.33%; margin-top:20px;}

.smile-section { padding: 25px 0 30px;}
.smile-section__steps-list { margin-top: 0; flex-wrap:wrap;}
.smile-section__step { margin-top:40px; width: 100%;}
.smile-section__step-no { width: 35px; height: 35px; padding-top: 10px; font-size: 20px; line-height: 20px;}
.smile-section__step-no:after{ display:none;}
.smile-section__step-image { margin-top: 15px; width: 200px;}
.smile-section__step-text { margin-top: 15px;}

.compare-section {padding: 25px 0 30px;}
.compare-section__chart { margin: 70px 0 10px;}
.compare-section__column1 { width: 54%;}
.compare-section__column1-list li { padding: 4px 10px 0 15px; font-size: 14px; line-height: 18px; height:70px;}
.compare-section__column2 { width: 24%;}
.compare-section__column2-top { padding:0 5px; height: 55px; margin-top: -55px; border-radius: 8px 8px 0 0;}
.compare-section__column2-list li { height: 70px;}
.compare-section__column2-list li img { width: 22px;}
.compare-section__column2-bottom { border-radius: 0 0 8px 8px;}
.compare-section__column3 { width: 22%;}
.compare-section__column3-list li { height:70px;}
.compare-section__column3-text { height: 40px; margin-top: -40px; font-size: 10px; line-height: 14px;}
.compare-section__column3-list li img { width: 22px;}

.customer-section { padding: 25px 0 35px;}
.customer-section__list { flex-wrap:wrap; justify-content:center;}
.customer-section__list-box { width: 100%; margin-top: 20px;}
.customer-section__list-star{margin:15px 0 0 0;}
.customer-section__list-head{font-size:16px; line-height:24px; margin-top:10px;}

.faq-section {padding: 25px 0 30px;}
.faq-section__slide-toggle { margin-top: 20px; padding: 5px 15px 5px 15px;}

.footer { padding: 0 0 20px;}
.footer__logo { width: 100px; margin-top:20px;}
.footer__links li { font-size: 12px; line-height: 16px; padding:0 10px;}
.footer__copyright { margin-top: 0px; font-size: 12px; line-height: 16px;}
.footer__text { font-size: 10px; line-height:18px;}
#cta-fixed-button {
    background: #00456a;
    padding: 7px 10px;
    position: fixed;
    bottom: 0%;
    left: auto;
    z-index: 99;
    transition: bottom 1s;
    display: table;
    width: 100%;
	}

}

