/*
	Template Name: robotix
*/


/*
	Global Css
*/

:root {
  --sky: #00C4FF;
  --dark: #111827;
  --black: #333333;
  --gray: #F9F9F9;
  --darkgray: #676767;
  --lightblack: #444444;
  --white: #ffffff; 
  --green: #2BB573; 
  --lightgreen: #5ED39B; 
  --ldgreen: #ECFFF6; 
  --fbg: #0C0B09; 
  --font: 'Space Grotesk', sans-serif; 
}


body{
	font-family: var(--font);
	font-size: 16px;
	color: var(--white);
	line-height: 29px;
	position: relative;
	background: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-family: var(--font);
	font-weight: 700;
	line-height: normal;
	color: var(--white);
}
a,
a:hover,
a:focus{
	color: var(--white);
	text-decoration: none;
}

img{
	display: block;
	max-width: 100%;
}
iframe{
	max-width: 100%;
	display: block;
}

/* Start Bubble Effects */

.bubble_1 {
	position: absolute;
	left: 2%;
	top: 12%;
}
.bubble_2 {
	position: absolute;
	left: 2%;
	top: 48%;
}

.bubble_3 {
	position: absolute;
	left: 49%;
	bottom: 41%;
}
.bubble_4 {
	position: absolute;
	top: 12%;
	left: 56%;
}
.bubble_5 {
	position: absolute;
	bottom: 41%;
	right: 2%;
}

/*Css Effects */
@keyframes gelatine {
  from, to { transform: scale(1, 1); }
  25% { transform: scale(0.9, 1.1); }
  50% { transform: scale(1.1, 0.9); }
  75% { transform: scale(0.95, 1.05); }
}

.spin {
  animation: spin 1s infinite linear;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.elastic-spin {
  animation: elastic-spin 1s infinite ease;
}
@keyframes elastic-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(720deg); }
}

.pulse {
  animation: pulse 1s infinite ease-in-out alternate;
}
@keyframes pulse {
  from { transform: scale(0.8); }
  to { transform: scale(1.2); }
}

.flash {
  animation: flash 500ms ease infinite alternate;
}
@keyframes flash {
	from { opacity: 1; }	
	to { opacity: 0; }
}

.hithere {
  animation: hithere 1s ease infinite;
}
@keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}

.grow {
  animation: grow 2s ease infinite;
}
@keyframes grow {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.fade-in {
  animation: fade-in 2s linear infinite;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-out {
  animation: fade-out 2s linear infinite;
}
@keyframes fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

.bounce {
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-15%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}

.bounce2 {
  animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

.shake {
  animation: shake 2s ease infinite;
}
@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
	20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.flip {
	backface-visibility: visible !important;
	animation: flip 2s ease infinite;
}
@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(0);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(170deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) rotateY(360deg) scale(.95);
		animation-timing-function: ease-in;
	}
	100% {
		transform: perspective(400px) scale(1);
		animation-timing-function: ease-in;
	}
}

.swing {
	transform-origin: top center;
	animation: swing 2s ease infinite;
}
@keyframes swing {
	20% { transform: rotate(15deg); }	
	40% { transform: rotate(-10deg); }
	60% { transform: rotate(5deg); }	
	80% { transform: rotate(-5deg); }	
	100% { transform: rotate(0deg); }
}

.wobble {
  animation: wobble 2s ease infinite;
}
@keyframes wobble {
  0% { transform: translateX(0%); }
  15% { transform: translateX(-25%) rotate(-5deg); }
  30% { transform: translateX(20%) rotate(3deg); }
  45% { transform: translateX(-15%) rotate(-3deg); }
  60% { transform: translateX(10%) rotate(2deg); }
  75% { transform: translateX(-5%) rotate(-1deg); }
  100% { transform: translateX(0%); }
}

.fade-in-down {
  animation: fade-in-down 2s ease infinite;
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-left {
  animation: fade-in-left 2s ease infinite;
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-out-down {
  animation: fade-out-down 2s ease infinite;
}
@keyframes fade-out-down {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.fade-out-right {
  animation: fade-out-right 2s ease infinite;
}
@keyframes fade-out-right {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

.bounce-in {
  animation: bounce-in 2s ease infinite;
}
@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% { transform: scale(.9); }
  100% { transform: scale(1); }
}

.bounce-in-right {
  animation: bounce-in-right 2s ease infinite;
}
@keyframes bounce-in-right {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

.bounce-out {
  animation: bounce-out 2s ease infinite;
}
@keyframes bounce-out {
  0% { transform: scale(1); }
  25% { transform: scale(.95); }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(.3);
  } 
}

.bounce-out-down {
  animation: bounce-out-down 2s ease infinite;
}
@keyframes bounce-out-down {
  0% { transform: translateY(0); }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.rotate-in-down-left {
  animation: rotate-in-down-left 2s ease infinite;
}
@keyframes rotate-in-down-left {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotate-in-up-left {
  animation: rotate-in-up-left 2s ease infinite;
}
@keyframes rotate-in-up-left {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.hinge {
  animation: hinge 2s ease infinite;
}
@keyframes hinge {
  0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }  
  20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; }  
  40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; } 
  80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; } 
  100% { transform: translateY(700px); opacity: 0; }
}

.roll-in {
  animation: roll-in 2s ease infinite;
}
@keyframes roll-in {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}

.roll-out {
  animation: roll-out 2s ease infinite;
}
@keyframes roll-out {
    0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
/* End Bubble Effects */

.section-padding{
	padding-top: 100px;
	padding-bottom: 100px;
}
.gray-section{
	background-color: var(--gray);
}
.pt_0{
	padding-top: 0;
}
.pb_0{
	padding-bottom: 0;
}
.pb_40{
	padding-bottom: 40px;
}

.pt_100{
	padding-top: 100px;
}
.pb_100{
	padding-bottom: 100px;
}
.main_btn {
	background: #4342F5;
	color: var(--white);
	padding: 7px 25px;
	display: inline-block;
	font-weight: 500;
	border-radius: 25px;
	border: 1px solid #4342F5;
	font-size: 15px;
	transition: .8s;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.main_btn:hover,
.main_btn:focus{
	color: var(--white);
	background: rgba(217, 217, 217, 0.06);
	border: 1px solid rgba(151, 150, 233, 0.2);
}

.light .main_btn:hover,
.light .main_btn:focus{
	color: var(--white);
	background: #151f39;
	border-color: #151f39;
}

.section-title{
	margin-bottom: 60px;
}

.section-title span {
	color: var(--white);
	background: linear-gradient(90deg, #7B3EFF 45.53%, #00C4FF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.section-title h2 {
	font-size: 32px;
	line-height: 40px;
}
.light .tools-area .section-title h2 {
	color: #fff;
}

.main-banner-area {
	background-size: cover;
	position: relative;
	padding: 176px 0 80px;
	text-align: center;
}
.main-banner-area:after{
	position: absolute;
	content: '';
	width:100%;
	height: 100%;

	opacity: 1;
	left: 0;
	top: 0;
}
.banner-content{
	position: relative;
	z-index: 1;
}
.banner-content h2{
	color: var(--white);
	font-size: 35px;
}

/*START PRELOADER DESIGN*/

.preloader {
    background: #111827;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 4px solid rgba(0, 0, 0, 0.08);
    border-right: 4px solid rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid rgba(0, 0, 0, 0.08);
    border-left: 4px solid #7B3EFF;
    border-radius: 50%;
    -webkit-animation: spinner 600ms infinite linear;
    animation: spinner 600ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*END PRELOADER DESIGN*/

/* #Back To Top
================================================== */

.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: "Font Awesome 6 Free";
	content: '\f062';
	text-align: center;
	line-height: 46px;
	font-size: 17px;
	color: #4342F5;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: "Font Awesome 6 Free";
	content: '\f062';
	text-align: center;
	line-height: 46px;
	font-size: 17px;
	opacity: 0;
	background-image: linear-gradient(298deg, #6721FF, #00C4FF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}

.progress-wrap svg.progress-circle path {
	stroke: #4342F5;
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/*
	Menu Css
*/


.site-logo{
	width: 120px;
	display: block;
}
#header-area{
	width: 100vw;
	position: fixed;
	z-index: 111;
	transition: all 0.3s;
	padding: 25px 40px;
}
#header-area.navShadow {
    background:#192337;
	padding: 18px 40px;
}
#header-area {

}
.navigation ul{
	padding: 0;
	margin: 0;
}
.navigation ul li{
	display: inline-table;
	padding: 10px 10px;
}
.navigation ul li a{
	display: block;
	color: var(--white);
	transition: .5s;
	font-size: 16px;
	font-weight: 500;	
}
.navigation ul li a:hover,
.navigation ul li a:focus{
	color: #4342F5;
}
.login_btn{
	color: #fff;
	display: inline-block;
	padding: 7px 26px;
	background: rgba(217, 217, 217, 0.06);
	border: 1px solid rgba(151, 150, 233, 0.2);
	border-radius: 50em;
	transition: .5s;
	font-size: 15px;
	font-weight: 500;
}
.login_btn:hover,
.login_btn:focus{
	color: #fff;
	background: #4342F5;
}

.login_btn img {
	width: 19px;
	display: inline-block;
	padding-top: 4px;
}

.border_btn{
	color: #4342F5;
	border: 1px solid #4342F5;
	display: inline-block;
	padding: 7px 25px;
	border-radius: 30px;
	font-weight: 500; 
	font-size: 15px;
	transition: .5s;
}
.border_btn:hover,
.border_btn:focus{
	color: #fff;
	background: #4342F5;
	border-color: #4342F5;
}

.border_btn img {
	width: 19px;
	display: inline-block;
	padding-top: 4px;
}
.light .border_btn:hover,
.light .border_btn:focus{
	color: #fff!important;
}

/* Drop Down Menu */

.navigation ul li{
	position: relative;
}
.navigation ul li i{
	font-size: 10px;
	position: relative;
	top: -1px;
	margin-left: 1px;
}
.navigation ul li ul{	
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	background: #ffffff;
	position: absolute;
	border: none;
	top: 80px;
	left: 0;
	width: 205px;
	z-index: 99;
	display: block;
	opacity: 0;
	visibility: hidden;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 0px;
}

.navigation ul li ul li {
	padding: 0;
	border-bottom: 1px solid #f1f1f1;
	display: block;
	text-align: left;
}
.navigation ul li ul li:last-child {
	border-bottom: 0px solid transparent;
}

.navigation ul li ul li a {
	text-transform: capitalize;
	padding: 8px 15px;
	margin: 0;
	position: relative;
	color: #0b0b31;
	font-size: 15px;
	font-weight: 500;
	transition: .5s;
}
.navigation ul li ul li a:hover{
	background: #4342F5;
	color: #fff;
}
.navigation ul li:hover ul {
	opacity: 1;
	visibility: visible;
	top: 100%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
/* Mobile Menu */

#mobile_menu{
	display: none;
}

.slicknav_menu{
	position: relative;
}
.slicknav_menu i{
	display: none;
}
.slicknav_nav{
	position: absolute;
}
.slicknav_menu .slicknav_icon{
	font-size: 22px;
}
.slicknav_btn,
.slicknav_btn:hover,
.slicknav_btn:focus{
	color: #fff;
}
.slicknav_nav{
	text-align: left;
	top: 36px;
	left: 0;
	width: 100%;
}

/* Slider */

.home-slider-area {
	background-size: cover;
	position: relative;
	padding-top: 20px;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	transform-origin: bottom;
	background-color: #111827;
}

.home-slider-area .main_btn:hover,
.home-slider-area .main_btn:focus{
	color: var(--white);
	background: rgba(217, 217, 217, 0.06);
	border: 1px solid rgba(151, 150, 233, 0.2);
}

.home-slider{
	height: 700px;	
}
.single-slide{
	position: relative;
	z-index: 1;
	color: var(--white);
}
.single-slide,
.home-slider .row{
	height: 100%;
}
.slider-content{
	padding-right: 25%;
}
.single-slide h2 span {
	background: linear-gradient(90deg, #7B3EFF 45.53%, #00C4FF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.single-slide h2 {
	color: var(--white);
	font-size: 40px;
	line-height: 61px;
	margin-bottom: 18px;
}
.light .single-slide h2{
	color: #fff;
}
.single-slide  p{
	padding-bottom: 20px;
}
.slider-image{
	position: relative;
}
.bud-1 {
	position: absolute;
	top: 13%;
	right: -19%;
}
.bud-2 {
	position: absolute;
	bottom: 26%;
	right: -4%;
}

.bud-3 {
	position: absolute;
	bottom: 10%;
	left: -4%;
}
.single-budge {
	background: #192337;
	color: #fff;
	display: inline-block;
	padding: 8px 18px;
	border-radius: 4px;
}
.single-budge img {
	display: inline-block;
	padding-right: 10px;
	width: 48px;
	float: left;
	padding-top: 3px;
}
.bud_content{
	display: inline-block;
}
.bud_content h4 {
	font-size: 15px;
	margin-bottom: 0;
	line-height: 10px;
	padding-top: 7px;
}
.bud_content span {
	color: #fff;
	font-size: 12px;
}

.vid_btn{
	text-decoration: underline;
}
.slider-content .vid_btn {
	margin-left: 22px;
	margin-top: 0;
	display: inline-block;
	color: var(--white);
	background: rgba(217, 217, 217, 0.06);
	border: 1px solid rgba(151, 150, 233, 0.2);
	padding: 7px 25px;
	display: inline-block;
	font-weight: 500;
	border-radius: 25px;
	font-size: 15px;
	transition: .8s;
	position: relative;
	overflow: hidden;
	z-index: 1;	
	text-decoration: none;
}

.slider-content .vid_btn:hover,
.slider-content .vid_btn:focus{
	background-color: #4342F5;
	border-color: #4342F5;
}
/* Start About */


.about-us{
	position: relative;
}
.shape_1 img,
.shape_2 img{

}
.shape_1 {
	position: absolute;
	left: 0;
	top: 21%;
	z-index: -1;
}
.shape_2{
	position: absolute;
	right: 0;
	top: 21%;
	z-index: -1;
}
.bubble_6 {
	position: absolute;
	top: 8%;
	left: 29%;
}

.bubble_7 {
	position: absolute;
	top: 36%;
	left: 67%;
}

.bubble_8 {
	position: absolute;
	top: 19%;
	right: 17%;
}

.bubble_9 {
	position: absolute;
	bottom: 10%;
	right: 6%;
}
.about-content h2{
	margin-bottom: 40px;
}
.about-content .border_btn{
	color: #fff;
	margin-bottom: 60px;
	
}
.light .about-content .border_btn{
	color: #222;
}	
.about-content ul{
	list-style-type: none;
	padding-left: 0;
	font-weight: 500;
}
.about-content li {
	width: 50%;
	float: left;
	margin-bottom: 23px;
}
.about-content li i {
	font-size: 10px;
	width: 21px;
	text-align: center;
	height: 21px;
	line-height: 21px;
	border: 1px solid #4569E7;
	color: #4569E7;
	border-radius: 50%;
	margin-right: 5px;
}

/* Light*/

.light h1, 
.light h2, 
.light h3, 
.light h4, 
.light h5, 
.light h6{
	color: #222;
}
.light {
	color: #444;
}

.light{
	background-color: #fff;
}
.light.about-us{
	color: #444;	
	padding-top: 100px;
}
.light.about-us .about-content h2{
	color: #222;
}
.light.about-us .about-content li{
	color: #444;
}

/* End  About */


/* Start Service */

.services{
	position: relative;
	padding-bottom: 50px
}

.bubble_10 {
	position: absolute;
	top: 4%;
	left: 16%;
}
.bubble_11 {
	position: absolute;
	top: 8%;
	left: 57%;
}

.bubble_12 {
	position: absolute;
	bottom: 20%;
	right: 3%;
}
.bubble_13 {
	position: absolute;
	bottom: -6%;
	left: 59%;
}

.bubble_14 {
	position: absolute;
	bottom: 19%;
	left: 52%;
}

.bubble_15 {
	position: absolute;
	bottom: 8%;
	left: 11%;
}
.single-service {
	border: 1px solid #2D4C70;
	border-radius: 10px;
	padding: 60px 30px 30px 30px;
	margin-bottom: 30px;
}
.light .single-service {
	border-color: #cdd4de;
}
.single-service img{
	width: 45px;
	margin-bottom: 20px;
}

.single-service h3 {
	font-size: 23px;
	margin-bottom: 15px;
}

.light.services .single-service h3{
	color: #222;
}

/* End Service */

/* Start Counter */

.counter-up{
	background-color: #111827;
	position: relative;
	z-index: 1;
}
.counter-up:before{
	content: '';
	left: 0;
	top: 0;
	position: absolute;
	background-image: url(../img/counter-shape1.png);
	width: 300px;
	height: 239px;
	z-index: -1;
	opacity: .5;
}

.counter-up:after{
	content: '';
	right: 0;
	bottom: 0;
	position: absolute;
	background-image: url(../img/counter-shape2.png);
	background-size: contain;
	width: 300px;
	height: 239px;
	z-index: -1;
	opacity: .5;
}
.counter-title h2{
	margin-bottom: 40px;
}
.counter{
	text-align: center;
	background: #E2E2FC;
	border-radius: 4px;
	padding: 40px 10px 30px;
	margin-bottom: 30px;
}
.counter .number ,
.counter .number h3{
	color:#6B6BD4;
	font-size: 32px;
	font-weight: 700;
}
.counter .number h3{
	display: inline-block;
}
.counter span{
	color: #393939;
	font-weight: 500;
	font-size: 16px;
}
.c-2{
	background: #B9DCFF;
}
.c-2 .number ,
.c-2 .number h3{
	color:#0984E3;
}

.c-3{
	background: #C2FCEC;
}
.c-3 .number ,
.c-3 .number h3{
	color:#00B894;
}

.c-4{
	background: #FFD4CA;
}
.c-4 .number ,
.c-4 .number h3{
	color:#E17055;
}

.light .counter-title h2{
	color: #fff;
}

/* End Counter */


/* Start Pricing */

.pricing-table{
	padding-top: 50px;
	padding-bottom: 100px;
}
.pricing-tab {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-tab span{
    vertical-align: middle;
}
.pricing-tab .pricing-tab-switcher {
	height: 24px;
	width: 70px;
	background: rgba(103, 33, 255, 0.2);
	display: inline-block;
	border-radius: 30px;
	position: relative;
	transition: all 0.3s ease;
	margin: 0 18px;
	transform: translateY(-3px);
}
.pricing-tab .pricing-tab-switcher:hover{
    cursor: pointer;
}

.pricing-tab .pricing-tab-switcher::before {
	content: '';
	position: absolute;
	left: 7px;
	top: 3px;
	background: #4342F5;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	transition: all 0.3s ease;
}

.pricing-tab .pricing-tab-switcher.active:before {
    left: calc(100% - 33px)
}
.annual_price{
	display: none;
}
.change-subs-duration .monthly_price{
	display: none;
}
.change-subs-duration .annual_price{
	display: block;
}
.monthly_tab_title,
.annual_tab_title{
	font-weight: 700;
	font-size: 19px;
}

.annual_tab_title p {
	display: inline-block;
	padding-left: 4px;
	font-weight: 400;
	font-size: 13px;
	color: #FDCB6E;
}
.light .annual_tab_title p {
	color: #7B3EFF;
}

.pricing-tab{
	margin-bottom: 30px;
	text-align: center;
}
.single-pricing{
	background-color: #192337;
	text-align: center;
	border-radius: 10px;
	padding: 50px 30px;
	margin-bottom: 30px;
}
.single-pricing img{
	width: 45px;
	display: inline-block;
	margin-bottom: 20px;
}
.pricing-amount {
	background: rgba(217, 217, 217, 0.06);
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	padding: 3px 16px;
	border-radius: 30px;
	display: inline-block;
	margin-bottom: 30px;
	border: 1px solid rgba(151, 150, 233, 0.2);
}
.single-pricing h3{
	margin-bottom: 20px;
}
.single-pricing ul{
	list-style-type: none;
	margin-bottom: 30px;
	padding-left: 0;
}
.single-pricing ul li{
	line-height: 31px;
}
.grborder-btn{
	color: #fff;
	background: linear-gradient(#192337, #192337) padding-box,
	linear-gradient(to right, #7B3EFF , #00C4FF) border-box;
	border-radius: 50em;
	border: 1px solid transparent;
	display: inline-block;
	padding: 6px 26px;
}
.light .grborder-btn{
	background: linear-gradient(#fff, #fff) padding-box,
	linear-gradient(to right, #7B3EFF , #00C4FF) border-box;
	color: #7B3EFF;
}

.light.pricing-table {
	padding-top: 100px;
}
.light .single-pricing{
	background: #fff;
	border: 1px solid #cdd4de;
}

.light .single-pricing h3{
	color: 
}
.light.pricing-table .pricing-amount {
	background: #4342F5;
	color: #fff;
}

/* End Pricing */

/* Start Tools Area */
.tools-area{
	background-repeat: no-repeat;
	background-size: cover;
	
}
.single-tools {
	text-align: center;
	background: rgba(255, 255, 255, 0.04);
	padding: 30px;
	border-radius: 10px;
	margin-bottom: 30px;
	border: 1px solid rgba(151, 150, 233, 0.2);
}
.single-tools img{
	display: inline-block;

}
.ticon{
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: #4342F5;
	border-radius: 50%;
	display: inline-block;
	margin-bottom: 15px;
}
.single-tools h3{
	color: #fff;
	font-size: 23px;
}
.single-tools a{
	color: #fff;
}

/* End Tools Area */

/* Start Video Area */

.video-area {
	
}
#video_player{
	width: 100%;
	margin-bottom: 40px;
}
#video_player .vp-title{
	display: none;
}

/* End Video Area */

/* Start Testimonials Area */
.rev_content{
	border: 1px solid #2D4C70;
	padding: 30px 40px 30px 80px;
	border-radius: 10px;
}
.light .rev_content{
	border: 1px solid #cdd4de;
}

.single-review {
	position: relative;
	width: 59%;
	display: ;
	margin: 0 auto;
	transform: translateX(75px);
}
.rev_img {
	position: absolute;
	left: -127px;
	top: 45px;
}
.rev_img::before {
	content: '';
	background-image: url(../img/icons/quote.svg);
	left: -30px;
	position: absolute;
	top: -14px;
	width: 50px;
	height: 73px;
}
.rev_img img{
	width: 170px;
}
.rev_rating {
	color: #FFD700;
	font-size: 14px;
	margin-bottom: 5px;
}
.rev_content p{
	margin-bottom: 20px;
}
.rev_content h3{
	font-size: 17px;
	margin-bottom: 2px;
}
.rev_content span{
	font-size: 14px;
}
.review-slider .slick-dots {
	position: absolute;
	bottom: -25px;
	display: block;
	width: auto;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	top: -97px;
	right: 0;
}
.review-slider .slick-dots li button::before {
	color: #7B3EFF;
	opacity: 1;
	font-size: 10px;
	border-radius: 50%;
	line-height: 17px;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
}
.review-slider .slick-dots li {
	margin: 0 3px;
}
.review-slider .slick-dots li.slick-active  button::before {
	outline: 1px solid #7B3EFF ;
}


/* End Testimonials Area */


/* Start FAQ */
.accordion-item,
.accordion-button,
.accordion-button:not(.collapsed){
	background-color: #192337;
	color: #fff;
	border-color: #192337;
	box-shadow: inherit;
}
.accordion-item{
	margin-bottom: 30px;
	border-radius: 10px;
	padding: 5px;
}
.accordion-button{
	color: #fff;
	font-size: 22px;
}
.accordion-button:not(.collapsed){
	color: #4342F5;
	padding-bottom: 5px;
}
.accordion-button:focus{
	box-shadow: inherit;
}
.accordion-body{
	font-size: 16px;
}
.accordion-button::after{
	background-image: var(--bs-accordion-btn-active-icon);
}

.light .accordion-item, 
.light .accordion-button, .light 
.accordion-button:not(.collapsed) {
	background-color: #F6F6F6;
	color: #444;
	border-color: #F6F6F6;
	box-shadow: inherit;
}

.light .accordion-item, 
.light .accordion-button, 
.light .accordion-button:not(.collapsed) {
	border-color: #d8d2d2;
}
.light .accordion-item:not(:first-of-type){
	border-top: 1px solid #d8d2d2;
}


/* End FAQ */

/* Start Team */
.pb_100{
	padding-bottom: 100px;
}
.single-team{
	position: relative;
	margin-bottom: 30px;
}
.single-team img{
	border-radius: 10px;
}
.team-content {
	background-color: rgba(217, 217, 217, 0.2);
	color: #fff;
	text-align: center;
	padding: 20px;
	width: 70%;
	border-radius: 7px;
	position: absolute;
	bottom: 20px;
	left: 34%;
	overflow: hidden;
	height: 93px;
	transition: .6s;
}
.team-content::after {
	content: '';
	background: linear-gradient(0deg, #7B3EFF 45.53%, #00C4FF 100%);
	width: 6px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.single-team:hover .team-content{
	padding-bottom: 108px;
}
.team-content h3{
	color: #fff;
	font-size: 20px;
	margin-bottom: 0;
}
.team-content span {
	font-weight: 500;
	font-size: 14px;
	text-transform: capitalize;
}
.team-content ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	transition: .5s;
	transform: translateY(200%);
}
.single-team:hover ul{
	transform: translateY(0%);
}
.team-content ul li{
	display: inline-block;
	padding-top: 8px;

}
.team-content ul li a{
	width: 25px;
	height: 25px;
	line-height: 25px;
	border: 1px solid #fff;
	display: block;
	border-radius: 50%;
	margin: 0 3px;
	color: #fff;
	font-size: 13px;
}

/* End Team */


/* Start Partner */

.partner-area {
	background: #192337;
	padding: 50px;
	border-radius: 10px;
	margin-bottom: -70px !important;
	position: relative;
	z-index: 99;
}

/* End Partner */

/* Start CTA */
.cta-area{
	background-size: cover;
	background-color: #6C4EFF;
	padding-top: 145px;
}
.cta-area span{
	display: block;
	margin-bottom: 15px;
}
.light .cta-area span,
.light .cta-area h2{
	color: #fff;
}
.cta-area h2 {
	font-size: 35px;
	margin-bottom: 25px;
}

.cta_btn {
	background: #fff;
	color: #222;
	padding: 9px 25px;
	border-radius: 30px;
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
}
.cta_btn:hover,
.cta_btn:focus{
	color: #222;
}
.cta_btn i{
	background: linear-gradient(90deg, #7B3EFF 45.53%, #00C4FF 100%);
	color: #fff;
	width: 25px;
	height: 25px;
	line-height: 25px;
	border-radius: 50%;
	font-size: 12px;
	margin-left: 3px;
}


/* End CTA */

/* Start Contact */

.contact-info-area .section-title{
	margin-bottom: 40px;
}
.contact-info-area{
	padding-right: 50px;
}
.social_options{
	list-style-type: none;
	padding: 0;
	margin-top: 30px;
}
.contact-info i{
	padding-right: 5px;
}
.social_options li{
	display: inline-block;
	margin-right: 10px;
}
.social_options li a{
	background: linear-gradient(#111827, #111827) padding-box, linear-gradient(to right, #7B3EFF , #00C4FF) border-box;
	border: 1px solid transparent;
	width: 35px;
	height: 35px;
	line-height: 35px;
	color: #12A8FF;
	border-radius: 50%;
	display: block;
	text-align: center;
	font-size: 14px;
}
.light .social_options li a{
	background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #7B3EFF , #00C4FF) border-box;
	
}
.contact-form{
	padding: 40px;
	background-color: #192337;
	border-radius: 10px;
	border: 1px solid #476180;
	margin-left: 80px;
}

.light .contact-form{
	background-color: #F6F6F6;
	border: 1px solid #9099a6;
}
.contact-form .form-control,
.form-control{
	border: 1px solid #476180;
	background: transparent;
	color: #fff;
	height: 45px;
	line-height: 45px;
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: 400;
}
.light .contact-form .form-control, .form-control{
	border: 1px solid #9099a6;
}
.form-control::-webkit-input-placeholder { /* Chrome */
 color: #fff;
}
.form-control::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #fff;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
 color: #fff;
}

.light .form-control::-webkit-input-placeholder { /* Chrome */
 color: #444;
}
.light .form-control::placeholder {
  color: #444;
  opacity: 1; /* Firefox */
}

.light .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #444;
}

.light .form-control::-ms-input-placeholder { /* Microsoft Edge */
 color: #444;
}

.light .contact-form .form-control, .form-control {

	color: #444;
}
.contact-form .form-control:focus,
.form-control:focus
{
	border: 1px solid #6721FF;
	box-shadow: inherit;
	background: transparent;
}
.contact-form textarea.form-control{
	height: 140px;
	text-align: left;
}
.contact-form .main_btn {
	position: relative;
	padding-right: 33px;
}
.contact-form .main_btn::after {
	position: absolute;
	content: '';
	background-image: url(../img/icons/arrow-top.svg);
	width: 11px;
	height: 11px;
	top: 17px;
	right: 15px;
	background-size: cover;
}
.form-control:focus{
	border-color: #6721FF;
}

/* End Contact */

/* Footer */

.footer{
	padding: 0px 0 10px;
	color: var(--white);
	background-color: #111827;
}
.footer-about{
	padding-right: 50px;
}
.single-footer{
	margin-bottom: 40px;
}
.footer-about .site-logo{
	margin-bottom: 25px;
}
.footer-about p{
	margin-bottom: 22px;
}
.footer-about ul li{
	display: inline-block;
	padding-right: 5px;
}
.footer h3{
	color: var(--white);
	font-size: 22px;
	margin-bottom: 25px;
}

.footer ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.footer a{
	color: var(--white);
}
.footer ul li {
	line-height: 32px;
	margin-right: 2px;
}
.footer-about ul li a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	background-color: var(--green);
	display: block;
	text-align: center;
	border-radius: 50%;
	font-size: 14px;
}
.newsletter-area form{
	position: relative;
}
.newsletter-area button {
	background: transparent;
	border: 1px solid transparent;
	position: absolute;
	top: 10px;
	right: 12px;
}
.newsletter-area .form-control{
	color: #fff;
}
.newsletter-area button img{
	width: 18px;
}
.copyright {
	border-top: 1px solid rgb(255, 255, 255, 0.09);
	padding-top: 30px;
}

.light.footer{
	padding-top: 80px;
}

.light.footer .form-control::placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}

.light.footer .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #ffffff;
}

.light.footer .form-control::-ms-input-placeholder { /* Microsoft Edge */
 color: #ffffff;
}

.light.footer .form-control::-webkit-input-placeholder { /* Chrome */
 color: #ffffff;
}
.light.footer .form-control::placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}

.light.footer .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #ffffff;
}

.light.footer .form-control::-ms-input-placeholder { /* Microsoft Edge */
 color: #ffffff;
}

/*
* ----------------------------------------------------------------------------------------
* 19.START Thank You DESIGN
* ----------------------------------------------------------------------------------------
*/

.thankyou-text{
	
}
.thankyou-text h2{
	font-size: 30px;
	margin-bottom: 40px;
}

/* Home 2 */

.banner-2.home-slider-area{
	position: relative;
}
.banner-2.home-slider-area:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: .8;
}
.banner-2 .bubble_2,
.banner-2 .bubble_3,
.banner-2 .bubble_4,
.banner-2 .bubble_5{
	z-index: 1;
}
.banner-2 .bubble_3 {

	left: 46%;
	bottom: 14%;
}
.banner-2 .slider-content{
	padding-right: 0;
}

.banner-2 .single-slide p {
	padding: 0 18% 20px;
}

.home-2 .single-review {
	position: relative;
	width: auto;
	display: ;
	margin-left: 170px;
	transform: translateX(0px);
	margin-bottom: 30px;
}






