@charset "utf-8";
/* CSS Document */

body {
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding:0;
	background:#fff;
	text-align:center;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-family: "Inter", sans-serif;
	font-weight:normal;
	letter-spacing:0;
	}
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:#333; text-decoration:none;}
a:hover {outline: none; text-decoration:none;}
img {border:none; height:auto; max-width:100%;}
li {list-style:none;}
*{box-sizing:border-box;}
.clearall{
	clear:both;
	font-size:1px;
	line-height:1px;
	height:1px;
	}

/*-----------------------
       Fonts
------------------------*/
/* @font-face {
	font-family: 'Inter';
	src: url('Inter-ExtraBold.woff2') format('woff2'),
	url('Inter-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('Inter-Bold.woff2') format('woff2'),
	url('Inter-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('Inter-SemiBold.woff2') format('woff2'),
	url('Inter-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Medium.woff2') format('woff2'),
        url('Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('Inter-Regular.woff2') format('woff2'),
	url('Inter-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	}
@font-face {
    font-family: 'Barlow';
    src: url('Barlow-ExtraBold.woff2') format('woff2'),
        url('Barlow-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('Barlow-Bold.woff2') format('woff2'),
        url('Barlow-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
} */

/*-----------------------
MAIN CSS START
------------------------*/
.container{
	width:1170px;
	margin:0 auto;
	padding:0;
	position:relative;
	}
	
/*-----------------------
CSS FOR NAV BAR
------------------------*/	
.top-fix-bar{
	float:left;
	width:100%;
	margin-bottom:75px;
	}
.nav_section{
	background:#fff;
	float:left;
	width:100%;
	height:75px;
	top: 75px;
	padding:10px 0;
	position:relative;
	margin-top:-75px;
	}
.fixed-nav .nav_section{
	position: fixed;
	z-index: 10;
	-webkit-transition: margin .3s ease-out;
	transition: margin .3s ease-out;
	background:#fff;
	margin-top:0;
	top:0;
	border-bottom:1px solid #d3d8dc;
	}	
	
.logo{
	float:left;
    width: 95px;
    margin-top: 8px;
}
ul.menu-list{
	display:inline-block;
	vertical-align:top;
	margin:18px 0 0 40px;
	}
ul.menu-list li{
	float: left;
	border-right: 1px solid #b3b3b3;
	}
ul.menu-list li:last-child{ border:none;}		
ul.menu-list li a{
	float:left;
    color: #000;
    font-size: 17px;
    line-height: 17px;
	padding:0 22px;
	}	
ul.menu-list li a:hover{ color:#1cb13d;}
ul.menu-list li a.active{ color:#1cb13d;}
a.nav_btn{
    float: right;
    width: 175px;
    height: 48px;
    font-size: 20px;
    line-height: 48px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: "Barlow", sans-serif;
    margin:3px 0 0 0;
    border-radius: 8px;
    background: #1cb13d;
	}
	
/*=====Menu=====*/
.mob-mnu-ic{
	cursor: pointer;
    position: absolute;
    right: 0;
    top: 16px;
    z-index: 16;
    height: 30px;
	}
.mob-mnu-ic button{
	outline: none;
    -webkit-appearance: none;
	background: none;
	padding:0;
    cursor: pointer;
	border: none;
	}
.mob-mnu-ic span{
	color:#000;
	display:inline-block;
	vertical-align:top;
	font-size:13px;
	margin-top:4px;
	margin-right:5px;
	}
.bar1, .bar2, .bar3{
	width: 30px;
	height: 3px;

	background-color: #737373;
	transition: 0.4s;
	-webkit-border-radius: 2px 2px 2px 2px;
	border-radius: 2px 2px 2px 2px;
	}
.bar2{margin: 6px 0;}

.dl-active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-6px, 5px);
	transform: rotate(-45deg) translate(-6px, 5px);
	background:#737373;
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-7px, -7px);
	transform: rotate(45deg) translate(-7px, -7px);
	background:#737373;
	}	
.mobilemenu{
	left:0;
	position:fixed;
	top:75px;
	background:rgba(255,255,255,1);
	z-index:10;
	right:0;
	bottom:0;
	overflow:scroll;
	display:none;
	border-top:1px solid #ddd;
	}
.mobimenu-top{ top:70px;}	
.mobilemenu li{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:1px solid #ddd;
	}
.mobilemenu li a{
	float:left;
	width:100%;
	padding:17px 20px;
	font-size:17px;
	color:#000;
	}	
.mobilemenu li a:hover{color:#000;}	

/*====scroll_strip====*/
.scroll_strip{
	float:left;
	width:100%;
	padding:5px 0;
	background:#e03223;
	}
ul.scroll_strip_list{
    display: flex;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-shrink: 0;
	
	/* max-width: 970px; */
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
	}
ul.scroll_strip_list li{
    padding: 0 15px;
	position:relative;
	display:flex !important;
	display:-webkit-flex !important;
	align-items:center;
	}
ul.scroll_strip_list li p{
	font-size: 18px;
    line-height: 22px;
    color: #fff;
	width:calc(100% - 33px);
}
ul.scroll_strip_list li img{
	width:33px;
	display:inline-block !important;
	margin:0 10px 0 0;
}

/*--------BANNER--------*/
.banner{
	float:left;
	width:100%;
	padding:35px 0 50px;
	background: #fffaf4;
	}
.banner__left{
	float:left;
	width:55%;
	text-align:left;
	}
.rating_view{
	font-size:16px;
	line-height:20px;
}
.rating_view img{
	width:80px;
	display:inline-block;
	vertical-align:middle;
	margin:-6px 5px 0 0;
}
.banner_heading{
	font-size:62px;
	line-height:66px;
	letter-spacing:-1px;
	color:#000;
	font-weight:700;
    font-family: "Barlow", sans-serif;
	margin:10px 0 0;
	}
.banner_heading span{
	background: -webkit-linear-gradient(0deg, #cf1d21 10%, #fe6901 55%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	}
.banner_text{
	font-size:24px;
	line-height:33px;
	margin-top:20px;
	}
.banner_tips{
	display:inline-block;
	 vertical-align:top;
	width:100%;
	font-size:24px;
	line-height:28px;
	font-family: "Barlow", sans-serif;
	font-weight:bold;
	margin-top:25px;
	position:relative;
	}
.banner_tips span{
	display:inline-block;
	vertical-align:middle;
	width:24px;
	height:24px;
	line-height:21px;
	text-align:center;
	color:#fff;
	margin:0 1px;
	border-radius:50%;
	background:#000;
	}

.banner__points{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	justify-content:space-between;
	width:100%;
	margin-top:15px;
	}
.banner__points li{
	float:left;
	width:49%;
	margin-top:12px;
	font-size:18px;
	line-height:24px;
	font-weight:600;
	position:relative;
	padding-left:39px;
	display:flex;
	display:-webkit-flex;
	align-items:center;
	border:1px solid #f75920;
	background:#ffeccf;
	padding:8px;
	}
.banner__points li img{
	width:30px;
	}
.banner__points li p{
	width:calc(100% - 30px);
	padding:0 0 0 15px;
}
	
.button_box{
	float:left;
	width:100%;
	margin-top:45px;
	}
.banner .button_box{ margin-top:30px; text-align:center;}
.button_width{
	display:inline-block;
	vertical-align:top;
	text-align:center;
	width:420px;
	max-width:100%;
	}
.common_button{
	float:left;
	width:100%;
	height:66px;
	color:#fff;
	font-size:25px;
	line-height:63px;
	font-weight:bold;
	letter-spacing:0.5px;
	text-transform:capitalize;
	font-family: "Barlow", sans-serif;
	border-radius:8px;
	background:#1cb13d;
	box-shadow:0 5px 5px 0 rgba(0,0,0,0.2);
	}
.common_button img{
	display:inline-block;
	vertical-align:middle;
	margin:-4px 0 0 15px;
	width:10px;
	}
.button_caption{
	float:left;
	width:100%;
	font-size:14px;
	line-height:14px;
	color:#252525;
	letter-spacing:0.3px;
	margin-top:15px;
	}
.button_caption span{
	display:inline-block;
	vertical-align:middle;
	padding:0 10px;
	}
.button_caption span img{
	display:inline-block;
	vertical-align:middle;
	width:18px;
	margin:-2px 6px 0 0;
	}
.banner-product{
	position: absolute;
	top: 0;
	right: 0;
	width: 543px;
	}	
.banner-product img{
	width:100%;
}
.banner_prod_seal{
	position:absolute;
	left:55px;
	top:150px;
	background:url(../images/banner-seal-bg.webp) center center no-repeat;
	background-size:100%;
	font-size:18px;
	line-height:25px;
	font-weight:600;
	text-align:center;
	padding-top:25px;
	color:#000;
	width:132px;
	height:132px;
}

/*=======SECTION1======*/
.section1{
    float: left;
    width: 100%;
	padding:60px 0 70px;
	background:#fff;
	}	
	
.common_heading{
    font-size: 48px;
    line-height: 54px;
	color:#000;
	font-family: "Barlow", sans-serif;
    font-weight: 800;
	}
.common_text{
    font-size: 18px;
    line-height: 26px;
	color:#000;
	letter-spacing:0.3px;
	margin-top:20px;
	}
		
.s1_mid_wrap{
	margin:20px auto 0;
	width:100%;
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	}
.s1_mid_imgbox{
	width:52%
	}
.s1_mid_imgbox img{
	margin:0 auto 0;
	display:block;
	}

.s1_mid_contbox{
	width:47%;
	}
.s1_solution_steps{
	margin:0 auto 0;
	width:100%;
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	row-gap:14px;
	}
.s1_solution_row{
	float:left;
	width:100%;
	text-align:left;
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	border:1px solid #cacaca;
	padding:20px 12px 20px 20px;
	}
.s1_solun_imgbx{ width:56px;}
.s1_solun_imgbx img{
	margin:0 auto 0;
	display:block;
	filter: grayscale(100%);
	}
.s1_solun_contbx{
	width:calc(100% - 56px);
	text-align:left;
	padding-left:20px;
	}
.s1_solun_contbx h3{
	font-size:23px;
	line-height:26px;
	color:#000;
	font-weight:bold;
	}
.s1_solun_contbx p{ margin-top:6px !important;}		

.s1_btm_text{
	font-size:28px;
	line-height:35px;
	color:#644498;
	font-weight:bold;
	margin-top:20px;
	}

/*=======SECTION2======*/
.section2{
    float: left;
    width: 100%;
	padding:60px 0 70px;
	background:#fffbf8;
	}	
	
.s2-cont{
	float:left;
	width:38%;
	text-align:left;
	}			
.s2-prodbox{
	float:left;
	width:28%;
	text-align:center;
	position:relative;
	}	
.s2-prodbox:before{
	content:'';
	position:absolute;
	top:-60px;
	left:50%;
	width:462px;
	height:349px;
	transform:translateX(-50%);
	background:url(../images/s2-prod-bg.webp) no-repeat center;
	background-size:cover;
	}
.s2-product{
	display:inline-block;
	vertical-align:top;
	width:288px;
	position:relative;
	margin-top:62px;
	}			
		
.s2-rgt{
	float:right;
	width:34%;
	text-align:left;
	margin-top:15px;
	}
.s2-rgt-head{
	font-size:30px;
	line-height:34px;
	color:#000;
	font-weight:bold;
	position:relative;
	z-index:1;	
	}	
.s2-rgt-list{
	display:inline-block;
	vertical-align:top;
	width:100%;
	margin-top:20px;
	}	
.s2-rgt-list li{
	float:left;
	width:100%;
	font-size:20px;
	line-height:28px;
	color:#000;
	letter-spacing:0.3px;
	margin-top:25px;
	padding:0 0 25px 35px;
	border-bottom:1px solid #ddebf4;
	background:url(../images/s2-list-tk.webp) no-repeat;
	background-position: left 5px;
	background-size:23px;
	}	
.s2-rgt-list li span{ font-weight:500;}
.s2-rgt-list li:last-child{ border:none; padding-bottom:0;}	

/*=======SECTION3======*/
.section3{
    float: left;
    width: 100%;
	padding:60px 0 70px;
	background:#fff;
	}	
	
.prod-sec3-mid{
	width:100%;
	margin:50px auto 30px;
	position:relative;
	display: -webkit-flex;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
ul.s3-mid-list{
	width:26%;
	}
ul.s3-mid-list li{
	float:left;
	width:100%;
	margin-top:90px;
	text-align:center;
	position:relative;
	}
ul.s3-mid-list li:after{
	content:"";
	position:absolute;
    right: -55px;
    top: 65px;
	background:url(../images/s3-li-arw1.webp) no-repeat center right;
	width:63px;
	height:39px;
	}
ul.s3-mid-list li:first-child{ margin-top:0;}
ul.s3-mid-list li:nth-child(2):after{
	background:url(../images/s3-li-arw2.webp) no-repeat center right;
	top: 37px;
	right: -27px;
	}
ul.s3-mid-list.fr li:after{
	background:url(../images/s3-li-arw3.webp) no-repeat center right;
	top: 79px;
	left: -50px;
	right:auto;
	}
ul.s3-mid-list.fr li:nth-child(2):after{
	background:url(../images/s3-li-arw4.webp) no-repeat center right;
	top: 44px;
	left: -32px;
	right:auto;
	}
ul.s3-mid-list li img{
	display:block;
	margin:0 auto 15px;
	width:65px;
	}
ul.s3-mid-list li h3{
	font-size:24px;
	line-height:30px;
	color:#000;
	font-weight:800;
	}
ul.s3-mid-list li p{
	font-size:18px;
	line-height:25px;
	color:#000000;
	margin-top:12px;
	letter-spacing:0.3px;
	}
.s3_product_box{
	position:absolute;
	top:0;
	left:49%;
	transform:translateX(-50%);
	width:553px;
	}
.s3-main-img{
	display:block;
	margin:0 auto 0;
	width:553px;
	}
.s3-product{
	position:absolute;
	bottom:-28px;
	left:50%;
	transform:translateX(-50%);
	width:328px;
	}

/*=======SECTION4======*/
.section4{
    float: left;
    width: 100%;
	padding:60px 0 70px;
	background:#fffbf8;
	}
	
.s4_block{
	display:inline-block;
	vertical-align:top;
	width:100%;
	margin-top:50px;
	}
.sec4_left{
	float:left;
	width:49%;
	position:relative;
	}
.sec4-img{
	display:block;
	margin:0 auto 0;
	width:570px;
	border-radius:20px;
	}
.sec4_right{
	float:right;
	width:46%;
	}
ul.sec4_ing_list{
	float:left;
	width:100%;
	}
ul.sec4_ing_list li{
	text-align:left;
	position:relative;
	margin-bottom:28px;
	padding-bottom:28px;
	border-bottom:1px solid #e9e9e9;
	
	display: -webkit-flex;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
	}
ul.sec4_ing_list li:last-child{ padding-bottom:0; margin-bottom:0; border-bottom:none;}
ul.sec4_ing_list li img{
	width:110px;
	border-radius:50%;
	}
.sec4_ing_cont{
	width:calc(100% - 110px);
	padding-left:20px;
	text-align:left;
	}
ul.sec4_ing_list li h3{
	font-size:24px;
	line-height:27px;
	color:#000;
	font-weight:bold;
	}
ul.sec4_ing_list li p{
	font-size:18px;
	line-height:26px;
	color:#000;
	margin-top:12px;
	}

/*=======SECTION5======*/
.section5{
    float: left;
    width: 100%;
	padding:60px 0 70px;
	background:#fff;
	}

.result-row{
	float:left;
	width:100%;
	margin-top:40px;
	position:relative;
	padding:240px 0;
	
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
.result-div{
	float:left;
	position:relative;
	}
.result-div:before{
	content:'';
	position:absolute;
	top:0;
	left:50%;
	transform:translateX(-50%);
	width:26px;
	height:26px;
	border:6px solid #fcd7c7;
	border-radius:50%;
	background:#f46526;
	}
.result-row:before{
	content:'';
	position:absolute;
	top:48.7%;
	left:110px;
	right:110px;
	border-top:3px dotted #f46526;
	}
.month-text{
	float:left;
	width:237px;
	font-size: 22px;
	line-height: 26px;
	font-weight: bold;
	color: #000;
	position:relative;
	}
.month-1:before{
	top:-10px;
	border-bottom:10px solid #abc3e3;
	}
.month-2:before{
	bottom:-10px;
	border-top:10px solid #efa4a5;
	}
.month-3:before{
	top:-10px;
	border-bottom:10px solid #90c092;
	}
.month-4:before{
	bottom:-10px;
	border-top:10px solid #ce96ca;
	}
.result-col{
	position:absolute;
	float:left;
	width:300px;
	padding:20px 20px;
	text-align:left;
	border:2px solid #252525;
	border-radius:10px;
	}
.result-col:before{
	position:absolute;
	left:50%;
	transform: translateX(-50%);
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	content:"";
	}
.result-col-1:before,.result-col-3:before{
	top: -19px;
	border-bottom: 17px solid #1f1f1f;
	}
.result-col-2:before,.result-col-4:before{
	bottom: -19px;
	border-top: 17px solid #1f1f1f;
	}
.result-col-1,.result-col-3{
	left:-34px;
	top:85px;
	}
.result-col-2,.result-col-4{
	left:-34px;
	top:-230px;
	}
.month-1,.month-3{
	left:0;
	top:-80px;
	}
.month-2,.month-4{
	left:0;
	top:65px;
	}
.result-col h3{
	font-size: 20px;
    line-height:22px;
    font-weight: bold;
	color:#000;
	}
.result-col p{
	font-size: 18px;
    line-height: 26px;
    color: #000;
    margin-top: 10px;
	}

.s5_strip{
	display:inline-block;
	vertical-align:top;
	font-size:16px;
	line-height:22px;
	color:#000;
	letter-spacing:0.3px;
	text-align:left;
	margin-top:40px;
	padding:10px 12px 10px 40px;
	border-radius:10px;
	position:relative;
	background:#f6f6f6;
	}
.s5_strip:before{
	content:'';
	position:absolute;
	top:50%;
	left:16px;
	transform:translateY(-50%);
	width:12px;
	height:12px;
	border-radius:50%;
	background:#f46526;
	}

/*=======SECTION6======*/
.section6{
    float: left;
    width: 100%;
	padding:60px 0 70px;
	background:#fffbf8;
	}
		
.compare_box{
	display: flex;
	display: -webkit-flex;
    flex-wrap: wrap;
	justify-content: space-between;
	width:100%;
	max-width:845px;
	margin:50px auto 10px;
	position:relative;
	}
.compare_box:before{
	content:"VS";
	position:absolute;
	top:25px;
	left:50%;
	width:68px;
	height:68px;
	font-size:27px;
	line-height:68px;
	color:#000;
	font-weight:600;
	border-radius:50%;
	transform:translateX(-50%);
	background:#fff;
	}
.compare_box-col{
	width:49.60%;
	padding:18px 20px 20px;
	text-align:left;
	border-radius:15px;
	overflow:hidden;
	
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	}
.without_box{
	background:#131313;
	}
.with_box{
	background: #D01D21;
	background: linear-gradient(180deg, rgba(208, 29, 33, 1) 15%, rgba(255, 106, 0, 1) 85%);
	}
.compare_box-col h3{
	font-size:25px;
	line-height:34px;
	color:#fff;
	font-weight:bold;
	text-align:center;
	padding-bottom:15px;
	margin-bottom:20px;
	border-bottom:1px solid #fff;
	}

.compare_box-col ul{
	display:inline-block;
	vertical-align:top;
	width:100%;
	}
.compare_box-col ul li{
	font-size:18px;
	line-height:26px;
	color:#ffffff;
	font-weight:bold;
	padding-left:33px;
	background:url(../images/tick.webp) no-repeat;
	background-position: left 5px !important;
	background-size:20px !important;
	margin-top:12px;
	}
.compare_box-col ul li:first-child{ margin-top:0;}
.without_box ul li{
	background:url(../images/cross.webp) no-repeat;
	}
.without_box ul li:first-child{ background:url(../images/wrng.webp) no-repeat;}
.compare-img{
	display:block;
	margin:35px auto 0;
	width:375px;
	border-radius:10px;
	}

/*=======SECTION7======*/
.section7{
    float: left;
    width: 100%;
	padding:160px 0 70px;
	background:#fff;
	}
	
.granty_box{
	display:inline-block;
	vertical-align:top;
	width:100%;
	max-width:970px;
	border:3px solid #ff6a00;
	}
.granty_header{
	display:inline-block;
	vertical-align:top;
	width:100%;
	padding:0 25px 30px;
	background:#242424;
	}
.granty-seal{
	display:block;
	margin:-105px auto 12px;
	width:170px;
	padding:10px;
	border-radius:50%;
	background:#fff;
	}
.granty_cont{
	display:inline-block;
	vertical-align:top;
	width:100%;
	padding:40px 40px 50px;
	background:#fff;
	}

/*=======SAVE STRIP======*/
.save_strip{
    float: left;
    width: 100%;
	padding:40px 0 40px;
	position:relative;
	background: #D01D21;
	background: linear-gradient(180deg, rgba(208, 29, 33, 1) 15%, rgba(255, 106, 0, 1) 85%);
	}
.save_strip:before{
	content: "";
	position:absolute;
	bottom: -25px;
	left:50%;
	transform: translateX(-50%);
	border-left: 26px solid transparent;
	border-right: 26px solid transparent;
	border-top: 25px solid rgba(255, 106, 0, 1);
	}

/*=======SECTION8======*/
.section8{
    float: left;
    width: 100%;
	padding:80px 0 70px;
	background:#fffbf8;
	}
.section8 .container{
    position: relative;
}

.common_button.tocheckout{
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    width: 90%;
    max-width: fit-content;
    padding: 0px 15px;
    line-height: 60px;
    height: auto;
    z-index: 9;
}
	
.s8_block{
	display:inline-block;
	vertical-align:top;
	width:100%;
    filter: blur(15px);
	}
.s8_left{
	float:left;
	width:48.545%;
	}
.package_slider_box{
	float:left;
	width:100%;
	padding:0 10px;	
	border:1px solid #dbe4ec;
	position:relative;
	background:#fff;
	}
.package_slider{
	float:left;
	width:100%;
	height:100%;
	position:relative;
	}
.package_slider div{
	border-radius:20px;
	}	
.pakge-slide-prod{ margin:43px auto 0;}
.pkg-seal{
    position: absolute;
    top: 12px;
    left: 12px;
	}
.prd-nav1{ width:50px;}

.s8_right{
	float:right;
	width:46.5%;
	}	
.s8_pkg_heading{
	font-size:35px;
	line-height:38px;
	color:#000;
	font-weight:bold;
	}	

/*PACKAGE CSS*/
.purchase_box{
	float:left;
	width:100%;
	margin-top:30px;
	}
	
.switch_optBox{
	width:100%;
	margin:0 auto 0;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
.option_row{
    width: 48.5%;
    border: 1px solid #c3c3c3;
    border-radius: 6px;
    font-size: 17px;
    line-height: 18px;
    color: #131313;
    font-weight: bold;
    text-align: center;
    position: relative;
    cursor: pointer;
    padding: 15px 10px;
	background:#fff;
	}
.regular-opt.active{
	background: #13af22;
    border: 1px solid #13af22;
    color: #fff;
	}
.extra-opt.active{
	background: #13af22;
    border: 1px solid #13af22;
    color: #fff;
	}

.package_row{
	width: 100%;
    margin-top: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	row-gap: 20px;
	}
.package_col{
	width: 100%;
    float: left;
    background: #fff;
    border-radius: 7px;
    border: 2px solid #d7d7d7;
    cursor: pointer;
	position:relative;
	padding:16px 15px;
	-webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
	
	display:flex;
	display:-webkit-flex;
	align-items:center;
	-webkit-align-items:center;
	}
.package_col.package2{ margin-top:10px;}
.package_col.active {
    background: #fff;
    border-color: #000;
	-webkit-box-shadow: 0 0 8px 2px rgba(0,0,0,.1);
	box-shadow: 0 0 8px 2px rgba(0,0,0,.1);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
	}
.extra-pkg .package_col.active {
	background: #fff;
    border-color: #000;
	-webkit-box-shadow: 0 0 8px 2px rgba(0,0,0,.1);
	box-shadow: 0 0 8px 2px rgba(0,0,0,.1);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
	}
.radio_opt{
	width:5%;
	padding:0;
	margin-top:0;
	}
.radio_opt input[type='radio']{
	-webkit-appearance:none;
	position:absolute;
	left:0;
	top:0;
	}
.radio_opt input[type='radio'] + span{
	width:22px;
	height:22px;
	border-radius:50%;
	border:1px solid #000;
	display:inline-block;
	vertical-align:middle;
	position:relative;
	}
.radio_opt input[type='radio']:checked + span{background:#fff; border:1px solid #b7b7b7;}
.radio_opt input[type='radio']:checked + span:before{
	content:'';
	position:absolute;
	width:11px;
	height:11px;
	background:#fff;
	border-radius:50%;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%);
	}
.package_col.active .radio_opt input[type='radio'] + span{border:7px solid #000; background:none;}
.package_col.active .radio_opt input[type='radio'] + span:before{ background:#fff;}
.purchase_info{
	width:22%;
	}
.purchase_info img{
	display:block;
	margin:0 auto 0;
	width:90px;
	}	

.purchase_offerBx{
    width: 45%;
    text-align: left;
    padding-left: 10px;
	}
.pkg-hdg-text{
	font-size:22px;
	line-height:22px;
	color:#000;
	font-weight:bold;
	}
.pkg-save-text{
    font-size: 15px;
    line-height: 17px;
    color: #13af22;
    font-weight: bold;
    margin-top: 5px;
	}
.pkg-month-text{
    font-size: 13px;
    line-height: 14px;
    color: #000;
    font-weight: 500;
    margin-top: 5px;
	}		
.pkg-cut-price{
    font-size: 14px;
    line-height: 1.4;
    color: #575757;
	margin-bottom:12px;
	}
.pkg-cut-price span{
	position:relative;
	}
.pkg-cut-price span:before{
	content:'';
	position:absolute;
	top:45%;
	left:-2px;
	right:-3px;
	border-top:1px solid #f30b0b;
	transform:rotate(-15deg);
	}
.pkg-value-text{
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    font-size: 13px;
    line-height: 13px;
    color: #fff;
    text-transform:uppercase;
    padding: 6px 15px 5px;
    position:absolute;
    left: 20px;
    top: -13px;
    background: #ff0000;
	}
.package2 .pkg-value-text{ background:#13af22;}
	
.purchase_priceBx{
	width:28%;
	text-align:right;
	}	
.pkg-list-price{
	font-size:13px;
	line-height:13px;
	color:#000;
	}
.pkg-list-price span{
	font-size: 22px;
	color:#000;
	font-weight:bold;
	}
.free_shipp{
	font-size:13px;
	line-height:13px;
	color:#000;
	font-weight:500;
	margin-top:5px;
	text-transform:uppercase;
	}
.free_shipp img{
	display:inline-block;
	vertical-align:middle;
	width:20px;
	margin:-4px 6px 0 0;
	}	
							
.cart_btn_box{
	display:inline-block;
	vertical-align:top;
	width:100%;
	max-width:434px;
	margin-top:30px;
	}
.cart_btn_width{
	display:inline-block;
	vertical-align:top;
	width:100%;
	}		
.cart_common_btn{
	float:left;
	width:100%;
	height:66px;
	color:#fff;
	font-size:25px;
	line-height:63px;
	font-weight:bold;
	letter-spacing:0.5px;
	text-transform:capitalize;
	font-family: "Barlow", sans-serif;
	border-radius:8px;
	background:#1cb13d;
	box-shadow:0 5px 5px 0 rgba(0,0,0,0.2);
    position: relative;
	border:none;
	cursor:pointer;
	-webkit-appearance:none;
	}
.cart_common_btn img{
    display: inline-block;
    vertical-align: middle;
    margin: -4px 0 0 15px;
    width: 10px;
	}	
	
/*=======SECTION9======*/
.section9{
    float: left;
    width: 100%;
	padding:60px 0 70px;
	background:#fff;
	}
.faq-box{
	display:inline-block;
	vertical-align:top;
	width:100%;
	max-width:830px;
	margin:25px 0 10px;
	}
.faq-row{
	float:left;
	width:100%;
	border-bottom:1px solid #c2c2c2;
	}
.faq-row:last-child{ border-bottom:none;}
.accordion{
	float:left;
	width:100%;
	text-align:left;
	background:url(../images/close.webp) no-repeat;
	background-position: 98% center !important;
	background-size:15px !important;
	padding:25px 35px 25px 0;
	font-size:18px;
	line-height:26px;
	font-weight:bold;
	color:#000000;
	position:relative;
	cursor:pointer;
	}
.acdn-heading.accordion-open{
	background:url(../images/open.webp) no-repeat;
	}
.acdn-content{
	float:left;
	width:100%;
	text-align:left;
	padding:0 80px 10px 0;
    margin-top: -10px;
	}
.acdn-para{
	font-size:18px;
	line-height:26px;
	color:#000000;
	margin-bottom:15px;
	}	


		
/*-----------------------
Footer
------------------------*/	
.footer{
	float:left;
	width:100%;
	padding:50px 0;
	border-top:1px solid #dbdbdb;
	background:#fff;
	}
.foot-logo{
	display:block;
	margin:0 auto 30px;
	width:120px;
	}
.foot_txt1{
	font-size:16px;
	line-height:18px;
	color:#000;
	letter-spacing:0.5px;
	margin-top:15px;
	}
.foot_txt1 a{ color:#000; padding:0 8px;}

		
/*--------------------PLUSE--------------------*/	
.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 Query========*/
.show-mob, .show-tab {display: none;}
.fl{ float:left;}
.fr{ float:right;}	
.white_color{ color:#fff;}
.mrgT0{ margin-top:0 !important;}

@media only screen and (max-width:1200px){
.container{width:1004px;}

.banner__left{ width: 61%;}
.banner{ background-position: top right 54%; background-size:cover;}
.banner-product{width:430px;}

.s2-rgt-list li{ margin-top: 18px; padding: 0 0 18px 35px;}

.prod-sec3-mid{ margin: 50px auto 10px;}
.s3_product_box{ top: 50px; width: 463px;}
.s3-product{ width: 268px;}
ul.s3-mid-list.fr li:after{ left: -60px;}

.sec4_left{ width: 45%;}
.sec4_right{ width: 50%;}

.result-row{ padding: 280px 0 240px;}
.result-col{ width: 230px; padding:20px 19px;}
.result-col-1, .result-col-3{ left: 2px; top: 85px;}
.result-col-2, .result-col-4{ left: 6px; top: -270px;}
.result-row:before{ top: 51.9%;}

}


@media only screen and (max-width:1021px){
.container{width:750px;}
.show-desk {display: none;}
.show-tab {display: block;}

ul.menu-list{ display:none;}
a.nav_btn{ margin: 3px 50px 0 0;}

.banner{ background-position: top right 53%;}
.banner__left{ width: 63%;}
.banner_heading{ font-size: 44px; line-height: 51px;}
.banner_text{font-size:20px; line-height:28px;}
.banner_tips{ font-size: 18px; line-height: 24px;}
.banner_tips span{ width: 20px; height: 20px; line-height: 18px;}
.banner__points li{ font-size: 18px; line-height: 24px;}
.banner-product{ bottom: -38px; left: 451px; width: 300px;}
.banner_prod_seal{left:0; top:30px; width:112px; height:112px; font-size:15px; line-height:20px;}

.section1{  padding: 50px 0 60px;}
.common_heading{ font-size: 40px; line-height: 46px;}
.s1_mid_wrap{ margin: 45px auto 0; align-items: flex-start;}
.s1_mid_imgbox{ width:49%;}
.s1_mid_contbox{ width:50%;}
.s1_solution_row{ padding:15px 12px;}
.s1_solun_contbx h3{ font-size: 22px; line-height: 26px;}
.s1_btm_text{ font-size: 22px; line-height: 32px; margin-top: 35px;}

.section2{  padding: 50px 0 60px;}
.s2-cont{ width:100%; text-align:center; padding: 0 40px;}
.s2-prodbox{ width:34%; margin-top:45px;}
.s2-rgt{ width:55%; margin-top:45px;}
.s2-rgt-list{ margin-top:0;}
.s2-prodbox:before{ top: 0;}

.section3{  padding: 50px 0 60px;}
.prod-section-3{ padding:0 0 150px;}
.s3-img-left{ left:-140px;}
ul.s3-mid-list{width:34%;}
ul.s3-mid-list li{ margin-top: 60px;}
.s3_product_box{ top: 160px; width: 280px;}
.s3-product{ width: 148px; bottom: -28px;}
ul.s3-mid-list li h3{ font-size: 21px; line-height: 27px;}
ul.s3-mid-list li p{ font-size:16px; line-height:26px; padding:0 5px;}
.wtmln-img { bottom: -120px;left: 236px;}
ul.s3-mid-list li:after{display:none;}

.section4{  padding: 50px 0 60px;}
.sec4_left{ width: 41.5%;}
.sec4_right{ width: 54%;}
ul.sec4_ing_list li img{ width:70px;}
.sec4_ing_cont{ width: calc(100% - 70px);}
ul.sec4_ing_list li{ margin-bottom: 24px; padding-bottom: 24px; align-items: flex-start;}
ul.sec4_ing_list li h3{ font-size: 22px; line-height: 25px;}
ul.sec4_ing_list li p{ font-size: 17px; line-height: 25px; margin-top: 10px;}

.section5{  padding: 50px 0 60px;}
.result-row{ padding: 172px 0 147px;}
.month-text { width: 187px; font-size: 20px; line-height: 25px;}
.result-col{ width: 187px; padding: 10px 8px 10px;}
.result-div:before{ left: 50%; width: 20px; height: 20px; border: 5px solid #fcd7c7;}
.result-col:before{ border-left: 12px solid transparent; border-right: 12px solid transparent;}
.result-col-1:before, .result-col-3:before{ top: -15px; border-bottom: 13px solid #1f1f1f;}
.result-col-2:before,.result-col-4:before{ bottom: -15px; border-top: 13px solid #1f1f1f;}
.result-col-2, .result-col-4{ left: 0; top: -170px;}
.result-col-1, .result-col-3{ top: 62px; left: 0;}
.month-1,.month-3{ top: -60px;}
.result-col h3{font-size: 17px;line-height: 20px;}
.result-col p{font-size: 14px;line-height: 20px;}
.result-row:before{ top: 50.4%;}

.s5_strip{ padding: 10px 20px 10px 40px;}

.section6{  padding: 50px 0 60px;}
.compare_box-col{padding:25px;}

.section7{ padding: 140px 0 60px;}

.section8{ padding:50px 0 60px;}
.s8_left{ width:46%;}
.s8_right{ width: 50%;}
.package_row{ margin-top: 40px;}
.option_row{ font-size:17px; line-height:17px;}
.option_row{ font-size: 15px; line-height:17px; padding: 12px 8px;}
.s8_pkg_heading{ font-size: 32px; line-height: 34px;}
.package_col{ padding:14px 10px;}
.radio_opt{ width:8%;}
.purchase_info{ width: 19%;}
.pkg-hdg-text{ font-size: 20px; line-height: 20px;}
.purchase_priceBx{ width: 31%;}
.pkg-value-text{ font-size: 11px; line-height: 11px; padding: 6px 10px 5px;}

.cart_common_btn{ font-size: 23px;}
.button_caption span{ padding: 0 9px;}

.section9{ padding:50px 0 60px;}
.pkg-list-price span{
    font-size: 18px;
}
}

@media only screen and (max-width:767px){
.container{width:100%; padding:0 15px; max-width:600px; box-sizing:border-box;}
.show-mob{display:block;}
.hide-mob{display:none;}

.top-strip{ padding:10px 0 8px;}
.top-strip__text{ font-size: 13px; line-height: 13px;}

.mobilemenu{ top: 55px;}
.mobimenu-top{ top:55px;}
a.nav_btn{ display:none;}
.logo{ width: 85px; margin-top: 1px;}
.mob-mnu-ic{ top:6px; right:15px;}
.top-fix-bar{ margin-bottom: 55px;}
.nav_section{ height: 55px; top: 55px; margin-top: -55px; -webkit-box-shadow: 0 2px 4px 2px rgba(0,0,0,.1); box-shadow: 0 2px 4px 2px rgba(0,0,0,.1);}

.scroll_strip .container{padding:0;}
ul.scroll_strip_list li img{width:25px;}
ul.scroll_strip_list li p{font-size:14px; line-height:20px;}

.banner{ padding: 20px 0 30px; background:#fffbf8;}
.banner__left { width: 100%; text-align:center;}
.rating_view{font-size:13px; line-height:17px;}
.rating_view img{width:65px;}
.banner_heading { font-size: 34px; line-height: 38px;}
.banner_text{ font-size: 18px; line-height: 24px; margin-top: 15px;}

.banner-product{position:relative; left:auto; right:auto; top:auto; bottom:auto; margin:20px auto 0;}
.banner_product img{ position:static; display:block; margin:0 auto; max-width:100%;}
.banner_tips{ width:auto; font-size: 18px; line-height: 22px ; margin-top: 20px;}
.banner_tips:before, .banner_tips:after{ background: #CF1C21;}
.banner_tips span{ width: 16px; height: 16px; line-height: 13px;}
.banner__points{ max-width: 300px; text-align:left; margin:15px auto 0;}
.banner__points li{ margin-top: 8px; font-size: 16px; line-height: 22px; position:relative; width:100%;}
.banner__points li img{ width:21px;}
.banner-mob{ margin:20px auto 0; width:339px;}

.button_box{ margin-top: 30px;}
.banner .button_box{ margin-top: 25px;}
.button_width{ width: 345px;}
.common_button{ height: 55px; font-size: 22px; line-height: 52px;}
.common_button img{ margin: -4px 0 0 11px; width: 8px;}
.button_caption{ font-size: 13px; line-height: 14px; margin-top: 12px;}
.button_caption span{ padding:0 5px;}
.button_caption span img{ width: 15px; margin:-2px 6px 0 0;}

.section1{ padding: 30px 0 35px;}
.common_heading{ font-size: 29px; line-height: 34px;}
.common_text{ font-size: 16px; line-height: 24px; letter-spacing: 0.2px;}

.s1_mid_wrap{ margin: 20px auto 0; align-items: center; justify-content: center;}
.s1_mid_imgbox{ width:100%;}
.s1_mid_imgbox img{ width:240px;}
.s1_mid_contbox{ width:100%;}
.s1_solun_imgbx{ width: 50px;}
.s1_solun_contbx{ width: calc(100% - 50px); padding-left: 20px;}
.s1_solun_contbx h3{ font-size: 19px; line-height: 22px;}
.s1_solun_contbx p{ margin-top: 5px !important;}
.s1_solution_steps{ row-gap:normal; max-width:390px; margin:20px auto 0;}
.s1_solution_row{ padding: 15px 5px; border: none; border-bottom: 1px solid #cacaca;}
.s1_solution_row:last-child{ border:none; padding-bottom:0;}
.s1_btm_text{ font-size: 20px; line-height: 26px; margin-top: 14px;}

.section2{ padding: 30px 0 35px;}
.s2-cont{ padding:0;}
.s2-subheading{ font-size: 20px; line-height: 26px;}
.s2-prodbox{ width:100%; margin-top:25px;}
.s2-prodbox:before{ width: 282px; height: 209px;}
.s2-product{ width: 168px; margin-top: 42px;}
.s2-prod-bg{ margin-left: -150px; width: 300px;}
.s2-prod{ max-width:70%;}
.s2-rgt{ width:100%; margin-top:25px;}
.s2-rgt-head{ font-size: 22px; line-height: 26px;}
.s2-rgt-list{ margin-top: 10px;}
.s2-rgt-list li{ font-size: 17px; line-height: 25px; padding: 0 0 12px 30px; margin-top: 12px; background-size: 19px;}

.section3{ padding: 30px 0 35px;}
.prod-sec3-mid{ max-width:390px; margin: 30px auto 0; padding: 0 20px; justify-content: center;}
.s3_product_box{ width: 100%; max-width: 280px; position: relative; transform: none; top: auto; left: auto; display: inline-block; vertical-align: top; margin-bottom: 30px;}
.s3-product{ width: 148px; bottom: -28px;}
ul.s3-mid-list{ width:100%;}
ul.s3-mid-list li{ width:100%; margin-top:35px !important;}
ul.s3-mid-list li img{ width: 55px; margin:0 auto 10px;}
ul.s3-mid-list li h3{ font-size:21px; line-height:27px;}
ul.s3-mid-list li p{ margin-top: 12px; font-size: 16px; line-height: 24px;}

.section4{ padding: 30px 0 35px;}
.s4_block{ margin-top: 30px;}
.sec4_left{ width:100%;}
.sec4-img-m{ margin:0 auto 0; width:100%; border-radius:10px;}
.sec4_right{ width:100%; margin-top:30px;}
ul.sec4_ing_list li h3{ font-size: 20px; line-height: 24px;}
.sec4_ing_cont{ padding-left: 15px;}
ul.sec4_ing_list li{ margin-bottom: 20px; padding-bottom: 20px;}
ul.sec4_ing_list li p{ font-size:16px; line-height:24px; margin-top:8px;}

.section5{ padding: 30px 0 35px;}
.result-row{ margin-top: 25px; padding:0 0 0 50px; row-gap: 20px;}
.result-div{ width:100%; text-align:left; padding: 15px 15px 15px; border: 2px solid #252525; border-radius:10px;}
.month-text{ display:inline-block; vertical-align:top; width:auto; color:#fff; padding:4px 20px 5px; border-radius:50px; position:static; font-size:20px; line-height: 24px; background: #D01D21; background: linear-gradient(90deg, rgba(208, 29, 33, 1) 15%, rgba(255, 106, 0, 1) 85%);}
.result-col{ width:100%; position:static; padding:0; border:none;}
.result-col h3{ font-size: 18px; line-height: 22px; margin-top: 12px;}
.result-col p{ font-size:16px; line-height:24px; margin-top: 8px;}
.result-col:before{ top: 15px !important; bottom: auto !important; left: -10px; border-left: 13px solid #1f1f1f; border-right: 12px solid transparent; border-bottom: 12px solid transparent !important; border-top: none !important; transform: rotate(-45deg);}
.result-div:before{ top: 15px; left: -50px; width: 13px; height: 13px; border: 5px solid #fcd7c7; transform: none;}
.result-row:before{ top: 20px; left: 12px; right: auto; bottom: 21.5%; border-top: none; border-left: 2px dotted #f46526;}

.s5_strip{ padding: 10px 15px 10px 40px; font-size: 15px; line-height: 21px; margin-top: 30px;}

.section6{ padding: 30px 0 35px;}
.compare_box{ max-width:415px; row-gap:10px; margin: 25px auto 0;}
.compare_box-col{ width:100%; padding: 18px 20px;}
.compare_box:before{ top:49%; font-size:26px; line-height:56px; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); width: 55px; height: 55px;}
.without_box{ padding-top: 30px;}
.with_box{ border-radius:12px;}
.compare-img{ margin: 25px auto 0;}
.compare_box-col h3{ font-size: 24px; line-height: 32px;}
.compare_box-col ul li{ font-size: 16px; line-height: 22px; padding-left:28px; background-size: 17px !important; background-position: left 4px !important; margin-top: 10px;}  
.without_box ul li{ background-size: 18px;}

.section7{ padding: 100px 0 35px;}
.granty_header{ padding: 0 20px 25px;}
.granty-seal{ margin: -75px auto 12px; width:130px;}
.granty_cont{ padding: 20px 20px 20px;}
.granty_box .common_button{ font-size: 19px;}
.granty_box .button_caption{ font-size: 11px; line-height: 12px;} 
.granty_box .button_caption span img{ width: 13px; margin: -2px 4px 0 0;}

.save_strip{ padding: 20px 0 20px;}
.save_strip .common_heading{ font-size: 26px; line-height: 30px;}
.save_strip:before{ bottom: -19px; border-left: 20px solid transparent; border-right: 20px solid transparent; border-top: 19px solid rgba(255, 106, 0, 1);}

.purchase_offerBx{
    width: 41%;
}
.pkg-hdg-text {
    font-size: 18px;
}
.purchase_priceBx {
    width: 35%;
}

.section8{ padding: 50px 0 35px;}
.s8_left{ width:100%;}
.s8_pkg_heading{ font-size: 29px; line-height: 30px;}
.pkg-value-text{ font-size: 10px; line-height: 10px; padding: 4px 9px 4px; top: -11px; left: 15px;}
.pck_sld_text{ font-size: 14px; line-height: 14px; padding: 4px 12px;}
.s8_right{ width: 100%; margin-top:25px;}
.radio_opt{ width: 5%; margin-right:5px}
.radio_opt input[type='radio'] + span{ width: 16px; height: 16px;}
.radio_opt input[type='radio']:checked + span:before{ width: 7px; height: 7px;}
.purchase_info{ width: 17%;}
.option_row{ width: 48.73%; font-size: 14px; line-height: 14px; padding: 14px 6px;}
.package_row{ row-gap: 15px; margin-top:35px;}
.purchase_box{ float:none; display:inline-block; vertical-align:top; max-width:420px; margin-top:25px;}
.package_col{ padding:12px 8px;}
.purchase_offerBx{ width: 50%; padding-left: 15px;}
.pkg-hdg-text{ font-size: 18px; line-height: 18px;}
.purchase_priceBx{ width: 26%;}
.pkg-list-price{ font-size: 12px; line-height: 12px;}
.pkg-list-price span{ font-size: 20px;}
.pkg-list-price small{ font-size:12px; line-height:12px;}
.pkg-cut-price{ font-size: 14px; line-height: 14px; margin-bottom: 9px;}
.pkg-save-text{ font-size: 12px; line-height: 12px;}
.cart_common_btn{ height: 55px; font-size: 22px; line-height: 52px;}
.cart_common_btn img{ margin: -4px 0 0 11px; width: 8px;}

.section9{ padding: 30px 0 35px;}
.faq-box{ margin: 15px 0 0;}
.accordion{ background-size: 12px !important; padding: 15px 30px 15px 0; font-size: 18px; line-height: 26px;}
.acdn-content{ padding: 0 10px 5px 0; margin-top: -5px;}
.acdn-para{ font-size: 16px; line-height: 24px;}	

.footer{ padding: 30px 0;}
.foot-logo{ width: 90px; margin:0 auto 25px;}
.foot_txt1{ font-size: 15px; line-height: 16px; margin-top: 13px;}
.foot_txt1 a{ padding: 0 4px;}
}

@media only screen and (max-width:475px){
    .pkg-list-price span {
        font-size: 16px;
    }
    .pkg-hdg-text {
        font-size: 14px;
    }
    .option_row{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
