@charset "utf-8";
/*====CSS Document====*/
body {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0;
	background: #ffffff;
	color: #000000;
	text-align: center;
    font-family: 'Inter';
	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; max-width: 100%; height: auto;}
li {list-style: none;}
* {box-sizing: border-box;}
.img-full {max-width: 100%;}
.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
	}
.fl{ float:left;}
.fr{ float:right;}

/*-----------------------
FONTS
------------------------*/
@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: '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-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-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-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-Black.woff2') format('woff2'),
	url('Inter-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
	}

/*-----------------------
MAIN CSS START
------------------------*/

.container{
	width:1004px;
	margin:0 auto;
	padding:0;
	position:relative;
	}	
	
/*-----Top-Caption-------*/
.top_caption{
	float:left;
	width:100%;
	background:#000000;
	padding:8px 0 4px;
	}
.top_caption_row{
	display:-webkit-flex;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items:center;
    column-gap:40px;
	width:100%;
	}
.top_caption_column{}
.top_caption_text{
	color:#ffffff;
    font-size:16px;
    line-height:24px;
	text-transform:uppercase;
	font-weight:600;
	}
.top_caption_text span{
	font-size:20px;
	font-weight:bold;
	}
.top_caption_icon{
	display:inline-block;
	vertical-align:top;
	margin:4px 12px 0;
	width:16px;
	}
	
/*======COMMON-CSS======*/	
.common_heading{
	color:#000000;
	font-size:40px;
	line-height:48px;
	font-weight:bold;
	}
.common_paragraph{
	color:#000000;
	font-size:18px;
	line-height:27px;
	text-align:left;
	margin-top:25px;
	}
.common_paragraph .mt-0{margin-top:0;}
.button_box{
	display:inline-block;
    vertical-align:middle;
	max-width:445px;
    width:100%;
	margin:30px auto 0;
	}
ul.common_button_list{
    display: flex;
    align-items: center;
	justify-content: center;
    width:100%;
	}
ul.common_button_list li{
	color:#000000;
	font-size:15px;
	line-height:15px;
	border-right:1px solid #515458;
	padding:0 10px;
	position:relative;
	}
ul.common_button_list li:first-child{padding-left:0;}	
ul.common_button_list li:last-child{border-right:none; padding-right:0;}	
.green_dot{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 8px 0 0;
	width:7px;
	height:7px;
	border-radius:50%;
	background:#33d682;
	animation: breath 1.3s infinite;
	}
.hourglass{
	display:inline-block;
	vertical-align:middle;
	width:8px;
	margin:-3px 8px 0 0;
	animation:rotateP 2.5s  ease-in-out forwards infinite 
	}
@keyframes rotateP{
	0%{transform:rotate(0)}
	50%{transform:rotate(180deg)}
	100%{transform:rotate(180deg)}
	} 
@keyframes rotate{
	0%{transform:rotate(00deg)}
	100%{transform:rotate(360deg)}
	}
@keyframes breath{
	0%{opacity:1;}
	50%{opacity:0;}
	100%{opacity:1;}
	}
.common_button{
	display:inline-block;
    vertical-align:middle;
    width:100%;
    color:#ffffff;
    font-size:22px;
    line-height:22px;
    font-weight:bold;
    text-align:center;
    border-radius:8px;
    background:#04ad4a;
	-webkit-box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.3);
	padding:22px 0;
	margin:12px 0;
	}
.button_arrow{
	display:inline-block;
	vertical-align:middle;
    width:20px;
    margin:-2px 0 0 15px;
	}
.common_button_text{
	color:#000;
	font-size:15px;
	line-height:18px;
	font-weight:500;
	}
.common_button_text span{
	display:inline-block;
    width:68px;
	color:#ff0000;
	font-weight:bold;
	}	

/*=========================*/	
/*=======Section-1=========*/	
.section1{
	float:left;
	width:100%;
	padding:55px 0 70px;
	}
.section1_heading{
	color:#0a0a0a;
	font-size:42px;
    line-height:54px;
    font-weight:900;
	text-align:left;
	border-bottom:1px solid #eaeaea;
	padding-bottom:25px;
	}
.author_box{
	float:left;
	width:100%;
	text-align:left;
	padding-left:60px;
	margin-top:25px;
	position:relative;
	}	
.author_image{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:0;
	width:50px;
	border-radius:50%;	
	}
.author_name{
	color:#373737;
	font-size:16px;
	line-height:16px;
	}
.author_name span{
	color:#434343;
	font-size:12px;
	}
.author_verify_tick{
    display:inline-block;
    vertical-align:middle;
    margin:-2px 5px 0 10px;
	width:16px;
	}	
.author_update{
	color:#333333;
	font-size:14px;
	line-height:14px;
	margin-top:8px;
	}
.note_box{
	float:left;
	width:100%;
	border-left:6px solid #000000;
	background:#feffb1;
	padding:17px 25px;
	margin-top:30px;
	}
.note_box p{
	color:#0a0a0a;
	font-size:19px;
	line-height:27px;
	text-align:left;
	}	
.note_box p span{
	font-weight:bold;
	}
.finger_icon{
	display:inline-block;
	vertical-align:middle;
	margin:-8px 0 -4px 20px;
	width:26px;
	}
.section1_content{
	float:left;
	width:100%;
	border-bottom:1px solid #ededed;
	padding-bottom:40px;
	margin-top:40px;
	}
.hero_image{
	display:inline-block;
	vertical-align:middle;
	margin:0 auto 10px;
	}	
.features_box{
	display:flex;
	flex-wrap:wrap;
	row-gap:70px;
	float:left;
	width:100%;
	margin:55px auto 0;
	}
.features_row{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
	column-gap:64px;
	width:100%;
	}
.features_row_left{
	width:46.6%;
	}
.features_row_image{
	display:inline-block;
	vertical-align:middle;
	border-radius:10px;
	}
.features_row_right{
	width:47%;
	text-align:left;
	}
.features_row_heading{
	color:#0a0a0a;
	font-size:28px;
	line-height:36px;
	letter-spacing:-0.3px;
	font-weight:bold;
	border-bottom:1px solid #cfcfcf;
	padding-left:80px;
	padding-bottom:20px;
	position:relative;
	}
.features_row_number{
	position:absolute;
	top:5px;
    left:0;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	justify-content:center;
	align-items:center;
	width:63px;
	height:63px;
	background:#000000;
	border-radius:50%;
	color:#ffffff;
	font-size:30px;
	line-height:30px;
	font-weight:bold;
	text-align:center;
	}
.features_row_paragraph{
	color:#0a0a0a;
	font-size:18px;
	line-height:28px;
	margin-top:25px;
	}
		
/*=======Section-2=========*/	
.section2{
	float:left;
	width:100%;
	background:#f4f8ff;
	padding:70px 0 60px;
	}	
.product_box{
	display:inline-block;
	vertical-align:middle;
	max-width:930px;
	width:100%;
	background:#ffffff;
	border-radius:15px;
	border:1px dashed #000000;
	-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
	padding:50px 30px 30px;
	position:relative;
	}
.product_box_tag{
	position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
	width:228px;
	color:#ffffff;
	font-size:16px;
	line-height:26px;
	font-weight:600;
	text-transform:uppercase;
	background:#000000;
	border-radius:50px;
	padding:5px 10px;
	}
.product_box_tag img{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 6px 0 0;
	width:21px;
	}
.product_box_title{
	color:#0a0a0a;
	font-size:14px;
	line-height:24px;
	font-weight:600;
	letter-spacing:-0.3px;
	}
.product_box_title:before, .product_box_title:after{
    display: inline-block;
    vertical-align: middle;
    content:'';
    right:0;
    top:50%;
    width:45px;
    height:1px;
    background:#000000;
    opacity:0.6;
	margin:-4px 8px 0 0;
	}
.product_box_title:after{
    margin-left:-2px;
	}
.product_box_title img{
	display:inline-block;
	vertical-align:top;
	margin:3px 10px 0;
	width:15px;
	}
.product_box_heading{
	color:#000000;
	font-size:36px;
	line-height:44px;
	font-weight:bold;
	margin-top:10px;
	}
.product_box_inner{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
	width:100%;
	margin-top:30px;					
	}
.product_box_left{
	width:44.3%;
	}
.product_box_image{	
	display:inline-block;
    vertical-align:middle;
    border-radius:10px;
	}
.product_box_right{
	width:51.9%;
	}
.product_box_paragraph{
	color:#0a0a0a;
	font-size:18px;
	line-height:26px;
	text-align:left;
	}
ul.product_list{
	float:left;
	width:100%;
	margin-top:15px;	
	}
ul.product_list li{
	float:left;
	width:100%;
	color:#000000;
	font-size:16px;
	line-height:22px;
	text-align:left;
	font-weight:500;
	background:url(../images/bullet-tick.webp)no-repeat left 3px;
	background-size:16px;
	padding-left:25px;
	margin-top:15px;	
	}	

/*=======Strip-Slider=========*/	
.strip_slider{
	display: flex;
	display: -webkit-flex;
	flex-wrap: nowrap;
	width:100%;
	background:#000000;
	padding:11px 0;
	overflow: hidden;
	}
ul.strip_slider_list{
	width: auto;
	display:flex;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	flex-shrink: 0;
	animation: marquee-horizontal 15s linear infinite;
	}
ul.strip_slider_list li{
	color:#ffffff;
	font-size:20px;
	line-height:28px;
	font-weight:500;
	padding:0 35px 0 40px;
	position:relative;
	}
ul.strip_slider_list li:before{
	content:'';
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:0;
	width:7px;
	height:7px;
	background:#ffffff;
	}
@keyframes marquee-horizontal{
	from {transform: translateX(0);}
	to {transform: translateX(-100%);}
	}

/*=======Section-3=========*/	
.section3{
	float:left;
	width:100%;
	background:#ffffff;
	padding:60px 0 35px;
	}	
.rating_box{
	display:inline-block;
	vertical-align:top;
	width:100%;
	margin-top:30px;	
	}
.rating_star{
	display:block;
	margin:0 auto;
	width:140px;
	}
.rating_text{
	color:#000000;
	font-size:22px;
	line-height:36px;
	margin-top:10px;
	}	
.rating_text span{
	font-size:48px;
	line-height:48px;
	font-weight:bold;
	}
.testimonial_box{
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap:25px;
	max-width:955px;
	width:100%;
	margin:45px auto 0;	
	}
.testimonial_row{
	display:flex;
	flex-wrap:wrap;
	flex-direction: column;
	width:100%;
	background:#ffffff;
	border-radius:15px;
	-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
	border:1px solid #eaeaea;
	padding:0 18px 25px;
	}	
.testimonial_row_top{
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
    align-items:center;
    column-gap:12px;
	width:100%;	
	text-align:left;
	border-bottom:1px solid #e1e2e1;
	padding:24px 0 16px;
	}
.testimonial_row_top_left{
	width:65%;
	padding-left:52px;
	position:relative;
	}
.testimonial_user_name{
	color:#000000;
	font-size:12px;
	line-height:22px;
	}
.testimonial_user_name span{
	font-size:18px;
	font-weight:bold;
	}
.testimonial_row_user_image{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:0;
	border-radius:50%;
	width:43px;
	}
.testimonial_row_top_right{
	width:32%;
	text-align:right;
	}
.testimonial_star{
	width:77px;
	}
.testimonial_verify_text{
	color:#000000;
	font-size:12px;
	line-height:22px;
	}
.testimonial_verify_tick{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 5px 0 0;
	width:12px;
	}	
.testimonial_row_content{
	width:100%;
	text-align:left;
	padding-top:20px;
	}
.testimonial_column_paragraph{
	color:#000000;
	font-size:18px;
	line-height:26px;
	}
	
/*=======Section-5=========*/	
.section5{
	float:left;
	width:100%;
	background:#ffffff;
	padding:40px 0;
	}		
	
.faq-box{
	display:inline-block;
	vertical-align:top;
	width:100%;
	max-width:770px;
	margin-top:25px;
	}
.faq-row{
	float:left;
	width:100%;
	border-bottom:1px solid #dadada;
	}
.faq-row:last-child{border-bottom:none;}
.accordion{
	float:left;
	width:100%;
	text-align:left;
	background:url(../images/close.webp) no-repeat 100% center;
	background-size:14px;
	padding:25px 35px 25px 0;
	color:#000000;
	font-size:20px;
	line-height:26px;
	font-weight:600;
	position:relative;
	cursor:pointer;
	}
.acdn-heading.accordion-open{
	background:url(../images/open.webp) no-repeat 100% center;
	background-size:14px;
	}
.acdn-content{
	float:left;
	width:100%;
	text-align:left;
	padding:0 35px 5px 0;
	}
.acdn-para{
	color:#000000;
	font-size:18px;
	line-height:28px;
	margin-bottom:20px;
	}		
	
/*========footer==========*/
.footer{
	float:left;
	width:100%;
	padding:40px 0;
	}	
.footer_text{
	color:#000000;
	font-size:16px;
	line-height:22px;
	letter-spacing:0.3px;
	margin-top:10px;
	}
.footer_text a{padding:0 5px;}
.footer_text.margin-top-0{margin-top:0;}
	
/*-----------------------
MEDIA-QUERY
------------------------*/
.show-mob, .show-tab{display:none;}

@media only screen and (max-width:1021px){	
.container{width:750px;}
.show-tab{display:block;}
.show-desk{display:none;}

.common_heading{font-size:32px; line-height:40px;}
.button_box{margin:25px auto 0;}
.common_button{padding:19px 0;}

.top_caption{padding:5px 0 2px;}
.top_caption_row{column-gap:5px;}
.top_caption_text{font-size:14px; line-height:22px;}
.top_caption_text span{font-size:16px;}
.top_caption_icon{margin:3px 6px 0; width:15px;}

.section1{padding:30px 0 40px;}
.section1_heading{font-size:34px; line-height:46px; padding-bottom:20px;}
.note_box{padding:12px 20px; margin-top:20px;}
.finger_icon{width:20px; margin:0 0 -3px 15px;}
.section1_content{padding-bottom:30px; margin-top:30px;}
.hero_image{margin:0 auto;}
.features_box{row-gap:45px; margin:35px auto 0;}
.features_row{column-gap:30px;}
.features_row_left{width:48%;}
.features_row_right{width:48%;}
.features_row_heading{font-size:26px; line-height:34px; letter-spacing:0; padding-left: 65px; padding-bottom:15px;}
.features_row_number{top:8px; width:50px; height:50px; font-size:25px; line-height:26px;}
.features_row_paragraph{margin-top:20px;}

.section2{padding:55px 0 40px;}
.product_box{padding:40px 25px 30px;}
.product_box_heading{font-size:30px; line-height:38px;}
.product_box_inner{align-items:flex-start; margin-top:25px;}
ul.product_list{margin-top:8px;}
ul.product_list li{margin-top:10px;}

ul.strip_slider_list li{font-size:18px; line-height:26px; padding:0 25px 0 30px;}

.section3{padding:35px 0 30px;}
.rating_box{margin-top:25px;}
.rating_text{font-size:18px; line-height:32px; margin-top:15px;}
.testimonial_box{gap:20px; margin:30px auto 0;}
.testimonial_row_top{padding:20px 0 15px;}
.testimonial_row_top_left{width:60%;}
.testimonial_user_name{font-size:12px; line-height:20px;}
.testimonial_user_name span{font-size:15px;}
.testimonial_row_top_right{width:36%;}
.testimonial_star{width:70px;}
.testimonial_verify_text{font-size:10px; line-height:20px;}
.testimonial_column_paragraph{font-size:17px; line-height:25px;}

.section5{padding:25px 0;}
.faq-box{padding:0 10px; margin-top:10px;}
.accordion{padding:20px 35px 20px 0;}
.acdn-para{line-height:26px; letter-spacing:0.3px;}

.footer{padding:35px 0;}

}

@media only screen and (max-width:767px){
.container{max-width:600px; width:100%; padding:0px 15px; box-sizing:border-box;}
.show-mob{display:block;}
.hide-mob{display:none;}

.common_heading{font-size:26px; line-height:34px;}
.common_paragraph{font-size:17px; line-height:25px; margin-top:20px;}
.common_button{font-size: 20px; line-height:22px; padding:18px 0;}
ul.common_button_list li{font-size:14px; line-height:14px;}

.top_caption{padding:8px 0 4px;}
.top_caption_row{column-gap:0;}
.top_caption_text{font-size:12px; line-height:18px;}
.top_caption_text span{font-size:14px;}
.top_caption_icon{width:12px; margin:3px 5px 0;}

.section1{padding:20px 0 30px;}
.section1_heading{font-size:28px; line-height:36px; padding-bottom:15px;}
.author_box{margin-top:20px;}
.author_name{font-size:15px; line-height:15px;}
.note_box{padding:15px 15px;}
.note_box p{font-size:17px; line-height:25px;}
.finger_icon{margin:0 0 -5px 15px;}
.section1_content{padding-bottom:20px; margin-top:25px;}
.hero_image{ min-height:270px; object-fit:cover;}
.features_box{row-gap:40px; margin:30px auto 0;}
.features_row{column-gap:0;}
.features_row_right{width:100%;}
.features_row_heading{font-size:24px; line-height:30px; padding-left:55px; border-bottom:none; padding-bottom:0;}
.features_row_number{top:6px; width:40px; height:40px; font-size:20px; line-height:20px;}
.features_row_image{margin-top:15px;}
.features_row_paragraph{font-size:17px; line-height:25px; margin-top:15px;}

.section2{padding:40px 0 30px;}
.product_box{padding:25px 20px 20px;}
.product_box_tag{width:150px; font-size:14px; line-height:23px; top:-15px; padding:3px 5px;}
.product_box_tag img{margin:-2px 5px 0 0; width:18px;}
.product_box_title:before, .product_box_title:after{width:18px; margin:-4px 4px 0 0;}
.product_box_title img{margin:3px 5px 0;}
.product_box_heading{font-size:28px; line-height:36px; margin-top:5px;}
.product_box_inner{margin-top:15px;}
.product_box_right{width:100%;}
.product_box_paragraph{font-size:17px; line-height:25px; margin-top:18px;}
.product_box_left{ width:100%;}

.strip_slider{padding:12px 0;}
ul.strip_slider_list li{font-size:16px; line-height:26px;}

.section3{padding:25px 0 30px;}
.rating_box{margin-top:15px;}
.rating_text{font-size:16px; line-height:26px; margin-top:12px;}
.rating_text span{font-size:30px; line-height:30px;}
.testimonial_box{grid-template-columns:1fr; gap:15px; margin:25px auto 0;}
.testimonial_row{padding:0 15px 20px;}
.testimonial_row_top_left{width:62%;}
.testimonial_row_top_right{width:34%;}
.testimonial_verify_text{line-height:16px;}
.testimonial_column_paragraph{font-size:16px; line-height:24px;}

.section5{padding:25px 0 20px;}
.faq-box{padding:0 0; margin:5px 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; margin-bottom:15px;}

.footer{padding:25px 0;}
.footer_inner{float:left; width:100%;}
.footer_text{font-size:13px; line-height:19px;}
.footer_text .margin_top{margin-top:8px;}

#call-btn{
	width:100%;
	position:fixed;
	bottom:0%;
	left:auto;
	z-index:99;
	transition:bottom 1s;
	padding:0 10px 10px;
	}
#call-btn .common_button{margin:0 auto; letter-spacing:0.5px; font-size:20px;}

}