img{
	max-width:100%;
}
.heading{
	position:relative;
	width:80%;
	margin:0px auto;
}
.heading h2{
	color:#031019;
	margin-bottom:10px;
}
.heading span{
	width:150px;
	display:inline-block;
	position:relative;
	margin:20px 0px;
}

.download-link a:hover svg {
    animation: animate 1s ease infinite;
}

.text-center {
    color: #000;
}
.text-center.apple-txt {
    color: #fff;
}



@keyframes animate{
	0%{
		top:50%
	}
	25%{
		top:40%;
	}
	50%{
		top:50%;
	}
	75%{
		top:60%;
	}
	100%{
		top:50%;
	}
	
}


.download-link a:hover {
    filter: drop-shadow(0px 0px 15px #148ef9);
    transform: scale(1.01)
	
}
.download-link a svg {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}
.download-link {
	margin-top: 40px;
    display: inline-block;
    text-align: center;
}

.download-link a {

    padding: 25px 70px 25px 40px;
    color: #fff;
    background-color: #148ef9;
    font-size: 20px;
    font-weight: 600;
    border-radius: 40px;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
}

.download-link a:hover {
    text-decoration: none;
}


.download-link span{
display: block;
margin-top: 10px;
}
.heading span:before{
	content:"";
	position:absolute;
	width:150px;
	height:2px;
	bottom:0;
	left:0;
	transform:translateY(50%) scaleX(1);
	background-color:#031019;
	animation: heading-before infinite 5s linear;
}
@keyframes heading-before{
	0%{
		width:5px;
	}
	50%{
		width:150px;
	}
	100%{
		width:5px;
	}
}
.heading span:after{
	content:"";
	position:absolute;
	width: 25px;
    height: 25px;
	border-radius:50%;
    background-color: #f8af40;
    left: 0;
    top: 50%;
	transform:translateY(-50%) scale(1);
	animation: heading-after infinite 5s linear;
}
@keyframes heading-after{
	0%{
		left:-10px;
		transform:translateY(-50%) scale(0.5) rotate(0deg);
	}
	50%{
		left:100%;
		transform:translateY(-50%) scale(1)  rotate(360deg);
	}
	100%{
		left:-10px;
		transform:translateY(-50%) scale(0.5)  rotate(0deg);
	}
}


/* Header Css Start */
header{
	padding:20px 0px;
	width:100%;
	position:absolute;
	top:20px;
	z-index:10;
}
header .logo {
	width:220px;
	float:left;
}
header .logo img{
	max-width:100%;
}
header nav{
	float:right;
}
header nav ul{
	list-style:none;
	padding:0px;
	margin:0px;
}
header nav ul li{
	display:inline-block;
	float:left;
	position:relative;
}
header nav ul li a{
	padding:17px 30px;
	position:relative;
	display:block;
	color:#b5b8b8;
	font-size:14px;
	transition:all 0.4s ease;
	font-weight:500;
}
header nav ul li.active a, header nav ul li.active a:hover{
	color:#031019;
	font-weight:700;
}
header nav ul li a:hover{
	text-decoration:none;
	color:#373f43;
}
/* Header Css End */


/* Slider Css Start */
#slider{
	background-color:#f7f7f7;
	background-image:url(../img/slider-bg.png);
	background-blend-mode:multiply;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:0 0;
	padding:150px 0px 80px;
	position:relative;
	display:block;
	overflow:hidden;
	animation: slider-bg infinite 10s linear;
}
@keyframes slider-bg{
	0%{
		background-position:0 0;
	}
	50%{
		background-position:0px 50px;
	}
	100%{
		background-position:0 0;
	}
}
#slider h5{
	color:#343c40;
	margin-bottom:20px;
}
#slider h1{
	color:#031019;
	font-size:50px;
	font-weight:500;
	line-height:70px;
	margin-bottom:20px;
}
#slider h1 span{
	color:#f8af40;
	font-weight:700;
}
#slider p{
	color:#40484b;
	font-weight:500;
	margin-bottom:30px;
}
#slider ul{
	padding:0px;
	margin:40px 0px 0px;
	list-style-type:none;
}
#slider ul li{
	width:50%;
	float:left;
	color:#333e3f;
	font-size:18px;
	position:relative;
	padding-bottom:10px;
	font-weight:500;
	
	z-index:10;
}
#slider ul li:before{
	content:'';
	position:absolute;
	left:-1px;
	top:2px;
	width:20px;
	height:20px;
	border-radius:50%;
	color:#fff;
	background-color:#3bc236;
	z-index:-1;
}
#slider ul li svg{
	color:#fff;
	font-size:10px;
	margin: 0px 10px 0px 4px;
}
#slider.right{
	position:relative;
}
#slider img{
	width:auto;
	height:550px;
	position:relative;
}
/* Slider Css End */


/* Download Fixed Css Start */
#btm_to_top{
	position:fixed;
	width:auto;
	height:auto;
	bottom:30px;
	right:20px;
	background-color:#031019;
	z-index:10000;
	cursor:pointer;
	border-radius:50%;
	border:solid 2px #fff;
	overflow:hidden;
	display:none;
}
#btm_to_top.show{
	display:block;
}
#btm_to_top button{
	color:#fff;
	background-color:#031019;
	padding:15px;
	text-transform:uppercase;
	font-size:14px;
	font-weight:600;
	display:flex;
	justify-content: center;
    align-items: center;
	transition:all 0.4s ease;
	position:relative;
	width:100%;
	height:100%;
	border:none;
}
#btm_to_top button svg{
	color:#fff;
	font-size:20px;
	transform:rotate(-90deg);
}
#btm_to_top button:hover, #btm_to_top button:hover svg{
	color:#f8af40;
	text-decoration:none;
}
/* Download Fixed Css End */


/* About Us Css Start */
#features{
	background-color:#fff;
	padding:80px 0px;
	display:block;
	overflow:hidden;
}
#features .content{
	padding:100px 0px 40px;
}
#features .content .circle{
	position:relative;
}
#features .content .circle span{
	width:180px;
	height:180px;
	border-radius:30% 60% 35% 60%;
	display:block;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%) rotate(0deg);
	background-color:transparent;
	border:solid 2px #fba919;
	transition:all 0.4s ease;
	animation: circle_border infinite 10s linear;
	z-index:1;
}
#features .content .circle .box-inner{
	width:160px;
	height:160px;
	margin:0px auto;
	border-radius:50%;
	background-color:transparent;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	text-align:center;
	position:relative;
}
#features .content .circle .box-inner svg{
	font-size:36px;
	color:#031019;
}
#features .content .circle .box-inner h3{
	font-size:14px;
	margin-top:15px;
	color:#031019;
}
#features .content .circle .box-inner:before{
	content:"";
	width:200px;
	height:200px;
	border-radius:55% 25% 60% 30%;
	display:block;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%) rotate(0deg);
	background-color:transparent;
	border:solid 2px #fba919;
	transition:all 0.4s ease;
	animation: circle_border infinite 8s linear;
	animation-duration:5s;
}
#features .content .circle .box-inner:after{
	content:"";
	width:220px;
	height:220px;
	border-radius:40% 60%;
	display:block;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%) rotate(0deg);
	background-color:transparent;
	border:solid 2px #fba919;
	transition:all 0.4s ease;
	animation: circle_border infinite 8s linear;
	animation-duration:8s;
}
@keyframes circle_border {
	from{
		transform:translate(-50%, -50%) rotate(0deg);
	}
	to{
		transform:translate(-50%, -50%) rotate(360deg);
	}
}
/* About Us Css End */


/* Keep Mac Css Start */
#keep-mac{
	padding:80px 0px;
	background-color:#f7f7f7;
	display:block;
	overflow:hidden;
}
#keep-mac .heading span:after{
	border-radius:0px;
	transform:translateY(-50%) scale(1) rotate(0deg);
}
#keep-mac .content{
	padding:60px 0px 0px;
}
#keep-mac .img-content{
	padding:50px 0px;
}
#keep-mac .img-content .img-box{
	perspective: 1000px;
}
#keep-mac .img-content .img-box img{
	transform:rotateY(30deg);
}
#keep-mac .img-content.second .img-box img{
	transform:rotateY(-30deg);
}
#keep-mac .img-content .box-content{
	border-bottom:solid 1px #ddd;
}
#keep-mac .img-content .yellow-box{
	width:100%;
	padding:30px;
	background-color:#f8af40;
	margin-bottom:30px;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	color:#031019;
}
#keep-mac .img-content .yellow-box svg{
	font-size:40px;
	margin-bottom:15px;
}
#keep-mac .img-content .yellow-box span{
	font-size:20px;
	font-weight:600;
}
/* Keep Mac Css End */



/* Why Use Css Start */
#why-use {
	padding:80px 0px;
	background-color:#fff;
	background-image:url(../img/why-use-bg.png);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:0 0;
	background-blend-mode:multiply;
	background-attachment:fixed;
	animation: why-use-bg infinite 6s linear;
	display:block;
	overflow:hidden;
}
@keyframes why-use-bg {
	0%{
		background-position:0 -50px;
	}
	50%{
		background-position:0px 50px;
	}
	100%{
		background-position:0 -50px;
	}
}
#why-use .heading span:before{
	animation:none;
}
#why-use .heading span:after{
	border-radius:50% 0 50% 0;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%) rotate(0) scale(0.5);
	animation: why-use-heading infinite 3s linear;
}
@keyframes why-use-heading{
	0%{
		transform:translate(-50%, -50%) rotate(0) scale(0.5);
	}
	50%{
		transform:translate(-50%, -50%) rotate(0) scale(1);
	}
	100%{
		transform:translate(-50%, -50%) rotate(0) scale(0.5);
	}
}
#why-use .content{
	width:75%;
	min-height:550px;
	margin:50px auto 0px;
	position:relative;
	display:flex;
	justify-content:center;
	align-items:flex-end;
}
#why-use .content .main-box{
	width:300px;
	height:300px;
	border-radius:50%;
	border:solid 2px #ddd;
	overflow:hidden;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:20px;
}
#why-use .content .outer-box{
	width:150px;
	height:150px;
	border-radius:50%;
	position:absolute;
	background-color:#f8af40;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:10px;
	text-align:center;
	overflow:visible;
	transform:scale(1);
	opacity:1;
	z-index:1000;
}
#why-use .content .outer-box:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	border-radius:50%;
	background-color:#f8af40;
	animation:why-use-circle-bg infinite 2s linear;
	transform:scale(1);
	opacity:1;
	z-index:-10;
}
@keyframes why-use-circle-bg{
	from{
		transform:scale(0.1);
		opacity:1;
	}
	to{
		transform:scale(1.75);
		opacity:0;
	}
}
#why-use .content .outer-box:after{
	content:'';
	position:absolute;
	width:50px;
	height:1px;
	border:dashed 1px #031019;
}
#why-use .content .outer-box p{
	color:#031019;
	font-size:15px;
	margin-bottom:0px;
	font-weight:600;
}
#why-use .content .outer-box.box-1{
	top: 100%;
    left: 0%;
	transform:translateY(-100%);
}
#why-use .content .box-1.outer-box:after{
	left: 125%;
    transform: rotate(-10deg);
    top: 41%;
}
#why-use .content .outer-box.box-2{
	top: 50%;
    left: 25%;
	transform:translate(-100%, -100%);
}
#why-use .content .box-2.outer-box:after{
	left: 110%;
    top: 100%;
    transform: rotate(35deg);
}
#why-use .content .outer-box.box-3{
	top: 0%;
    left: 50%;
	transform:translateX(-50%);
}
#why-use .content .box-3.outer-box:after{
	left: 32%;
    top: 136%;
    transform: rotate(90deg);
}
#why-use .content .outer-box.box-4{
	top: 50%;
    right: 25%;
	transform:translate(100%, -100%);
}
#why-use .content .box-4.outer-box:after{
	right: 110%;
    top: 100%;
    transform: rotate(-35deg);
}
#why-use .content .outer-box.box-5{
	top: 100%;
    right: 0%;
	transform:translateY(-100%);
}
#why-use .content .box-5.outer-box:after{
	right: 125%;
    transform: rotate(10deg);
    top: 41%;
}
/* Why Use Css End */


/* How Use Css Start */
#how-use{
	background-color:#f8af40;
	padding:80px 0px;
	display:block;
	overflow:hidden;
}
#how-use .heading span:after{
	background-color:#031019;
}
#how-use .content{
	width:100%;
	min-height:500px;
	margin-top:50px;
	display:flex;
	align-items:center;
	position:relative;
}
#how-use .content .main-line{
	width:100%;
	height:30px;
	margin:0px auto;
	background-color:#031019;
	border-radius:20px;
	position:relative;
	display:flex;
	justify-content:space-around;
	overflow:hidden;
}
#how-use .content .main-line span{
	color:#fff;
	font-weight:600;
	padding-top:3px;
}
#how-use .content .box{
	width:125px;
	height:125px;
	border-radius:50%;
	position:absolute;
	display:flex;
	align-items:center;
	justify-content:center;
	background-color:#000;
	text-align:center;
}
#how-use .content .box p{
	font-size:20px;
	font-weight:600;
	color:#fff;
	margin-bottom:0px;
}
#how-use .content .box.first{
	left:4.5%;
	top: 0;
}
#how-use .content .box.second{
	left: 20%;
    top: 100%;
    transform: translate(40%, -100%);
}
#how-use .content .box.third{
	left:44.5%;
	top: 0;
}
#how-use .content .box.four{
	left: 60%;
    top: 100%;
    transform: translate(40%, -100%);
}
#how-use .content .box.five{
	right:4.5%;
	top: 0;
}
#how-use .content .box:after{
	content:"";
	position:absolute;
	width:10px;
	height:120px;
	background-color:#000;
	top:95%;
	left:50%;
	transform:translateX(-50%);
}
#how-use .content .second.box:after, #how-use .content .four.box:after{
	top:-95%;
}
/* How Use Css End */



/* Testimonials Css Start */
#testimonial{
  padding:80px 0px;
  background-color:#fff;
  	background-image:url(../img/why-use-bg.png);
	background-repeat:no-repeat;
	background-position:right 0;
	background-blend-mode:multiply;
	background-attachment:fixed;
	background-size:cover;
	animation: testimonial-bg infinite 6s linear;
	display:block;
	overflow:hidden;
}
@keyframes testimonial-bg {
	0%{
		background-position:right -50px;
	}
	50%{
		background-position:right 50px;
	}
	100%{
		background-position:right -50px;
	}
}
#testimonial .heading span:after{
	border-radius:0px;
	transform:translateY(-50%) scale(1) rotate(0deg);
}
#testimonial .sec-content{
	margin-top:50px;
}
#testimonial .card{
  position:relative;
  margin:0 auto;
  background:#fff;
  padding:20px;
  box-sizing:border-box;
  text-align:center;
  overflow:hidden;
  transition:all 0.4s ease;
  transform:scale(1);
  cursor:pointer;

}
#testimonial .card:hover{
	 box-shadow:0 10px 40px rgba(0,0,0,.5);
}
#testimonial .card .layer{
  position:absolute;
  top:calc(100% - 3px);
  left:0;
  height:100%;
  width:100%;
  background: #f8af40;
  z-index:1;
  transition:0.5s;
}
#testimonial .card:hover .layer{
  top:0;
}
#testimonial .card .content{
  position:relative;
  z-index:2;
}
#testimonial .card .content p{
  font-size:18px;
  line-height:24px;
  color:#031019;
}
#testimonial .card .content .image{
  width:128px;
  height:128px;
  margin:0 auto;
  border-radius:50%;
  overflow:hidden;
  border:2px solid #fff;
  box-shadow:0 10px 20px rgba(0,0,0,.2);
}
#testimonial .card .content .details{
	margin-top:20px;
}
#testimonial .card .content .details h2{
  font-size:20px;
  color:#031019;
  font-weight:600;
}
#testimonial .card .content .details span{
  color:#f8af40;
  font-size:16px;
  transition:0.5s;
}
#testimonial .card:hover .content .details span{
  color:#fff;
}
/* Testimonials Css End */


/* Extra Protection Css Start */
#extra-protection{
	padding:80px 0px;
	background-color:#f8af40;
	display:block;
	overflow:hidden;
}
#extra-protection .left{
	width:60%;
	float:left;
}
#extra-protection .left h4{
	font-size:30px;
	font-weight:600;
	color:#031019;
	margin-bottom:20px;
}
#extra-protection .left p{
	color:#031019;
	font-size:18px;
	margin-bottom:0px;
}
#extra-protection .right{
	width:40%;
	float:right;
	text-align:right;
}
#extra-protection .right a{
	display:inline-block;
	padding:20px 40px;
	background-color:#031019;
	color:#fff;
	font-size:16px;
	font-weight:600;
	text-transform:uppercase;
	border-radius:40px;
	position:relative;
	z-index:100;
	transition: all 0.3s ease;
}
#extra-protection .right a:after{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#031019;
	border-radius:40px;
	transform:scale(1);
	opacity:1;
	z-index:-1;
	animation:extra-protction-btn infinite 2s linear;
}
@keyframes extra-protction-btn {
	from{
		transform:scale(0);
		opacity:1;
	}
	to{
		transform:scale(1.5);
		opacity:0;
	}
}
#extra-protection .right a:hover{
	text-decoration:none;
	transform:scale(1.05);
	border-radius:0;
}
#extra-protection .right a:hover:after{
	display:none;
}
/* Extra Protection Css End */



/* Footer Css Start */
footer{
	background-color:#031019;
	padding:50px 0px 25px;
	position:fixed;
	left:0;
	bottom:0;
	width:100%;
	z-index:-1;
	display:block;
	overflow:hidden;
}
footer .logo{
	width:220px;
	margin:0px auto 20px;
}
footer ul{
	list-style-type:none;
	margin:20px auto;
	display:inline-block;
	padding:0px;
}
footer ul li{
	display:inline-block;
	float:left;
	padding:5px 0px;
}
footer ul li a{
	display:block;
	padding:0px 10px;
	color:#fff;
	border-right:solid 1px #f8af40;
	transition:all 0.3s ease;
}
footer ul li a:hover{
	text-decoration:none;
	color:#f8af40;
}
footer ul li:last-child a{
	border:none;
}
footer p{
	color:#ddd;
	font-size:14px;
	
}
footer p a{
	color:#fff;
	font-weight:700;
	text-decoration:none;
}
footer p a:hover{
	color:#f8af40;
}
/* Footer Css End */






@media only screen and (max-width: 1199px) {
	@keyframes extra-protction-btn {
		from{
			transform:scale(0);
			opacity:1;
		}
		to{
			transform:scale(1.5);
			opacity:0;
		}
	}
	#how-use .content .box.first{
		left: 3.5%;
	}
	#how-use .content .box.second{
		left: 18%;
	}
	#how-use .content .box.third{
		left: 43.5%;
	}
	#how-use .content .box.four{
		left: 58%;
	}
	#how-use .content .box.five{
		right: 3.5%;
	}
	#why-use .content .main-box{
		position: absolute;
		top: 50%;
		width:200px;
		height:200px;
	}
}
@media only screen and (max-width: 991px) {
	header nav ul li a{
		padding:5px 30px;
	}
	#why-use .content{
		width:100%;
	}
	#how-use .content .box.first{
		left: 1.1%;
	}
	#how-use .content .box.second {
		left: 13.5%;
	}
	#how-use .content .box.third {
		left: 41%;
	}
	#how-use .content .box.four {
		left: 53.7%;
	}
	#how-use .content .box.five {
		right: 1%;
	}
	#testimonial .card{
		padding:20px 10px;
	}
}

@media only screen and (max-width: 767px) {
	header{
		top:0;
		background-color:#fff;
		box-shadow:0px 0px 5px rgba(0,0,0,0.5);
		padding:10px 0px;
	}
	header .logo{
		float: inherit;
		margin: 0px auto 10px;
		display: block;
	}
	header nav{
		float: inherit;
		display: table;
		margin: 0px auto;
	}
	header nav ul li a{
		padding: 0px 15px;
	}
	#slider{
		padding-bottom:50px;
		background-image:none;
	}
	@keyframes slider-bg-mobile{
		0%{
			background-position:center top;
		}
		50%{
			background-position:center bottom;
		}
		100%{
			background-position:center top;
		}
	}
	#slider h1{
		font-size: 40px;
		line-height: 50px;
	}
	#slider img{
		height: 300px;
		margin-top: 30px;
	}
	#features{
		padding:50px 0px;
	}
	#features .content .circle .box-inner{
		width: 300px;
		height: 300px;
	}
	#features .content {
		padding: 20px 0px 0px;
	}
	#keep-mac{
		padding: 50px 0px;
	}
	#keep-mac .img-content:last-child{
		padding-bottom:0px;
	}
	#keep-mac .img-content .img-box{
		perspective: none;
	}
	#keep-mac .img-content .box-content{
		margin-top: 25px;
	}
	#keep-mac .img-content{
		padding: 0px 0px 40px;
	}
	#keep-mac .img-content .col-md-4{
		order: 2;
	}
	#keep-mac .img-content .col-md-8{
		order: 1;
	}
	#why-use{
		padding:50px 0px;
	}
	#why-use .content{
		display:block;
	}
	#why-use .content .main-box{
		display:none;
	}
	#why-use .content .outer-box{
		width:200px;
		height:200px;
		position:relative;
		margin:0px auto 50px;
		left:0 !important;
		transform: none !important;
		top:0 !important;
		border-radius:25% 0;
		padding: 10px 30px;
	}
	#why-use .content .outer-box:last-child{
		margin-bottom:0px;
	}
	#why-use .content .outer-box.box-1{
		transform: none;
	}
	#why-use .content .outer-box:before{
		display:none;
	}
	#why-use .content .outer-box:after{
		top: 50% !important;
		left: 50% !important;
		width: 90%;
		height: 90%;
		border-radius: 25% 0;
		border: dashed 2px #000;
		transform: translate(-50%,-50%) !important;
		animation:none;
	}
	#how-use{
		padding:50px 0px;
	}
	#how-use .content{
		display:block;
	}
	#how-use .content .main-line{
		display:none;
	}
	#how-use .content .box:after{
		height: 60px;
		top: 100% !important;
	}
	#how-use .content .box{
		position:relative;
		width:150px;
		height:150px;
		left:0 !important;
		top:0 !important;
		margin:0px auto 50px;
		transform:none !important;
	}
	#how-use .content .box:last-child{
		margin-bottom:0px;
	}
	#how-use .content .box:last-child:after{
		display:none;
	}
	#testimonial{
		padding:50px 0px;
	}
	#testimonial .card{
		margin-bottom:25px;
	}
	#extra-protection{
		padding:50px 0px;
	}
	#extra-protection .row .col-md-12.d-flex{
		display:block !important;
	}
	#extra-protection .left{
		width:100%;
		display:block;
		overflow:hidden;
	}
	#extra-protection .right{
		width:100%;
		float:inherit;
		text-align:center;
		margin-top:20px;
	}
	#extra-protection .right a{
		margin-top:20px;
	}
	footer ul{
		margin-top:0px;
		margin-bottom:10px;
	}
	footer ul li a{
		font-size:14px;
		padding:0px 5px;
	}
}