@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:normal;
	}
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; max-width:100%;}
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-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-Bold.woff2') format('woff2'),
        url('Poppins-Bold.woff') format('woff');
    font-weight: bold;
    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;
}

/*=====MAIN_CSS_START=====*/
.container {
	width:1170px;
	margin:0 auto;
	padding:0;
	position:relative;
	}

/*====header====*/
.top-fix-bar{
	float: left;
	width: 100%;
	margin-bottom:75px;
	}
.header{
	float:left;
	width:100%;
	height:75px;
	margin-top:-75px;
	top:75px;
	position:relative;
	background:#fff;
    border-top: 6px solid #ff2120;
	}
.fixed-nav .header{
	position: fixed;
	z-index: 99;
	-webkit-transition: margin .3s ease-out;
	transition: margin .3s ease-out;
	margin-top:0;
	top:0;
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);	
	}
.logo_box{
	float:left;
	margin-top:5px;
	}	
.logo{
	display: inline-block;
  	vertical-align: middle;
  	width: 230px;
  	margin-top: 10px;
  	color: #000000; /*#ed1c24;*/
  	font-weight: 500;
	}
.logo_box p{
	display:inline-block;
	vertical-align:middle;
	font-size:15px;
	line-height:21px;
	color:#000;
	letter-spacing:0.5px;
	border-left:2px solid #f4f4f4;
	margin-left:12px; 
	padding-left:12px;	
	}	
ul.topMenu{
	display: inline-block;
	vertical-align: middle;
	margin: 18px 0 0 0;
	}
ul.topMenu li{
	    float: left;
    padding: 4px 20px;
    position: relative;
	}
ul.topMenu li:after{
	position:absolute;
	content:"";
	right:0;
	top:9px;
	bottom:6px;
	border-right:1px solid #050505;
	}
ul.topMenu li:last-child:after{ display:none;}
ul.topMenu li a{
	color:#000;
	font-size:16px;
	line-height:17px;
	font-weight:400;
	letter-spacing:0.4px;
	}	
ul.topMenu li a:hover, ul.topMenu li a.active{color:#000000; /*#ed1c24;*/}
a.header_btn{
        float: right;
    width: 200px;
    height: 45px;
    font-size: 16px;
    line-height: 45px;
    color: #fff;
    text-align: center;
    border-radius: 50pc;
    background: #00ce2d;
    font-weight: bold;
    text-transform: uppercase;
	margin-top:12px;
}

.mob-mnu-ic{
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 24px;
    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:#fff;
	display:inline-block;
	vertical-align:top;
	font-size:16px;
	font-weight:300;
	margin-top:4px;
	margin-right:5px;
	}
.bar1, .bar2, .bar3 {
	width: 30px;
	height: 3px;
	background-color: #000;
	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:#000;
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-7px, -7px);
	transform: rotate(45deg) translate(-7px, -7px);
	background:#000;
	}	
.mobilemenu{
	left:0;
	position:fixed;
	top:80px;
	background:rgba(255,255,255,1);
	z-index:13;
	right:0;
	bottom:0;
	overflow:scroll;
	display:none;
	}
.mobimenu-top{ top:56px;}	
.mobilemenu li{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:1px solid #dddddd;
	}
.mobilemenu li a{
	float:left;
	width:100%;
	padding:12px 20px;
	font-size:15px;
	color:#000;
	font-weight:500;
	}	
.mobilemenu li a:hover{color:#000;}

/*====banner====*/
.banner{
	float: left;
    width: 100%;
    background: url(../images/banner.jpg) no-repeat center top #fff9f9;
    padding: 80px 0 75px;
    overflow: hidden;
    background-size: cover;
	}
.banner_left{
	float:left;
	width:57%;
	text-align:left;
	}
.banner_review_strip{
	display:inline-block;
	vertical-align:top;
	width:100%;
	}
.bnr_strip_rev_text{
	display: inline-block;
    vertical-align: middle;
    font-size: 26px;
    line-height: 30px;
    color: #303030;
    font-weight: 400;
	}

.banner_heading{
	font-size: 54px;
    line-height: 62px;
    color: #000000; /*#ed1c24;*/
    font-weight: bold;
    margin-top: 12px;
    text-transform: capitalize;
	}
.banner_text{
	font-size: 17px;
	line-height: 26px;
	color: #000;
	margin-top: 32px;
	position: relative;
	padding-left: 150px;
	}
img.bnr-txt-iocn {
	max-width: 160px;
    top: 0px;
    position: absolute;
    left: -16px;
    z-index: 1;
}
.banner_text:before{
	content: '';
	position: absolute;
	top: -7px;
	left: 120px;
	border: 1px dotted #ffcccc;
	right: 14px;
}
.banner_text:after{
	    content: '';
    position: absolute;
    bottom: -9px;
    left: 120px;
    border: 1px dotted #ffcccc;
    right: 14px;
}
.banner_sold_strip{
	display:inline-block;
	vertical-align:top;
	padding:7px 20px 7px 15px;
	margin-top:25px;
	background:#fffed9;
	border:1px dashed #e7311e;
	border-radius:7px;
	}
.banner_sold_strip p{
	font-size:16px;
	line-height:24px;
	color:#000;
	letter-spacing:0.3px;
	}
.banner_sold_strip p span{
	font-weight:bold;
	}	
.banner_sold_strip p img{
	display:inline-block;
	vertical-align:middle;
	width:16px;
	margin:-2px 8px 0 0;
	}	
ul.banner_point{
	display: flex;
    vertical-align: top;
    width: 100%;
    margin-top: 32px;
    flex-wrap: wrap;
    row-gap: 12px;
	}
ul.banner_point li{
	background: url(../images/banner_check.png) no-repeat left 5px;
	font-size: 22px;
	line-height: 25px;
	color: #000000;
	font-weight: bold;
	text-align: left;
	padding-left: 27px;
	margin-top: 10px;
	}

.button__box{
	display:inline-block;
	vertical-align:top;
	width:100%;
	margin-top:40px;
	}
.button__width{
	display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 420px;
    text-align: center;
	}
.deal-text{
	font-size: 15px;
	line-height: 22px;
	margin-top: 7px;
	color: #252525;
	font-weight: 500;
	}
.deal-text img{
	display:inline-block;
	vertical-align:middle;
	margin:-3px 6px 0 0;
	width:17px;
	}
.common__button{
	    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 60px;
    border-radius: 50px;
    color: #fff;
    font-size: 28px;
    line-height: 60px;
    font-weight: 500;
    background: #00cd2c;
    -webkit-appearance: none;
    box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.3);
    overflow: hidden;
	}
.common__button span{
	background: #00b728;
	float: right;
	width: 56px;
}
	
.common__button img{
	display: inline-block;
    vertical-align: middle;
    margin: -6px 0 0 -2px;
	}
ul.button-box__list{
	margin:15px auto 0;
	width:100%;
	
	display:-webkit-flex;
	display:flex;
	justify-content:space-between;
	}
ul.button-box__list li{
	font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.2px;
    text-align: left;
	color:#252525;
	
	display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
	}
ul.button-box__list li img{ margin-right:5px; width:20px;}		

.banner_prod {
	position: absolute;
	right: 122px;
	top: 223px;
	width: 674px !important;
	}
.banner_seal{
	position: absolute;
	right: 258px;
	top: 218px;
	}
	
.bnr-strp{
	float: left;
	width: 100%;
	padding: 30px 0;
	background: #fff;
	border-bottom: 1px solid #fdecf0;
}
.bnr-strip-list{
	float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.bnr-strip-list li{
	width: 33%;
    text-align: center;
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #000;
	position:relative;
}
.bnr-strip-list li:after{
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	border-right:1px solid #e1e1e1;
	width:1px;
}
.bnr-strip-list li:last-child:after{ display:none;}
.bnr-strip-list li img{
	max-width:50px;
	display:block; 
	margin:0 auto 10px;
}
.bnr-strip-list li span{
	font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    display: block;
    margin-bottom: 5px;
}
	
/*========Section 1========*/
.section-1{
	background:#fff;
	float:left;
	width:100%;
	padding:60px 0;
	overflow:hidden;
	}
.s1-cont{
	    float: left;
    width: 65%;
    text-align: left;
    margin-top: 20px;
	}	
.commn-hdg{
	float: left;
    width: 100%;
    font-size: 44px;
    line-height: 56px;
    color: #000;
    font-weight: bold;
    padding-bottom:20px;
    position: relative;
	text-transform:capitalize;
	}
.commn-para{
    float: left;
    width: 100%;
    font-size: 17px;
    line-height: 28px;
    color: #000;
	}
.s1-cont .commn-para{ padding-right:100px;}	
		
.s1-box{
	background:url(../images/s1-box-bg.jpg)#fffafb no-repeat center top;
	float:left;
	width:100%;
	text-align:left;
	border:4px solid #fad3d4;
	margin-top:65px;
	position:relative;
	}
.s1-bx-lft{
	float: left;
    width: 70%;
    padding: 42px 33px;
	}	
.s1-box-list{
	float:left;
	width:100%;
	
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;	
	}
.s1-box-list li{
	float:left;
	width: 24%;
	text-align:center;
	}
.s1-box-list li img{
	margin:0 auto 10px;
	display:block;
	max-width:100%;
	}
.s1-box-list li p{
	    font-size: 18px;
    line-height: 26px;
    color: #000;
    font-weight: 600;
	}		

	.hand-img {
		position: absolute;
		bottom: 20px;
		right: 0;
		left: 715px;
	}
.s1-arw-txt {
    position: absolute;
    top: 5px;
    right: 296px;
}
.s1-seal{
	    position: absolute;
    bottom: 70px;
    right: 420px;
	}
/*====section_2====*/	
.section-2{
	float:left;
	width:100%;
	padding:60px 0;
	position:relative;
	background:#fffafb;
	}
.section-arrw{
	position:absolute;
	top:-130px;
	left:50%;
	width:70px;
	margin-left:-35px;
	}
.sec2_mid{
	float:left;
	width:100%;
	margin-top:30px;
	}
.sec2_right{
	float:right;
	width:47%;
	text-align:left;
	}

ul.s2_right_point{
	float:left;
	width:100%;
	margin-top:15px;
	}
ul.s2_right_point li{
	float:left;
	width:100%;
	padding-left:35px;
	margin-top:16px;
	font-size:18px;
	line-height:26px;
	letter-spacing:0.3px;
	color:#050505;
	font-weight:600;
	background:url(../images/blue_tick.png) no-repeat left 6px;
	background-size:21px;
	}
ul.s2_right_point li p{
	display:inline-block;
	vertical-align:middle;
	width:77%;
	padding-bottom:18px;
	border-bottom:1px solid #cbdce8;
	}
ul.s2_right_point li:last-child p{border-bottom:none;}
.sec2_left{
	float:left;
	width:49%;
	margin-top:15px;
	}
.s2_product{
	display:block;
	margin:0 auto 0;
	width:573px;
	}
ul.sec2_list{
	display:inline-block;
	vertical-align:top;
	width:100%;
	position:relative;
	margin-top:15px;
	}
ul.sec2_list:after{
	content:'';
	position:absolute;
	top:20px;
	bottom:3px;
	left:92px;
	width:1px;
	background:#fbe4e4;
	}
ul.sec2_list li{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:20px 0;
	border-bottom:1px solid #fbe4e4;
	}
ul.sec2_list li:last-child{ border:none; padding-bottom:0;}
.s2-icon{
	width:110px;
	}
.s2-icon img{
	float:left;
	max-width:100%;
	width:65px;
	}
.s2_list_inr{
	width:calc(100% - 110px);
	padding-left:15px;
	text-align:left;
	}
.s2_list_inr h3{
	font-size:24px;
	line-height:30px;
	color:#252525;
	font-weight:bold;
	}
.s2_list_inr p{ margin-top:7px !important;}

/*====section_3====*/	
.section-3{
	float:left;
	width:100%;
	padding:60px 0;
	background:#fff;
	}
.s3_row{
	float:left;
	width:100%;
	margin:60px 0 10px;
	position:relative;
	}
.s3-prod-img{
	    position: absolute;
    top: -16px;
    left: 50%;
    transform: translatex(-50%);
    max-width: 450px;
	}
.s3_col{
	width: 32%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 60px;
	}

.s3_col_inner{
	float:left;
	width:100%;
	text-align:left;
	position:relative;
	}
.s3_col_txt1{
	font-size: 24px;
    line-height: 30px;
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
	}
img.s3-ing-icon {
    max-width: 100px;
}
.s3_col_inner .common_text{ margin-top:10px;}


ul.ing-list {
    width: 100%;
    float: left;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 14px;
}
ul.ing-list li{
	font-size: 17px;
    line-height: 26px;
    padding-left: 60px;
    background: url(../images/red-tick.png) no-repeat 16px 7px;

}
/*====section_4====*/	
.section-4{
	float:left;
	width:100%;
	padding:60px 0;
	background:#fffafb;
	}
.section-4 .commn-para, .section-5 .commn-para{ display:inline-block; float:none; width:80%;}
.s4_mid{
	width: 100%;
    float: left;
    margin: 40px auto 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;;
	}
.s4img-box{
	width:48%;
	float:left;
	position:relative;
}
.s4txt-box{
	width: 47%;
	float: right;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    row-gap: 52px;
    position: relative;
}
.s4txt-box:after{
	content: '';
	position: absolute;
	top: 19px;
	left: 18px;
	border-left: 2px dotted #ec3b45;
	width: 1px;
	bottom: 80px;
	}
.s4_box{
	    width: 100%;
    position: relative;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    column-gap: 36px;
	}

.s4_box_num{
	display: inline-block;
    vertical-align: top;
    /* margin-bottom: 20px; */
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ec3b45;
    font-size: 20px;
    line-height: 42px;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-align: center;
    border: 2px solid #ffcccc;
	}
.s4_box .commn-para span{
	    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 5px;
    display: block;
    text-transform: capitalize;
}


/*====section_5====*/	
.section-5{
	float:left;
	width:100%;
	padding:60px 0;
	background:#fff;
	}
ul.trusted_brand_list{
	    width: 100%;
    margin: 35px auto 10px;
    display: flex;
    flex-wrap: nowrap;
    float: left;
    column-gap: 15px;
    justify-content: center;
}
ul.trusted_brand_list li{
	padding:0 10px;
}
ul.trusted_brand_list li img{
	display:inline-block;
	vertical-align:top;
	max-width:100%;
}			

/*====section_6====*/	
.section-6{
	float:left;
	width:100%;
	padding:60px 0;
	background:#fff9f9;
	}
.compare_box{
	display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 970px;
    margin: 80px 0 20px;
	}
.comp_col1{
	float:left;
	width:31%;
	}
ul.comp_col_list{
	float:left;
	width:100%;
	}
ul.comp_col_list li{
	    float: left;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    font-weight: 500;
    padding: 0 20px;
    text-align: left;
    /* letter-spacing: 0.5px; */
    text-transform: capitalize;
	}
ul.comp_col_list li p{
	font-size:20px;
	line-height:20px;
	color:#000;
	font-weight:bold;
	}
ul.comp_col_list li:nth-child(even){ background:#f5f5f5;}
.comp_col2{
	float:left;
	width:25%;
	background:#fff;
	border-radius:20px;
	border:2px solid #000000; /*#ed1c24;*/
	}
.comp_col2 .comp_col_top p{
	font-size: 18px;
	line-height: 18px;
	letter-spacing:normal;
	font-weight:500;
	}
.comp_box_right ul.comp_col_list li{ justify-content: center;}
.comp_col2 ul.comp_col_list li{justify-content: center;}
.comp_col2 ul.comp_col_list li:nth-child(even){ background:none;}
.comp_col2 ul.comp_col_list li:last-child{ height:20px;}
.comp_col_top{
	float:left;
	width:100%;
	height:80px;
	text-align:center;
	}
.comp_prod1{
	    display: inline-block;
    vertical-align: middle;
    margin: -58px auto 10px;
    width: 102px;
	}
.comp_logo{
	display:block;
	margin:0 auto 0;
	width:150px;
	filter:brightness(0) invert(1);
	}
.comp_icon{
	display:block;
	margin:0 auto 0;
	width:28px;
	}
.cross{ width:24px;}	
.comp_box_right{
	float:right;
	width:44%;
	position:relative;
	}
.comp_right_text{
	position:absolute;
	left:50%;
	top:-5px;
	transform:translateX(-50%);
	font-size:18px;
	line-height:26px;
	color:#141414;
	font-weight:600;
	width:100%;
	}
.comp_col{
	float:left;
	width:49%;
	}
.comp_col .comp_icon{ width:19px;}
.comp_col .comp_icon.gray{ width:24px;}
.comp_col_top p{
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 0.5px;
	color: #000;
	}
.comp_brand{
	display:inline-block;
	vertical-align:middle;
	margin:10px 0 8px 0;
	width:38px;
}

.mnybkBox{
	width: 100%;
    max-width: 985px;
    background: #ee2930;
    border: 6px solid #f97075;
    padding: 35px;
    margin: 30px auto 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px	
	}
.mnybk-seal{
	float:left;
	}
.mnybk-cont{
    float: right;
    width: calc(100% - 274px);
    text-align: left;
    padding-left: 22px;
	}
.mnybk-txt1{
	float: left;
    width: 100%;
    font-size: 26px;
    line-height: 28px;
    color: #fff;
    font-weight: 500;
	}
.mnybk-txt2{
	    float: left;
    width: 100%;
    font-size: 34px;
    line-height: 44px;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
	}	
.mny-para{    
	float: left;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    letter-spacing: 0.5px;
    margin-top: 20px;
	}	
.mbc-text3{
	float: left;
    width: 100%;
	font-size: 20px;
	line-height: 28px;
	margin-top: 20px;
	color: #fff;
	font-weight:500;
	}
	
/*====section_7====*/	
	
.section-7{
	float:left;
	width:100%;
	padding:60px 0;
	background:#fff;
	}

.shipping-hed {
   display: inline-block;
    width: 70%;
    background: #e22c35;
    border-radius: 10px;
    position: relative;
    padding: 13px;
    margin-top: 30px;
}
p.shp-heading-txt {
    font-size: 26px;
    color: #fff;
    font-weight: 600;
    float: left;
    width: 100%;
}
p.shp-heading-txt img{
	    position: absolute;
    top: -27px;
    left: -60px;
}
p.shp-heading-txt span{
	font-size:16px;
	line-height:24px;
	display:block;
	}
.pakge_people_text{
	    position: absolute;
    top: -45px;
    left: 50%;
    margin-left: -117px;
    width: 100%;
    max-width: 245px;
    padding: 9px 10px 8px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.3px;
    color: #000;
    background: #fbd4d7;
	}
.pakge_people_text:after{
	position: absolute;
	content: "";
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 8px solid #fbd4d7;
	}
.taddaY{
	animation-name: tadda;
	-webkit-animation-name: tadda;
	animation-duration: 2s;
	-webkit-animation-duration: 2s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	}
@keyframes tadda {
	0% {transform:translateY(0px)}
	50% {transform: translateY(10px);}
	100% {transform: translateY(0px);}
	}
.package_row{
	width:100%;
	margin:70px auto 0;
	display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
	align-items: start;
	}
.package_col{
	background:#fef1f2;
	border-radius:10px;
	text-align:center;
	margin-top:40px;
	overflow:hidden;
	position:relative;
	box-shadow:0 0 9px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 0 9px 1px rgba(0,0,0,0.2);
	}
.package_col-2_otr, .package_col{ width:32%; position:relative;}
.package_col_top{
	width:100%;
	position:relative;
	padding:18px 10px 0;
	}
.package_col_qty{
	font-size: 38px;
    line-height: 38px;
    letter-spacing: 0;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
	}
.package_col_save{
	    width: 100%;
    font-size: 15px;
    line-height: 15px;
    color: #000000;
    background: #fbd4d7;
    padding: 9px 12px;
    margin-top: 15px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;	
	}
.package_col_save span{ padding:0 5px;}

.package_col_btm{
	width:100%;
	padding:15px 15px 20px;
	text-align:center;
	position:relative;
	}
.package_col_btm .deal-text{
	font-size: 14px;
	line-height: 22px;
	margin-top: 7px;
	color: #252525;
	font-weight: 400;
}
.pkg-prod{
	    display: block;
    margin: 30px auto 0;
    max-width: 100%;
	}
.pakge_seal {
        position: absolute;
    right: 40px;
    top: 20px;
    width: 90px;
    height: 90px;
    background-size: 100%;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    color: #000000;
    text-transform: uppercase;
    padding: 25px 0 0;
    text-align: center;
    background: #fff000;
    border-radius: 50%;
}
.package_discount-prc{
	font-size: 50px;
    line-height: 50px;
    color: #000000;
    margin-top: 22px;
    font-weight: 700;
	}
.package_retail-prc{	
	font-size:20px;
	line-height:22px;
	letter-spacing:0.5px;
	color:#555555;
	margin-top: 15px;
	}
.package_retail-prc span{
	position:relative;	
	}
.package_retail-prc span:before{
	position:absolute;
	left:-4px;
	top:45%;
	right:-4px;
	border-bottom:2px solid #ff000a;
	transform:rotate(-15deg);
	-webkit-transform:rotate(-15deg);
	content:"";
	}
.package_regular-save{
	font-size:14px;
	line-height:16px;
	letter-spacing:0.5px;
	color:#000000;
	margin-top:16px;
	text-transform: uppercase;
	}
	
.label-checkbox{
    display: inline-block;
    vertical-align: top;
	text-align:left;
	cursor:pointer;
	margin-top:20px;
	color: #000;
	font-weight:500;
	font-size:15px;
	}
.all-checkbox{
	display:inline-block;
	vertical-align:middle;
	-webkit-appearance:none;
	width:20px;
	height:20px;
	border:2px solid #C4C4C4;
	border-radius:3px;
	outline:none;
	position:relative;
	margin:-5px 4px 0 0;
	-webkit-box-shadow: 0 0 0 0 #000000 inset;
	box-shadow: 0 0 0 0 #000000 inset;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	}
.all-checkbox:checked{
	background:#fff;
	border:2px solid #000000; /*#ed1c24;*/
	}
.all-checkbox:after{
	content:'';
	position:absolute;
	width:18px;
	height:18px;
	background:url(../images/tik.svg) no-repeat center center;
	left:0;
	top:-1px;
	opacity:0;
	z-index:1;
	-webkit-transition: all 0.2s ease-in-out 0.1s;
	transition: all 0.2s ease-in-out 0.1s;
	-webkit-transform: scale(0.2);
	transform: scale(0.2);
	background-size:66%;
	}
.all-checkbox:checked:after{	
	-webkit-transition: all 0.2s ease-in-out 0.1s;
	transition: all 0.2s ease-in-out 0.1s;
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity:1;
	}	
.offerBox{
	float:left;
	width:100%;
	text-align:left;
	border:2px solid #3f3893;
	border-radius:5px;
	padding:12px 8px;
	margin-top:17px;
	}	
ul.offer_list{
	float:left;
	width:100%;
	}	
ul.offer_list li{
    float: left;
    width: 100%;
    position: relative;
    font-size: 11px;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
	padding-left: 10px;
	}		
ul.offer_list li:before{
	content:'';
	position:absolute;
	top:6px;
	left:0;
	background:#000;
	width:4px;
	height:4px;
	border-radius:50%;
	}
ul.offer_list li span{ padding:0 3px;}
.choose_flieds{
    float: left;
    width: 100%;
    height: 36px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    border: 1px solid #C4C4C4;
	}			
.choose_flieds select{
	width:100%;
	height:100%;
	appearance:none;
	-webkit-appearance:none;
	border:none;
	outline:none;
	padding-left:12px;
	font-family: 'Inter';
	color:#000;
	font-size: 12px;
    line-height: 14px;
	font-weight:500;
	letter-spacing:0.5px;
	background:url(../images/select-form-icon.svg) no-repeat 96% 50%;
	}	
.offer_text{
    float: left;
    width: 100%;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #000000; /*#ed1c24;*/
    font-weight: 600;
    margin-top: 10px;	
	}	
	
.package_shiping{
	font-size:16px;
	line-height:19px;
	color:#1a1a1a;
	font-weight:500;
	margin-top:12px;
	}
.package_shiping span{
	font-weight:600;
	}
.package_shiping img{
	display:inline-block;
	vertical-align:middle;
	width:20px;
	margin:-3px 5px 0 0;
	}
a.package_button,.package_button{
	    width: 90%;
    margin-top: 20px;
    height: 50px;
    font-size: 21px;
    line-height: 50px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: #fff;
	}
.cart-ic{
	display:inline-block;
	vertical-align:middle;
	width:22px;
	margin:-5px 0 0 5px;
	}
.pck-cards{
	width:169px;
	display:block;
	margin:15px auto 0;
	max-width:100%;
	}
.package_col-2{
	    padding: 15px 0 20px;
    margin-top: 25px;
    width: 100% !important;
    border: 2px solid #ee2930;
	}	
	
/*====section_9====*/
.section-8{
	float:left;
	width:100%;
	padding:60px 0;
	background:#fff9f9;
	}
.s8_left{
	float:left;
	width:40%;
	text-align:left;
	}
.faq_prod{
	display: block;
	margin: 30px auto 0 -50px;
	}
.s11_right{
	float:right;
	width:56.8%;
	}
.faq_section{
	float:right;
	width:56.8%;
	text-align:left;
	margin:0 0;
	}
.faq_slide_row{
	float:left;
	width:100%;
	border-bottom:1px dashed #636363;
	}
.accordion{
	float:left;
	width:100%;
	text-align:left;
	background:url(../images/close.png) no-repeat 98% center;
	background-size:12px;
	padding:17px 25px 17px 0;
	font-size:18px;
	line-height:26px;
	font-weight:700;
	color:#000000;
	letter-spacing:0.5px;
	position:relative;
	cursor:pointer;
	}
.acdn_heading.accordion_open{
	background:url(../images/open.png) no-repeat 98% center;
	background-size:12px;
	padding-bottom:17px;
	border-bottom:none;
	}
.acdn_content{
	float:left;
	width:100%;
	text-align:left;
	padding:0 35px 15px 0;
	}
.accordion.last, .acdn_content.last{border-bottom:none;}
.acdn_para{
	    float: left;
    width: 100%;
    font-size: 17px;
    line-height: 26px;
    color: #000000;
    /* letter-spacing: 0.3px; */
    margin-bottom: 15px;
    font-weight: normal;
	}
	
.acdn_para a{ color:#00F; text-decoration:underline;}
ul.acdn_list{
	float:left;
	width:100%;
	margin-bottom:15px;
	padding-left:15px;
	}
ul.acdn_list li{
	float:left;
	width:100%;
	font-size:16px;
	line-height:24px;
	color:#000;
	font-weight:normal;
	margin:5px 0;
	}

/*===========contact_strip=============*/
.contact_strip{
	float: left;
    width: 100%;
    padding: 40px 0;
    background: #000000; /*#ed1c24;*/
	}
.contact_row{
	width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    flex-wrap: wrap;
	}
.contact_col{
	width: 49.333%;
	padding: 0 20px;
	text-align: center;
	}
.contact_col_2{
	border-left:1px solid #ccc;
	}
.qsn_hdng{
	font-size:24px;
	line-height:30px;
	color:#fff;
	font-weight:600;
	
	}
.qsn_text{
	    font-size: 15px;
    line-height: 24px;
    color: #fff;
    margin-top: 15px;
	}
a.read_faq{
	display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    font-size: 19px;
    line-height: 48px;
    height: 50px;
    color: #54e756;
    font-weight: 600;
    border: 1px solid #54e756;
    border-radius: 50px;
    margin-top:25px;
    text-align: center;
	}
.call_text{
	font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    margin: 5px 0;
    position: relative;
	}
.call_text a{
	color:#fff;
	}
.call_text a:hover{ text-decoration:underline;}
.call_text a img{
	display:inline-block;
	vertical-align:middle;
	margin:-3px 5px 0 0;
	}
ul.social_list{
	float:left;
	width:100%;
	margin-top:25px;
	}
ul.social_list li{
	display:inline-block;
	vertical-align:top;
	padding:0 5px;
	}
/*====footer====*/
.footer{
	float:left;
	width:100%;
	padding:30px 0 20px;
	text-align:center;
	}
.ftr-logo{
	display: block;
    width: 180px;
    margin: 0 auto 20px;
	}
.ftr-list{
	font-size:15px;
	line-height:24px;
	letter-spacing:0.5px;
	color:#3a3a3a;
	}
.ftr-list a{ color:#3a3a3a; padding:0 10px;}

.ftr-txt1{
	font-size:15px;
	line-height:24px;
	letter-spacing:0.5px;
	color:#343434;
	}
.ftr-btm{
	border-top:1px solid #d4d4d4;
	float:left;
	width:100%;
	padding-top:20px;
	}
	
	
/*=======================*/
.showTab, .showMob{ display:none;}
.showDesk{ display:block;}
.hideDesk{ display:none;}
.fl{ float:left;}
.fr{ float:right;}
.white{ color:#fff;}

/*=====Media-Querry=====*/
@media only screen and (max-width:1200px){
.container{width:1004px;}

.logo_box{margin-top: 6px;}
ul.topMenu{margin: 17px 0 0 0;}
a.header_btn{ margin-top: 12px;}

.banner{ padding:60px 0;}
.banner_left{ width:56%;}
.banner_heading{ font-size: 44px; line-height: 52px;}
.banner_prod{ right: 40px; top: 310px; width: 500px;}
.banner_seal{ right: 110px; top: 275px; width: 120px;}
img.bnr-txt-iocn{ top: 3px;}
ul.banner_point{row-gap: 8px;}

.bnr-strip-list li{ padding:0 40px;}

.commn-hdg{ font-size:40px; line-height:50px;}
.s1-cont .commn-para{ padding:0;}
.hand-img{ width:415px; bottom:1px;}
.s1-seal{ right:270px;}
.s1-bx-lft{ padding:30px 20px;}
.s1-box-list li p{ font-size: 15px; line-height: 22px;}
.s1-arw-txt{top: 15px; right: 206px;}
.s1-cont{width: 58%;}
.s1-box-list li img{ max-width:60px;}

.s3_col_txt1{font-size: 22px;}
.s3-prod-img{ max-width: 400px;}
ul.ing-list li{ padding-left:55px; font-size: 16px; line-height: 24px;}
.s3_row{ margin-bottom:0;}

.s4_box:after{ width: 333px;}
.s4_box p{ min-height:112px;}

.shipping-hed{ width:80%;}

.package_col-2_otr, .package_col{ }
.package_col_save{ padding: 9px 7px;}
}

@media only screen and (max-width:1023px){
.container{width:750px;}
.showDesk{display: none;}
.showTab{display: block;}
.hideTab{ display:none;}

.header{ height:75px;}
.logo{ width: 200px;  margin-top: 12px;}

.banner{ background-position: right 56% top; padding: 40px 0;}
.banner_left{ width:58%;}
.bnr_strip_rev_text{font-size: 20px;}
.banner_heading{ font-size: 36px; line-height: 45px;  margin-top: 5px;}
.banner_text{ font-size: 16px; line-height: 24px; margin-top: 20px; padding-left: 100px;}
.banner_seal{ right: 50px; top: 240px; width: 90px;}
.banner_prod{ right: -20px; top: 294px; width: 390px;}
img.bnr-txt-iocn{max-width: 100px;}
.banner_text:before, .banner_text:after{ left:100px;}
ul.banner_point {row-gap: 5px; margin-top:20px;}
ul.banner_point li{ font-size: 19px; line-height: 24px;}

.button__box{ margin-top: 30px;}
.button__width{max-width: 390px;}
.common__button{ font-size:26px;}

.bnr-strip-list li{font-size: 17px;}

.section-1{ padding:40px 0;}
.s1-cont{ width:100%; margin-top:0;}
.commn-hdg{ font-size: 34px;  line-height: 44px;}
.s1-bx-lft{ width:79%; padding: 30px 10px;}
.s1-box-list li{ width:25%;}
.hand-img{ width: 167px; right: 0px;}
.s1-seal{  bottom: 70px;  right: 205px;  width: 60px;}
.s1-arw-txt{ display:none;}
.s1-box{ margin-top:35px;}
.s1-box-list li img {max-width: 50px;}

.section-2{ padding:40px 0;}
.section-arrw{ top: -116px; width: 60px;}
.sec2_right{ width: 52%;}
ul.sec2_list:after{ left: 85px;}
.s2-icon img{ width:50px;}
.s2-icon{ width: 100px;}
.s2_list_inr{ width: calc(100% - 100px);}
.sec2_left{ width:44%;}
.s2_list_inr h3{font-size: 20px; line-height: 28px;}

.section-3{ padding: 40px 0;}
.s3-prod-img{position: static;display: block;margin: 0 auto;width: 400px;transform: none;}
.s3_col{ width: 49%; margin-top: 30px; row-gap: 20px;}
.s3_row{ margin-top:10px;}

.section-4{ padding: 40px 0;}
.s4_mid{ margin: 40px auto 10px;  align-items: flex-start;}
.s4_box:after{ width: 248px;}
.common_text{ font-size: 17px; line-height: 27px;}
.s4_box p{ min-height: 108px;}
.s4_box{column-gap: 18px;}
.s4_box .commn-para span{ font-size:18px;}
.s4txt-box{row-gap: 20px;}

.section-4 .commn-para, .section-5 .commn-para {
    width: 100%;
}

.section-5{ padding: 40px 0;}

.section-6{ padding: 40px 0;}
.mnybk-seal{ width:170px;}
.mnybk-cont{ width: calc(100% - 170px); padding-left: 35px;}
.mnybk-txt1{ font-size:24px; line-height:26px;}
.mnybk-txt2{  font-size: 30px; line-height: 40px;}
.mbc-text3{ font-size:17px; line-height:24px;}

.section-7{ padding: 40px 0;}
.shipping-hed { width: 100%;}
p.shp-heading-txt{ font-size:24px;}
.package_row{ margin: 60px auto 0;}
.package_col_qty{ font-size: 21px; line-height: 22px;}
.package_col_save{ font-size: 14px; line-height: 20px; letter-spacing:normal; padding:6px 7px;}
.package_retail-prc{ font-size: 18px; line-height: 18px;}
.package_discount-prc{ font-size: 26px; line-height: 26px;}
.package_regular-save{ font-size: 13px; line-height: 14px;}
a.package_button, .package_button{ font-size: 16px; height: 42px; line-height: 42px;}	
.label-checkbox{ font-size:10px;}
.package_col_save span{ padding: 0 3px;}
.package_col_btm{ padding:12px 12px 20px;}
.cart-ic {width: 18px;margin: -5px 0 0 3px;}
.package_col-2{ padding: 10px 0 14px; margin-top: 30px;}
.pakge_people_text{ top: -25px; margin-left: -118px; padding: 9px 14px 8px; font-size: 12px; line-height: 10px;}

.section-8{ padding: 40px 0;}
.acdn-para{ font-size:17px; line-height:27px;}
}

@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-fix-bar{margin-bottom: 55px;}
.header{height:55px; margin-top: -55px; top: 55px;}
.logo_box{ margin-top: 8px;}
.logo{ width: 140px; margin-top: 5px;}
.logo_box p{ font-size: 13px; line-height: 17px; margin-left: 6px; padding-left: 8px; color: #000000; /*#ed1c24;*/}
a.header_btn{ width: 96px; font-size: 12px; height: 33px;line-height: 33px; margin-top: 11px; border-radius: 5px;}
.mob-mnu-ic{ top:14px;}

.banner{ padding: 20px 0 30px; background: #fff9f9; background-size: cover;}
.banner_left{ float:none; max-width:365px; display:inline-block;vertical-align:top; width:100%;text-align:center;}
.banner_prod{ display:none;}
.banner_rev{ float:none; display:inline-block; vertical-align:middle; width:100%;}
.bnr_strip_rev_text{ font-size: 17px; line-height: 17px;}
.very_tike{ margin: 0 4px 0 9px; width: 12px; display:none;}
.bnr_strip_rev_people{width:70px;}
.banner_heading{ font-size: 28px;  line-height: 36px; margin-top: 5px;;}
.bnr_slider{ font-size: 28px;  line-height: 36px; margin-top: 5px;}
.bnr_slider_col{ display:inline-block; vertical-align:top; width:100%;}
.bnr_slider_col img{ max-width:none; width:100%;}	
.banner_text{ font-size: 16px; line-height: 26px; margin-top: 0px; text-align: left; padding:0}
.bnr-mob-img{ width: calc(100% + 30px); max-width: unset; margin-left: -15px; margin-top: 10px;}
img.bnr-txt-iocn{ display:none;}
.banner_text:before, .banner_text:after{ display:none;}

ul.banner_point{float:none; max-width:100%x; display:inline-block; vertical-align:top; margin-top:10px;}
ul.banner_point li{ font-size: 16px; line-height: 26px;  margin-top: 6px; background-size: 15px; background-position: 0px 7px; padding-left: 23px;}

.button__box{ margin-top: 20px;}
.button__width{ max-width: 340px;}
.common__button{ height: 56px; font-size: 20px; line-height: 56px;}
.deal-text{ font-size: 13px; line-height: 17px; margin-bottom: 5px; font-weight: 500;}

.bnr-strp{padding: 20px 0;}
.bnr-strip-list{ row-gap: 30px;}
.bnr-strip-list li{ padding: 0; width:100%; font-size:16px;}
.bnr-strip-list li:after{ border-right:none;  border-bottom: 1px solid #e1e1e1; width:100%; height:1px; top:auto; bottom:-13px; left:0; right:0;}
.bnr-strip-list li span{ font-size:18px;}

.section-1{ background:#fff; padding:30px 0;}
.commn-hdg{ font-size: 26px; line-height: 38px; padding-bottom:15px }
.commn-para{ font-size: 16px; line-height: 26px;}
.s1-box{ margin-top:-108px; overflow:hidden;}
.hand-img{ width: 240px; right: -30px;}
.s1-seal{ bottom: 8px; right: 64px; width: 50px;}
.s1-bx-lft{ background:#fff9f9; width:100%; padding:20px 10px;}
.s1-box-list li{ width:48%; margin-bottom:20px;}
.s1-box-list li:nth-child(3), .s1-box-list li:nth-child(4){ margin-bottom:0;}
.s1-box-list li p{ font-size: 16px; line-height: 24px;}
.s1-box-list li img{ width:60px;}
.s1-prod-mob{ float:left; width:100%; position:relative; margin-top:15px;}
.hand-img{ position:static; margin:0 auto 0;}
.s1-seal{ bottom: 120px; right: auto; left: 24px; width: 63px;}

.section-2{ padding:30px 0; background-size:100%;}
.common_text{  font-size: 16px; line-height: 24px;}
.sec2_mid{ margin:0 0 5px; float:none; display:inline-block; vertical-align:middle; max-width:365px;}
.s2_product_mob{ margin: 20px auto 0; width:250px;}
.common_text.martop_20{ margin-top:20px !important;}
.sec2_right{ width: 100%; margin-top:10px;}
.text_center{ text-align:center;}
ul.sec2_list{ margin: 0 0 10px;}
ul.sec2_list:after{ left: 74px; display:none;}
ul.sec2_list li{ padding: 15px 0; align-items: flex-start;}
.s2-icon{ width: 50px;}
.s2-icon img{ width: 50px; margin-top:5px;}
.s2_list_inr{ width: calc(100% - 50px);}
.s2_list_inr h3{ font-size: 18px; line-height: 24px;}

.section-3 { padding: 30px 0;}
.s3_row{ float:none; display:inline-table; vertical-align:middle; max-width:350px;}
.s3-prod-img{ margin:0 auto 5px; max-width:100%;}
.s3_col, .s3_col.fr{ width:100%; margin-top:20px;}
.s3_col_txt1{ font-size:20px; line-height:26px;}
.s3_col_inner .common_text{ margin-top:5px;}
img.s3-ing-icon {max-width: 60px;}
.s3_col_txt1{ font-size:18px; line-height:26px;}
ul.ing-list li{background-size: 16px; padding-left: 42px; line-height: 26px;}
ul.ing-list{ margin-top:10px; row-gap:10px;}

.section-4{ padding:30px 0;}
.s4_mid{ max-width:100%; margin:20px auto 0; position:relative;}
.s4_box{ width: 100%; text-align:left; padding-left: 34px;}
.s4_box_num{ position:absolute; top:4px; left:0; width:25px; height:25px; font-size:15px; line-height:23px; text-align:center; margin-bottom:0;}
.s4_box p{ display: inline-block; vertical-align: top; min-height: auto;}

.s4img-box{ width:100%; margin-top:00px;}
.s4txt-box{ width: 100%; margin-top:20px;}
.s4txt-box:after{left: 12px; top: 31px; bottom: 86px;}

.section-5{ padding:30px 0;}
.s5_product{ height: 225px; object-fit: cover; object-position: bottom;}
ul.trusted_brand_list li img{ max-width:100px;}
ul.trusted_brand_list{column-gap: 0; margin: 20px auto 10px;}
.section-5_box{display: flex; display: -webkit-flex; align-items: center; -webkit-align-items: center; max-width: 350px; margin: 20px auto 0px; float: left;}
.section-5_product{max-width: 100%; margin: 0; display: block;}
.section-5_product img{max-width:100%; display:inline-block; vertical-align:top;}
ul.trusted_brand_list{ margin:-20px auto 0; flex-direction: column; width: 30%;}
ul.trusted_brand_list li{width:100%; margin:5px 0;}
ul.trusted_brand_list li img{max-width:80px;}

.section-6{ padding:30px 0;}
.compare_box{ margin: 40px 0 10px -15px; max-width: none; float: none; width: calc(100% + 30px);}
.comp_col1{ width:34%;}
ul.comp_col_list li{ font-size:12px; line-height:18px; padding:0 7px; letter-spacing:0.3px; height:55px;}
.comp_col2{ width:28%; border-radius:7px;}
.comp_col2 ul.comp_col_list li:last-child{ height:12px;}
.comp_col_top{ height:65px;}
.comp_prod1{ width:50px; margin:-25px auto 10px;}
.comp_col2 .comp_col_top p{ font-size: 14px; line-height: 14px;}
ul.comp_col_list li p{ font-size: 12px; line-height: 12px;}
.comp_logo{ width:70px;}
.comp_box_right{ width:38%;}
.comp_brand{ width:25px; margin:15px 0 8px;}
.comp_col .comp_col_top p{ font-size:10px; line-height:12px;}
.comp_icon{ width:17px;}
.comp_col .comp_icon{ width:13px;}
.comp_col .comp_icon.gray{ width:19px;}
.comp_right_text{ font-size:14px; line-height:18px; top:0;}

.mnybkBox{border: 3px solid #cec3ad; padding: 25px 8px; margin: 30px 0 0;display: inline-block;vertical-align: top;}
.mnybk-seal{ width: 150px; float: none; margin: 0 auto 0; display: block;}
.mnybk-cont{ width:100%; padding:0; text-align:center; margin-top:15px;}
.mnybk-txt1{ font-size: 18px; line-height: 22px;}
.mnybk-txt2{ font-size: 24px; line-height: 34px;}
.mny-para{ font-size:16px; line-height:24px; margin-top:15px;}
.mbc-text3{ font-size:14px; line-height:20px; letter-spacing:0.1px;}

.section-7{ padding:30px 0;}
.package_col-2_otr, .package_col{ width: 100%;}
.package_col_qty {font-size: 28px;line-height: 28px;}
.package_row{flex-wrap: wrap; max-width: 404px; margin:10px auto 0;}
.package_col{ width:100%;margin-top: 30px;  padding: 10px 0 0px;}
.package_col-1{order: 2;}
.package_col-2{order: 1;}
.package_col-3{order: 3;}
.package_col-4{order: 4;}
.package_col_save{ ont-size: 14px; line-height: 13px; letter-spacing: normal; padding: 8px 10px; font-weight: 500;}
.package_retail-prc{ font-size: 20px; line-height: 20px; margin-top:0;}
.package_discount-prc{ font-size: 50px; line-height: 50px;}
.package_regular-save{ font-size: 14px; line-height: 16px;}
.pakge_people_text{ position: static; display: inline-block; vertical-align: top; margin-left: 0; padding:8px; font-size: 14px; line-height: 14px; font-weight:500; max-width:280px;}
.label-checkbox{ font-size: 15px;}
ul.offer_list li{ font-size:13px;}
p.shp-heading-txt img {position: static; display: block; margin: -50px auto 0; max-width: 90px;}
 p.shp-heading-txt {font-size: 22px; line-height: 30px;}
 p.shp-heading-txt span {font-size: 14px; line-height: 22px; margin-top:5px;}

a.package_button, .package_button{ font-size: 18px; height: 50px; line-height: 50px; margin-top:20px;}

.package_col_top{padding: 10px 10px 10px;}
.package_col_btm{ padding: 8px 15px 15px;}
.pkg_mob-col-1{ width:100%;}
.pkg_mob-col-2{ width:100%;}
.pck-cards{ width:150px;}

.section-8{ padding:30px 0;}
.s8_left{ width:100%;}
.faq_section{ width:100%;}
.acdn_content{ padding:0 0 15px 0;}
.acdn_para{ font-size:15px; line-height:24px;}
ul.acdn_list{ padding-left:0;}
ul.acdn_list li{ font-size:15px; line-height:20px;}

.footer{ padding:20px 0 0;}
.ftr-logo{width: 130px; margin: 0 auto 0px;}
.ftr-list{ font-size:14px; line-height:17px;}
.ftr-list a {padding: 0 5px;}
.ftr-btm{ padding:15px 0;font-size: 12px;line-height: 20px; margin: 20px 0 0;}
.ftr-txt1{ font-size:13px; width:100%;}
.contact_strip{ padding:30px 0;}
.contact_col{ width:100%; padding: 0 0px;}
.contact_col_2{ border:none; margin-top:10px;}
.qsn_text{ font-size:14px; line-height: 22px; letter-spacing:0; margin-top: 5px;}
.call_text{ font-size:15px; line-height:26px;}
.qsn_hdng{ font-size:20px;}

}

/*TERMS- PRIVACY*/

.trms-sec2{
	float: left;
    width: 100%;
    text-align: left;
    background: #fff9f8;
    padding: 40px 0;
}
.trms-innner {
    float: left;
    width: 100%;
    background: #fff;
    padding: 10px 20px;
}
.trms-sec2 h1{
	height:40px;
	line-height:40px;
	background:#333;
	color:white;
	margin:20px 0 20px 0;
	padding:0 10px;
	font-size:26px;
	float: left;
    width: 100%;
}
.trms-sec2 h3{
	font-size:24px;
	font-weight:700;
	float:left;
	width:100%;
	margin:0px 0 10px;
}
.trms-sec2 p{
	float: left;
    width: 100%;
    font-size: 17px;
    line-height: 26px;
    margin: 0px 0 22px;
}
.trms-sec2 ol{
	float:left;
	width:100%;
	padding:0 20px;
	}
.trms-sec2 ol li {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    margin: 0px 0 10px;
    list-style: auto;
}
.trms-sec2 h4, .trms-sec2 h5{
	font-size:20px;
	font-weight:600;
	float:left;
	width:100%;
	margin:10px 0;
	}
.trms-sec2 h5{ font-size:20px; font-weight:400;}
.top_sec {
        float: left;
    width: 100%;
    background: #000000; /*#ed1c24;*/
    margin-bottom: 20px;
    text-align: left;
}
.trms-sec2 .top-txt {
        float: left;
    width: 100%;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    line-height: 31px;
    /* height: 37px; */
    font-size: 22px;
    padding: 5px 14px;
    margin: 0;
}
.ing-lft-bx {
    float: left;
    width: 100%;
    text-align: center;
}
.ing-lft-bx img {
    max-width: 100%;
}

@media only screen and (max-width: 767px){
	.tems_bg {padding: 10px 0;}
}

/*Contact Us*/
.contact-sec1{
	float: left;
    width: 100%;
    background: #fff9f8;
    padding: 60px 0;
    border-bottom: 2px solid #e9e9e9;
	}
.cont-sec1Lft{
    float: left;
    width: 45%;
    text-align: left;
	}
.cont-sec1Lft .comn-text{ margin-top:0;}	
ul.cnt-list{
	float:left;
	width:100%;
	text-align:left;
	}
ul.cnt-list li{
	float: left;
    width: 100%;
    padding: 0 0 20px 0px;
	margin-top:20px;
    position: relative;
	border-bottom: 1px solid #ebebeb;
	}
ul.cnt-list li:last-child{ border:none; padding-bottom:0;}	
ul.cnt-list li img{
    position: absolute;
    left: 0;
    top: 10px;
	filter: grayscale(1);
	}
ul.cnt-list li p{
    float: left;
    width: 100%;
    font-size: 17px;
    color: #000;
    line-height: 28px;
	}	
ul.cnt-list li span{
    font-weight: bold;
	display: block;
	font-size:24px;
	line-height:30px;
	}
.cnt-social{
	float:left;
	width:100%;
	margin-top:40px;
	}	
.cnt-social li{
	display:inline-block;
	vertical-align:top;
	}
.cnt-social li img{
	display:inline-block;
	vertical-align:top;
	}
.cnt-social li:nth-child(2) img{ margin:0 4px;}							

.cont-right{
	float:right;
	width:50%;
	background:#fff;
	position:relative;
	border-radius:22px;
	overflow:hidden;
	box-shadow:0 0 40px 7px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow:0 0 40px 7px rgba(0, 0, 0, 0.3);
	}	
.cont-frm-hd{
	float: left;
    width: 100%;
    text-align: left;
    background: #000000; /*#ed1c24;*/
    padding: 20px 30px;
    position: relative;
	}
.cont-frm-hd:after{
    position: absolute;
    content: "";
    left: 30px;
    bottom: -10px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid #000000; /*#ed1c24;*/
	}	
.cont-frm-hd p{
	float:left;
	width:100%;
	font-size:33px;
	line-height:37px;
	color:#fff;
	font-weight:600;
	letter-spacing:0.5px;
	}	
.cont-frm-hd img{
	position:absolute;
	bottom:-26px;
	right:30px;
	filter: drop-shadow(2px 4px 6px #ccc) grayscale(1);;
	}			
.cont-frm-box{
	float: left;
    width: 100%;
	text-align:left;
	padding:40px 30px 40px;
	}
.cont-input-box{
	float: left;
    width: 100%;
    text-align: left;
    position: relative;
	border-bottom: 1px solid #dbdbdb;
	padding-bottom:12px;
	margin-bottom:40px;
	}
.cont-input-half{ width:47%;}
.cont-input-box2{margin-bottom:0;}	
.cont-input-box label{
	float:left;
	width:100%;
	font-size:14px;
	color:#333;
	margin-bottom:10px;
	}	
.cont-field-all{
    float: left;
    width: 100%;
	background:none;
    color: #fff;
    font-size: 16px;
	font-family: inherit;
	font-weight: 400;
	-webkit-appearance:none;
	outline:none;
	border:none;
	}
.cont-field-all::placeholder{
	 color:#c1bebe;
	 font-size:14px;
	 font-weight:500;
	 }
textarea{ resize:none; height:90px;} 	

.cont-btn{
	    float: right;
    width: 100%;
    height: 50px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 48px;
    background: #00ce2d;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px 0 0 0;
    letter-spacing: 0.5px;
    position: relative;
    box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.2);
    border: none;
	}

@media only screen and (max-width: 1024px){
	.contact-sec1{ padding:40px 0;}
}

@media only screen and (max-width: 767px){
.contact-sec1{ padding:30px 0;}
.cont-sec1Lft{ width:100%;}
ul.cnt-list{ margin-top:-10px;}
.cont-right{ width:100%; margin-top:30px;}
.cont-frm-hd p{font-size: 24px; line-height: 34px;}
.cont-frm-hd img{right: 10px;}
.packageBtn { font-size: 19px;   line-height: 50px;  height: 50px;}
ul.cnt-list li p{font-size: 16px; line-height:24px;}
ul.cnt-list li span{ font-size:18px;}
ul.cnt-list li img{top: 3px;}
ul.cnt-list li{ padding:10px 0; margin-top:0px;}
}