/*====== STRUCTURE =======*/
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	overflow-x: hidden;
	margin: 0px;
	max-width: 100%;
	font-family: 'Inter', sans-serif;
}

body[data-rtl="rtl"] {
	direction: rtl;
	text-align: right;
}

ul {
	padding-left: 0px;
}

ul li {
	list-style-type: none;
}

a {
	cursor: pointer;
}

a,
button,
input,
textarea {
	text-decoration: none !important;
	outline: none !important;
	border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
	margin-bottom: 0px;
	margin-top: 0px;
}


.section-heading {
	font-weight: 700;
font-size: 38px;
line-height: 46px;
text-align: center;
color: #3A357F;
margin-bottom: 30px;
}



.sec-space {
	margin-bottom: 70px;
}

.section-spacing {
	padding: 100px 0;
}

.section-spacing-bottom {
	padding-bottom: 150px;
}
.sec-para p{
	font-weight: 400;
	font-size: 16px;
	line-height: 35px;
	color: rgba(58, 53, 127,0.7);
}

/*==== NAVBAR  ======*/
.navbar {
	background: transparent;
	padding: 25px 0;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.menu-links {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.navbar-brand{
	font-family: 'Manrope';
font-style: normal;
font-weight: 800;
font-size: 25px;
line-height: 30px;
text-align: center;
color: #FFFFFF!important;
text-shadow: 0px 4px 33px rgba(0, 0, 0, 0.17);
}
.navbar-nav {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navbar-light .navbar-nav .nav-link {
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
	margin: 0px 25px;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	position: relative;
}
.navbar-light .navbar-nav>li>.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0px;
    width: 0;
    height: 2px;
    background-color: #fff;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transition: 0.3s all ease-out;
    -moz-transition: 0.3s all ease-out;
    -ms-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}
.navbar-light .navbar-nav>li>.nav-link:hover:before, .navbar-light .navbar-nav>li>.nav-link.active:before {
    width: 50%;
    -webkit-transition: 0.3s all ease-out;
    -moz-transition: 0.3s all ease-out;
    -ms-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: #fff;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
	color: #fff;
}

.nav-btn {
	background: #FFFFFF;
	box-shadow: 0px 5px 20px rgba(137, 126, 255, 0.34);
	border-radius: 40px;
	width: 129px;
	height: 50px;
	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;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #7064FF!important;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.nav-btn:hover {
	box-shadow: 0px 5px 20px 0px rgb(137 126 255 / 50%);
}

.nav-white {
	background: #fff;
	-webkit-box-shadow: 0px 10px 20px 0px rgb(37 37 84 / 10%);
	box-shadow: 0px 10px 20px 0px rgb(37 37 84 / 10%);
	padding: 20px 0px;
}
.nav-white .nav-link{
	color: #3A357F!important;
}
.nav-white .navbar-nav>li>.nav-link:before{
    background-color: #3A357F;
}
.nav-white .navbar-brand{
	background: linear-gradient(84.84deg, #FDC5C0 8.29%, #F48CD4 29.14%, #CB93E8 53.91%, #B0C6F2 70.86%, #7ED9FB 91.71%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.nav-white .nav-btn{
	background: linear-gradient(98.25deg, #897EFF 3.21%, #6E61FF 98.14%);
    box-shadow: none;
	color: #fff!important;
}
/*===== HERO SECTION =====*/
#hero {

	height: auto;
	width: 100%;

	padding: 200px 0 50px;
}
#hero:before{
	content:'';
	background: url(../images/hero-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 780px;
	top: 0;
}
.hero-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-heading{
	font-weight: 700;
	font-size: 63px;
	line-height: 85px;
	text-align: center;
	color: #FFFFFF;
	text-shadow: 0px 4px 33px rgba(0, 0, 0, 0.17);
	font-family: 'Manrope';
	max-width: 770px;
	margin: 0 auto 55px;
}
.hero-detail p{
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	color: #FFFFFF;
	margin-bottom: 60px;
}

.search-box{
	background: #FFFFFF;
	box-shadow: 0px 16px 39px rgba(0, 0, 0, 0.06);
	border-radius: 68px;
	height: 80px;
	padding: 15px 20px;
}

div[disabled], input:disabled, button:disabled{
	background: lightgray;
	color: linen;
    opacity: 1;
	cursor: not-allowed;
}

.search-main{
	width: 980px;
	margin-bottom: 50px;
}
.search-input{
	width: calc(100% - 140px);
}
.input-addon{
	margin-right: 20px;
	margin-left: 10px;
}
.search-input input{
	font-weight: 400;
font-size: 16px;
line-height: 19px;
color: #3A357F;
width: 100%;
}
.search-input input::placeholder{
	color: rgba(58, 53, 127,0.7);
}
.btn-search{
	width: 129px;
height: 50px;
background: linear-gradient(98.25deg, #897EFF 3.21%, #6E61FF 98.14%);
box-shadow: 0px 5px 20px rgba(137, 126, 255, 0.34);
border-radius: 40px;
cursor: pointer;
transition: all .6s ease-in-out;
font-weight: 700;
font-size: 16px;
line-height: 19px;
text-align: center;
color: #FFFFFF;
}
.btn-search:hover{
	box-shadow: 0px 10px 20px 0px rgba(137, 126, 255, 0.5);
}

/*=========work============*/
.work-card{
	position: relative;
}
.work-icon{
	width: 96px;
	height: 96px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px auto 70px;
}
.bg-purple{
	background: linear-gradient(98.25deg, #897EFF 3.21%, #6E61FF 98.14%);
box-shadow: 0px 10px 27px rgba(137, 126, 255, 0.34);
}

.bg-lightblue{
	background: linear-gradient(135.84deg, #6DE6FF 5.73%, #50DDFB 94.55%);
box-shadow: 0px 10px 27px rgba(109, 230, 255, 0.34);
}

.bg-pink{
	background: linear-gradient(99.6deg, #FF91F8 3.42%, #FF73F5 94.72%);
box-shadow: 0px 10px 27px rgba(255, 144, 248, 0.34);
}
.work-card h4{
	font-weight: 700;
font-size: 20px;
line-height: 24px;
text-align: center;
color: #3A357F;
margin-bottom: 15px;
}
.work-card p{
	font-weight: 400;
font-size: 16px;
line-height: 25px;
text-align: center;
color: rgba(58, 53, 127,0.7);
margin: 0px 30px;
}

.connector-one::before{
	content: url(../images/line1.png);
    position: absolute;
    right: -120px;
}
.connector-two::before{
	content: url(../images/line2.png);
    position: absolute;
    right: -120px;
}
.btn-download{
	background: linear-gradient(98.25deg, #897EFF 3.21%, #6E61FF 98.14%);
	box-shadow: 0px 5px 20px rgba(137, 126, 255, 0.34);
	border-radius: 40px;
	width: 171px;
	height: 50px;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	color: #FFFFFF;
	cursor: pointer;
	transition: all .6s ease-in-out;
	margin: 40px auto 0;
}
.btn-download:hover{
	box-shadow: 0px 10px 20px 0px rgb(137 126 255 / 50%);
}

/*============Feature Css============*/
.feature-card{
	border:1.5px solid #E9E7FF;
	border-radius: 10px;
	padding: 30px;
	transition: all .6s ease-in-out;
	position: relative;
    overflow: hidden;
	margin-bottom: 30px;
}
.feature-card:hover{
	background: #FFFFFF;
box-shadow: 0px 14px 53px rgba(46, 172, 252, 0.1);
border:1.5px solid transparent;
}

.feature-icon{
	width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.feature-detail h5{
	font-weight: 700;
font-size: 18px;
line-height: 26px;
color: #3A357F;
margin-bottom: 10px;
height: 50px;
}
.feature-detail p{
	font-weight: 400;
font-size: 16px;
line-height: 28px;
color: rgba(58, 53, 127,0.7);
margin-bottom: 35px;
-webkit-box-orient: vertical;
display: -webkit-box;
-webkit-line-clamp: 3;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
}
.learn-link{
	font-weight: 600;
font-size: 16px;
line-height: 19px;
letter-spacing: 0.02em;
color: rgb(58 53 127 / 70%);
display: flex;
align-items: center;
transition: all .6s ease-in-out;
}
.learn-link svg{
	margin-left: 15px;
	opacity: 0.7;
}
.learn-link svg{
	margin-left: 15px;
	opacity: 0.7;

}
svg,path{
	transition: all .6s ease-in-out;
}
.learn-link:hover svg{
	opacity:1;
}
.feature-card:before{
	content: '';
	position: absolute;
	background: transparent;
	width: 100%;
	height: 3px;
	border-radius: 10px;
	top:0;
	left:0;
	transition: all .6s ease-in-out;
}
.card-blue .feature-icon{
	background: linear-gradient(135.84deg, #6DE6FF 5.73%, #50DDFB 94.55%);
	box-shadow: 0px 10px 18px rgba(109, 230, 255, 0.34);
}
.card-blue:hover::before{
	background: #59E0FC;
}
.card-blue:hover .learn-link{
	color: #59E0FC;
}
.card-blue:hover .learn-link svg path{
	stroke: #59E0FC;
}

.card-dark-pink .feature-icon{
	background: linear-gradient(98.25deg, #FF81B1 3.21%, #FF478E 98.14%);
}
.card-dark-pink:hover::before{
	background: #FF478E;
}
.card-dark-pink:hover .learn-link{
	color: #FF478E;
}
.card-dark-pink:hover .learn-link svg path{
	stroke: #FF478E;
}



.card-dark-purple .feature-icon{
	background: linear-gradient(98.25deg, #897EFF 3.21%, #6E61FF 98.14%);
}
.card-dark-purple:hover::before{
	background: #6E61FF;
}
.card-dark-purple:hover .learn-link{
	color: #6E61FF;
}
.card-dark-purple:hover .learn-link svg path{
	stroke: #6E61FF;
}

.card-orange .feature-icon{
	background: linear-gradient(98.25deg, #FF986C 3.21%, #FF7337 98.14%);
}
.card-orange:hover::before{
	background: #FF7337;
}
.card-orange:hover .learn-link{
	color: #FF7337;
}
.card-orange:hover .learn-link svg path{
	stroke: #FF7337;
}


.card-green .feature-icon{
	background: linear-gradient(98.25deg, #6AEACB 3.21%, #38C6A4 98.14%);
}
.card-green:hover::before{
	background: #38C6A4;
}
.card-green:hover .learn-link{
	color: #38C6A4;
}
.card-green:hover .learn-link svg path{
	stroke: #38C6A4;
}


.card-light-pink .feature-icon{
	background: linear-gradient(99.6deg, #FF91F8 3.42%, #FF73F5 94.72%);
}
.card-light-pink:hover::before{
	background: #FF73F5;
}
.card-light-pink:hover .learn-link{
	color: #FF73F5;
}
.card-light-pink:hover .learn-link svg path{
	stroke: #FF73F5;
}


.card-dark-pink2 .feature-icon{
	background: linear-gradient(98.25deg, #FE7BCA 3.21%, #F641AE 98.14%);
}
.card-dark-pink2:hover::before{
	background: #F641AE;
}
.card-dark-pink2:hover .learn-link{
	color: #F641AE;
}
.card-dark-pink2:hover .learn-link svg path{
	stroke: #F641AE;
}

.card-yellow .feature-icon{
	background: linear-gradient(98.25deg, #FFE277 3.21%, #FFDC59 98.14%);
}
.card-yellow:hover::before{
	background: #FFDC59;
}
.card-yellow:hover .learn-link{
	color: #FFDC59;
}
.card-yellow:hover .learn-link svg path{
	stroke: #FFDC59;
}

.card-dark-blue .feature-icon{
	background: linear-gradient(98.25deg, #6397FF 3.21%, #4683FF 98.14%);
}
.card-dark-blue:hover::before{
	background: #4683FF;
}
.card-dark-blue:hover .learn-link{
	color: #4683FF;
}
.card-dark-blue:hover .learn-link svg path{
	stroke: #4683FF;
}


/*=============== FAQs CSS =====================*/

.panel-default>.panel-heading {
	position: relative;
}

.card-header .fa {
	font-size: 14px;
	color: #000000;
	font-weight: 300;
	padding: 5px;
	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;
	cursor: pointer;
}

.card-header {
	background: transparent;
	border: none;
	padding: 12px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 15px 0;
	border-radius: 10px;
}

.card-header[aria-expanded="true"] .icon-btn{
background: rgba(58, 53, 127,0.1);
}


.card-header h5 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
}

.card {
	border: none;
	border-radius: 0;
	cursor: pointer;
	border-bottom: 1px solid #E9E7FF;
}

.card-header .text-card {
	font-weight: 600;
font-size: 24px;
line-height: 29px;
color: #3A357F;
}

.card-body {
	padding: 0px 0px 20px 0px;
}

.card-body p {
	font-weight: 400;
font-size: 16px;
line-height: 35px;
color: rgba(58, 53, 127,0.7);
}

.card-body ul {
	padding-left: 20px;
}

.card-body ul li {
	font-size: 15px;
	line-height: 28px;
	letter-spacing: 0.05em;
	color: #2D2882;
	margin-bottom: 10px;
	list-style: disc;
}

.faq-link,
.faq-link:hover {
	color: #EEB03F;
	font-weight: 600;
	text-decoration: underline;
}

.faq-card {
	margin-bottom: 50px;
}
.icon-btn{
	width: 42px;
height: 42px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: rgba(58, 53, 127,0);
cursor: pointer;
}





/*======= FOOTER ====*/
footer {
	background: #0E0047;
}
.footer-top{
	padding: 60px 0 30px;
}
.footer-links a {
	font-weight: 400;
font-size: 16px;
line-height: 35px;
color:rgba(255, 255, 255, 0.7);
-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}
.footer-logo h5{
	font-weight: 400;
font-size: 16px;
line-height: 35px;
color:rgba(255, 255, 255, 0.6);
}
.footer-links a:hover {
	color:rgba(255, 255, 255, 0.7);
}

.footer-links li:first-child,
.footer-location li:first-child {
	font-weight: 500;
font-size: 14px;
line-height: 17px;
text-transform: capitalize;
color: #FFFFFF;
margin-bottom: 25px;
}

.footer-location label,
.footer-location p {
	font-weight: 400;
font-size: 16px;
line-height: 35px;
color:rgba(255, 255, 255, 0.7);
}

.footer-location label {
	margin-right: 4px;
}


.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 25px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom li:last-child {
	margin-left: 50px;
}

.footer-bottom a,
.footer-bottom p {
	font-weight: 400;
font-size: 12px;
line-height: 15px;
color: #FFFFFF;
}

.footer-bottom ul {
	margin-bottom: 0;
}

.social-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-top: 50px;
}

.social-icons li a {
	background: rgba(255,255,255,0.1);
    border-radius: 5px;
    width: 32px;
    height: 32px;
	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;
	margin-right: 15px;
	-webkit-transition: 0.6s all ease-in-out;
	-o-transition: 0.6s all ease-in-out;
	transition: 0.6s all ease-in-out;
}

.social-icons li a:hover {
	background: #fff;
}

.social-icons li a:hover svg path {
	fill: #0E0047;
	-webkit-transition: 0.6s all ease-in-out;
	-o-transition: 0.6s all ease-in-out;
	transition: 0.6s all ease-in-out;
}

.media{
		align-items: center;
		display: flex;
		text-align: inherit;
}
.media-left {
    position: relative;
    overflow: hidden;
    border-radius: 0.25rem;
}
.image.is-80x80 {
    height: 80px;
    width: 80px;
	border-radius: 50%;
	position: relative;
}
.play-preview{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	z-index: 100;
}
.image.is-80x80 img{
	width: 100%;
	height: 100%;
    border-radius: 50%;
}
.image:before{
	content:'';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
	background-color: rgba(255,255,255,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 50%;
}
.media-content {
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: inherit;
}
.media-left{
	margin-right: 1rem;
}
.video-des strong{
	font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #3A357F;
    margin-bottom: 10px;
}
.video-text{
	font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: rgba(58, 53, 127,0.7);
}
.download-box{
	background: rgba(255, 255, 255, 0.06);
border: 3px solid #FFFFFF;
box-shadow: 0px 15px 40px -4px rgba(16, 24, 40, 0.04);
border-radius: 15px;
padding: 30px;
display: none;
}
.table{
	margin-top: 40px;
	margin-bottom: 0;
}
.table thead th{
	font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #3A357F;
	border-bottom: 1px solid rgb(58 53 127 / 20%);
}
.table th{
	border-top: 0px;
}
.table tbody td{
	font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: rgba(58, 53, 127,0.8);
	border-top: 1px solid rgb(58 53 127 / 10%);
	vertical-align: middle;
}
.button-download{
	width: 100px;
    height: 38px;
    background: linear-gradient(98.25deg, rgb(137, 126, 255) 3.21%, rgb(110, 97, 255) 98.14%);
    box-shadow: rgb(137 126 255 / 34%) 0px 5px 20px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.6s ease-in-out 0s;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: rgb(255, 255, 255);
	display: flex;
	align-items: center;
	justify-content: center;
}
.button-download:hover{
	color: #fff;
}
.gradient-btn {
	position: relative;
	  background: linear-gradient(-90deg, #ad7571, #d676b9, #ae79c9, #6abfde, #ad7571);
	  background-size: 400% 100%;
	text-transform: uppercase;
	font-weight: 600;
	border: none;
	border-radius: 0.25em;
	font-size: 16px;
	letter-spacing: 1px;
	padding: 0;
	margin: 0;
	animation: Gradient 10s ease infinite;
	text-decoration: none;
	width: 350px;
    display: block;
    border-radius:40px;
    height: 70px;
	
  }
  
  .gradient-btn div {
	color: #fff;
	min-height: 70px;
	padding: 0 1.618em;
	border-radius: inherit;
	background-size: inherit;
	background-image: inherit;
	animation: Gradient 10s ease infinite;
	position: relative;
	z-index: 1;
	mix-blend-mode: overlay;	
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  @keyframes Gradient {
	  50% {
		  background-position: 140% 50%;
	  transform: skew(-2deg);
	  }
  }
  
  /* .gradient-btn::after {
	content: '';
	position: absolute;
	background-size: inherit;
	background-image: inherit;
	animation: inherit;
	left: 0px;
	right: 0px;
	top: 2px;
	height: 100%;
	filter: blur(1rem);
  }
   */
