/*===================================== 
Font Family 
--------------
font-family: 'Poppins', sans-serif;
font-weight: 300 | 400 | 500 | 600 | 700;

======================================*/

/*======================================
1. GENERAL CSS Start
======================================*/
html,
body {
  height: 100%;
}
body {
	font-family: 'Poppins', sans-serif;
	font-size:16px;	
	font-weight:400; 	
	color:#222222;	
	padding:0;	
	margin:0; 	
	overflow-x: hidden;
    background-color: #ffffff;
    overflow: auto;
}  

a {color: #222;  outline: 0 none;  text-decoration:none; transition: all 0.5s ease;}

a:hover,
a:focus {
  text-decoration:none;
  outline: 0 none;
}

a:active,
a:hover,
a:focus{
  color: #ff5858;
  transition: all 0.5s ease;
}
a.text-primary:hover, a.text-primary:focus {
	color: #ff5858 !important;
}
button, button:hover{transition: all 0.5s ease;}
button, input, optgroup, select, textarea {
    outline: none !important;
}
img{
	max-width: 100%;
}
::selection {
	background: #ff5858;
	color: #fff;
}

::-moz-selection {
	background: #ff5858;
	color: #fff;
}

::-webkit-selection {
	 background:#ff5858;
	 color: #fff;
}
ul, ol {
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	list-style: none;
}

.loading-area{width:100%;	height:100%;	position:fixed;	left:0;	top:0;	z-index:9999;	overflow:hidden;}
.loading-box{width:100%;	height:100%;	background-color:#fff;	position:absolute;	left:0;	top:0;	opacity:1;	z-index:9999;}
.loading-pic{width:100%;	position:absolute;	top:50%;	z-index:99999;	text-align:center;-webkit-transform: translateY(-50%);-moz-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);}
.loading-pic i{color: #ff5858;}

.scroltop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	height: 45px;
	width: 45px;
	background: #ff5858;
	border: 0;
	padding: 5px 12px;
	cursor: pointer;
	color: #fff;
	border-radius:50%;
	transition: all 0.2s linear;
	    z-index: 9999;
}
.scroltop:hover {
	bottom: 15px;
	transition: all 0.2s linear;
	box-shadow: 0 0px 10px rgba(255,88,88,0.8);
	
}
/*======================================
2. HEADING & TITLE 
======================================*/

h1, .h1, 
h2, .h2, 
h3, .h3, 
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
  vertical-align: middle;
}

h1, .h1 {font-size: 36px;}
h2, .h2 {font-size: 32px;}
h3, .h3 {font-size: 22px; font-weight: 500;}
h4, .h4 {font-size: 20px;font-weight: 500; margin-bottom: 10px;}
h5, .h5 {font-size: 18px; font-weight: 500; line-height: 26px;}
h6, .h6 {font-size: 16px; font-weight: 500;}

p { line-height: 26px;margin-bottom: 1.5rem;}
/*-------------------------------------
 text size
------------------------------------ */
.font-12 { 	font-size:12px;	line-height:18px;}
.font-16 { 	font-size:16px;	line-height:20px;}
.font-18 { 	font-size:18px;	line-height:24px;}
.font-20 { 	font-size:20px;	line-height:26px;font-weight: 500;}
.font-22 { 	font-size:22px;	line-height:28px;font-weight: 500;}
.font-24 { 	font-size:24px;	line-height:30px;}
.font-28 { 	font-size:28px;	line-height:35px;font-weight: 600;}
.font-30 { 	font-size:30px;	line-height:35px;font-weight: 500;}
.font-45 { 	font-size:45px;	line-height:45px;font-weight: 700;}
.font-50 { 	font-size:50px;	line-height:65px; font-weight: 700;}



.text-uppercase{ text-transform: uppercase; }
.text-capitalize{ text-transform: capitalize; }
.text-lowecase{ text-transform: lowercase; }

.font-bold{ font-weight: 700;}
.font-medium, strong{ font-weight: 500;}
.font-semibold{ font-weight: 600;}
/*-------------------------------------
	Color 
--------------------------------------- */
/*-------------------------------------
	1. text
-------------------------------------*/
.text-white{color:#fff !important;}
.text-primary{color:#3d44b4 !important;}
.text-orange{color:#ff5858 !important;}
.text-gray{color:#686c72 !important;}
.text-dark{color:#222222 !important;}

/*-------------------------------------
	2. background color
-------------------------------------*/
.bg-transparent{background-color:transparent;}
.bg-primary{background-color:#3d44b4 !important;}
.bg-white{background-color:#FFF;}
.bg-light {background-color: #f9fafc !important;}
/*-------------------------------------
	 Buttons 
--------------------------------------- */
.btn {
	font-size: 16px;
	font-weight: 400;
	border: 0;
	padding: 6px 25px;
	transition: all 0.5s ease;
	font-family: 'Poppins', sans-serif;
	transition: all 0.2s linear;
	position: relative;
	border-radius: 50px;
}
.btn:hover, .btn:focus, .btn.focus {
	text-decoration: none;
	transition: all 0.2s linear;
	box-shadow: none;
}
.btn .fa-arrow-right {
	font-size: 14px;
	margin-left: 5px;
	transition: all 0.2s linear;
	position: relative;
	right: 0;
}
.btn:hover .fa-arrow-right {
	right: -5px;
	transition: all 0.2s linear;
}
.btn-lg{
	font-size: 18px;
	padding: 15px 30px;
	min-width: 220px;
}
.btn-lg .fa-arrow-right {
	font-size: 16px;
	margin-left: 15px;
}
.btn-default {
	background: #fff;
	color: #222222;
	border: 1px solid #dadada;
	font-size: 14px;
	padding: 6px 18px;
	font-weight: 500;
	margin: 0 5px;
}
.btn-default:hover, .btn-default:focus, .btn-default.focus {
	background: #ff5858;
	color: #fff;
	border: 1px solid #ff5858;
}
.btn-primary {
	background: #ff5858;
	color: #fff;
	box-shadow: 3px 3px 12px rgba(255,88,88,0.2);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus {
	background: #3d44b4; 
	color: #fff;
	box-shadow: 3px 3px 12px rgba(79,89,255,0.28);
}
.btn-secondary{
	background: #3d44b4; 
	color: #fff;
	box-shadow: 3px 3px 12px rgba(79,89,255,0.28);
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary.focus {
	background: #ff5858; 
	color: #fff;
	box-shadow: 3px 3px 12px rgba(255,88,88,0.2);
}
.btn-white {
	background: #fff;
	color: #6c727e;
	box-shadow: 3px 3px 12px rgba(108,114,126,0.2);
}
.btn-white:hover, .btn-white:focus, .btn-white.focus {
	background: #3d44b4; 
	color: #fff;
	box-shadow: 3px 3px 12px rgba(79,89,255,0.28);
}
.section-title{
	text-align: center;
}
.ui-border {
	margin-bottom: 35px;
	position: relative;
}
.ui-border::after {
	position: absolute;
	content: '';
	background-color: #ff5858;
	width: 56px;
	height: 4px;
	left: 50%;
	bottom: -15px;
	margin-left: -28px;
}
.ui-border-1 {
	margin-bottom: 45px;
	position: relative;
}
.ui-border-1::after {
	position: absolute;
	content: '';
	background-color: #ff5858;
	width: 40px;
	height: 5px;
	left: 0;
	bottom: -15px;
}
@media (max-width:1439px) {
	h1, .h1 {font-size: 34px;}
	h2, .h2 {font-size: 30px;}
	h3, .h3 {font-size: 20px;}
	h4, .h4 {font-size: 18px;}
	h5, .h5 {font-size: 16px;}
	.lead{ font-size: 16px; }
	.font-20 { 	font-size:18px;}
	.font-30 { 	font-size:26px;	}
	.font-50 { 	font-size:36px;	line-height:45px;}
	body {font-size:14px;} 	
}
@media (max-width:991px) {
	h1, .h1 {font-size: 32px;}
	h2, .h2 {font-size: 28px;}
	.font-50 {
	font-size: 35px;
	line-height: 45px;
	}
	.text-container{text-align: center;}
	.ui-border-1::after {
		left: 50%;
		margin-left: -20px;
	}
}
/*======================================
1. GENERAL CSS End
======================================*/

/************************* 
YOU CAN WRIGHT CUSTOME CSS 
***************************/
/* Header CSS Start*/

@media (min-width:1439px) {
.container {
	max-width: 1356px;
}
}
.container-fluid {
	max-width: 1440px;
}
header {
	position: absolute;
	width: 100%;
	padding: 15px 0;
	transition: none;
}
.inner-page header {
	position: relative;
	padding: 3px 0;
}
header.sticky {
	position: fixed;
	background: #fff;
	z-index: 99;
	width: 100%;
	transition: none;
	padding: 3px 0;
	box-shadow: 0px 2px 4px rgba(0,0,0,0.10);
}
header.sticky .navbar-nav > .nav-item > a, .inner-page header .navbar-nav > .nav-item > a {
	color: #222;
	padding: 18px;
}
.navbar {
	padding: 0;
}
.navbar-expand-lg .navbar-collapse {
	justify-content: flex-end;
}
.nav-item a {
	font-size: 18px;
	color: #fff;
	padding: 25px 20px;
	display: inline-block;
}

.nav-item a:hover, .inner-page header .navbar-nav > .nav-item > a:hover {
	color: #ff5858;
}
.sub-menu {
	position: absolute;
	background: #fff;
	z-index: 999;
	top: 100%;
	display: none;
	padding: 15px;
	max-width: 240px;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
	border-radius: 3px;
}
.sub-menu::before {
	content: "";
	border-top: 0;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #fff;
	border-left: 8px solid transparent;
	position: absolute;
	left: 25px;
	top: -7px;
}
.menu-item-has-children:hover > .sub-menu {
	display: block;
}
.menu-item-has-children .icon {
	display: none;
}
.menu-item-has-children > a::after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
	top: 48%;
	position: absolute;
}
.sub-menu .nav-item a {
	font-size: 15px;
	padding: 8px 20px;
	position: relative;
	color: #222;
}
header .sub-menu .nav-item a:hover {
	color: #ff5858;
}
.sub-menu .nav-item a::before {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid transparent;
	border-right: 0;
	border-bottom: .3em solid transparent;
	border-left: .3em solid;
	position: absolute;
	left: 5px;
	top: 15px;
}
@media (max-width:1439px) {
.nav-item a {
	font-size: 16px;
	padding: 25px 18px;
}
}
@media (max-width:991px) {
header .row > div, header nav.navbar{
	position: static;
}
header.sticky {
	padding: 5px 0;
}	
.logo img {
	max-width: 250px;
}
.navbar {
	justify-content: flex-end;
}
.navbar-toggler {
	font-size: 25px;
	padding: 0;
}
.navbar-collapse {
   position: absolute;
    width: 100%;
    background: #202132;
    top: 85px;
    right: 0;
    z-index: 999;
}
header.sticky .navbar-collapse {
    top: 60px;
}
#navbar > .btn{ display: none; }
.nav-item a {
    font-size: 16px;
    padding: 20px;
    display: block;
}
.menu-item-has-children > a::after{display: none;}
.menu-item-has-children .icon {
	display: flex;
	right: 0;
	top: 0;
	width: 50px;
	height: 65px;
	position: absolute;
	z-index: 99;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background: rgba(255,255,255,0.05);
}
.menu-item-has-children .icon.open::after {
    content: "\f068";
}
.menu-item-has-children .icon::after {
    display: inline-block;
    color: #fff;
    margin-left: .255em;
    vertical-align: .255em;
    content: "\f067";
    font-family: 'Font Awesome\ 5 Free';
	font-weight: 600;
    
}
li.menu-item.nav-item {
    border-top: 1px solid #3d3d3d;
}
li.menu-item.nav-item.menu-item-has-children {
    position: relative;
}
.menu-item-has-children:hover > .sub-menu {
    display: none;
}
.sub-menu {
	position: relative;
	padding: 0;
	max-width: 100%;
	box-shadow: none;
}
.sub-menu::before {
	display: none;
}
.sub-menu .nav-item {
    width: 100%;
}
.sub-menu .nav-item a {
    padding: 15px 40px;
}
.sub-menu .nav-item a::before {
	left: 15px;
	top: 22px;
}
header.sticky .navbar-nav > .nav-item > a {
    padding: 20px;
    color: #fff;
}
header.sticky .sub-menu .nav-item a {
    padding: 15px 40px;
     color: #fff;
}
.navbar-toggler.open .fa-bars::before {
	content: "\f00d";
	transition: all 0.5s ease;
}
}
@media (max-width:767px) {
header {
	padding: 10px 0;
}	
.navbar-toggler {
	position: absolute;
	right: 15px;
	top: 22px;
}
header.sticky .navbar-toggler, .inner-page header .navbar-toggler {
	top: 15px;
}
.navbar-collapse {
    right: 0;
    top: 75px;
}
.logo {
	text-align: center;
}
.logo img {
	max-width: 200px;
}
header.sticky .sub-menu .nav-item a {
    font-size: 12px;
}
}
/* Header CSS End*/

/* footer CSS Start */
.footer-logo {
	margin-top: 60px;
}
.flinks h5, .social h5 {
	margin-bottom: 35px;
	position: relative;
}
.flinks h5::after, .social h5::after {
	position: absolute;
	content: '';
	background-color: #ff5858;
	width: 36px;
	height: 4px;
	left: 0;
	bottom: -10px;
}

.flinks a {
	padding: 5px 0;
	display: block;
	font-weight: 500;
}

.social a {
	background: #c8cdd8;
	width: 40px;
	height: 40px;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	font-size: 18px;
	border-radius: 50%;
	color: #fff;
	margin-right: 20px;
}
.social a:hover {
	background: #ff5858;
	box-shadow: 0 0px 10px rgba(255,88,88,0.8);
	
}
.copyright {
	color: #fff;
	font-weight: 700;
}
.site-credit {
	text-align: center;
	color: #fff;
}
.site-credit a{
	color: #fff;
}
.site-credit a:hover{
	color: #ff5858;
}
.disclaimer {
	text-align: center;
	color: #9ca0d6;
	background: #353cac;
	padding: 8px 0;
	font-size: 12px;
}
@media (max-width:1439px) {
.social a {
	margin-right: 10px;
}
}
@media (max-width:991px) {
.flinks {
	margin-left:0;
	margin-bottom: 25px;
}
.footer-logo {
	margin-top: 0;
	margin-bottom: 25px;
	text-align: center;
}
.footer-logo img {
	max-width: 350px;
}
.site-credit, .copyright {
	text-align: center;
}
}
@media (max-width:767px) {
.flinks, .social {
	text-align: center;
}
.footer-logo img {
	max-width: 250px;
}
.flinks h5::after, .social h5::after {
	left: 50%;
	margin-left: -18px;
}
.pipe {
	display: block;
	height: 0;
}
}
/* footer CSS End */

.hero-banner {
	padding: 100px 0 30px 0;
	background-image: url('../images/banner-bg.png');
	background-position: right top;
	background-repeat: no-repeat;
	background-size: auto;
	display: flex;
align-items: center;
}
.slider-image {
	position: relative;
}

.slider-image .icon {
	margin: 35px 0;
}
.slider-image .caption {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width:640px;
}
.slider-image .caption h4 {
    font-size: 22px;
    text-align: center;
    line-height: 28px;
}
.hero-banner .slick-dots {
	position: absolute;
	right: -30px;
	top: 38%;
}
.hero-banner .slick-dots li button {
	background:none;
	border: 0;
	text-indent: -9999px;
	width: 0;
	height: 0;
	padding: 0;
}
.hero-banner .slick-dots li {
	background: #fff;
	border: 0;
	text-indent: -9999px;
	width: 8px;
	height: 8px;
	padding: 0;
	margin: 10px 0;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.5s;
}
.hero-banner .slick-dots li.slick-active {
	background: #ff5858;
	height: 25px;
	transition: all 0.5s;
}
.hero-banner .slider-image .bg-round{
  transition: all 1.5s;
}
.hero-banner .slick-active .slider-image .bg-round{
  transform: rotate(180deg);
}
.hero-banner .slider-caption ul li a:hover{
	color: #222222;
}
.hero-banner .woocommerce li.active a, 
.hero-banner .woocommerce li.active a:hover,
.hero-banner .woocommerce .caption h4,
.hero-banner .woocommerce .slider-caption h4{
	color: #ff5858;
}
.hero-banner .elemetor li.active a, 
.hero-banner .elemetor li.active a:hover,
.hero-banner .elemetor .caption h4,
.hero-banner .elemetor .slider-caption h4{
	color: #b10e71;
}
.hero-banner .contact-form li.active a, 
.hero-banner .contact-form li.active a:hover,
.hero-banner .contact-form .caption h4,
.hero-banner .contact-form .slider-caption h4{
	color: #14a098;
}
.hero-banner .gravity-form li.active a, 
.hero-banner .gravity-form li.active a:hover,
.hero-banner .gravity-form .caption h4,
.hero-banner .gravity-form .slider-caption h4{
	color: #3e1e99;
}
.hero-banner .wpform li.active a, 
.hero-banner .wpform li.active a:hover,
.hero-banner .wpform .caption h4,
.hero-banner .wpform .slider-caption h4{
	color: #e58647;
}
.hero-banner .slider-caption ul, 
.hero-banner .slider-caption h4,
.hero-banner .slider-caption li.active{
	position: relative;
}
.hero-banner .slider-caption ul::before {
	position: absolute;
	content: '';
	width: 3px;
	left: -22px;
	bottom: -30px;
}
.hero-banner .woocommerce .slider-caption ul::before {
	background: #ff5858;
	height: 270px;
}
.hero-banner .elemetor .slider-caption ul::before {
	background: #b10e71;
	height: 215px;
}
.hero-banner .contact-form .slider-caption ul::before {
	background: #14a098;
	height: 160px;
}
.hero-banner .gravity-form .slider-caption ul::before {
	background: #3e1e99;
	height: 105px;
}
.hero-banner .wpform .slider-caption ul::before {
	background: #e58647;
	height: 50px;
}
.hero-banner .slider-caption h4::before {
	position: absolute;
	content: '';
	width: 18px;
	height: 3px;
	left: -22px;
	bottom: 8px;
	border-radius: 0;
}
.hero-banner .slider-caption li.active::before {
	position: absolute;
	content: '';
	width: 18px;
	height: 3px;
	left: -22px;
	top: 19px;
	border-radius: 0;
}
.hero-banner .woocommerce .slider-caption h4::before,
.hero-banner .woocommerce .slider-caption li.active::before {
	background: #ff5858;
}
.hero-banner .elemetor .slider-caption h4::before,
.hero-banner .elemetor .slider-caption li.active::before {
	background: #b10e71;
}
.hero-banner .contact-form .slider-caption h4::before,
.hero-banner .contact-form .slider-caption li.active::before {
	background: #14a098;
}
.hero-banner .gravity-form .slider-caption h4::before,
.hero-banner .gravity-form .slider-caption li.active::before {
	background: #3e1e99;
}
.hero-banner .wpform .slider-caption h4::before,
.hero-banner .wpform .slider-caption li.active::before {
	background: #e58647;
}
.numbers .h4 {
	font-weight: 500;
	letter-spacing: 5px;
	opacity: 0.5;
}

.get-started {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.key-features{
	background-image: url('../images/circle-bg-1.png');
	background-position: center 200px;
	background-repeat: no-repeat;
	min-height: 800px;
}
.key-features .features-box {
	background: #fff;
	min-height: 145px;
	border-radius: 10px;
	margin: 1px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
	transition: all 0.2s linear;
	cursor: pointer;
}
.key-features .features-box:hover {
	background: #3d44b4;
	color: #fff;
	transition: all 0.2s linear;
	box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}
.key-features .features-box .tag {
	background: #ff5858;
	position: absolute;
	left: 5px;
	top: 5px;
	border-radius: 10px;
	padding: 2px 10px;
	font-size: 10px;
	color: #fff;
}
.key-features .features-box .icon {
	font-size: 35px;
	margin-bottom: 20px;
	margin-top: 10px;
}
.key-features .features-box .title {
	font-size: 16px;
}
.functionality-section{
	position: relative;
}
.functionality-section .container{
	position: relative;
	z-index: 1;
}
.functionality-section .content-box {
	padding: 50px;
	border-radius: 30px;
	text-align: center;
	transition: all 0.2s linear;
	margin: 0 15px;
	min-height: 450px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.functionality-section .content-box p{
	font-size: 16px;
	
}

.functionality-section::after {
	content: '';
	background-image: url('../images/circle-bg.png');
	width: 895px;
	height: 895px;
	position: absolute;
	left: -370px;
	top: 50px;
	z-index: 0;
}
.functionality-section .slick-dots {
	position: absolute;
	top: 35%;
	right: -30px;
}
.functionality-section .slick-dots li button {
	background:none;
	border: 0;
	text-indent: -9999px;
	width: 0;
	height: 0;
	padding: 0;
}
.functionality-section .slick-dots li {
	background: #ddd;
	border: 0;
	text-indent: -9999px;
	width: 8px;
	height: 8px;
	padding: 0;
	margin: 10px 0;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.5s;
}
.functionality-section .slick-dots li.slick-active {
	background: #ff5858;
	height: 25px;
	transition: all 0.5s;
}
.functionality-section .content-box .icon-box{
	background: #fff;
	border: 1px solid transparent;
}
.functionality-section .content-box.red .icon-box{
	border-color: #fee2e2;
	box-shadow: 5px 5px 35px rgba(255,88,88,0.25);
}
.functionality-section .content-box.orange .icon-box{
	border-color: #fdeac1;
	box-shadow: 5px 5px 35px rgba(255,140,4,0.25);
}
.functionality-section .content-box.blue .icon-box{
	border-color: #dde3ff;
	box-shadow: 5px 5px 35px rgba(105,127,225,0.25);
}
.functionality-section .content-box.green .icon-box{
	border-color: #c6fae1;
	box-shadow: 5px 5px 35px rgba(40,162,103,0.25);
}
.functionality-section .content-box.teal .icon-box{
	border-color: #c5eef7;
	box-shadow: 5px 5px 35px rgba(27,169,202,0.25);
}
.functionality-section .content-box.purple .icon-box{
	border-color: #fcd9f2;
	box-shadow: 5px 5px 35px rgba(160,92,140,0.25);
}

.functionality-section .content-box.red{
	background: #f7ecec;
}
.functionality-section .content-box.orange{
	background: #f6f0e6;
}
.functionality-section .content-box.blue{
	background: #e9ecf6;
}
.functionality-section .content-box.green{
	background: #e9f6f0;
}
.functionality-section .content-box.teal{
	background: #eef7f9;
}
.functionality-section .content-box.purple{
	background: #f9edf5;
}
.icon-box {
	display: inline-flex;
	height: 128px;
	width: 128px;
	margin-bottom: 25px;
	border-radius: 25px;
	align-items: center;
	justify-content: center;
	position: relative;
	top: 0;
	transition: all 0.2s linear;
}
.content-box:hover .icon-box {
	top: -5px;
	transition: all 0.2s linear;
}
.icon-box.red {
	background: #ffefef;
	border: 2px solid #fee2e2;
}
.icon-box.orange {
	background: #fff4df;
	border: 2px solid #fdeac1;
}
.icon-box.blue {
	background: #ebefff;
	border: 2px solid #dde3ff;
}
.icon-box.green {
	background: #e1faee;
	border: 2px solid #c6fae1;
}
.icon-box.teal {
	background: #dff9ff;
	border: 2px solid #c5eef7;
}
.icon-box.purple {
	background: #ffebf9;
	border: 2px solid #fcd9f2;
}

.essential-features {
	background-image: url('../images/circle-bg.png');
	background-position: 130% 95%;
	background-repeat: no-repeat;
}
.essential-features .step-1::after, .essential-features .step-3::after {
	position: absolute;
	content: '';
	background-image: url('../images/dotted-line-1.png');
	background-position: center;
	width: 317px;
	height: 220px;
	top: 85%;
	right: -150px;
}
.essential-features .step-2::after{
	position: absolute;
	content: '';
	background-image: url('../images/dotted-line-2.png');
	background-position: center;
	width: 317px;
	height: 220px;
	top: 80%;
	left: -150px;
}
.essential-features .text-container > p{
	font-size: 17px;
	line-height: 28px;
}
.benifit-section .content-box{
	padding: 0 25px;
}
.plugin-section, .benifit-section {
	position: relative;
	overflow: hidden;
}
.plugin-section .container, .benifit-section .container{
	position: relative;
	z-index: 1;
}
.plugin-section::before {
	content: '';
	background-image: url('../images/circle-bg.png');
	width: 895px;
	height: 895px;
	position: absolute;
	right: -370px;
	top: 100px;
	z-index: 0;
}
.plugin-section::after {
	content: '';
	background-image: url('../images/circle-bg.png');
	width: 895px;
	height: 895px;
	position: absolute;
	right: -370px;
	bottom: -100px;
	z-index: 0;
}
.benifit-section::before {
	content: '';
	background-image: url('../images/circle-bg.png');
	width: 800px;
	height: 800px;
	position: absolute;
	left: -200px;
	top: -100px;
	z-index: -1;
	background-size: cover;
}

.testimonial-section{
	position: relative;
}
.testimonial-section::after {
	content: '';
	background-image: url('../images/circle-bg.png');
	width: 750px;
	height: 750px;
	position: absolute;
	left: -280px;
	top: -220px;
	z-index: 0;
	background-size: cover;
	opacity: 0.1;
}
.testimonial-section .container {
	position: relative;
	z-index: 1;
}
.testimonial-section .slick-dots {
	position: relative;
	text-align: center;
	bottom: -20px;
}
.testimonial-section .slick-dots li button {
	background:none;
	border: 0;
	text-indent: -9999px;
	width: 0;
	height: 0;
	padding: 0;
}
.testimonial-section .slick-dots li {
	background: #fff;
	border: 0;
	text-indent: -9999px;
	width: 8px;
	height: 8px;
	padding: 0;
	margin: 0 5px;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.5s;
	display: inline-block
}
.testimonial-section .slick-dots li.slick-active {
	background: #ff5858;
	width: 25px;
	transition: all 0.5s;
}
.testimonial-section .slick-list {
	padding: 0 !important;
}
.testimonial-section .blockquote {
	padding: 0 15px;
	color: #fff;
}
.testimonial-section .quotes {
	padding: 0 30px;
	border: 1px solid #fff;
	display: flex;
	height: 200px;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 15px;
	color: #fff;
	font-size: 18px;
	font-weight: normal;
	opacity: 0.4;
	font-weight: 400;
}
.testimonial-section .quotes::after {
	position: absolute;
	content: '';
	border-top: 8px solid #fff;
	border-bottom: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	bottom: -8px;
	left: 20px;
}
.testimonial-section .slick-center .quotes::after {
	border-top: 8px solid #ff5858;
}
.testimonial-section .quotes .fa-quote-right {
    font-size: 25px;
    margin-right: 15px;
    position: relative;
    top: -30px;
}
.testimonial-section .slick-center .quotes {
	border: 2px solid #ff5858;
	opacity: 1;
}
.testimonial-section .slick-center .quotes .fa-quote-right {
    color: #ff5858;
}
.testimonial-section .blockquote .blockquote-footer {
	font-size: 16px;
	color: #fff;
}
.testimonial-section .blockquote .blockquote-footer::before {
	content: '';
}
.testimonial-section .blockquote  .fa-star {
    font-size: 14px;
}


/* inner page */
.inner-header {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.product-section {
	background-image: url('../images/circle-bg.png');
	background-position: -300px -300px;
	background-repeat: no-repeat;
}
.product-summery .reviews .fa-star{color: #ff5858;}
.product-summery .product-info {
	border-radius: 20px;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.11);
}

.video-thumbs {
	position: relative;
}
.video-thumbs a .play-btn {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -30px 0 0 -30px;
	background: rgba(255,88,88,0.9);
	border-radius: 50%;
	line-height: 60px;
	text-align: center;
	transition: all 0.5s;
}
.video-thumbs a .play-btn i {
	font-size: 26px;
	color: #fff;
	line-height: 60px;
}
.video-thumbs a .play-btn:hover {
	box-shadow:0 0px 10px rgba(255,88,88,0.8);
	transition: all 0.5s;
}
.list-style li {
	margin: 20px 0;
	padding-left: 25px;
	position: relative;
	text-align: left;
}
.list-style li:before {
	content: "\f058";
    font-family: 'Font Awesome\ 5 Free';
	font-weight: 600;
	position: absolute;
	color: #ff5858;
	left: 0;
}


.accordion .card {
  border: none;
  margin-bottom: 1px;
}
.accordion .card h2 {
  background: #f76666;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 20px;
  position: relative;
}
.accordion .card h2.collapsed {
  background: #eef0f4;
  color: #222222;
  font-weight: 400;
}
.accordion .card h2:after {
  content: "\f063";
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 600;
  position: absolute;
  color: #fff;
  right: 10px;
}
.accordion .card h2.collapsed:after {
  content: "\f061";
  color: #727475;
}
.accordion .card-body {
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #f76666;
}
.faq-section, .how-it-work{
	position: relative;
	overflow: hidden;
}
.faq-section .container, .how-it-work .container{
	position: relative;
	z-index: 1;
}
.faq-section::before {
	content: '';
	background-image: url('../images/circle-bg.png');
	width: 800px;
	height: 800px;
	position: absolute;
	left: -200px;
	top: -100px;
	z-index: -1;
	background-size: cover;
}
.product-description {
	background-image: url('../images/circle-bg.png');
	background-position: 130% 95%;
	background-repeat: no-repeat;
}
.how-it-work::before {
	content: '';
	background-image: url('../images/circle-bg.png');
	width: 895px;
	height: 895px;
	position: absolute;
	left: -370px;
	top: 100px;
	z-index: -1;
}
.how-it-work::after {
	content: '';
	background-image: url('../images/circle-bg.png');
	width: 895px;
	height: 895px;
	position: absolute;
	right: -370px;
	bottom: -100px;
	z-index: -1;
}

.newsletter-subscribe .get-started {
	display: block;
	border:1px solid #eaeaea;
}
.newsletter-subscribe .get-started form {
	display: flex;
	align-items: center;
	justify-content: center;
}
.form-control {
	border: 2px solid #e2e2e2;
	border-radius: 30px;
	padding: 15px 25px;
	font-size: 14px;
}
.form-control:focus {
	border-color: #f7a4a4;
	box-shadow: 0 0 0 .2rem rgba(255,88,88,.25);
}
.newsletter-subscribe .get-started form .form-control {
	margin: 0 15px;
}
.blog-posts {
    position: relative;
    overflow: hidden;
}
.blog-posts .container {
	position: relative;
	z-index: 1;
}
.blog-posts::before {
	content: '';
	background-image: url('../images/circle-bg.png');
	width: 895px;
	height: 895px;
	position: absolute;
	left: -250px;
	top: -120px;
	z-index: 0;
}
.blog-posts::after {
	content: '';
	background-image: url('../images/circle-bg.png');
	width: 895px;
	height: 895px;
	position: absolute;
	right: -370px;
	bottom: 0;
	z-index: 0;
}
article.post {
	position: relative;
	margin: 15px;
}
article.post .post-image {
	border: 1px solid #ececec;
	overflow: hidden;
}
article.post .post-image a{
	display: block;
}
article.post .post-image a:hover img{
	transform: scale(1.2) rotate(5deg);
	transition: all 0.5s;
}
article.post  .post-image img{
	width: 100%;
	transition: all 0.5s;
}
article.post .post-date {
	position: absolute;
	top: 50px;
	left: -30px;
	background: #f0f0f0;
	padding: 5px;
	width: 60px;
}
article.post .post-date .bg-white {
	background: #fff;
	border: 1px solid #e5e5e5;
	text-align: center;
	padding: 5px;
}
article.post .post-date strong {
	font-size: 18px;
	font-weight: 600;
}
article.post .post-date span {
	font-size: 13px;
	text-transform: uppercase;
	line-height: 15px;
	display: block;
}
article.post .post-author {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
article.post .post-author .rounded {
	border-radius: 50% !important;
}
article.post .post-title {
	font-size: 26px;
	font-weight: 600;
	line-height: normal;
}
article.post .read-more {
	color: #838383;
	font-size: 14px;
}
article.post .read-more:hover {
	color: #ff5858
}
.plugins-box {
	text-align: center;
	padding: 25px;
	margin: 10px 0;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	height: 200px;
}
.plugins-box.box1 {
	background: #fdebeb;
}
.plugins-box.box3 {
	background: #fbedf6;
}
.plugins-box.box4 {
	background: #e2f9f8;
}
.plugins-box.box5 {
	background: #efebfb;
}
.plugins-box.box6 {
	background: #fbf0e9;
}
article.post.post-detail .post-date {
	top: 110px;
}
article.post .social-share {
	position: absolute;
	left: -80px;
	top: 5px;
}
article.post .social-share li {
	margin-bottom: 10px;
}
article.post .social-share a {
	background: #ff5858;
	width: 40px;
	height: 40px;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	font-size: 18px;
	border-radius: 50%;
	color: #fff;
	margin-right: 20px;
}
article.post .social-share a:hover {
	background: #3d44b4;
	box-shadow: 0 0px 10px rgba(61,68,180,0.8);
}
article.post blockquote {
	border-left: 5px solid #eaeaea;
	padding-left: 15px;
	font-size: 22px;
}
.comments-title {
	padding: 10px 20px;
	border-bottom: 1px solid #e3e3e3;
	text-transform: uppercase;
}
.comment-list .comment {
	display: flex;
	margin: 15px 0;
	padding: 15px 20px;
	border-bottom: 1px solid #e3e3e3;
}
.comment-list .comment  .avtar {
	width: 135px;
	margin-right: 20px;
}
.comment-list .comment  .avtar img{
	border-radius: 50px;
}
.comment-metadata {
	margin-bottom: 5px;
	display: flex;
	justify-content: space-between;
}
.comment-metadata .author {
	font-size: 18px;
	font-weight: 500;
}
.comment-metadata time {
	color: #959595;
}
.comment-content p{
	font-size: 14px;
	margin-bottom: 10px;
}
.comment-respond {
	margin-top: 25px;
}
.blog-pagination {
	padding: 30px 0;
	border-bottom: 1px solid #e3e3e3;
	border-top: 1px solid #e3e3e3;
}
.blog-pagination ul {
	display: flex;
}
.blog-pagination ul li {
	padding: 0 15px;
	position: relative;
	border-left: 1px solid #e3e3e3;
}
.blog-pagination ul li:first-child {
	border-left: 0;
}
.blog-prev, .blog-next {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.blog-pagination ul li .content {
	padding: 0 15px;
}
.blog-pagination ul li .blog-next .content {
	text-align: right;
}
.blog-pagination .blog-image {
	width: 180px;
}
.blog-pagination ul li .content h4{
	margin-bottom: 0;
}
.blog-pagination ul li .content a.link {
	color: #b0aeae;
	text-transform: uppercase;
	margin: 10px 0;
}
.featured-post .feature-list {
	padding: 0 10px;
	border: 1px solid #ececec;
}
.featured-post .feature-list li{
	padding: 10px 5px;
	border-bottom: 1px solid #ececec;
	font-weight: 500;
}
.featured-post .feature-list li:last-child{
	border-bottom:0;
}
/************************* 
	Responsive CSS 
***************************/
@media (max-width:1680px) {

}
@media (max-width:1439px) {
.hero-banner {
	background-position: 480px center;
	min-height: 100%;
	background-size: contain;
}
.hero-banner .slider-caption h4::before {
	bottom: 6px;
}
.hero-banner .slider-caption ul::before {
	bottom: -28px;
}
.hero-banner .woocommerce .slider-caption ul::before {
	height: 258px;
}
.hero-banner .elemetor .slider-caption ul::before {
	height: 205px;
}
.hero-banner .contact-form .slider-caption ul::before {
	height: 150px;
}
.hero-banner .gravity-form .slider-caption ul::before {
	height: 98px;
}
.hero-banner .wpform .slider-caption ul::before {
	height: 45px;
}
.inner-page .functionality-section .content-box {
	padding: 40px 30px;
	margin: 0;
}
.inner-page .functionality-section .content-box h6 {
	font-size: 14px;
	line-height: 26px;
}
}
@media (max-width:1359px) {

}
@media (max-width:1151px) {
.slider-image .icon {
	margin: 25px 0;
	max-width: 50px;
}
.functionality-section .content-box {
	padding: 25px;
}
.functionality-section .slick-dots, .hero-banner .slick-dots {
	right: -10px;
}
}

@media (max-width:991px) {
.hero-banner {
	padding: 110px 0 50px 0;
	min-height: auto;
	background-size: cover;
	background-position: 250px center;
}
.essential-features .step-1::after,
.essential-features .step-2::after,
.essential-features .step-3::after {
	display: none;
}
.plugin-section::before, .plugin-section::after {
    width: 450px;
    height: 550px;
    right: 0px;
    background-size: cover;
}
.benifit-section::before {
	width: 500px;
	height: 500px;
	left: -100px;
	top: -30px;
}
.hero-banner .woocommerce .slider-caption ul::before {
	height: 248px;
}
.hero-banner .elemetor .slider-caption ul::before {
	height: 196px;
}
.hero-banner .contact-form .slider-caption ul::before {
	height: 145px;
}
.hero-banner .gravity-form .slider-caption ul::before {
	height: 94px;
}
.hero-banner .wpform .slider-caption ul::before {
	height: 44px;
}
.hero-banner .slider-image .btn-default {
    font-size: 12px;
    padding: 5px 10px;
    margin: 0;
}
.benifit-section .content-box {
	text-align: center;
}
.product-image {
	text-align: center;
	margin-bottom: 30px;
}
.video-thumbs > img {
	width: 100%;
}
.newsletter-subscribe .get-started form {
	flex-direction: column;
}
.newsletter-subscribe .get-started form .form-control {
	margin: 10px 0;
}
article.post .social-share {
	position: relative;
	left: 0;
	top: 0;
}
article.post .social-share ul {
	display: flex;
}
}

@media (max-width:767px) {
.hero-banner {
    padding: 75px 0 25px 0;
    background:none;
}	

.functionality-section::after {
    width: 300px;
    height: 300px;
    left: -90px;
    top: 30px;
    background-size: cover;
}
.get-started {
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 15px;
    text-align: center;
}
.testimonial-section .quotes {
    padding: 20px 10px;
    height: auto;
}
.testimonial-section::after {
	width: 450px;
	height: 450px;
	left: -180px;
	top: -50px;
	background-size: cover;
	opacity: 0.1;
}
.product-info .action .btn {
	margin-bottom: 15px;
	width: 100%;
}
article.post .post-date {
	top: 0;
	left: 0;
}
.comment-form .form-control{
	margin-bottom: 10px;
}
.blog-pagination ul {
	display: block;
}
.blog-pagination ul li {
	padding: 0 15px;
	position: relative;
	border-left: 0;
	margin: 10px 0;
}
.blog-pagination ul li .blog-next  {
	flex-direction: row-reverse;
}
.blog-pagination ul li .blog-next .content {
	text-align: left;
}
}

@media (max-width:413px) {
.functionality-section::after,
.plugin-section::before, 
.plugin-section::after,
.benifit-section::before {
    width: 300px;
    height: 300px;
}

}



.support-section{
	background-image: url('../images/circle-bg.png');
	background-repeat: no-repeat;
	background-position: -300px -150px;
	position: relative;
}
.support-section .signin-box {
	max-width: 590px;
	margin: 0 auto;
}
.support-section .btn-lg {
	max-width: 280px;
	margin: 0 auto;
}
.support-section .signin-box .signup, .support-section .signin-top {
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
}
.support-section .signin-box .panel-body {
	background: #fff;
	border: 1px solid #eaeaea;
	padding: 50px 70px;
	border-radius: 30px;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	margin: 0 auto;
}
.support-section .signin-box .form-group label {
	margin-left: 25px;
	padding: 0;
}
.support-section .form-control {
	border: 2px solid #e2e2e2;
	border-radius: 30px;
	padding: 15px 25px;
	background: #fff;
	min-height: 55px;
}
.support-section .general-form .form-control:focus, 
.support-section .general-form .form-control.white:focus {
	border-color: #f7a4a4;
	background-color: #fff;
}
.support-section .forgot_password {
	text-align: right;
	margin: 0 0 5px 0;
}
.support-section .forgot_password a, .signin-box .signin a {
	color: #ff5858;
}
.support-section .sidebar-nav {
	background: #fff;
	border: 2px solid #eaeaea;
	padding: 10px 20px;
	border-radius: 20px;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	margin-top: 55px;
}
.support-section .sidebar-nav li a {
	display: block;
	padding: 10px 0;
	position: relative;
	font-weight: 500;
	font-size: 16px;
}
.support-section .sidebar-nav li a::after {
	position: absolute;
	content: "\f061";
	font-family: 'Font Awesome\ 5 Free';
	font-weight: 600;
	right: -5px;
	font-size: 14px;
	color: #646464;
	top: 15px;
}
.signin-box .signin {
	text-align: center;
	margin-top: 12px;
}
.support-section .signup-box {
	max-width: 770px;
	margin: 0 auto;
}
.support-section .signup-box .panel-body {
	padding: 20px;
}
.support-section label.custom-heading {
	font-size: 16px;
	color: #222;
	font-weight: 500;
	margin-bottom: 5px;
}
.support-section select.form-control {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url('../images/select_arrow.svg');
	background-position: 96% center;
	background-repeat: no-repeat;
	background-size: 16px;
}
.support-section .signin-box .form-group label.sub-heading {
	font-size: 12px;
	color: #686c72;
	display: block;
}
.support-section .signup-box .form-control {
	margin-bottom: 15px;
}
.support-section .signup-box .select2-container .select2-choice {
	height: auto;
	line-height: normal;
	background: none;
	border: 0;
}
.support-section .signup-box .select2-container .select2-choice > .select2-chosen {
	margin-right: 0;
	padding: 0;
	background: #fff;
}
.support-section .signup-box .select2-container .select2-choice, 
.support-section .signup-box .select2-container .select2-choices, 
.support-section .signup-box .select2-container .select2-choices .select2-search-field input {
	font-family: inherit;
}
.support-section .signup-box .select2-container .select2-choice .select2-arrow {
	position: absolute;
	right: 0;
	padding: 10px;
}
.support-section .signup-box .select2-container .select2-choice .select2-arrow::after {
	content: "\f063";
	font-family: 'Font Awesome\ 5 Free';
	font-weight: 600;
	position: absolute;
	left: 8px;
	top: 5px;
	color: #999;
}
.support-section .signup-box .select2-container.select2-dropdown-open .select2-choice .select2-arrow::after {
	content: "\f062";
}
.support-section .signup-box .select2-container .select2-choice .select2-arrow b {
	background: none;
}
.select2-results .select2-highlighted {
	color: #222;
	background-color: #ddd;
}
@media (max-width: 1151px){
.support-section .sidebar-nav {
	padding: 10px 15px;
	min-width: 190px;
}
.support-section .signin-box .panel-body {
	padding: 40px;
	max-width: 480px;
}
}
@media (max-width: 991px){
header.sticky .navbar-nav > .nav-item > a, .inner-page header .navbar-nav > .nav-item > a {
	color: #fff;
}
.support-section .signup-box {
	max-width: 670px;
}
.support-section .signup-box .panel-body{
	max-width: 100%;
}
.support-section .signin-box {
	width: 100%;
}
}
@media (max-width: 767px){
.support-section .signin-box .panel-body {
	padding: 20px;
}
}