:root {
	--white: #ffffff;
}

body {
	font-family: Lato, sans-serif;
	background-color: var(--white);
	position: relative;
	font-size: 14px;
	overflow-x: hidden
}

h1 {
	line-height: 1.4em;
	font-size: 42px;
	color: var(--white);
	opacity: 0.85;
}

h2 {
	line-height: 28px;
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 30px;
	letter-spacing: 1px;
	color: #5f57ea
}

h3 {
	line-height: 28px;
	font-size: 24px;
	font-weight: 700;
	margin-top: 20px;
	color: #586082;
	letter-spacing: 1px
}

h4 {
	line-height: 28px;
	font-size: 20px;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 0;
	color: var(--white);
	letter-spacing: 1px
}

h5 {
	line-height: 28px;
	font-size: 16px;
	font-weight: 400;
	margin-top: 12px;
	margin-bottom: 0;
	letter-spacing: 0.1em;
	color: var(--white)
}

h6 {
	line-height: 28px;
	font-size: 14px;
	letter-spacing: 0.1em;
	margin-top: 25px;
	color: #586082;
	margin-bottom: 25px
}

p {
	line-height: 23px;
	font-size: 16px;
	color: #586082;
	letter-spacing: 0.05rem
}

a:hover {
	color: #9647db;
	text-decoration: none;
	cursor: pointer
}

a:focus {
	outline: none
}

ul {
	list-style-type: none;
	padding: 0;
	margin: 0
}

.theme-bg {
	background: -webkit-gradient(linear, left top, right top, from(#5f57ea), to(#9647db));
	background: linear-gradient(to right, #5f57ea 0%, #9647db 100%)
}

.text-black {
	color: #000 !important
}

button:focus {
	outline: none
}

.f-bold {
	font-weight: 700
}

.f-color {
	color: #586082
}

.ml-12 {
	margin-left: 12px
}

.section-title {
	margin-bottom: 50px
}

.section-title .line {
	width: 50px;
	height: 5px;
	margin: 0 auto;
	position: relative;
	background-color: #5f57ea
}

.section-title .line:after {
	content: "";
	position: absolute;
	width: 90px;
	border: 2.5px dashed #5f57ea;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 0;
	margin-left: -20px
}

.section-title .line.white {
	background-color: var(--white)
}

.section-title .line.white:after {
	border: 2.5px dashed var(--white)
}

.section-title .line~p {
	margin-top: 20px
}

.theme-text {
	color: #9647db !important
}

.margin-50 {
	margin-top: 50px
}

.btn-theme {
	background-color: #5f57ea;
	background: -webkit-gradient(linear, left top, right top, from(#5f57ea), to(#9647db));
	background: linear-gradient(to right, #5f57ea 0%, #9647db 100%);
	color: var(--white) !important;
	font-size: 14px;
	border-radius: 5px;
	padding: 10px 30px;
	font-weight: 600;
	text-transform: capitalize;
	display: inline-block;
	border: 0;
	letter-spacing: 1px
}

.btn-theme:hover {
	background: #5f57ea;
	background-color: #5f57ea
}

.btn-theme-primary {
	background-color: #9647db;
	color: var(--white) !important;
	font-size: 14px;
	text-transform: uppercase;
	border-radius: 50px;
	padding: 10px 30px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	border: 1px solid #9647db
}

.btn-theme-primary:hover {
	background-color: transparent;
	color: #9647db !important;
	border: 1px solid #9647db;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.d-flex-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%
}

.display-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

#instantclick-bar {
	background: #9647db
}

section {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
	overflow: hidden
}

.margin-top-100 {
	margin-top: 110px
}

.tap-top {
	width: 40px;
	height: 40px;
	position: fixed;
	bottom: 150px;
	right: 30px;
	z-index: 99;
	color: var(--white);
	text-align: center;
	background: -webkit-gradient(linear, left top, right top, from(#5f57ea), to(#9647db));
	background: linear-gradient(to right, #5f57ea 0%, #9647db 100%);
	border-radius: 100%;
	font-size: 22px;
	border: 1px solid var(--white);
	cursor: pointer;
	display: none
}

.tap-top i {
	vertical-align: middle
}

.loader-wrapper {
	height: 100vh;
	width: 100vw;
	background-color: var(--white);
	display: block;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	z-index: 1031;
	top: 0
}

#loader {
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px)
}

@-webkit-keyframes loader {
	0% {
		left: -100px
	}
	100% {
		left: 110%
	}
}

@keyframes loader {
	0% {
		left: -100px
	}
	100% {
		left: 110%
	}
}

#box {
	width: 50px;
	height: 50px;
	background: -webkit-gradient(linear, left top, right top, from(#5f57ea), to(#9647db));
	background: linear-gradient(to right, #5f57ea 0%, #9647db 100%);
	-webkit-animation: animate .5s linear infinite;
	animation: animate .5s linear infinite;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 3px
}

@-webkit-keyframes animate {
	17% {
		border-bottom-right-radius: 3px
	}
	25% {
		-webkit-transform: translateY(9px) rotate(22.5deg);
		transform: translateY(9px) rotate(22.5deg)
	}
	50% {
		-webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		border-bottom-right-radius: 40px
	}
	75% {
		-webkit-transform: translateY(9px) rotate(67.5deg);
		transform: translateY(9px) rotate(67.5deg)
	}
	100% {
		-webkit-transform: translateY(0) rotate(90deg);
		transform: translateY(0) rotate(90deg)
	}
}

@keyframes animate {
	17% {
		border-bottom-right-radius: 3px
	}
	25% {
		-webkit-transform: translateY(9px) rotate(22.5deg);
		transform: translateY(9px) rotate(22.5deg)
	}
	50% {
		-webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		border-bottom-right-radius: 40px
	}
	75% {
		-webkit-transform: translateY(9px) rotate(67.5deg);
		transform: translateY(9px) rotate(67.5deg)
	}
	100% {
		-webkit-transform: translateY(0) rotate(90deg);
		transform: translateY(0) rotate(90deg)
	}
}

#shadow {
	width: 50px;
	height: 5px;
	background: #000;
	opacity: 0.1;
	position: absolute;
	top: 59px;
	left: 0;
	border-radius: 50%;
	-webkit-animation: shadow .5s linear infinite;
	animation: shadow .5s linear infinite
}

@-webkit-keyframes shadow {
	50% {
		-webkit-transform: scale(1.2, 1);
		transform: scale(1.2, 1)
	}
}

@keyframes shadow {
	50% {
		-webkit-transform: scale(1.2, 1);
		transform: scale(1.2, 1)
	}
}

.theme-nav {
	padding-top: 0px;
	padding-bottom: 0px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}

.theme-nav .navbar {
	background-color: transparent
}

.theme-nav .nav-link {
	display: block;
	padding: 25px 1rem;
	font-weight: normal;
	letter-spacing: 0.05rem
}

.theme-nav .nav-item {
	font-size: 14px;
	padding: 20px 5px;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 600
}

.theme-nav .dropdown-menu .nav-item {
	font-size: 13px;
	padding: 0
}

.theme-nav .dropdown-menu .nav-link {
	color: #5f57ea !important
}

.theme-nav.darkHeader {
	padding-top: 0;
	padding-bottom: 0
}

.theme-nav.darkHeader .nav-item {
	padding: 0px 5px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}

.theme-nav.darkHeader .dropdown-menu .nav-item {
	padding: 0
}

.theme-nav.darkHeader .dropdown-menu .nav-item .nav-link.active {
	color: #18e7d3;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.theme-nav .navbar-nav .active>.nav-link {
	color: #9647db
}

.theme-nav .navbar-toggler-icon i {
	color: var(--white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%
}

.navbar-toggler {
	padding-right: 0
}

.navbar-toggler .navbar-toggler-icon {
	width: auto
}

.navbar-nav .nav-item .nav-link {
	color: rgba(255, 255, 255, 0.6)
}

.navbar-nav>li.dropdown {
	position: relative
}

.navbar-nav a.nav-link.active {
	color: var(--white)
}

.btn-menu {
	background-color: #9647db;
	color: var(--white) !important;
	border-radius: 50px;
	padding: 10px 54px;
	width: 150px;
	text-align: center
}

.darkHeader {
	background: -webkit-gradient(linear, left top, right top, from(#5f57ea), to(#9647db));
	background: linear-gradient(to right, #5f57ea 0%, #9647db 100%);
	-webkit-box-shadow: 1px 1px 35px 0 rgba(51, 51, 51, 0.4);
	box-shadow: 1px 1px 35px 0 rgba(51, 51, 51, 0.4);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}

.slide-bg {
	background: -webkit-gradient(linear, left top, right top, from(#5f57ea), to(#9647db));
	background: linear-gradient(to right, #5f57ea 0%, #9647db 100%);
	height: 100vh;
	padding-bottom: 0;
	padding-top: 80px
}

.slide-bg .container {
	height: 100%
}

.slide-bg .container .row {
	height: 100%
}

.slide-bg .container .row .home-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%
}

.slide-text {
	margin-top: -25px
}

.slide-text h4 {
	font-size: 18px;
	color: #cbc8f8;
	font-weight: 400
}

.slid-btn {
	margin-top: 70px
}

.slid-btn a:first-child {
	margin-right: 15px
}

.main-title {
	color: var(--white);
	font-weight: 600
}

.sub-title {
	font-size: 20px;
	margin-bottom: 0
}

.mobile-slid {
	text-align: center
}

.profile-msg {
	position: absolute;
	top: 41%;
	left: -25px
}

.profile-msg img {
	-webkit-animation: movebounce 2.1s linear infinite;
	animation: movebounce 2.1s linear infinite
}

@-webkit-keyframes movebounce {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
	50% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px)
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
}

@keyframes movebounce {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
	50% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px)
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
}

@-webkit-keyframes moveleftbounce {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px)
	}
	50% {
		-webkit-transform: translateX(8px);
		transform: translateX(8px)
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px)
	}
}

@keyframes moveleftbounce {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px)
	}
	50% {
		-webkit-transform: translateX(8px);
		transform: translateX(8px)
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px)
	}
}

.awesome {
	position: absolute;
	top: 56%;
	right: 25px
}

.awesome img {
	-webkit-animation: moveleftbounce 2.1s linear infinite;
	animation: moveleftbounce 2.1s linear infinite
}

.profile-1 {
	position: absolute;
	bottom: 7%;
	right: -30px
}

.profile-1:before {
	-webkit-animation: 2.5s anim-effct-slide 0s linear infinite;
	animation: 2.5s anim-effct-slide 0s linear infinite;
	-webkit-box-shadow: 0 0 0 80px #e8e8e8;
	box-shadow: 0 0 0 80px #e8e8e8;
	position: absolute;
	content: '';
	width: 110px;
	height: 110px;
	top: 26%;
	left: 26%;
	border-radius: 50%;
	z-index: 0
}

.emoji {
	position: absolute;
	left: 10%;
	bottom: 15%
}

.emoji img {
	-webkit-animation: moveleftbounce 2.1s linear infinite;
	animation: moveleftbounce 2.1s linear infinite
}

.profile-2 {
	position: absolute;
	left: 0;
	top: 5%
}

.profile-2:before {
	-webkit-animation: 2.5s anim-effct-slide1 0s linear infinite;
	animation: 2.5s anim-effct-slide1 0s linear infinite;
	-webkit-box-shadow: 0 0 0 80px rgba(232, 232, 232, 0.1);
	box-shadow: 0 0 0 80px rgba(232, 232, 232, 0.1);
	position: absolute;
	content: '';
	width: 110px;
	height: 110px;
	top: 26%;
	left: 26%;
	border-radius: 50%;
	z-index: 0
}

@-webkit-keyframes anim-effct-slide {
	0% {
		-webkit-box-shadow: 0 0 0 8px #e0e0e0;
		box-shadow: 0 0 0 8px #e0e0e0;
		opacity: 1
	}
	50% {
		-webkit-box-shadow: 0 0 0 15px rgba(224, 224, 224, 0.6);
		box-shadow: 0 0 0 15px rgba(224, 224, 224, 0.6);
		opacity: 1
	}
	100% {
		-webkit-box-shadow: 0 0 0 25px rgba(224, 224, 224, 0);
		box-shadow: 0 0 0 25px rgba(224, 224, 224, 0);
		opacity: 0
	}
}

@-webkit-keyframes anim-effct-testi {
	0% {
		-webkit-box-shadow: 0 0 0 8px #e0e0e0;
		box-shadow: 0 0 0 8px #e0e0e0;
		opacity: 1
	}
	50% {
		-webkit-box-shadow: 0 0 0 15px rgba(224, 224, 224, 0.6);
		box-shadow: 0 0 0 15px rgba(224, 224, 224, 0.6);
		opacity: 1
	}
	100% {
		-webkit-box-shadow: 0 0 0 25px rgba(224, 224, 224, 0);
		box-shadow: 0 0 0 25px rgba(224, 224, 224, 0);
		opacity: 0
	}
}

@keyframes anim-effct-testi {
	0% {
		-webkit-box-shadow: 0 0 0 8px #e0e0e0;
		box-shadow: 0 0 0 8px #e0e0e0;
		opacity: 1
	}
	50% {
		-webkit-box-shadow: 0 0 0 15px rgba(224, 224, 224, 0.6);
		box-shadow: 0 0 0 15px rgba(224, 224, 224, 0.6);
		opacity: 1
	}
	100% {
		-webkit-box-shadow: 0 0 0 25px rgba(224, 224, 224, 0);
		box-shadow: 0 0 0 25px rgba(224, 224, 224, 0);
		opacity: 0
	}
}

@-webkit-keyframes anim-effct-testi-back {
	0% {
		-webkit-box-shadow: 0 0 0 8px rgba(236, 236, 236, 0.11);
		box-shadow: 0 0 0 8px rgba(236, 236, 236, 0.11);
		opacity: 1
	}
	50% {
		-webkit-box-shadow: 0 0 0 15px rgba(236, 236, 236, 0.11);
		box-shadow: 0 0 0 15px rgba(236, 236, 236, 0.11);
		opacity: 1
	}
	100% {
		-webkit-box-shadow: 0 0 0 25px rgba(236, 236, 236, 0.11);
		box-shadow: 0 0 0 25px rgba(236, 236, 236, 0.11);
		opacity: 1
	}
}

@keyframes anim-effct-testi-back {
	0% {
		-webkit-box-shadow: 0 0 0 8px rgba(236, 236, 236, 0.11);
		box-shadow: 0 0 0 8px rgba(236, 236, 236, 0.11);
		opacity: 1
	}
	50% {
		-webkit-box-shadow: 0 0 0 15px rgba(236, 236, 236, 0.11);
		box-shadow: 0 0 0 15px rgba(236, 236, 236, 0.11);
		opacity: 1
	}
	100% {
		-webkit-box-shadow: 0 0 0 25px rgba(236, 236, 236, 0.11);
		box-shadow: 0 0 0 25px rgba(236, 236, 236, 0.11);
		opacity: 1
	}
}

@-webkit-keyframes anim-effct-slide1 {
	0% {
		-webkit-box-shadow: 0 0 0 8px rgba(232, 232, 232, 0.1);
		box-shadow: 0 0 0 8px rgba(232, 232, 232, 0.1);
		opacity: 1
	}
	50% {
		-webkit-box-shadow: 0 0 0 15px rgba(224, 224, 224, 0.6);
		box-shadow: 0 0 0 15px rgba(224, 224, 224, 0.6);
		opacity: 1
	}
	100% {
		-webkit-box-shadow: 0 0 0 25px rgba(224, 224, 224, 0);
		box-shadow: 0 0 0 25px rgba(224, 224, 224, 0);
		opacity: 0
	}
}

.animated-circle {
	position: absolute;
	margin-right: 50px;
	margin-left: 90px;
	top: 50px
}

.animated-circle:before {
	-webkit-animation: 2.5s anim-effect-front 0s linear infinite;
	animation: 2.5s anim-effect-front 0s linear infinite;
	-webkit-box-shadow: 0 0 0 10px #5f57ea;
	box-shadow: 0 0 0 10px #5f57ea;
	position: absolute;
	content: '';
	width: 105px;
	height: 105px;
	top: 0;
	left: 0;
	border-radius: 50%;
	z-index: 0
}

.animated-circle.three:before {
	-webkit-animation: 2.5s anim-effect-front 0s linear infinite;
	animation: 2.5s anim-effect-front 0s linear infinite;
	-webkit-box-shadow: 0 0 0 10px rgba(95, 87, 234, 0.45);
	box-shadow: 0 0 0 10px rgba(95, 87, 234, 0.45)
}

.animated-circle.three:after {
	-webkit-animation: 2.5s anim-effect-back 0s linear infinite;
	animation: 2.5s anim-effect-back 0s linear infinite;
	-webkit-box-shadow: 0 0 0 10px rgba(95, 87, 234, 0.45);
	box-shadow: 0 0 0 10px rgba(95, 87, 234, 0.45)
}

@-webkit-keyframes anim-effect-front {
	0% {
		-webkit-box-shadow: 0 0 0 15px #e0e0e0;
		box-shadow: 0 0 0 15px #e0e0e0;
		opacity: 1
	}
	50% {
		-webkit-box-shadow: 0 0 0 30px rgba(224, 224, 224, 0.6);
		box-shadow: 0 0 0 30px rgba(224, 224, 224, 0.6);
		opacity: 1
	}
	100% {
		-webkit-box-shadow: 0 0 0 40px rgba(224, 224, 224, 0);
		box-shadow: 0 0 0 40px rgba(224, 224, 224, 0);
		opacity: 0
	}
}

@keyframes anim-effect-front {
	0% {
		-webkit-box-shadow: 0 0 0 10px rgba(95, 87, 234, 0.45);
		box-shadow: 0 0 0 10px rgba(95, 87, 234, 0.45);
		opacity: 1
	}
	50% {
		-webkit-box-shadow: 0 0 0 30px rgba(224, 224, 224, 0.6);
		box-shadow: 0 0 0 30px rgba(224, 224, 224, 0.6);
		opacity: 1
	}
	100% {
		-webkit-box-shadow: 0 0 0 40px rgba(224, 224, 224, 0);
		box-shadow: 0 0 0 40px rgba(224, 224, 224, 0);
		opacity: 0
	}
}

@-webkit-keyframes anim-effect-back {
	0% {
		-webkit-box-shadow: 0 0 0 30px #ececec;
		box-shadow: 0 0 0 30px #ececec;
		opacity: 1
	}
	50% {
		-webkit-box-shadow: 0 0 0 50px rgba(236, 236, 236, 0.6);
		box-shadow: 0 0 0 50px rgba(236, 236, 236, 0.6);
		opacity: 1
	}
	100% {
		-webkit-box-shadow: 0 0 0 80px rgba(236, 236, 236, 0);
		box-shadow: 0 0 0 80px rgba(236, 236, 236, 0);
		opacity: 1
	}
}

@keyframes anim-effect-back {
	0% {
		-webkit-box-shadow: 0 0 0 20px rgba(236, 236, 236, 0.11);
		box-shadow: 0 0 0 20px rgba(236, 236, 236, 0.11);
		opacity: 1
	}
	50% {
		-webkit-box-shadow: 0 0 0 50px rgba(236, 236, 236, 0.11);
		box-shadow: 0 0 0 50px rgba(236, 236, 236, 0.11);
		opacity: 1
	}
	100% {
		-webkit-box-shadow: 0 0 0 70px rgba(236, 236, 236, 0.11);
		box-shadow: 0 0 0 70px rgba(236, 236, 236, 0.11);
		opacity: 1
	}
}

.theme-bg .animation-circle i {
	bottom: 0
}

.slider-mobile {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	top: 0
}

.social-icon {
	display: none;
	padding: 15px;
	background: -webkit-gradient(linear, left top, right top, from(#5f57ea), to(#9647db));
	background: linear-gradient(to right, #5f57ea 0%, #9647db 100%);
	text-align: center;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	position: absolute;
	border-radius: 3px;
	bottom: 0;
	left: -1px;
	width: calc(100% + 2.5px)
}

.social-icon li {
	display: inline-block;
	font-size: 16px;
	margin-left: 20px;
	margin-right: 20px;
	color: var(--white);
	line-height: 35px
}

.social-icon li:first-child {
	margin-left: 0
}

.social-icon li:last-child {
	margin-right: 0
}

.social-icon li a {
	color: var(--white);
	-webkit-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in
}

.footer-logo {
	padding: 20px 0
}

.top-bottom-padng {
	margin-bottom: 50px;
	margin-top: 55px
}

.download-text h3 {
	margin-top: 0;
	color: var(--white);
	font-weight: 500;
	font-size: 22px;
	margin-bottom: 0
}

.download-img ul li {
	margin-right: 7px;
	display: inline-block;
	margin-top: 0px
}

.download-img img {
	width: 120px
}
@keyframes ripple1 {
	0% {
		-webkit-transform: scale(5.5);
		transform: scale(5.5);
		opacity: 0.3
	}
	100% {
		-webkit-transform: scale(8.5);
		transform: scale(8.5);
		opacity: 0.0
	}
}

@-webkit-keyframes ripple1 {
	0% {
		-webkit-transform: scale(5.5);
		transform: scale(5.5);
		opacity: 0.3
	}
	100% {
		-webkit-transform: scale(8.5);
		transform: scale(8.5);
		opacity: 0.0
	}
}

@keyframes ripple2 {
	0% {
		-webkit-transform: scale(3.5);
		transform: scale(3.5)
	}
	100% {
		-webkit-transform: scale(5.5);
		transform: scale(5.5)
	}
}

@-webkit-keyframes ripple2 {
	0% {
		-webkit-transform: scale(3.5);
		transform: scale(3.5)
	}
	100% {
		-webkit-transform: scale(5.5);
		transform: scale(5.5)
	}
}

@keyframes ripple3 {
	0% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5)
	}
	100% {
		-webkit-transform: scale(3.5);
		transform: scale(3.5)
	}
}

@-webkit-keyframes ripple3 {
	0% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5)
	}
	100% {
		-webkit-transform: scale(3.5);
		transform: scale(3.5)
	}
}
.animation-circle.absolute i {
	left: -70px;
	top: 28%
}

.animation-circle i {
	position: absolute;
	height: 100px;
	width: 100px;
	background: -webkit-gradient(linear, left top, right top, from(#5f57ea), to(#9647db));
	background: linear-gradient(to right, #5f57ea 0%, #9647db 100%);
	border-radius: 100%;
	opacity: 0.5;
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	-webkit-animation: ripple1 3s linear infinite;
	animation: ripple1 3s linear infinite
}

.animation-circle i:nth-child(2) {
	-webkit-animation: ripple2 3s linear infinite;
	animation: ripple2 3s linear infinite
}

.animation-circle i:nth-child(3) {
	-webkit-animation: ripple3 3s linear infinite;
	animation: ripple3 3s linear infinite
}

.animation-circle-inverse i {
	background: #eee;
	right: 0;
	-webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11);
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11);
	position: absolute;
	height: 100px;
	width: 100px;
	border-radius: 100%;
	opacity: 0.3;
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	-webkit-animation: ripple1 3s linear infinite;
	animation: ripple1 3s linear infinite
}

.animation-circle-inverse i:nth-child(2) {
	-webkit-animation: ripple2 3s linear infinite;
	animation: ripple2 3s linear infinite
}

.animation-circle-inverse i:nth-child(3) {
	-webkit-animation: ripple3 3s linear infinite;
	animation: ripple3 3s linear infinite
}

.tags .badge-theme {
	padding: 5px 7px;
	font-size: 12px;
	background-color: #5f57ea;
	margin-right: 2px;
	margin-bottom: 5px;
	color: var(--white);
	font-weight: 400;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease
}

.tags .badge-theme:hover {
	background-color: #7d27c8
}

.page-item.active .page-link {
	background-color: #5f57ea;
	border-color: #5f57ea
}

.form-check-input.is-invalid~.form-check-label {
	color: #586082;
	font-size: 15px
}

.margin-bottom>div+div+div+div .review-box {
	margin-top: 30px
}

.mb-50 {
	margin-bottom: 50px
}
.landing-page .theme-bg {
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-bottom: 0;
	padding-top: 65px
}

.landing-page .theme-bg.grab {
	min-height: auto
}

.landing-page .btn-inverse {
	background: var(--white);
	color: #5f57ea;
	border-radius: 5px;
	padding: 10px 30px;
	letter-spacing: 1px;
	font-weight: 600
}

.landing-page .features-bg {
	background-color: #fbfbfb
}

.landing-page .features-bg ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.landing-page .back-img p {
	font-size: 20px;
	line-height: 1.6;
	color: var(--white);
	font-weight: 400
}

.landing-page .logo-section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.landing-page .landing-caption {
	font-size: 40px;
	line-height: 1.5;
	font-weight: bold;
	text-transform: capitalize
}

.landing-page .pt-70 {
	padding-top: 70px
}

.landing-page .border-shape {
	display: block;
	left: 0;
	margin: 15px auto;
	position: relative;
	right: 0;
	text-align: center;
	top: 0;
	width: 80px;
	height: 4px
}

.landing-page .demo-description {
	line-height: 26px;
	text-align: center
}

.landing-page .mt-35 {
	margin-top: 35px
}

.landing-page .pc-bg {
	background-image: url(../images/screen1.png);
	width: 100%;
	height: 500px;
	display: inline-block;
	position: relative;
	background-repeat: no-repeat;
	-webkit-box-shadow: 0 0 10px 2px #ddd;
	box-shadow: 0 0 10px 2px #ddd;
	background-color: var(--white);
	background-size: contain;
	max-width: 390px
}

.landing-page .img-scroll {
	-webkit-transition: all 9s ease-out 0s;
	transition: all 9s ease-out 0s;
	background-position: center 0;
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: calc(100% - 18px);
	top: 18px;
	left: 0;
	background-size: cover
}

.landing-page .demo-title {
	font-size: 18px;
	letter-spacing: 1px;
	margin-top: 20px;
	margin-bottom: 0;
	color: #333;
	font-weight: 700
}

.landing-page .m-width {
	max-width: 1580px
}

.landing-page .mt-50 {
	margin-top: 50px
}

.landing-page .features-title {
	font-weight: 700;
	color: #586082;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	margin-top: 25px
}

.landing-page .tapl-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.3
}

.landing-page .tamp-d-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%
}

.landing-page .rating-title {
	margin: 10px auto;
	letter-spacing: 1px;
	line-height: 1;
	font-size: 36px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	color: #586082
}

.landing-page .rating-star {
	margin-top: 45px;
	-webkit-animation: fadeIn 1.5s ease-in-out;
	animation: fadeIn 1.5s ease-in-out
}

.landing-page .rating-star img {
	margin-right: 25px
}

.landing-page .btn-down {
	background-color: #5f57ea
}

.landing-page .btn-down:hover {
	background-color: transparent;
	color: #5f57ea;
	border: 1px solid #5f57ea
}

.landing-page .navbar-brand {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1)
}

.landing-page .navbar {
	position: absolute;
	top: 0;
	z-index: 9;
	width: 100%
}

.landing-page .grab-img {
	height: 450px;
	overflow: hidden;
	float: none !important;
	width: auto !important
}

.landing-page .profile-2 {
	left: 90px;
	top: 0
}

.landing-page .emoji {
	right: 120px;
	bottom: -50px;
	left: unset
}

.landing-page .home-right {
	width: 400px;
	float: right;
	position: relative
}

.landing-page .home-right .mobile-slid img {
	width: 355px;
	height: auto
}

.landing-page .photo {
	position: absolute;
	top: 40px;
	right: -30px
}

.landing-page .gym {
	position: absolute;
	top: 140px;
	left: -150px;
	-webkit-animation: movebounce 2.1s linear infinite;
	animation: movebounce 2.1s linear infinite
}

.landing-page .game {
	position: absolute;
	right: -110px;
	top: 270px;
	-webkit-animation: moveleftbounce 2.1s linear infinite;
	animation: moveleftbounce 2.1s linear infinite
}

.landing-page .msg {
	position: absolute;
	top: 427px;
	left: -150px;
	-webkit-animation: moveleftbounce 2.1s linear infinite;
	animation: moveleftbounce 2.1s linear infinite
}

.landing-page .broweser {
	position: absolute;
	bottom: 110px;
	right: -110px;
	-webkit-animation: movebounce 2.1s linear infinite;
	animation: movebounce 2.1s linear infinite
}

.landing-page .love-emoji {
	position: absolute;
	bottom: 40px;
	left: 0
}

.landing-page .home-contain {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.landing-page .animation-circle-inverse {
	opacity: 0.25
}

.landing-page .animation-circle-inverse.absolute i {
	bottom: 280px;
	left: 0
}

.landing-page #mymenu {
	-webkit-box-shadow: none;
	box-shadow: none
}

.landing-page .landing-circle1 img {
	position: absolute;
	top: 204px;
	left: 260px
}

.landing-page .landing-circle2 img {
	position: absolute;
	top: 235px;
	left: 125px
}

.landing-page .landing-circle3 img {
	position: absolute;
	top: 102px;
	left: 124px
}

.landing-page .container.m-width .pc-bg {
	height: 300px
}

.landing-page .pages-space>div+div+div+div {
	margin-top: 50px
}

.landing-page .color-variation li {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: .5rem;
	border-radius: 5px;
	margin-top: 1rem
}

.landing-page .color-variation li a {
	width: 30px;
	height: 30px;
	display: inline-block
}

.landing-page .color-1 {
	background: -webkit-gradient(linear, left top, right top, from(#5f57ea), to(#9647db));
	background: linear-gradient(to right, #5f57ea 0%, #9647db 100%)
}

.landing-page .color-2 {
	background: -webkit-gradient(linear, left top, right top, from(#9b3cb7), to(#ff396f));
	background: linear-gradient(to right, #9b3cb7 0%, #ff396f 100%)
}

.landing-page .color-3 {
	background: -webkit-gradient(linear, left top, right top, from(#4c2fbf), to(#2e9de4));
	background: linear-gradient(to right, #4c2fbf 0%, #2e9de4 100%)
}

.landing-page .color-4 {
	background: -webkit-gradient(linear, left top, right top, from(#0b35d9), to(#128be4));
	background: linear-gradient(to right, #0b35d9 0%, #128be4 100%)
}

.landing-page .color-5 {
	background: -webkit-gradient(linear, left top, right top, from(#772ADB), to(#cc3dbe));
	background: linear-gradient(to right, #772ADB 0%, #cc3dbe 100%)
}

.landing-page .color-6 {
	background: -webkit-gradient(linear, left top, right top, from(#f20c46), to(#A40080));
	background: linear-gradient(to right, #f20c46 0%, #A40080 100%)
}

.landing-page .color-7 {
	background: -webkit-gradient(linear, left top, right top, from(#db0a5B), to(#db3a00));
	background: linear-gradient(to right, #db0a5B 0%, #db3a00 100%)
}

.landing-page .border-shape-two span {
	background-color: #ddd;
	height: 7px;
	width: 100%;
	display: block;
	left: 0;
	margin: 4px auto;
	text-align: center
}

.landing-page .features li {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 50px 0;
	text-align: center;
	border: 1px solid #f5f4f4;
	margin: 15px;
	border-radius: 5px;
	width: calc(25% - 30px);
	background-color: var(--white)
}

.landing-page .features li:nth-child(4) {
	border-right: none
}

.landing-page .features li:nth-child(8) {
	border-right: none
}

.landing-page .features li:nth-child(12) {
	border-right: none;
	border-bottom: none
}

.landing-page .features li:nth-child(16) {
	border-right: none
}

.landing-page .features li:nth-child(9) {
	border-bottom: none
}

.landing-page .features li:nth-child(10) {
	border-bottom: none
}

.landing-page .features li:nth-child(11) {
	border-bottom: none
}

.landing-page .Copyright-section p {
	text-align: center;
	width: 100%;
	padding: 15px;
	margin-bottom: 0
}

.module-list  {
	margin-bottom: -30px;
}

.module-list .item>div {
    padding: calc(30px + (50 - 30) * ((100vw - 320px) / (1920 - 320))) 0 calc(25px + (45 - 25) * ((100vw - 320px) / (1920 - 320)));
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
	background-color: var(--white);
	margin-bottom: 30px;
	width: 100%;
	background-color: #f5f4f4;
	font-size: 18px;
	text-transform: uppercase;
	position: relative;
	transition: all 0.5s ease;
}

.module-list .item>div i {
	margin-bottom: 10px;
	font-size: calc(25px + (35 - 25) * ((100vw - 320px) / (1920 - 320)));
    display: block;
    opacity: 0.9;
    color: #5f57ea;
}

.module-list li>div:hover {
	background-color: #5f57ea;
	color: white;
	transition: all 0.5s ease;
}

.module-list li>div:hover i  {
	color: white;
}


@media (min-width: 1500px) and (max-width: 1366px) {
	.home-right {
		margin-top: -30px
	}
}

@media (min-width: 1367px) and (max-width: 1500px) {
	.pc-bg {
		width: 400px;
		height: 240px;
		background-size: contain
	}
	.img-scroll {
		left: 20px;
		width: calc(100% - 40px);
		height: calc(100% - 57px);
		top: 11px
	}
}

@media (max-width: 1366px) {
	.auth-page .profile-1 {
		bottom: -80px
	}
	.auth-page .emoji {
		bottom: 11%;
		right: 150px
	}
	.mobile-slid {
		margin-top: -10px
	}
	.contact .auth-form {
		padding-top: 2px
	}
	.auth-page .mobile-slid img {
		width: 60%
	}
	.slide-text {
		margin-top: -15px
	}
	.inner-page section {
		padding-top: 70px;
		padding-bottom: 70px
	}
	.slid-btn>a img {
		width: 120px
	}
	.footer-logo {
		padding: 0
	}
	.cooming-soon .left {
		z-index: 9
	}
	.price-plan li {
		margin-bottom: 25px
	}
	.future-mobile img {
		width: 80%;
		margin: 20px auto
	}
	.about .full-banner {
		width: 70%
	}
	h2 {
		font-size: 32px
	}
	h3 {
		font-size: 22px;
		margin-top: 10px
	}
	.chat-slide {
		padding-top: 30px
	}
	.chat-slide h3 {
		margin-bottom: 0
	}
	.section-title {
		margin-bottom: 40px
	}
	section {
		padding-top: 70px;
		padding-bottom: 70px
	}
	.profile-2 {
		left: 50px;
		-webkit-transform: scale(0.6);
		transform: scale(0.6)
	}
	.profile-1 {
		right: 50px;
		-webkit-transform: scale(0.6);
		transform: scale(0.6)
	}
	.emoji {
		left: 15%
	}
	.profile-1 {
		right: 50px
	}
	.mobile-slid img {
		width: 74%
	}
	.slide-text {
		height: auto
	}
	.login-form {
		min-height: 600px
	}
	.profile-1 {
		bottom: 0
	}
	.emoji {
		bottom: 10%;
		width: 80px;
		left: 24%
	}
	.profile-msg {
		width: 190px;
		left: 60px;
		top: 45%
	}
	.awesome {
		top: 45%;
		width: 160px;
		right: 80px
	}
	.blog-text h3 {
		margin-bottom: 10px
	}
	.slide-text h1 {
		font-size: 32px;
		line-height: 48px;
		margin-bottom: 20px
	}
	.about-box {
		padding-bottom: 30px
	}
	.chat-box img {
		height: 30px
	}
}

@media (max-width: 1199px) {
	.auth-page .profile-2 {
		top: -40px;
		right: 70px
	}
	.process-box {
		padding: 20px 15px 15px
	}
	.process-box img {
		height: 55px
	}
	.swiper-slide img {
		margin-top: -15px;
		margin-bottom: -15px
	}
	.slide-bg .container .row .home-right {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
	.timeline p {
		margin-right: 10px;
		margin-left: 0
	}
	.email-box {
		padding: 20px 10px
	}
	.faq .faq-row {
		margin-bottom: 0px;
		margin-top: 0px
	}
	.display-flex {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.display-flex .download-text {
		margin-bottom: 20px;
		margin-top: 20px
	}
	.testimonil-box .owl-dots {
		margin-left: 25%
	}
	.slid-btn img {
		width: 120px
	}
	.contact-box li {
		padding-left: 70px
	}
	h1 {
		font-size: 38px
	}
	.load i {
		top: 0
	}
	.team-slider .owl-nav {
		margin-top: 82px
	}
	.contact-text h3 {
		font-size: 16px
	}
	section {
		padding-top: 70px;
		padding-bottom: 70px
	}
	.home-right {
		width: 400px;
		position: relative;
		float: right
	}
	.future-mobile {
		text-align: center !important;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		height: 100%
	}
	.mobile-slid {
		text-align: right
	}
	.mobile-slid img {
		width: 250px
	}
	.blog-text h6 {
		margin-top: 15px
	}
	.blog-text h5 {
		line-height: 20px
	}
	.marg-20 {
		margin: 10px auto
	}
	.blog-block {
		padding: 5px
	}
	h1 {
		font-size: 38px;
		line-height: 56px
	}
	.footer-logo {
		padding: 0
	}
	.emoji {
		left: unset;
		bottom: 11%;
		right: 190px
	}
	.profile-1 {
		right: -83px;
		bottom: -4%
	}
	.profile-msg {
		top: 44%;
		left: unset;
		right: 120px
	}
	.awesome {
		right: -30px;
		top: 190px
	}
	.profile-1 {
		right: -90px
	}
	.profile-2 {
		left: unset;
		right: 120px
	}
	.slider-mobile {
		width: 210px
	}
	.inner-page {
		padding-top: 100px
	}
	.navbar-nav .nav-item .nav-link {
		padding-left: 3px;
		padding-right: 3px;
		font-size: 13px
	}
	.blog-pagin a.page-link {
		font-size: 14px
	}
	.contact-right img {
		width: 85%
	}
	.blog-list>div+div+div .blog-item {
		margin-top: 40px
	}
	.blog-cat-detail ul li i {
		margin-right: 5px
	}
	.pages-space>div+div+div {
		margin-top: 50px
	}
	.animated-circle:before {
		bottom: 72px
	}
	.faq .accordion button {
		font-size: 15px
	}
	.faq .card-header {
		padding: 12px 26px
	}
	.faq .card .card-body {
		font-size: 15px;
		padding: 12px 26px
	}
	.contact-text h3 {
		font-size: 15px;
		margin-top: 0
	}
	.contact-text p {
		font-size: 15px;
		margin-bottom: 0
	}
	.contact-box li+li {
		margin-top: 15px
	}
	.contact .auth-form {
		padding-right: 50px
	}
}

@media (max-width: 1024px) {
	.contact-box li+li {
		margin-top: 25px
	}
	.login-form {
		min-height: auto;
		padding-bottom: 50px;
		padding-top: 50px
	}
	.animated-circle:before {
		bottom: 72px
	}
	.slide-text h1 {
		font-size: 28px
	}
	.slide-text h4 {
		font-size: 16px
	}
	.section-title img {
		-webkit-transform: scale(0.7);
		transform: scale(0.7)
	}
	.section-title h2 {
		font-size: 28px;
		margin-bottom: 10px
	}
}

@media (max-width: 991px) {
	.work .row .col-lg-4+.col-lg-4 {
		margin-top: 20px
	}
	.slide-bg {
		padding-top: 60px;
		height: auto
	}
	.slide-bg .container {
		margin-top: 40px;
		margin-bottom: 40px
	}
	.slide-bg .home-right {
		height: auto
	}
	.faq-row .text-center {
		display: none
	}
	.testimonil-box .owl-dots {
		margin-left: 35%
	}
	.error-main {
		position: relative
	}
	.error-main .error-font {
		font-size: 240px
	}
	section {
		padding-top: 50px;
		padding-bottom: 50px
	}
	.section-title {
		margin-bottom: 25px
	}
	.about .full-banner {
		width: 100%
	}
	.future-mobile {
		display: none
	}
	.home-right {
		width: 340px
	}
	.feature .animation-circle-inverse {
		opacity: 0.3
	}
	.download-bg .display-flex {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.download-bg .display-flex .footer-logo {
		padding: 0
	}
	.about-box {
		padding-bottom: 0
	}
	.about-box .chat-box {
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #ddd
	}
	.about-border+div+div .chat-box {
		padding-bottom: 0;
		border-bottom: 0
	}
	.about-border:nth-child(2) {
		border: 0
	}
	.theme-nav .navbar-brand {
		padding-top: 14px;
		padding-bottom: 14px
	}
	.testi-profile .media-body {
		padding-right: 0
	}
	.profile-2 {
		top: 5%
	}
	h1 {
		font-size: 35px
	}
	.emoji {
		bottom: 10%
	}
	.slider-mobile {
		display: none
	}
	.footer-logo {
		border-right: none
	}
	.download-text {
		text-align: center
	}
	.download-text h3 {
		font-size: 18px
	}
	.email-box {
		text-align: center;
		padding-bottom: 0
	}
	.slide-text a img {
		margin-right: 4px;
		margin-bottom: 10px
	}
	.news-slider .owl-nav {
		margin-top: 30px
	}
	.download-img ul {
		text-align: center
	}
	.plan-slider .owl-nav {
		margin-top: 10px
	}
	.navbar-nav .nav-item .nav-link {
		padding: 8px
	}
	#mymenu {
		background-color: #5f57ea;
		border-radius: 5px;
		margin-top: 15px;
		padding: 15px;
		margin-bottom: 20px;
		border: 1px solid rgba(255, 255, 255, 0.15)
	}
	.darkHeader {
		-webkit-box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.13);
		box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.13)
	}
	#navbarSupportedContent {
		background: var(--white)
	}
	#navbarSupportedContent .nav-item {
		padding: 0;
		margin-left: 15px;
		margin-right: 15px
	}
	.hover-text {
		padding: 0 15px
	}
	.breadcrumb-bg {
		padding: 10px 0
	}
	.inner-page {
		padding-top: 70px
	}
	.inner-page section {
		padding-bottom: 50px;
		padding-top: 50px
	}
	.inner-page .blog-pagination {
		margin-top: 50px
	}
	.leave-coment {
		margin-top: 0
	}
	.md-height {
		height: 100%
	}
	.mt-70 {
		text-align: center
	}
	.question {
		padding: 10px 10px 10px 40px
	}
	.content {
		padding: 0
	}
	.nav-item.dropdown .dropdown-menu {
		-webkit-box-shadow: none;
		box-shadow: none;
		padding: 0 0 0 15px
	}
	.dropdown-menu .nav-item {
		margin-left: 0
	}
	#mymenu .dropdown-menu {
		display: none;
		-webkit-transition: 0.5s ease;
		transition: 0.5s ease
	}
	#mymenu .dropdown-menu.show {
		display: block;
		-webkit-transition: 0.5s ease;
		transition: 0.5s ease;
		opacity: 1;
		visibility: visible;
		margin-bottom: 15px
	}
	#mymenu .dropdown-menu .nav-item {
		margin-left: 0
	}
	.navbar-light .navbar-nav .nav-link {
		color: #586082
	}
	.darkHeader.navbar-light .navbar-nav .nav-link.active {
		color: #000 !important
	}
	.theme-nav .nav-item {
		padding: 0 5px
	}
	.social-icon li {
		margin-left: 10px;
		margin-right: 10px
	}
	.animated-circle:before {
		bottom: 95px
	}
	ol.breadcrumb.bg-transparent.mb-0 {
		padding: 10px 0
	}
	.blog-list>div+div .blog-item {
		margin-top: 40px
	}
	.blog-text h5 {
		line-height: 1.6
	}
	.blog-carousel .owl-dots {
		position: relative;
		top: 10px
	}
	.blog-sec .blog-list>div+div .blog-item {
		margin-top: 40px
	}
	.blog-description p {
		font-size: 15px
	}
	.reply-comment p {
		font-size: 14px
	}
	#clockdiv>div {
		padding: 6px
	}
	.download .dwn-logo {
		width: 80%
	}
	.download .app1 {
		width: 45%
	}
	.md-fgrup-margin {
		margin-bottom: 20px
	}
	.subscribe {
		text-align: center;
		border: 0;
		padding: 0
	}
}

@media (max-width: 767px) {
	.news-text,
	.blog-hover {
		text-align: center
	}
	.animated-circle {
		margin-left: auto;
		margin-right: auto
	}
	.swiper-slide img {
		margin-top: -5px;
		margin-bottom: -5px
	}
	.slide-bg .container .row .home-right {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 20px
	}
	.news-text p {
		padding-top: 5px
	}
	.news-text h4 {
		line-height: 1.5;
		margin-top: 10px
	}
	.team-hover {
		text-align: center
	}
	.home-right {
		float: none
	}
	.hover-text {
		margin-top: 10px;
		padding: 0
	}
	.contact .auth-form {
		padding: 0 15px;
		margin-bottom: 50px
	}
	.contact {
		text-align: center
	}
	.testimonil-box .owl-dots {
		width: 100%
	}
	.auth-page .mobile-slid {
		margin: 0
	}
	.clock-box {
		text-align: center
	}
	.request-right {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
		margin-bottom: 30px
	}
	.request-left .text-left {
		text-align: center !important
	}
	.contact-box li {
		padding: 0
	}
	.contact-circle {
		position: relative;
		margin: 0 auto 10px
	}
	h4 {
		font-size: 18px
	}
	.timeline-right p,
	.timeline p {
		margin-bottom: 25px
	}
	.testimonil-box .owl-dots {
		text-align: center;
		margin-left: 0;
		margin-top: -30px !important
	}
	.mobile-slid img {
		margin-bottom: 0
	}
	.home-right {
		margin: 0 auto
	}
	.mobile-slid {
		text-align: center
	}
	.slider-mobile {
		display: none
	}
	.slide-text {
		text-align: center
	}
	.news-slider .owl-nav {
		margin-top: 0
	}
	.chat-box h3 {
		font-size: 18px
	}
	.profile-2:before {
		display: none
	}
	.profile-1:before {
		display: none
	}
	ol.breadcrumb.bg-transparent.mb-0 {
		padding: 10px 0 0
	}
	.testimonial h3 {
		font-size: 18px
	}
	h2 {
		font-size: 28px
	}
	.subscribe {
		border-right: none;
		text-align: center
	}
	.testi-profile {
		text-align: center;
		margin-bottom: 50px
	}
	.testi-profile .media-body {
		padding: 30px
	}
	.testi-profile .media {
		display: block
	}
	.animated-circle:before {
		bottom: 95px;
		left: 0;
		right: 0;
		margin: 0 auto
	}
	.animated-circle {
		position: relative;
		margin-bottom: 80px
	}
	.testimonial-slider .owl-item img {
		margin: 0 auto
	}
	.load i {
		width: 500px;
		height: 500px;
		right: -250px
	}
	.slider-mobile {
		width: 192px;
		display: block
	}
	.profile-msg {
		left: -46px
	}
	.awesome {
		right: 25px
	}
	.profile-1 {
		right: -53px
	}
	.emoji {
		bottom: 5%;
		left: 8%
	}
	.profile-2 {
		left: -34px
	}
	.chat-box {
		border-right: none
	}
	.future-timeline-right:after {
		top: 0px
	}
	.future-box {
		padding: 0
	}
	.testimonial-slider .media-body {
		text-align: center
	}
	.testimonial-slider .owl-item img {
		display: block;
		width: 105px;
		text-align: center;
		margin: 0 auto;
		margin-bottom: 30px
	}
	.team-profile {
		text-align: center
	}
	.team-close-btn {
		top: 0;
		left: 0;
		position: relative;
		margin: 10px auto
	}
	.footer-logo {
		border-right: none
	}
	.subscribe {
		border-right: none;
		text-align: center
	}
	.theme-breadcrumb .breadcrumb {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 10px;
		padding-bottom: 0
	}
	.theme-breadcrumb li {
		line-height: 1.5
	}
	.theme-breadcrumb li a {
		line-height: 1.5
	}
	.col-text-center {
		text-align: center
	}
	.d-align-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.blog-cat-detail .marg-15 {
		margin: 10px auto
	}
	.blog-cat-detail ul li a {
		font-size: 14px
	}
	.blog-text h6 {
		margin-top: 15px
	}
	.blog-text h3 {
		margin-top: 5px
	}
	.subscribe {
		padding-bottom: 10px
	}
	.email-box {
		padding: 0
	}
	.social-bg {
		padding: 15px 0
	}
	.sm-center {
		text-align: center
	}
	.sm-center a:first-child {
		margin-right: 0
	}
	.flt-right {
		text-align: center
	}
	#clockdiv {
		margin-bottom: 50px;
		font-size: 19px
	}
	.demo-mob {
		margin-top: 30px
	}
	.load i {
		width: 400px;
		height: 400px;
		right: -200px;
		top: 17%
	}
	.testi-profile .media-body {
		padding-right: 0
	}
	.testi-profile .media {
		display: block
	}
	.margin-bottom>div+div .review-box {
		margin-top: 30px
	}
	.display-flex {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.sign-in-space {
		margin-top: 10px
	}
	.testi-profile .media-body {
		padding: 0
	}
	.chat-box {
		margin-bottom: 30px
	}
	.chat-box h3 {
		margin-top: 0
	}
}

@media (max-width: 600px) {
	.blog-page .animation-circle-inverse {
		display: none
	}
	.md-fgrup-margin {
		margin-bottom: 20px
	}
	.list-sidebar {
		margin-top: 50px
	}
	.sm-hidden {
		display: none
	}
	.profile-2 {
		left: -15px;
		top: -6%
	}
	.awesome {
		top: 47%;
		right: 0
	}
	.profile-msg {
		left: -20px
	}
	.profile-1 {
		right: -45px;
		bottom: -5%
	}
	.emoji {
		bottom: 5%;
		left: 8%
	}
	.chat-box {
		border-right: none
	}
	.btn-theme-primary {
		font-size: 12px;
		padding: 10px
	}
	.future-timeline {
		text-align: left
	}
	.future-timeline:after {
		left: 10px
	}
	.slider-mobile {
		display: block
	}
	.future-box {
		padding: 0
	}
	.download-bg {
		text-align: center
	}
	.testimonil-box {
		padding: 0
	}
	.testimonil-box .media {
		display: block
	}
	.address {
		margin-bottom: 40px
	}
	.call {
		margin-bottom: 0
	}
	.email {
		margin-top: 40px
	}
	.blog-text p {
		margin-top: 0;
		font-size: 14px
	}
	.nav-item.dropdown .dropdown-menu {
		right: 0
	}
	.timeline:before {
		left: -11px;
		float: left
	}
	.load i {
		width: 400px;
		height: 400px;
		right: -200px;
		top: 0
	}
	.dropdown .dropdown-toggle {
		margin-top: 3px
	}
	.reply-comment .media img {
		width: 40px
	}
	.margin-top-100.review-padding {
		margin-top: 53px
	}
}

@media (max-width: 575px) {
	.slid-btn {
		margin-top: 30px;
		margin-bottom: 50px
	}
	.slide-text {
		margin-top: 15px
	}
	.process-box img {
		height: 45px
	}
	.process-box h3 {
		margin-top: 15px;
		margin-bottom: 2px
	}
	.timeline,
	.timeline-right {
		text-align: center;
		position: relative
	}
	.timeline p,
	.timeline-right p {
		margin-left: 0;
		margin-right: 0;
		font-size: 14px;
		color: rgba(255, 255, 255, 0.7)
	}
	.timeline:after,
	.timeline-right:after {
		content: "";
		position: absolute;
		width: 50px;
		border-bottom: 1px dashed rgba(255, 255, 255, 0.41);
		top: -10px;
		left: 0;
		right: 0;
		margin: 0 auto
	}
	.timeline h4,
	.timeline-right h4 {
		font-size: 16px
	}
	.future-timeline ul .timeline:first-child:after {
		display: none
	}
	.inner-page .blog-pagination {
		margin-top: 40px
	}
	.download .icon {
		height: 100px
	}
	.about-border {
		border: 0
	}
	.error-main .error-font {
		font-size: 150px;
		letter-spacing: -11px
	}
	.main {
		padding: 0
	}
	.auth-card {
		width: 280px;
		padding: 30px 15px 15px;
		min-width: 80%
	}
	.auth-form .social-btns .btn {
		margin-bottom: 10px
	}
	.auth-page {
		padding-top: 15px;
		padding-bottom: 15px
	}
	.auth-page p {
		font-size: 14px
	}
	.auth-page h2 {
		font-size: 26px;
		margin-top: 5px;
		margin-bottom: 0px
	}
	.auth-page .line {
		width: 50px
	}
	.auth-page .page-logo {
		height: 17px
	}
	.navbar-brand img {
		height: 30px
	}
	.inner-page {
		padding-top: 60px
	}
	.inner-page section {
		padding-bottom: 40px;
		padding-top: 40px
	}
	.blog-details .news-text .btn-theme {
		margin-bottom: 20px
	}
	.news-text .btn-theme {
		padding: 3px 14px;
		font-size: 13px
	}
	.slide-text h1 {
		font-size: 24px;
		line-height: 1.5
	}
	.home-right {
		width: 290px
	}
	.team-box {
		width: 70%;
		margin: 0 auto
	}
	.about-box {
		border-bottom: 0
	}
	.timeline:last-child p {
		margin-bottom: 25px
	}
	.chat-slide {
		padding-top: 0
	}
	.future-timeline:after,
	.future-timeline-right:after {
		display: none
	}
	.timeline:before,
	.timeline-right:before {
		display: none
	}
	.about-border+div+div .chat-box {
		padding-bottom: 20px;
		border-bottom: 1px solid #ddd
	}
	.marg-20 {
		margin: 7px auto
	}
	.mb-xs-4 {
		margin-bottom: 15px
	}
	.load i {
		width: 300px;
		height: 300px;
		right: -150px;
		top: 0
	}
	.navbar-expand-sm .navbar-nav {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important
	}
	.blog-list>div+div .blog-item {
		margin-top: 40px
	}
	.breadcrumb-bg h2 {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
	.breadcrumb-bg h2 span {
		margin-bottom: 10px;
		margin-top: 15px
	}
	.theme-breadcrumb {
		float: none;
		padding-top: 0;
		padding-bottom: 15px
	}
	ol.breadcrumb.bg-transparent.mb-0 {
		padding: 0
	}
}

@media (max-width: 480px) {
	.d-flex-1 {
		min-height: calc(100vh - 100px);
		margin-top: -15px
	}
	.auth-page .profile-msg {
		left: 0;
		top: 33%
	}
	.faq a {
		font-size: 16px
	}
	.faq .card-header {
		padding: 10px 20px
	}
	.profile-msg {
		left: 0;
		top: 25%
	}
	.emoji {
		left: 2%
	}
	.timeline {
		text-align: center
	}
	.timeline:before {
		left: 20px;
		float: left
	}
	.timeline-right {
		text-align: center
	}
	.timeline-right:before {
		left: 20px
	}
	.slider-mobile {
		width: 152px;
		top: 4px
	}
	.btn-email {
		display: block;
		text-align: center;
		margin: 15px auto 0
	}
	.side-navbar {
		font-size: 15px
	}
	.download-text {
		padding: 0
	}
	.footer-logo {
		padding: 10px 0
	}
	.address {
		margin-bottom: 30px;
		margin-top: 0
	}
	.call {
		margin-bottom: 30px;
		margin-top: 0
	}
	.download h3 {
		font-size: 22px;
		margin-top: 15px
	}
	.download h4 {
		margin-top: 10px;
		margin-bottom: 10px
	}
	.req-form {
		font-size: 28px
	}
	.animation-circle i {
		width: 50px;
		height: 50px;
		top: 210px;
		left: -150px
	}
	.slid-btn img {
		margin-bottom: 15px
	}
	.future-timeline-right:after {
		height: 90%;
		left: 40px;
		top: 0
	}
	.future-timeline:after {
		left: 40px;
		height: 90%;
		top: 0
	}
	.blog-text p {
		line-height: 20px;
		letter-spacing: 1px
	}
	.breadcrumb-bg h2 {
		font-size: 18px
	}
	.blog-sec .blog-list>div+div .blog-item {
		margin-top: 30px
	}
	.plan-slider .owl-nav {
		margin-top: 0
	}
	.dropdown .dropdown-toggle {
		margin-top: 0
	}
	.section-title h2 {
		font-size: 24px;
		margin-bottom: 0
	}
	.chat-slide h3 {
		font-size: 18px;
		line-height: 28px
	}
	.thanks-bg h2 {
		font-size: 20px
	}
	.review-block {
		padding: 50px 0 0 0
	}
	.pad-btm-50 {
		padding-bottom: 80px
	}
	.clock-bg {
		padding: 50px 0 5px
	}
	.download {
		padding-top: 40px
	}
	.hover-text h3 {
		margin-top: 20px
	}
}

@media (max-width: 420px) {
	#mymenu {
		overflow: scroll;
		max-height: 350px
	}
	.social-icon {
		padding: 5px;
		height: auto
	}
	.slider-mobile {
		width: 134px
	}
	.team-close-btn .text-black {
		color: #000 !important;
		line-height: 22px
	}
	.team-close-btn p {
		line-height: 24px
	}
	.blog-text h3 {
		font-size: 15px
	}
	.dropdown .dropdown-toggle {
		margin-top: 0
	}
}

@media (max-width: 400px) {
	.coming-title {
		margin-top: 50px
	}
	.timonial-carousel.owl-carousel button.owl-prev {
		display: none
	}
	.mt-35>div+div {
		margin-top: 50px
	}
}

@media (max-width: 360px) {
	.news-slid .blog-hover {
		padding: 10px
	}
	.swiper-slide img {
		margin-bottom: -25px;
		margin-top: -25px
	}
	.slider-mobile {
		display: none
	}
	.blog-text p {
		font-size: 14px
	}
	.blog-text h6 {
		margin-top: 10px;
		font-size: 11px
	}
	.blog-text h5 {
		font-size: 11px
	}
	.blog-text h3.blog-head {
		font-size: 14px
	}
	.inner-page {
		padding-top: 50px
	}
	.marg-20 {
		margin: 5px auto
	}
	.testimonial-slider .owl-nav {
		margin-bottom: 40px
	}
	.testimonial-slider .media-body p {
		font-size: 15px;
		line-height: 23px
	}
	.testimonial-slider .media-body h4 {
		line-height: 26px;
		margin-bottom: 15px
	}
	.news-text h4 {
		font-size: 16px
	}
	.tap-top {
		line-height: unset;
		width: 40px;
		height: 40px
	}
	.submit {
		padding: 7px 40px
	}
	#clockdiv {
		font-size: 19px
	}
	.smalltext {
		font-size: 13px
	}
	.navbar-brand img {
		width: 150px
	}
	.blog-list>div+div .blog-item {
		margin-top: 30px
	}
	.blog-sec .blog-list>div+div .blog-item {
		margin-top: 30px
	}
	.recent-blog .media p {
		font-size: 11px
	}
	.subscribe h3 {
		font-size: 22px
	}
	.email-box .form-control {
		font-size: 13px;
		width: 80% !important
	}
	.contact-text h3 {
		line-height: 23px
	}
	.theme-form .form-control {
		padding-top: 10px;
		padding-bottom: 10px
	}
	.sm-center a:first-child {
		margin-right: 0;
		display: block
	}
}

@media (max-width: 320px) {
	.timeline-right:before {
		left: 0
	}
	.timeline:before {
		left: 0
	}
	.future-timeline-right:after {
		left: 20px
	}
	.future-timeline:after {
		left: 20px
	}
	.margin-top-100.review-padding {
		margin-top: 42px
	}
	.footer-one {
		margin-top: 50px
	}
}

@media (width: 1920px) and (height: 1200px) {
	.profile-1 {
		bottom: 13%
	}
	.profile-2 {
		top: 15%
	}
}

@media (width: 1280px) and (height: 950px) {
	.profile-1 {
		bottom: 13%
	}
	.emoji {
		bottom: 23%
	}
	.profile-2 {
		top: 15%
	}
}

@media (max-width: 1366px) {
	.landing-page .right {
		-webkit-transform: scale(0.8);
		transform: scale(0.8)
	}
	.landing-page .home-right {
		width: 310px
	}
	.landing-page .msg {
		top: 337px
	}
	.landing-page .gym,
	.landing-page .game,
	.landing-page .msg,
	.landing-page .broweser {
		width: 250px
	}
}

@media (max-width: 1199px) {
	.landing-page .landing-caption {
		font-size: 37px
	}
	.landing-page p {
		font-size: 16px
	}
	.landing-page .tapl-title {
		font-size: 28px
	}
	.landing-page .profile-2:before {
		display: none
	}
	.landing-page .features li {
		width: calc(33.33% - 30px)
	}
}

@media (max-width: 991px) {
	.landing-page .home .container {
		max-width: calc(100% - 30px)
	}
	.landing-page .photo {
		top: 0
	}
	.landing-page .gym {
		top: 150px
	}
	.landing-page .game {
		top: 220px
	}
	.landing-page .msg {
		top: 427px
	}
	.landing-page .rating-title {
		font-size: 24px;
		line-height: 1.6
	}
	.landing-page .features li {
		width: calc(50% - 30px)
	}
}

@media (max-width: 767px) {
	.landing-page .grab-img .profile-msg,
	.landing-page .grab-img .awesome,
	.landing-page .grab-img .emoji,
	.landing-page .grab-img .profile-2 {
		display: none
	}
	.landing-page .home-contain .mr-3 {
		margin-right: 0 !important
	}
	.landing-page .home-right img {
		-webkit-transform: scale(0.7) !important;
		transform: scale(0.7) !important
	}
	.landing-page .home-right .mobile-slid img {
		-webkit-transform: scale(1) !important;
		transform: scale(1) !important
	}
	.landing-page .tamp-d-flex {
		text-align: center;
		margin-top: -10px;
		margin-bottom: 20px
	}
	.landing-page .home-contain {
		text-align: center;
		padding-top: 50px
	}
	.landing-page .right {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.landing-page .template-bg .awesome {
		display: none
	}
	.landing-page .template-bg .profile-msg {
		display: none
	}
	.landing-page .template-bg .profile-2 {
		display: none
	}
	.landing-page .template-bg .tamp-d-flex {
		margin-bottom: 20px
	}
}

@media (max-width: 575px) {
	.landing-page .img-scroll {
		height: calc(100% - 14px);
		top: 14px
	}
	.landing-page .rating-star {
		margin-top: 20px
	}
	.landing-page .rating-star img {
		margin-right: 5px;
		height: 30px
	}
	.landing-page .home-contain {
		padding-top: 20px
	}
	.landing-page .landing-caption {
		font-size: 30px
	}
	.landing-page .gym {
		top: 150px
	}
	.landing-page .msg {
		top: 300px
	}
	.landing-page .love-emoji {
		bottom: -30px;
		left: -30px
	}
	.landing-page .features li {
		width: calc(100% - 30px);
		padding: 30px 0 10px
	}
}

:root {
    --white: #ffffff;
    --black: #000000;
    --primary-color: #5f57ea;
    --secondary-color: #9647db;
    --content-dark: #586082;
    --border-color: #dddddd;
    --shadow-1: #f9f9f9;
    --shadow-2: #969696;
    --gray-light: #eeeeee;
    --placeholder: #aaaaaa;
    --rating: #eeb829;
}


/* about page */
.about-content h4 {
	color: var(--content-dark);
}

.about-content h2 {
	line-height: 1.2;
	margin-top: 10px;
    margin-bottom: 10px;
}

.about-content ul li img{
	width: 20px;
    margin-right: 10px;
}

.about-content ul li {
	font-size: 16px;
	margin-bottom: 12px;
	color: var(--content-dark);
}

.about-work .process-box img {
	width: 65px;
}

.team-content {
	text-align: center;
}

.team-content h3 {
	color: var(--primary-color);
	margin-bottom: 0;
}
.team-content h5 {
	margin-top: 2px;
	margin-bottom: 0;
	color: var(--content-dark);
}

.about-page .abouit-img img {
	border-radius: 6px;
	width: 100%;
}

.about-page .about-content {
	display: flex;
    align-items: center;
	height: 100%;
	padding-left: 20px;
}

.theme-bg-light {
	background-color: #f7f7f7;
}

.about-testimonial .animated-circle{
	position: relative;
    margin-right: 0;
    margin-left: 0;
	top: 0;
	display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-testimonial .testi-profile .media {
	display: block;
	text-align: center;
}

.about-testimonial .animated-circle:before {
	left: 50%;
	transform: translateX(-50%);
	right: unset;
}

.about-testimonial .testimonil-box .owl-dots {
	left: 50%;
	transform: translateX(-50%);
	margin-left: 0;
	bottom: 0;
}

.about-testimonial  .testi-profile .media-body {
	padding: 0 200px 0 200px;
}

@media (max-width: 991px) {
	.about-page .about-content {
		padding-left: 0;
		margin-top: 10px;
	}
	.about-testimonial .testi-profile .media-body {
		padding: 0;
	}
	.about-testimonial .testimonil-box .owl-dots {
		bottom: 20px;
	}
	.about-testimonial  .testi-profile {
		margin: 30px 0 45px;
	}
}

@media (max-width: 767px) {
	.about-testimonial  .testimonial-slider .owl-item img {
		margin-bottom: 0;
	}
}