@charset"utf-8";
:root {
  --primary: #74BBFB;
  --secondary: #ee8275;
  --white: #ffffff;
  --black: #000000;
  --hdnColor: #84d6f9;
  --textColor: #9798a0;
  --borderColor: #3d4158;
  --mainbg:#1e2237;
  --pinkbg: linear-gradient(180deg, #f7a79b, #e91857);
  --hdnFont: "Roboto", sans-serif;
}


*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body,
html {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

body{
  font-family: "Inter", sans-serif;
  color: var(--textColor);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  background-color: var(--mainbg);
}

div,
table,
td,
tr,
h1,
h2,
h3,
h4,
h5,
h6,
p,
section,
article,
figure{
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-weight: normal;
}

a,
input,
textarea,
button{
	outline: 0;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover{
	border-color: #76c7ff !important;
	box-shadow: none !important;
	outline: none;
}

select {
	outline: 0;
}

input::placeholder {
	opacity: 1;
}

a{
	text-decoration: none;
	border: none;
	outline: 0;
	color: #76c7ff;
}

a:hover{
	text-decoration: none;
	border: none;
	outline: 0;
	color: #000000;
}

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

button,
button:focus{
	text-decoration: none;
	border: none;
	outline: 0;
}

ul,
ol,
ul li,
ol li{
	list-style: none;
	margin: 0;
	padding: 0;
}

p:empty{
	display: none;
}

img{
	width: auto;
	max-width: 100%;
	height: auto;
}

body::selection{
	background: #00589e;
	color: #ffffff;
}

body::-moz-selection{
	background: #00589e;
	color: #ffffff;
}

p{
	font-size: 18px;
	color: var(--textColor);
	line-height: 30px;
	margin-bottom: 20px;
}

.ml-15{
	margin-left: 15px;
}

.sec-hdn{
	text-align: center;
}
.sec-hdn h2{
	font-family: var(--hdnFont);
	font-size: 50px;
	color: var(--white);
	font-weight: normal;
	margin-bottom: 30px;
}
.sec-hdn h2 span{
	font-family: "Inter", sans-serif;
	font-size: 14px;
	color: var(--hdnColor);
	text-transform: uppercase;
	letter-spacing: 4px;
	display: block;
	width: 100%;
	margin-bottom: 20px;
}
.sec-hdn p{
	max-width: 73%;
	margin: 0 auto;
}


/*================ Header Style Start ================*/
/*************** Header Style Start ***************/
header{
 width: 100%;
}
.top-section{
	width: 100%;
	padding: 15px 0 20px;
}
.top-flxSec{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/*************** Navigation Style Start ***************/
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
    height: 20px;
	background-image: none;
	position: relative;
	border-bottom: 3px solid #e91857;
    transition: all 300ms linear;
	border-radius:1px;
}
.navbar-light .navbar-toggler-icon:after{
	width: 35px;
	position: absolute;
	height: 3px;
	background-image: var(--pinkbg);
	top: -1px;
	right: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
	border-radius: 10px;
}
.navbar-light .navbar-toggler-icon:before{
	width: 30px;
	position: absolute;
	height: 3px;
	background-color: #f79f97;
	top: -1px;
	right: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
	border-radius: 10px;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
	width: 35px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}
.nav-link{
	color: #5e6279 !important;
	font-weight: 500;
    transition: all 200ms linear;
	font-size: 16px;
	cursor: pointer;
}
.nav-item:hover .nav-link{
	color: var(--white) !important;
}
.nav-item.active .nav-link{
	color: var(--white) !important;
}
.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
}
.nav-item:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-image: var(--pinkbg);
	opacity: 0;
    transition: all 200ms linear;
	border-radius: 10px;
}
.nav-item:hover:after{
	bottom: 0;
	opacity: 1;
}
.nav-item.active:after{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-image: var(--pinkbg);
	opacity: 1;
    transition: all 200ms linear;
	border-radius: 10px;
}
.nav-item{
	position: relative;
    transition: all 200ms linear;
	margin:0 1.5rem;
	padding: 0 .3rem;
}
/*************** Primary Style Start ***************/
#switch,
#circle {
	cursor: pointer;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
} 
.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
	max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
	padding: 10px!important;
	margin: 0;
	font-size: 13px;
	letter-spacing: 1px;
	color: #212121;
	background-color: #fcfaff;
	border: none;
	border-radius: 3px;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}
.dropdown-toggle::after {
	display: none;
}
.dropdown-item {
	padding: 3px 15px;
	color: #212121;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color: rgba(129,103,169,.6);
}
.nav-link-button{
	background: var(--pinkbg);
	padding: 16px 50px;
	border-radius: 30px;
	font-size: 16px;
	color: var(--white)!important;
	margin-top: 5px;
	margin-left: 20px;
	transition: .4s;
	cursor: pointer;
}
.nav-link-button:hover{
	background-image: linear-gradient(180deg, #e91857, #f7a79b);
	color: var(--white);
	transition: all 1s ease-in;
}


/*************** Banner Style Start ***************/
.banner-container{
	width: 1332px;
	margin: 0 auto;	
}
.banner-wave {
	position: relative;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 710px;
	width: 100%;
	background: url(../images/banner-shadow.png) 0 0 no-repeat #2f3450;
	background-size: 100%;
	border-radius: 40px;
}
.banner-wave::before {
	content: "";
	display: block;
	position: absolute;
	border-radius:0;
	width: 480px;
    height: 170px;
	background-color: var(--mainbg);
	left: 0px;
	bottom: 0;
}
.banner-wave::after {
	content: "";
	display: block;
	position: absolute;
	border-radius: 0 0 0 40px;
	width: 480px;
	height: 75px;
	background-color: #2f3450;
	left: 0;
	bottom: 130px;
}
.shapebg{
    position: absolute;
    bottom: -32px;
	left: 307px;
}
.shapebg img {
    width: 218px;
    height: 218px;
}
.appstore-sec{
	background: #2f3450;
	width: 385px;
	padding: 28px 0;
	border-radius: 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
}
.banner-content{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.bammer-img{
	width: 52%;
	text-align: right;
}
.bammer-img img{
	position: relative;
	margin-top: 80px;
	z-index: 2;
}
.banner-text{
	width: 45%;
}
.banner-text h1{
	font-size: 61px;
	color: var(--white);
	padding-top: 70px;
	padding-bottom: 20px;
	line-height: 1.1;
}
.banner-text h1 span{
	font-size: 80px;
	display: block;
	color: #7ac1e1;	
}
.banner-text h1 span em{
	font-style: inherit;
	color: #424765;
	text-decoration: underline;
}
.banner-text p{
	color:#a9aaae;
	font-size: 17px;
	margin-bottom: 30px;
}
.banner-text p.whitetext{
	color:var(--white);
}
.banner-form{
	position: relative;
	width: 100%;
	z-index: 9;
}
.banner-form input[type="text"]{
	background: #2a2f4a;
	border: solid 1px #4c516c;
	border-radius: 50px;
	color: var(--white);
	padding:13px 25px 15px;
	font-size: 16px;
	width: 100%;
}
.banner-form input[type="submit"] {
    background: url(../images/arrow-icon.png) 0 0 no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    width: 25px;
    height: 25px;
    margin-top: 22px;
    margin-right: 20px;
}
.appmob-sec{
	display: none;
}


/*================ Header Style End ================*/

/*================ Contact modal =====================*/
/* Modal Background */
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Modal Content */
.modal-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translate(-50%, 0);
    background: #2F3451;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: top 0.5s ease-in-out;
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}


/*================ Footer Style Start ================*/
.bottom-main-footer{
	position: relative;
	padding: 60px 0 30px 0;
}
.footer-row{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.footer-logo{
	position: relative;
	margin-right: 50px;
	padding-right: 50px;
}
.footer-logo::after{
	position: absolute;
	content: '';
	width: 1px;
	height: 100%;
	background-color: var(--borderColor);
	top: 0;
	right: 0;
}
.footer-logo img{
	max-width: 70px;
}
.footer-menu{
	margin-right: auto;
}
.footer-menu ul{
	position: relative;
	display: flex;
}
.footer-menu ul li{
	font-size: 15px;
	color: var(--textColor);
	margin-left: 25px;
}
.footer-menu ul li:first-child{
	margin-left: 0;
}
.footer-menu ul li a{
	color: var(--textColor);
}
.footer-menu ul li a:hover{
	color: var(--hdnColor);
}

.footer-social-media{
	display: flex;
	align-items: center;
}
.footer-social-media p{
	margin-bottom: 0;
}
.footer-social-media ul{
	display: flex;
	margin-left: 8px;
}
.footer-social-media ul li{
	margin: 2px 5px;
}
.footer-social-media ul li a{
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: #23273c;
	border-radius: 100%;
	font-size: 16px;
	text-align: center;
	line-height: 40px;
	color: var(--white);
}
.footer-social-media ul li a:hover{
	background-color: #36394e;
}

.footer-copyright{
	padding-top: 40px;
}
.footer-copyright p{
	font-size: 15px;
	color: var(--textColor);
	text-align: center;
}

/*================ Footer Style End ================*/



/*=========================== Index Page Style Sheet Start Here ===========================*/

/*************** Awards Style Start ***************/
.awards-sec{
	position: relative;
	padding: 120px 0 60px 0;
	text-align: center;
}
.awards-sec::after{
	position: absolute;
	content: '';
	width: 70%;
	height: 1px;
	background: var(--borderColor);
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.awards-hdn{
	margin-bottom: 60px;
}
.awards-hdn h2{
	font-size: 20px;
	color: #777b95;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.awards-img{
	display: inline-block;
	border: 1px solid var(--borderColor);
	padding: 35px 40px;
	border-radius: 10px;
	margin-bottom: 20px;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}
.awards-img img{
	opacity: 0.4;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}
.awards-carousel .item:hover .awards-img{
	border: 1px solid var(--white);
}
.awards-carousel .item:hover .awards-img img{
	opacity: 1;
}
.awards-carousel .item p{
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}
.awards-carousel .item:hover p{
	color: var(--white);
}


/*************** Features Style Start ***************/
.features-sec{
	position: relative;
	padding: 100px 0;
}
.features-row{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 80px;
}
.features-img-clm{
	max-width: 450px;
}
.features-img-clm img{
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}
.features-row:hover img{
	transform: scale(1.05);
}
.features-text-clm{
	width: calc(100% - 450px);
	padding: 20px 130px;
}
.features-text-clm h3{
	font-family: var(--hdnFont);
	font-size: 35px;
	color: var(--white);
	margin: 20px 0 20px 0;
}
.features-row:nth-child(odd) .features-img-clm{
	order: 1;
}


/*************** Testimonial Style Start ***************/
.testimonial-sec{
	position: relative;
	background: #23273c;
	padding: 120px 0;
}
.testimonial-sec::before{
	position: absolute;
	content: '';
	width: 40px;
	height: 40px;
	background: url(../images/logo.png) no-repeat 0 0;
	background-size: contain;
	top: -20px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.testimonial-sec .sec-hdn{
	margin-bottom: 60px;
}
.testimonial-sec .sec-hdn p{
	font-size: 15px;
}
.testimonial-sec .sec-hdn p strong{
	color: var(--white);
	font-weight: 500;
}
.testimonial-sec .sec-hdn p strong a{
	color: var(--white);
	text-decoration: underline;
}
.testimonial-sec .sec-hdn p img{
	margin-left: 20px;
}

.testimonial-carousel .item{
	padding: 0 5px;
}
.testimonial-box{
	position: relative;
	width: 100%;
	border: 1px solid var(--borderColor);
	border-radius: 6px;
	padding: 20px 20px;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}
.testimonial-carousel .testimonial-box img{
	width: auto;
	display: inline-block;
}
.testimonial-box p{
	font-size: 16px;
	color: #535b65;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}
.testimonial-itm-hdr{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.testimonial-itm-hdr p{
	margin: 0;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}
.testimonial-itm-hdr p img{
	position: relative;
	margin-top: -5px;
}
.testimonial-author{
	display: flex;
	align-items: center;
	margin-top: 25px;
}
.testimonial-author img{
	width: 60px;
	height: 60px;
	border-radius: 100%;
	margin-right: 15px;
}
.testimonial-author p{
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}
.testimonial-author p span{
	font-size: 14px;
	display: block;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}


.testimonial-box:hover{
	background-color: #292d42;
}
.testimonial-box:hover p{
	color: #afb1b3;
}
.testimonial-box:hover .testimonial-author p{
	color: var(--white);
}
.testimonial-box:hover .testimonial-author p span{
	color: #868789;
}


.testimonial-carousel .owl-dots{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}
.testimonial-carousel .owl-dots .owl-dot{
	margin: 0 4px;
}
.testimonial-carousel .owl-dots .owl-dot span{
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #34384d;
	border-radius: 100%;
}
.testimonial-carousel .owl-dots .owl-dot.active span{
	background-color: var(--hdnColor);
}


.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next{
	display: inline-block;
	width: 60px;
	height: 60px;
	background-color: #292d42;
	border-radius: 100%;
	text-align: center;
	line-height: 65px;
	position: absolute;
	top: 50%;
	margin-top: -60px;
}
.testimonial-carousel .owl-prev .tiIcon,
.testimonial-carousel .owl-next .tiIcon{
	font-size: 20px;
	color: #b2b3b3;
}
.testimonial-carousel .owl-prev{
	left: -75px;
}
.testimonial-carousel .owl-next{
	right: -75px;
}


/*************** FAQ Style Start ***************/
.faq-sec{
	position: relative;
	background: #23273c;
	padding: 30px 0 120px 0;
}
.faq-sec .sec-hdn{
	display: block;
	width: 100%;
	text-align: left;
}
.faq-row{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.faq-left-prt{
	position: relative;
	width: 50%;
}
.faq-left-caption{
	position: absolute;
	max-width: 320px;
	background-color: var(--mainbg);
	border: 1px solid var(--borderColor);
	border-radius: 15px;
	box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.2);
	bottom: -25px;
	right: 0;
	padding: 25px 20px;
}
.faq-left-caption::before{
	position: absolute;
	content: '';
	width: 22px;
	height: 22px;
	background: url(../images/faq-left-caption-before.png) no-repeat 0 0;
	top: 18px;
	left: -21px;
}
.faq-left-caption h3{
	font-size: 18px;
	color: var(--white);
}
.faq-left-caption p{
	font-size: 15px;
	color: #777b95;
	line-height: 25px;
	margin: 12px 0 0 0;
}
.faq-left-caption p a{
	text-decoration: underline;
}
.faq-left-caption p a:hover{
	color: #76c7ff;
	text-decoration: none;
}



.faq-right-prt{
	position: relative;
	width: 50%;
	padding-left: 50px;
	margin-top: -185px;
}
.faq-accordion .card{
	margin-top: 25px;
	width: 100%;
	border: 1px solid var(--borderColor);
	border-radius: 50px;
	background-color: #262a3f;
	padding: 6px 5px;
	transition: all ease-in-out 0.15s;
	-webkit-transition: all ease-in-out 0.15s;
	-moz-transition: all ease-in-out 0.15s;
	-o-transition: all ease-in-out 0.15s;
}
.faq-accordion .card:first-child{
	margin-top: 0;
}
.faq-accordion .card .card-header{
	border: none;
	background-color: transparent;
	padding: 0;
}
.faq-accordion .card .card-header a{
	position: relative;
	font-size: 16px;
	color: var(--white);
	font-weight: 400;
	display: inline-block;
	width: 100%;
	padding: 10px 20px;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
}
.faq-accordion .card .card-header .accordion-title:before {
    position: absolute;
    right: 20px;
    font-family: 'themify';
    content:"\e622";
    width: 30px;
    height: 30px;
    border: 1px solid #4e526a;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    padding: 0;
    font-size: 16px;
    color: #676b83;
    transition: all ease-in-out 0.3s;
		-webkit-transition: all ease-in-out 0.3s;
		-moz-transition: all ease-in-out 0.3s;
		-o-transition: all ease-in-out 0.3s;
}
.faq-accordion .card .card-header .accordion-title.collapsed:before {
    content:"\e61a";
}
.faq-accordion .card .card-body{
	padding: 3px 15px 15px 20px;
}
.faq-accordion .card .card-body p{
	font-size: 15px;
	color: #777b95;
	line-height: 23px;
	margin-bottom: 0;
}

.faq-accordion .card.active{
	border-radius: 10px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}
.faq-accordion .card.active .card-header a{
	color: var(--hdnColor);
}
.faq-accordion .card.active .card-header .accordion-title:before{
	color: var(--hdnColor);
	border-color: var(--hdnColor);
}
/*=========================== Index Page Style Sheet End Here ===========================*/



/*=========================== Responsive Style Sheet Start Here ===========================*/
@media only screen and (min-width:1200px){
	.awards-carousel{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .awards-carousel .item{
    position: relative;
    width: 20%;
    margin: 0 1%;
  }
}

@media only screen and (max-width:1360px){
	.banner-container{
		width: 97%;
	}
	.testimonial-carousel .owl-prev{
		left: -30px;
	}
	.testimonial-carousel .owl-next{
		right: -30px;
	}
}

@media only screen and (max-width:1199px){
	.awards-sec .owl-item .item{
		opacity: 0.3;
	}
	.awards-sec .owl-item.active.center .item{
		opacity: 1;
	}
	.awards-hdn{
		margin-bottom: 30px;
	}
	.features-sec{
		padding: 60px 0;
	}
	.faq-right-prt{
		margin-top: -150px;
	}



	.sec-hdn h2{
		font-size: 40px;
		margin-bottom: 20px;
	}
	.sec-hdn p{
		max-width: 100%;
	}
	p{
		font-size: 16px;
		line-height: 25px;
	}
}


@media only screen and (max-width:1024px){
	.features-row{
		margin-top: 30px;
	}
	.features-img-clm{
		width: 100%;
		text-align: center;
	}
	.features-text-clm{
		width: 100%;
		padding: 20px 0;
		text-align: center;
	}
	.features-row:nth-child(odd) .features-img-clm{
		order: 0;
	}
	/*.testimonial-sec .owl-item .item{
		opacity: 0.3;
	}
	.testimonial-sec .owl-item.active.center .item{
		opacity: 1;
	}*/
	.testimonial-box:hover{
		background-color: transparent;
	}
	.testimonial-box:hover p,
	.testimonial-box:hover .testimonial-author p,
	.testimonial-box:hover .testimonial-author p span{
		color: #535b65;
	}
	.testimonial-sec .owl-item .testimonial-box{
		background-color: #292d42;
	}
	.testimonial-sec .owl-item .testimonial-box p{
		color: #afb1b3;
	}
	.testimonial-sec .owl-item .testimonial-box .testimonial-author p{
		color: var(--white);
	}
	.testimonial-sec .owl-item .testimonial-box .testimonial-author p span{
		color: #868789;
	}
	.faq-sec .sec-hdn{
		text-align: center;
		margin-bottom: 60px;
	}
	.faq-left-prt{
		width: 100%;
		order: 1;
		margin-top: 40px;
	}
	.faq-right-prt{
		width: 100%;
		padding: 0;
		top: 0;
	}
	.footer-logo{
		width: 100%;
		text-align: center;
		padding: 0;
		margin: 0;
	}
	.footer-logo::after{
		display: none;
	}
	.footer-menu{
		width: 100%;
		margin: 30px 0;
	}
	.footer-menu ul{
		justify-content: center;
	}
	.footer-social-media{
		width: 100%;
		justify-content: center;
	}





	.nav-item{
		margin: 0 .6rem;
	}
	.nav-link-button{
		padding: 10px 25px;
	}
	.banner-container{
		width: 90%;
		margin: 0 auto;	
	}
	.banner-text {
		width: 100%;
	}
	.banner-text h1 {
		text-align: center;
	}
	.banner-text p {
		text-align: center;
	}
	.banner-form input[type="text"] {
		padding: 20px 25px 22px;
	}
	.banner-form input[type="submit"] {
		margin-top: 28px;
	}
	.banner-wave{
		height: auto;
		background: url(../images/banner-bg.png) 0 0 no-repeat #2f3450;
		background-size: cover;
	}
	.shapebg{
		display: none;
	}
	.banner-wave::after {
		display: none;
	}
	.banner-wave::before{
		display: none;
	}
	.appstore-sec{
		display: none;
	}
	.appmob-sec{
    display: block;
    width: 100%;
    position: relative;
	}
	.appmob-sec .appstore-sec {
		display: block;
		position: relative;
		width: auto;
		margin-top: 35px;
		text-align: center;
	}
	.bammer-img{
		width: 100%;
		text-align: center;
	}
}


@media (max-width: 767px) {
	.nav-item{
		margin: 0 1.5rem;
	}
	.nav-link-button{
		padding: 14px 30px;
	}
	.nav-item:after{
		display: none;
	}
	.dropdown-toggle[aria-expanded="true"]::after{
		transform: rotate(90deg);
		opacity: 0;
	}
	.dropdown-menu {
		padding: 0 !important;
		background-color: transparent;
		box-shadow: none;
		transition: all 200ms linear;
	}
	.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
		margin-top: 10px !important;
		margin-bottom: 20px !important;
	}
	.top-flxSec {
		align-items: inherit;
        position: relative;
	}
	.navbar-light .navbar-toggler{
		position: absolute;
		top: 20px;
		right: 0;
	}
	.navbar-collapse {
		width: 100%;
		position: absolute;
		top: 60px;
		left: 0;
		z-index: 99;
		background: var(--mainbg);
		padding-bottom: 45px;
		box-shadow: 0 0 10px rgba(129,103,169,.1);
        border-radius: 20px;
	}
	.nav-sec{
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
	}



	.awards-sec{
		padding: 60px 0;
	}
}


@media only screen and (max-width:500px){
	.banner-text h1 {
		font-size: 40px;
	}
	.banner-text h1 span{
		font-size: 60px;
	}

	.features-text-clm h3{
		font-size: 25px;
	}
	.testimonial-sec{
		padding: 60px 0;
	}
	/*.testimonial-author{
		flex-direction: column;
		justify-content: center;
	}
	.testimonial-carousel .testimonial-box img{
		margin: 0;
	}
	.testimonial-author p{
		text-align: center;
	}*/
	.faq-accordion .card .card-header a{
		padding: 10px 60px 10px 20px;
	}
	.faq-left-prt img{
		position: relative;
		left: -25px;
	}
	.faq-left-caption{
		max-width: 270px;
		bottom: -60px;
	}

	.sec-hdn h2{
		font-size: 35px;
	}
}


@media only screen and (max-width:400px){
	.faq-left-caption{
		max-width: 220px;
		bottom: -90px;
	}
	.testimonial-itm-hdr{
		align-items: flex-start;
	}
}
/*=========================== Responsive Style Sheet End Here ===========================*/