/*=================== common css ====================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique&display=swap');

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

ul,
li {
	list-style: none;
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: 'Poppins', sans-serif;
	text-transform: capitalize !important;
}


/*=================== navbar ====================*/
nav {
	position: relative;
	z-index: 99;
	width: 100%;
	background: #6f39c8;
}

nav .wrapper {
	position: relative;
	max-width: 1300px;
	padding: 0px 30px;
	height: 70px;
	line-height: 70px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.wrapper .logo a {
	color: #f2f2f2;
	font-size: 30px;
	font-weight: 600;
	text-decoration: none;
}

.wrapper .nav-links {
	display: inline-flex;
	margin: 0;
}

.nav-links li {
	list-style: none;
}

.nav-links li a {
	color: #f2f2f2;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 9px 15px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.nav-links li a:hover {
	/* background: #3A3B3C; */
}

.nav-links .mobile-item {
	display: none;
}

.nav-links .drop-menu {
	position: absolute;
	background: #242526;
	width: 180px;
	line-height: 45px;
	top: 85px;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
	transition: all 0.3s ease;
	top: 70px;
	opacity: 1;
	visibility: visible;
}

.drop-menu li a {
	width: 100%;
	display: block;
	padding: 0 0 0 15px;
	font-weight: 400;
	border-radius: 0px;
}

.mega-box {
	position: absolute;
	right: 0;
	width: 900px;
	padding: 0 30px;
	top: 85px;
	opacity: 0;
	visibility: hidden;
}

.mega-box .content {
	background: #ffffff;
	display: flex;
	width: 100%;
	justify-content: start;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.col-lg-6.bg-11 {
	background: #e7d9ff;
}

.main-img-11 {
	padding: 40px 20px;
	text-align: center;
}

.main-img-11 img {
	width: 100%;
	height: auto;
}

.main-img-11 h5 {
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	margin-top: 6% !important;
	color: #000;
}

.main-img-11 p {
	font-size: 14px;
	font-weight: 500;
	color: #0202028c;
	line-height: 1.5;
}

.content .row header {
	color: #f2f2f2;
	font-size: 20px;
	font-weight: 500;
}

.content .row .mega-links {
	margin-left: -40px;
	border-left: 1px solid rgba(255, 255, 255, 0.09);
	padding: 30px 30px;
}

.row .mega-links li {
	padding: 0 20px;
}

.row .mega-links li a {
	padding: 0px;
	color: #000;
	font-size: 18px;
	font-weight: 600;
	display: block;
	padding-bottom: 10px;
	line-height: 1.5;
}

.row .mega-links li a p {
	color: #848484;
	font-size: 14px;
	line-height: 1;
	margin: 10px 0px 20px 0px;
	font-weight: 400;
}

.wrapper .btn {
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: none;
}

.wrapper .btn.close-btn {
	position: absolute;
	right: 30px;
	top: 10px;
}

.main-header-21 {
	display: flex;
	align-items: center;
	justify-content: right;
}

a.main-round-1 {
	padding: 10px 20px;
	border: 1px solid #fff;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	border-radius: 50px;
	margin: 0 5px;
}

@media screen and (max-width: 970px) {
	.wrapper .btn {
		display: block;
	}

	.main-header-21 {
		display: block;
	}

	/*.amin-btn-12 {
		display: none;
	}*/

	.wrapper .nav-links {
		position: fixed;
		height: 100vh;
		width: 100%;
		max-width: 350px;
		top: 0;
		left: -100%;
		background: #242526;
		display: block;
		padding: 50px 10px;
		line-height: 50px;
		overflow-y: auto;
		box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
		transition: all 0.3s ease;
	}

	/* custom scroll bar */
	::-webkit-scrollbar {
		width: 10px;
	}

	::-webkit-scrollbar-track {
		background: #242526;
	}

	::-webkit-scrollbar-thumb {
		background: #3A3B3C;
	}

	#menu-btn:checked~.nav-links {
		left: 0%;
	}

	#menu-btn:checked~.btn.menu-btn {
		display: none;
	}

	#close-btn:checked~.btn.menu-btn {
		display: block;
	}

	.nav-links li {
		margin: 15px 10px;
	}

	.nav-links li a {
		padding: 0 20px;
		display: block;
		font-size: 20px;
	}

	.nav-links .drop-menu {
		position: static;
		opacity: 1;
		top: 65px;
		visibility: visible;
		padding-left: 20px;
		width: 100%;
		max-height: 0px;
		overflow: hidden;
		box-shadow: none;
		transition: all 0.3s ease;
	}

	#showDrop:checked~.drop-menu,
	#showMega:checked~.mega-box {
		max-height: 100%;
	}

	.nav-links .desktop-item {
		display: none;
	}

	.nav-links .mobile-item {
		display: block;
		color: #f2f2f2;
		font-size: 20px;
		font-weight: 500;
		padding-left: 20px;
		cursor: pointer;
		border-radius: 5px;
		transition: all 0.3s ease;
	}

	.nav-links .mobile-item:hover {
		background: #3A3B3C;
	}

	.drop-menu li {
		margin: 0;
	}

	.drop-menu li a {
		border-radius: 5px;
		font-size: 18px;
	}

	.mega-box {
		position: static;
		width: 100%;
		top: 65px;
		opacity: 1;
		visibility: visible;
		max-height: 0px;
		overflow: hidden;
		transition: all 0.3s ease;
	}

	.main-img-11 {
		padding: 40px 0px;
		text-align: center;
	}

	.mega-box .content {
		box-shadow: none;
		flex-direction: column;
		padding: 20px 0px 0 0px;
		background: transparent;
	}

	.row .mega-links li a p {
		display: none;
	}

	.row .mega-links li a,
	.nav-links .mobile-items {
		color: #fff;
		font-size: 18px !important;
		font-weight: 500;
	}

	.mega-box .content .row {
		width: 100%;
		margin-bottom: 15px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.mega-box .content .row:nth-child(1),
	.mega-box .content .row:nth-child(2) {
		border-top: 0px;
	}

	.content .row .mega-links {
		border-left: 0px;
		padding-left: 15px;
	}

	.row .mega-links li {
		margin: 0;
	}

	.content .row header {
		font-size: 19px;
	}
}

nav input {
	display: none;
}

.logo a img {
	width: auto;
	height: 45px;
}


/*=================== section-1 ====================*/

section.section-1 {
	padding-bottom: 12%;
	padding-top: 5%;
	margin-top: -70px;
}

.bg-img {
	height: auto;
	width: 100%;
	background-image: url('../image/bg.png');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
}

.section-1-text {
	height: auto;
	width: 100%;
	text-align: center;
	padding: 5% 0%;
}

.section-1-text h1 {
	font-size: 55px;
	font-weight: 700;
	line-height: 65px;
	letter-spacing: 0em;
	text-align: center;
	color: #fff;
}

.section-1-text p {
	font-size: 20px;
	color: #fff;
	padding: 20px 0px;
}

.section-1-text button {
	background: #6930C7;
	color: #fff;
	border: none;
	font-size: 18px;
	padding: 10px 25px;
	border-radius: 50px;
}


/*=================== section-2 ====================*/


section.section-2 {
	position: relative;
	top: -195px;
	background-image: url(../image/right-roud.png);
	background-repeat: no-repeat;
	background-position: right top 180px;
	background-size: 8%;
}

section.section-2 img {
	height: auto;
	width: 70%;
	display: block;
	margin: auto;
}




/*=================== section-3 ====================*/


.section-3 {
	padding-bottom: 3%;
	background-image: url(../image/left-roud.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 10%;
	overflow: hidden;
}

.items {
	width: 100%;
	margin: 0px auto;
	margin-left: 50px;
	margin-top: 30px;
}

.slick-slide {
	margin: 10px
}

.slick-slide img {
	width: 100%;
	border: 0px solid #fff
}

.section-3 h2 {
	text-align: center;
	font-size: 35px;
	font-weight: 500;
}

.section-3-box {
	box-shadow: 0px 0px 4px 0px #00000059;
	border-radius: 20px;
	height: auto;
	width: 95%;
	padding: 35px;
	background: #fff;
	position: relative;
}

.section-3-box h5 {
	width: 10px;
	height: 10px;
	position: absolute;
	background: #925EEA;
	right: 25px;
	border-radius: 300%;
}

.section-3-box h3 {
	font-size: 20px;
	font-weight: 600;
}

.section-3-box h4 {
	font-size: 20px;
	font-weight: 600;
	color: #925EEA;
}

.section-3-box p {
	font-size: 18px;
	padding-top: 18px;
	color: #2C2C2D;
}

hr {
	margin-top: 30px;
}


/*=================== section-4 ====================*/


section.section-4 {
	padding: 5% 0%;
}

.section-4-img img {
	height: auto;
	width: 100%;
	position: relative;
	z-index: 111;
}

.section-4-img {
	background-image: url(../image/main-vect-1.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top center;
}

.section-4-box {
	background: linear-gradient(90deg, #8F5AE7 0%, #6E38C7 100%), linear-gradient(0deg, #D9D9D9, #D9D9D9);
	height: auto;
	width: 112%;
	padding: 40px 65px;
	position: relative;
	z-index: 1;
}

.section-4-box h3 {
	font-size: 35px;
	color: #fff;
	font-weight: 600;
}

span {
	color: #6733BD;
}

.section-4-text {
	margin: 45px 0px;
	color: #fff;
}

.section-4-text h4 {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 5px;
}

.section-4-text p {
	font-size: 16px;
	text-transform: capitalize;
}



/*=================== section-5 ====================*/

.section-5 {
	padding-bottom: 4%;
}
.section-5-text ul li {
	list-style: disc;
	margin-bottom: 6px;
}
.rv {
	flex-direction: row-reverse;
	margin: 12% 0px;
}

/*.section-5-img{
	background: #fff;
    background-image: url('../image/round.png');
	background-repeat: no-repeat;
}*/
.section-5-img img {
	height: auto;
	width: 100%;
	box-shadow: 0px 83px 200px 0px #0000001A;
	border-radius: 5px;
	background-color: #fff;
}

.section-5-main {
	background-image: url(../image/Vector.png), url(../image/verctor-sec.png);
	background-repeat: no-repeat, no-repeat;
	background-size: 33%, 40%;
	background-position: top 25% center, bottom 26% center;
}

.tr {
	text-align: right;
}


/*=================== section-6 ====================*/

.section-6 {
	background-image: url(../image/round.png);
	background-repeat: no-repeat;
	background-position: left 100px center;
	background-size: 13%;
}

.section-6-video img {
	height: 125px;
}

.section-6-video {
	background-image: url(../image/Rectangle.png);
	background-repeat: no-repeat;
	text-align: center;
	padding: 190px 0px;
}

.section-6-text img {
	height: auto;
	width: 90%;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	margin-left: auto;
	display: block;
	position: relative;
	left: 140px;
	background: #fff;
	border-radius: 5px;
}


/*=================== section-7 ====================*/

section.section-7 {
	height: auto;
	width: 100%;
	padding: 5% 0%;
	background-image: url(../image/left-roud.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 10%;
}

.section-7-img img {
	height: auto;
	width: 100%;
}

.section-7-btn img {
	height: 30px;
	margin-left: 12px;
}

.section-7-btn button {
	background: #703AC9;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 8px 10px 8px 22px;
}




/*=================== testimonials ====================*/


section.testimonial {
	text-align: center;
	padding-bottom: 5%;
	background-image: url(../image/right-roud.png);
	background-repeat: no-repeat;
	background-position: right top 180px;
	background-size: 8%;
}

.testi-text h3 {
	font-size: 30px;
	line-height: 39px;
	margin-bottom: 9px;
	font-weight: 600;
}

.testi-text p {
	font-size: 18px;
	margin-bottom: 90px;
}

.carousel-item img {
	height: 120px;
	border-radius: 100px;
	margin-bottom: 50px;
}

.carousel-item p {
	font-size: 20px;
	color: #000;
	font-weight: 500;
	width: 50%;
	margin: auto;
	margin-bottom: 10px;
}

.carousel-item h4 {
	font-size: 16px;
	color: #808080;
}

.heading {
	position: relative;
}

.testimonials {

	color: #ffffff;
	position: relative;
}

.testimonials:before {
	content: "";
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	top: 0;
	position: absolute;
	left: 0;
}

.testimonials .heading h2 {
	font-size: 25px;
	font-weight: 700;
	color: #ffffff;
}

.testimonials .heading h2 span {
	color: #ff0000;
}

.testimonials p {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: #d1e5e7;
	margin: 20px 0;
	padding: 0;
}

/* Image */
.testimonials .carousel-inner .carousel-item .team {
	width: 100px;
	height: 100px;
	border: 2px solid #ff0000;
	border-radius: 100%;
	padding: 5px;
	margin: 50px 0 15px;
}

.testimonials .carousel-inner .carousel-item h3 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 600;
}

.testimonials .carousel-inner .carousel-item h4 {
	font-size: 14px;
	font-weight: 300;
	color: #e2e1e1;
	margin-bottom: 20px;
}

.testimonials .carousel-indicators {
	bottom: -30px;
}

.testimonials .carousel-indicators li {
	background-color: #b8b7b7;
	border-radius: 30px;
	height: 4px;
	width: 40px;
}

.testimonials .carousel-indicators .active {
	background-color: #ff0000;
}

.testimonials .control span {
	cursor: pointer;
}

.testimonials .icon {
	height: 40px;
	width: 40px;
	background-size: 100%, 100%;
	border-radius: 50%;
	font-size: 30px;
	background-image: none;
	color: #ffffff;
}

/* =================== Account Page ============= */

section.main-support-1 {
	background-image: url(../image/main-12.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.class-overlay {
	background: #00000092;
	padding: 10% 0;
}

.main-support-text {
	text-align: center;
}

.main-support-text h5 {
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	margin: 0;
	padding-bottom: 10px;
}

.main-support-text h6 {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin: 0;
	padding-bottom: 15px;
}

button.main-btn {
	background: #6930C7;
	color: #fff;
	border: none;
	font-size: 16px;
	padding: 10px 25px;
	border-radius: 50px;
	text-transform: capitalize;
}

.main-acccount-2 {
	padding: 6% 0px;
}

.sec-2-content h5 {
	font-size: 28px;
	text-align: center;
	font-weight: 500;
	margin: 0;
}

.sec-2-content h5 span {
	font-weight: 600;
}

ul.main-liste-1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	row-gap: 10px;
}

.main-liste-1 li {
	margin: 0px 10px;
	white-space: nowrap;
}

.main-liste-1 li img {
	width: auto;
	height: 20px;
	margin-right: 5px;
}


.main-cont-flex {
	padding-top: 50px;
}

.main-img-1 {
	width: 70%;
	margin: 50px auto;
}

.main-img-1 img {
	width: 100%;
	height: auto;
}

.main-codepex-img img {
	height: auto;
	width: 100%;
	box-shadow: 0px 83px 200px 0px #0000001A;
	border-radius: 5px;
	background-color: #fff;
}

.main-codepex h4 {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 15px;
}

.main-slider-head .swiper {
	width: 100%;
	height: 100%;
	padding-bottom: 4%;
}

.main-slider-head .swiper-slide {
	text-align: start;
	font-size: 18px;
	display: flex;
	align-items: center;
	position: relative;
}

section.main-test-monial {
	padding: 5% 0;
	background: #00000003;
}

.main-slider-text {
	padding: 20px;
	border-radius: 10px;
	background: #6733bd17;
}

.main-text-flex-12 {
	display: flex;
	align-items: center;
	justify-content: start;
	column-gap: 10px;
}

img.main-img-12 {
	width: 55px;
	border-radius: 100%;
}

.main-slider-text {
	position: relative;
}

.main-slider-text p {
	margin-bottom: 40px;
}

.main-img-and-tex h5 {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: #6434c3;
	margin-bottom: 5px;
}

.main-img-and-tex h6 {
	font-size: 14px;
	font-weight: 200;
	margin: 0;
	color: #242424;
}

.main-slider-text h3 {
	width: 10px;
	height: 10px;
	position: absolute;
	background: #925EEA;
	right: 25px;
	border-radius: 300%;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #6733BD;
}

section.main-dhave {
	padding: 5% 0;
	background: url(../image/call-to-action-bg-2.jpg);
	background-size: cover;
}

.main-create-fall {
	text-align: center;
	padding: 20px 0px;
}

.main-create-fall h5 {
	font-size: 26px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 24px;
}


.main-contw-1 {
	margin-top: 50px;
}

.section-4-title h1 {
	font-size: 40px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
}

.section-4-title p {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	margin: 0;
	margin-bottom: 12px;
}

.hero-contain1 input {
	background: #fff3 !important;
	height: auto !important;
	width: 100% !important;
	border: none !important;
	font-size: 16px !important;
	border-radius: 10px !important;
	color: #fff !important;
	padding: 12px 22px !important;
	margin-bottom: 30px !important;
}

.hero-contain1 input::placeholder {
	color: #fff;
}

.main-text-align {
	text-align: center;
}


/*=================== Contact US Page Css ====================*/

.contact-1-banner .section-1-title {
	text-align: center;
}

.contact-1-banner .hero {
	background-image: url(../image/contact-us-bg.jpg);
	background-size: cover;
	background-position: center;
	text-align: center;
	color: #fff;
}

.class-overlay {
	background: #00000092;
	padding: 10% 0;
}


.btn-transparent {
	color: #fff;
	border: 1px solid #fff;
	display: inline-block;
	font-size: 13px;
	letter-spacing: 1px;
	padding: 14px 35px;
	text-transform: uppercase;
	border-radius: 40px;
	background-image: linear-gradient(90deg, #8F5AE7 0%, #6E38C7 100%) !important;
	width: 100%;
}

section#contact {
	margin: 40px 0px;
	padding: 3% 0px;
}

.main-cotn-im span {
	font-size: 18px;
}

.form-control {
	border-radius: 25px;
	height: 50px;
	margin-bottom: 12px;
}

textarea.form-control {
	height: auto;
	border: none;
	border-radius: 0px;
	border-bottom: 1px solid #ced4da;
	margin-bottom: 12px;
}

.title {
	padding: 0;
}

.title h6 {
	font-weight: 400;
	letter-spacing: 6px;
	color: #7943d1;
}

@media screen and (max-width: 767px) {
	.form-control {
		height: 40px;
	}
}

textarea#message {
	display: block;
	width: 100%;
	height: auto;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.form-control {
	border-radius: 25px !important;
	height: 50px !important;
	border: 1px solid #dbdbdb82 !important;
}

.form-control {
	display: block !important;
	width: 100% !important;
	padding: 0.375rem 0.75rem !important;
	font-size: 1rem !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	color: #495057 !important;
	background-color: #fff !important;
	background-clip: padding-box !important;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
}

section.businessu.section-cus {
	background-image: url(../image/main-coolor-1.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

section.businessu.section-cus .class-overlay {
	background: #00000092;
	padding: 10% 0;
}

section.businessu {
	height: auto;
	width: 100%;
	background-color: #7540ce;
	margin-bottom: 0%;
}


/* ==================== Blog ===================== */


.blog-1-banner {
	background: url(../web-aacount/);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.blog-1-banner .hero {
	background: #00000092;
	padding: 5% 0px;
}

.category-title button {
	padding: 5px 12px;
	border: none;
	border-radius: 25px;
	background: #00afa5;
	color: white;
	transition: 0.3s ease;
}

.category-title button:hover {
	background: #038981;
}

section.posts.section {
	margin: 40px;
	padding: 5% 0;
}

.section-1 {
	padding: 5%;
}

.section-1-title {
	text-align: left;
}

.section-1-title h1 {
	font-size: 46px;
}

.section-1-title h4 {
	font-size: 22px;
}

.section-1-title p {
	color: white;
}

.section-1-title button {
	color: white;
	height: auto;
	background: linear-gradient(153deg, rgba(55, 200, 195, 1) 0%, rgba(0, 175, 165, 1) 51%, rgba(13, 134, 144, 1) 100%);
	border: none;
	padding: 3% 6%;
	border-radius: 25px;
	transition: 0.3s ease;
	outline: 0;
}

.section-1-title button:hover {
	background: linear-gradient(300deg, rgba(55, 200, 195, 1) 0%, rgba(0, 175, 165, 1) 51%, rgba(13, 134, 144, 1) 100%);

}

.about-2 {
	padding: 5%;
	background: #F7F7F7;
}

.section-heading {
	text-align: center;
	margin-bottom: 10px;
}

.section-heading h4 {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
}

/*===========Section-2==========*/
.section-2 p {
	color: black;
	font-size: 20px;
}

.faq-title {
	text-align: center;
}

/*===========Section-3==========*/
.section-3 h1 {
	font-size: 46px;
}

.faq-title {
	text-align: center;
}

/*===========Section-4==========*/
section.businessu.section-4 {
	padding: 5%;
}

.section-4 h1 {
	color: white;
	font-size: 46px;
}

.single-page-header {
	background: linear-gradient(to right, #2c87fc, #417bee, #4e6ee0, #5762d2, #5e55c3);
	background-size: cover;
	padding: 8% 0%;
	text-align: center;
	color: #fff;
	position: relative;
}

button.days-btn {
	height: auto;
	width: 100%;
	padding: 3% 0%;
	font-size: 18px;
	border: none;
	border-radius: 5px;
	background: #0f48af;
	color: #fff;
}

.support-section-1 {
	padding: 5%;
}

.support-card {
	border-radius: 5px;
	border: 1px solid #00000024;
	text-align: center;
	padding: 5%;
	transition: 0.3s ease;
}

.support-card:hover {
	box-shadow: 0 12px 34px 0 rgb(0 0 0 / 10%);
}

.support-card img {
	width: 25%;
}

.hero {
	background: #00000092;
}

.category-title button {
	padding: 7px 20px;
	border: none;
	border-radius: 25px;
	background: #6f39c8;
	color: white;
	transition: 0.3s ease;
}

.category-title button:hover {
	background: #7039c8b6;
}

.blog-1-banner {
	background: url(../image/blog-img.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.section-1 {
	padding: 5%;
}

.section-1-title {
	text-align: left;
}

.section-1-title h1 {
	font-size: 46px;
}

.section-1-title h4 {
	font-size: 22px;
}

.section-1-title p {
	color: white;
}

.section-1-title button {
	color: white;
	height: auto;
	background: linear-gradient(153deg, rgba(55, 200, 195, 1) 0%, rgba(0, 175, 165, 1) 51%, rgba(13, 134, 144, 1) 100%);
	border: none;
	padding: 3% 6%;
	border-radius: 25px;
	transition: 0.3s ease;
	outline: 0;
}

.section-1-title button:hover {
	background: linear-gradient(300deg, rgba(55, 200, 195, 1) 0%, rgba(0, 175, 165, 1) 51%, rgba(13, 134, 144, 1) 100%);

}

.about-2 {
	padding: 5%;
	background: #F7F7F7;
}

.img-fluid-cus {
	height: auto;
	width: 100%;
	height: 230px;
	border-radius: 10px;
}


.post-item {
	padding: 20px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	background: #fff;
	border-radius: 20px;
	margin-bottom: 25px;
}

.post-item .content {
	margin-top: 20px;
}
.content h3 {
    line-height: 17px !important;
}

.post-item .btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: #8651df;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.post-item .content h3 a {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	color: #000;
}

.post-item .content {
	margin-top: 20px;
/*	height: 245px;*/
	height: auto;
}

/*===========Section-2==========*/
.section-2 p {
	color: black;
	font-size: 20px;
}

.faq-title {
	text-align: center;
}

/*===========Section-3==========*/
.section-3 h1 {
	font-size: 46px;
}

.faq-title {
	text-align: center;
}

/*===========Section-4==========*/
section.businessu.section-4 {
	padding: 5%;
}

.section-4 h1 {
	color: white;
	font-size: 46px;
}

.single-page-header {
	background: linear-gradient(to right, #2c87fc, #417bee, #4e6ee0, #5762d2, #5e55c3);
	background-size: cover;
	padding: 8% 0%;
	text-align: center;
	color: #fff;
	position: relative;
}

button.days-btn {
	height: auto;
	width: 100%;
	padding: 3% 0%;
	font-size: 18px;
	border: none;
	border-radius: 5px;
	background: #0f48af;
	color: #fff;
}

.support-section-1 {
	padding: 5%;
}

.support-card {
	border-radius: 5px;
	border: 1px solid #00000024;
	text-align: center;
	padding: 5%;
	transition: 0.3s ease;
}

.support-card:hover {
	box-shadow: 0 12px 34px 0 rgb(0 0 0 / 10%);
}

.support-card img {
	width: 25%;
}

/*=================== Sign Up Css ====================*/

.col-lg-7.bg-main-up {
	background-image: url(../image/main-up-bg.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center center;
}

.main-coli-imf img {
	width: 100%;
	height: auto;
}

.main-join-sign-up {
	width: 90%;
	margin: 40px auto;
	text-align: center;
	padding: 0px 20px;
}

.main-join-sign-up h5 {
	color: #242424;
	text-align: center;
	font-family: 'Zen Kaku Gothic Antique';
	font-size: 35.25px;
	font-weight: bold;
	line-height: 37.5px;
	letter-spacing: -0.5px;
	padding-bottom: 30px;
}

button.main-btn-12 {
	color: #616161;
	font-family: 'Zen Kaku Gothic Antique';
	font-size: 12.8px;
	font-weight: 400;
	line-height: 22.53px;
	letter-spacing: -0.2px;
	font-size: 18px;
	padding: 8px 20px;
	border-radius: 48px;
	border: 1px solid #EEE;
	background: #FAFAFA;
	margin-bottom: 20px;
}

.main-from-grop--1 {
	text-align: start;
	margin: 20px 0px;
}

.form-group-con input {
	background: transparent;
	border: none;
	width: 100%;
	border-bottom: 1px Solid #BDBDBD;
	border-radius: 0px;
	margin: 0px 0px 10px 0px;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	padding: 8px 10px;
}

.form-group-con input::placeholder {
	color: #212121;
	font-family: 'Zen Kaku Gothic Antique';
	font-size: 16px;
	font-weight: 400;
	line-height: 28.16px;
}

.form-group-con {
	margin-bottom: 20px;
}

.new .form-group {
	display: block;
	margin-bottom: 15px;
}

.new .form-group input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.new .form-group label {
	position: relative;
	cursor: pointer;
}

.new .form-group label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 1px solid #7B76F1;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 10px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
	border-radius: 4px;
	background-color: #7a76f152;
}

.new .form-group input:checked+label:after {
	content: '';
	display: block;
	position: absolute;
	top: 3px;
	left: 9px;
	width: 6px;
	height: 14px;
	border: solid #7B76F1;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.main-check-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mai-jump-12 h5 {
	color: #424242;
	text-align: center;
	font-family: 'Poppins';
	font-size: 16px;
	font-weight: 400;
	margin: 30px 0px 0px 0px;
	padding: 0;
}

.mai-jump-12 h5 span {
	color: #000;
	font-weight: 600;
	text-decoration: underline;
}

/*=================== footer ====================*/

footer {
	height: auto;
	width: 100%;
	background-image: url(../image/bg.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	padding: 5%;
	color: #fff;
}


.footer-link p {
	font-size: 16px;
}

.footer-link h3 {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 10px;
}

.footer-link h4 {
	font-size: 20px;
	margin-bottom: 10px;
}

.footer-link li {
	color: #fff;
}

.footer-link li {
	list-style: disc;
	margin-bottom: 5px;
}

.footer-link a {
	color: #fff !important;
}

.footer-link img {
	height: 35px;
	margin-right: 6px;
}

.footer-link img {
	height: 35px;
	margin-right: 6px;
}

img.play {
	height: 50px;
	margin-top: 8px;
}

.social img {
	height: 40px;
}

.footer-frm input {
	background: rgb(3 3 3 / 21%);
	height: auto;
	width: 100%;
	border: none;
	font-size: 16px;
	border-radius: 50px;
	margin-bottom: 12px;
	color: #fff;
	padding: 9px 22px;
}

.footer-frm input[type="submit"] {
	background: rgb(3 3 3 / 21%);
	height: auto;
	width: 100%;
	border: none;
	font-size: 16px;
	border-radius: 50px;
	margin-bottom: 12px;
	color: #fff;
	padding: 9px 0px;
}

::placeholder {
	color: #9d86c6;
}


/*=================================================================
  Latest Posts
==================================================================*/
.blog {
	padding-bottom: 110px;
	padding-top: 70px;
	background: #F6F6F6;
}

.post-item {
	background: #fff;
	margin-bottom: 20px;
}

.post-item .content {
	padding: 20px;
}

.post-item .content h3 a {
	color: #000;
}

.post-item .content p {
	color: #757575;
	font-size: 14px;
	margin: 10px 0;
}

.post-item .content.btn-main {
	padding: 12px 25px;
	margin: 15px 0;
}

/* 8.2.1 Blog Details */
.blog-details h3 {
	font-size: 30px;
	color: #000;
	margin-bottom: 10px;
}

/* 8.2.2 Post Content */
.post-content ul {
	margin-bottom: 20px;
	list-style: disc;
}


.post-content ul li {
	color: black;
	list-style: disc;
}

.post-content ul li a {
	color: black;

}

.post-content p {
	color: black;
	margin-bottom: 30px;
}

.post-content blockquote {
	border-left: 2px solid #28ABE3;
	padding: 40px 35px;
	margin-bottom: 30px;
	background: #eeeeee;
}

.post-content-share {
	margin-bottom: 100px;
}

.post-content-share li {
	height: 45px;
	width: 45px;
	border: 1px solid #ddd;
	text-align: center;
	background: #fff;
	transition: .3s ease;
	margin-right: 10px;
}

.post-content-share li a i {
	line-height: 45px;
	color: #000;
	transition: .3s ease;
}

.post-content-share li:hover {
	background: #28ABE3;
	border-color: #28ABE3;
}

.post-content-share li:hover i {
	color: #fff;
}

/* 8.2.3 Comment List */
.comment-list {
	padding-left: 0;
	margin-bottom: 70px;
}

.comment-list-item {
	padding: 25px 0;
	position: relative;
	display: flex;
	border-bottom: 1px solid #ddd;
}

.comment-list-item:last-child {
	border: 0;
}

.comment-list-item-image {
	margin-right: 20px;
}

.comment-list-item-image img {
	width: 100%;
}

.comment-list-item-content h5 {
	color: #000;
	margin-bottom: 5px;
}

.comment-list-item-content h6 {
	color: #000;
	margin-bottom: 10px;
}

.comment-list-item-content p {
	margin-bottom: 5px;
}

.comment-list-item .comment-btn {
	position: absolute;
	top: 25px;
	right: 0;
	background: #fff;
	padding: 10px 30px;
	border: 1px solid #ddd;
	text-transform: capitalize;
	color: #000;
	font-size: 15px;
	transition: 0.3s ease;
}

.comment-list-item .comment-btn:hover {
	color: #fff;
	background-image: linear-gradient(to right, #2c87fc, #417bee, #4e6ee0, #5762d2, #5e55c3);
}

@media (max-width: 575px) {
	.comment-list-item .comment-btn {
		position: unset;
	}
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #f1f1f1;
	border-radius: 35px;
	margin: 2% 0%;
}

/* 8.2.4 Comment Form */
.comment-form {
	margin-top: 40px;
}

.comment-form .form-control {
	background-color: transparent;
	border: 1px solid #dedede;
	box-shadow: none;
	height: 45px !important;
	color: #0c0c0c;
	height: 38px;
	font-size: 14px;
	border-radius: 0;
	margin-bottom: 20px;
}

.comment-form textarea.form-control {
	height: 200px !important;
}

.comment-form .btn-primary {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50px;
	background: linear-gradient(153deg, rgb(111 57 200) 0%, rgb(109 59 199) 51%, rgb(110 58 199) 100%);
	border: 0;
	border-radius: 0px 30px 30px 0px;
}

/* 8.2.5 Widget Style */
.widget {
	margin-bottom: 30px;
}

.widget h2 {
	font-size: 24px;
	margin-bottom: 20px;
}

.widget-search {
	position: relative;
}

.widget-search .form-control {
	border: 1px solid #dedede;
	border-radius: 0;
	height: 50px;
}

.widget-search-btn {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50px;
	background: linear-gradient(153deg, rgb(111 57 200) 0%, rgb(109 59 199) 51%, rgb(110 58 199) 100%);
	border: 0;
	border-radius: 0px 30px 30px 0px;
}

.widget-search-btn i {
	color: #fff;
}

.widget-categories-list {
	padding-left: 0px;
}

.widget-categories-list li {
	border-bottom: 1px solid #ddd;
}

.widget-categories-list li:last-child {
	border: 0;
}

.widget-categories-list li a {
	display: block;
	padding: 15px 0;
	color: #000;
	font-size: 15px;
	transition: .3s ease;
}

.widget-categories-list li a i {
	font-size: 10px;
	margin-right: 10px;
}

.widget-categories-list li a:hover {
	background: #28ABE3;
	color: #fff;
	padding-left: 20px;
}

.widget-post-list {
	padding-left: 0;
}

.widget-post-list-item {
	padding: 15px 0;
	display: flex;
}

.widget-post-image {
	margin-right: 10px;
	height: 90px;
	width: 130px;
	overflow: hidden;
}

.widget-post-image img {
	height: 90px;
	width: auto;
}

.widget-post-content h5 {
	font-size: 18px;
	margin-bottom: 10px;
	transition: .3s ease;
	color: #000;
}

.widget-post-content h5:hover {
	color: #28ABE3;
}

.section {
	padding: 100px 0;
}

ul.comment-list {
	height: 300px !important;
	overflow-y: scroll !important;
}

/*=================== media query ====================*/

@media only screen and (max-width: 1600px) {
	.section-1-text h1 {
		font-size: 42px;
		font-weight: 700;
		line-height: 52px;
	}

	.section-7-btn button {
		padding: 6px 10px 6px 22px;
		font-size: 14px;
	}

	img.logo {
		height: 45px;
	}

	.section-1-text p {
		font-size: 18px;
	}

	.navbar .navbar-menu .navbar-nav>li>a {
		font-size: 14px;
	}

	.section-1-text button {
		font-size: 16px;
		padding: 10px 45px;
	}

	.social img {
		height: 30px;
	}

	img.play {
		height: 40px;
	}

	.footer-link p {
		font-size: 14px;
	}

	.footer-link li {
		font-size: 14px;
	}

	.footer-frm h4 {
		font-size: 18px;
	}

	.footer-link h4 {
		font-size: 18px;
	}

	section.section-2 img {
		height: auto;
		width: 60%;
	}

	.section-3-box {
		padding: 25px;
	}

	.section-7-img img {
		width: 70%;
		margin: auto;
		display: block;
	}

	.section-3-box p {
		font-size: 14px;
		padding-top: 11px;
	}

	.section-3-box h3 {
		font-size: 16px;
	}

	.section-3-box h4 {
		font-size: 16px;
	}

	.section-3 h2 {
		font-size: 25px;
	}

	.section-5-text h3 {
		font-size: 25px;
	}

	.section-5-text p {
		font-size: 16px;
	}

	.section-4-box h3 {
		font-size: 25px;
	}

	.section-4-text {
		margin: 30px 0px;
	}

	.section-4-text h4 {
		font-size: 20px;
	}

	.section-4-text p {
		font-size: 14px;
	}

	.section-6-video img {
		height: 100px;
	}

	.section-6-video {
		padding: 160px 0px;
	}

	.carousel-item h4 {
		font-size: 14px;
	}

	.carousel-item p {
		font-size: 17px;
	}

	.testi-text h3 {
		font-size: 25px;
	}

	.testi-text p {
		font-size: 14px;
		margin-bottom: 45px;
	}

	.carousel-item p {
		width: 60%;
	}

	hr {
		margin-top: 20px;
	}

	.section-7-img img {
		height: auto;
		width: 70%;
		display: block;
		margin: auto;
	}

	section.testimonial {
		padding-bottom: 3%;
	}


	.section-5-main {
		background-image: url(../image/Vector.png), url(../image/verctor-sec.png);
		background-repeat: no-repeat, no-repeat;
		background-size: 40%, 40%;
		background-position: top 25% center, bottom 26% center;
	}
}

@media only screen and (max-width: 1199px) {
	.section-1-text h1 {
		font-size: 35px;
		line-height: 43px;
	}

	.section-1-text p {
		font-size: 16px;
		color: #fff;
		padding: 16px 0px;
	}

	section.section-2 {
		position: relative;
		top: -135px;
	}

	.section-1-text button {
		font-size: 16px;
	}

	.section-3-box {
		width: 100%;
	}

	button.slick-next.slick-arrow {
		display: none !important;
	}

	.nav-links li a {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1024px) {
	.items {
		width: 100%;
		margin: 0px auto;
		margin-left: 0;
		margin-top: 30px;
	}

	.section-1-text h1 {
		font-size: 24px;
		line-height: 34px;
	}

	.section-5-main {
		background-image: none;
	}

	section.section-2 {
		background-position: right top 90px;
	}

	.section-6-video img {
		height: 75px;
	}

	.section-5-text h3 {
		font-size: 20px;
	}

	.testi-text h3 {
		font-size: 22px;
		line-height: 31px;
	}

	.section-6-text img {
		width: 100%;
		left: 0;
	}

	button.slick-next.slick-arrow {
		display: none !important;
	}
}

@media only screen and (max-width: 991px) {
	img.logo {
		height: 30px;
	}

	.navbar .navbar-menu .navbar-nav>li>a {
		color: #fff;
		text-decoration: none;
		display: inline-block;
		padding: 6px 9px;
	}
	.section-5-text ul li {
		list-style: none;
		margin-bottom: 6px;
	}

	.section-1-text h1 {
		font-size: 25px;
		line-height: 33px;
	}

	.section-3 h2 {
		font-size: 24px;
	}

	.section-4-text {
		margin: 20px 0px;
		color: #fff;
		text-align: center;
	}

	.tr {
		text-align: center;
	}

	.carousel-item p {
		width: 100%;
	}

	section.section-2 img {
		width: 100%;
	}

	.section-4-box h3 {
		font-size: 29px;
		text-align: center;
	}

	.section-4-box {
		padding: 40px 40px;
	}

	.section-5-img img {
		width: 77%;
		margin: auto;
		margin-bottom: 25px;
		display: block;
	}

	.section-5-text {
		text-align: center;
	}

	.footer-link {
		margin: 10px 0px;
	}

	.section-4-box {
		width: 100%;
		margin-bottom: 22px;
	}

	.bg-img {
		background-size: cover;
	}

	section.section-2 {
		position: relative;
		top: -50px;
	}

	button.slick-next.slick-arrow {
		display: none !important;
	}

	.section-4-title {
		margin-bottom: 30px;
		text-align: center;
	}

	.main-support-text h5 {
		font-size: 32px;
	}

	.post-item .content {
		margin-top: 20px;
		height: auto;
	}

	.section-1-title h1 {
		font-size: 40px;
	}

	.section-1-title p {
		font-size: 16px;
	}

	.section-4-title {
		text-align: center;
	}

	.section-4-title h1 {
		font-size: 24px;
	}

	.footer-link h3 {
		font-size: 26px;
	}
}

@media only screen and (max-width: 769px) {
	body {
		overflow-x: hidden;
	}
	.main-slider-text p {
		margin-bottom: 27px;
		margin-top: 22px;
	}
	.section-7-img img {
		height: auto;
		width: 100%;
		margin-bottom: 24px;
	}
	.main-codepex h4 {
		font-size: 16px;
	}
	.section-7-btn button {
		padding: 6px 10px 6px 22px;
		font-size: 14px;
		width: 100%;
		margin-top: 9px;
		margin-bottom: 19px;
	}

	section.section-1 {
		padding-top: 15%;
	}

	.section-1-text h1 {
		font-size: 18px;
		line-height: 29px;
	}

	.section-3 h2 {
		font-size: 20px;
	}

	.main-slider-head .swiper {
		padding-bottom: 10%;
	}

	.main-support-text h5 {
		font-size: 28px;
	}

	.main-support-text h6 {
		font-size: 14px;
	}

	.section-1-title h1 {
		font-size: 36px;
	}

	.section-1-title p {
		font-size: 12px;
		margin-bottom: 7px;
	}

	.footer-link p {
		font-size: 12px;
	}
}

@media only screen and (max-width: 600px) {
	.section-4-box {
		padding: 35px 20px;
	}

	.logo a img {
		height: 30px;
	}

	.main-liste-1 li {
		white-space: wrap;
	}
}