:root {
  --theme: #ff0000;           /* Primary Material Blue */
  --theme-hover: #E53935;     /* Slightly darker blue for hover */
  --theme-light: #FFFFFF;      /* Light background / sections */
  --font: Roboto, sans-serif;  /* Font */
  --shadow-1: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
  --body-dark-color: #252525;
  --body-color: #282828;
  --white-light: #b9b9b9;
}


/*fonts*/

/*fonts*/

/*container*/
body {
	font-size: 16px;
	font-family: var(--font);
	color: var(--body-color);
	padding: 0 80px;
}

a {
	text-decoration: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

.btn-primary {
	height: 50px;
	padding: 0;
	min-width: 180px;
	line-height: 50px;
	font-size: 18px;
	font-weight: 700;
	border: none;
	overflow: hidden;
}

.btn-primary {
	background: var(--theme);
	border-color: var(--theme);
	box-shadow: none !important;
}

.btn-primary:focus,
.btn-primary:hover {
	background: var(--theme);
	border-color: var(--theme);
}

.container {
	max-width: 100%;
}

.red-light {
	background-color: #ffd9d9;
}

.blue-light {
	background-color: #c9eeff
}

.orange-light {
	background-color: #ffe4d0
}

.green-light {
	background-color: #d9ffdf
}

/*colors*/
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--body-dark-color);
}

h1 {
	font-size: 40px;
	font-weight: 800;
}

h2 {
	font-size: 32px;
	font-weight: 700;
}

h3,
h4 {
	font-weight: 700
}

/*hover*/
.btn-primary {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.btn-primary:before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--theme-hover);
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/*header*/
.site_header {
	display: inline-block;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 11;
	padding: 20px 0;
	transition: 0.5s all;
	background: #ffffff;
}

.site_header.sticky-head {
	box-shadow: inherit;
	backdrop-filter: blur(16px) !important;
	background: rgb(255 255 255 / 75%);
}

.site_header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: calc(100% - 140px);
}

.navigation {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0px;
	margin: 0px;
	margin-right: 40px;
}

.navigation a {
	display: inline-block;
	padding: 5px 10px;
	color: var(--body-dark-color);
	font-size: inherit;
	font-weight: 400;
	transition: 0.5s all;
	text-transform: uppercase;
}

.navigation a.btn-started {
	background: var(--theme);
	font-size: inherit;
	border: none;
	padding: 8px 25px;
	color: #fff;
	font-weight: 600;
	margin-left: 20px;
}

.navigation li {
	margin-left: 15px;
}

.navigation li a.active {
	color: var(--theme);
	font-weight: 700;
}

.navigation a.icons {
	width: 50px;
	height: 50px;
	padding: 0px;
	line-height: 50px;
	text-align: center;
	font-size: 24px;
}

.site_header .logo img {
	max-width: 200px;
}

.btn-started {
	border: none;
	background: var(--theme) !important;
	padding: 7px 25px;
	font-size: inherit;
	font-weight: 600;
	border-radius: 5px;
	text-transform: uppercase;
	color: #fff !important;
	box-shadow: 0px 0px 0px 0px rgb(77 174 243 / 17%);
}

/*main content*/
.main_content {
	display: inline-block;
	width: 100%;
	float: left;
	margin-top: 78px;
}

/*banner*/
.banner {
	display: flex;
	width: 100%;
	background: #ffffff;
	background-size: cover;
	padding: 0px 0;
	position: relative;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}

.banner h1 span {
	font-weight: 700;
	color: var(--theme);
}

.banner .container {
	position: relative;
	z-index: 3;
}

.banner .row {
	align-items: center;
}

.banner p {
	font-size: 19px;
	margin: 25px 0;
}

.svg-position {
	position: absolute;
	right: 0px;
	bottom: 60px;
	z-index: 2
}

.pr-50 {
	padding-right: 50px;
}

.rating-links {
	display: flex;
	align-items: center;
	margin-bottom: 0;
	justify-content: center;
	gap: 15px
}

.rating-links .stars {
	display: flex;
	flex-direction: column;
	padding-left: 35px;
}

.rating-links .stars .stars-icons {
	color: #FCB500
}

.tr_logo {
	display: flex;
	align-items: center;
}

.tr_logo img {
	margin-right: 45px;
	opacity: 0.5;
	transition: 0.5s all;
}

.trust_logo .title {
	color: var(--bs-gray);
	margin-bottom: 10px;
}

.tr_logo img:hover {
	opacity: 1
}

.position-relative img {
	transform: scale(1.35);
}

.banner .top {
	margin: 0 0 10px;
	display: inline-block;
	text-shadow: none;
	padding: 5px 15px;
	border-radius: 10px;
	color: #fff;
}

.banner-content-width {
	display: inline-block;
	width: 100%;
	max-width: 600px;
}

/*banner*/

/*services*/


section {
	padding: 50px 0;
}

.services-card .card-body {
	padding: 20px;
}

.btn-readmore {
	font-size: 19px;
	font-weight: 500;
	padding: 5px 25px;
	display: inline-flex;
	align-items: center;
	outline: inherit !important;
	border: none;
	background: var(--theme);
	color: var(--bs-white);
}

.btn-readmore i {
	font-size: 23px;
	margin-left: 5px;
	transition: 0.5s left;
	position: relative;
	left: 0px;
}

.btn-readmore:hover i {
	left: 15px;
}

.services-card h4 {
	font-size: 22px;
	margin-bottom: 10px;
}

.services-card {
	display: inline-block;
	width: 100%;
	margin-bottom: 30px;
	border-radius: 5px;
	border: none;
	transition: 0.5s all;
	background: none;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%);
}

.ul_style {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
	margin-top: 20px;
}

.ul_style_links li,
.ul_style {
	width: 100%;
}

.ul_style_links li a,
.ul_style li {
	display: flex;
	align-items: center;
	color: inherit;
	font-weight: 400;
	transition: 0.5s all;
}

.ul_style li {
	padding: 5px 0
}

.ul_style_links li a:hover {
	padding-left: 30px;
}

.ul_style_links li a i,
.ul_style li i {
	margin-right: 15px;
	font-size: 25px;
	color: var(--theme);
}

.services-section img {
	margin: 0 auto;
	display: block;
	margin-bottom: 10px;
}

.ul_style_links li a:hover i {
	color: var(--theme);
}

/*services*/

/*clinet portal*/

.client-portal {
	display: inline-block;
	width: 100%;
	background: #f5f5f5;
	text-align: center;
	border-bottom: 2px solid #ec3623;
}

.client-portal .card {
	border: none;
	min-height: 100%;
	background: rgb(255 255 255 / 12%);
	backdrop-filter: blur(100px);
	margin: 0;
	padding: 25px;
	border-radius: 10px;
}

.client-portal h3 {
	font-weight: 600;
	font-size: 25px;
	margin-bottom: 15px;
	color: #fff;
}

.client-portal .card p {
	margin-bottom: 0px;
	color: var(--white-light);
}

.text-primary {
	color: var(--theme) !important;
}

/*owl*/

/*tools */
.tools-and-integration {
	padding-bottom: 40px;
}

.engagement-models {
	padding-top: 40px;
}

.tools-integration-one {
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
	justify-content: center;
}

.box-tools {
	display: inline-block;
	margin-right: 25px;
	margin-bottom: 25px;
	border-radius: 10px;
	overflow: hidden;
	width: 75px;
	border: none;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%)
}

/*get started*/
.get-started-box .box {
	display: flex;
	align-items: center;
	padding: 0 45px;
	border-radius: 10px;
	position: relative;
	justify-content: space-between;
	padding-right: 0;
	background: linear-gradient(to left, #caf0ff, #e9ffc7);
	backdrop-filter: blur(31px);
}

.get-started-box .box img.action {
	position: relative;
	top: 1px;
	margin-top: 60px;
}

.get-started-box .box h2 {
	margin-bottom: 15px;
	width: 100%;
	margin-top: 15px;
}

.stylish-svg-shape-icon {
	position: absolute;
	top: 40px;
	right: 15px;
	animation: movedelement2 5s linear infinite;
}

.stylish-svg-shape-icon-1 {
	position: absolute;
	top: 40px;
	right: 380px;
	transform: rotate(5deg);
}

@keyframes movedelement2 {
	0% {
		-webkit-transform: translate(0);
		transform: translate(0);
	}

	25% {
		-webkit-transform: translate(-10px, -10px);
		transform: translate(-10px, -10px);
	}

	50% {
		-webkit-transform: translate(-5px, -5px);
		transform: translate(-5px, -5px);
	}

	75% {
		-webkit-transform: translate(-10px, 5px);
		transform: translate(-10px, 5px);
	}

	to {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

.get-started-box .box p {
	width: 100%;
	max-width: 500px;
	margin-bottom: 25px;
}

/*testimonial*/
.testi-box_profile {
	display: flex;
	align-items: center;
}

.testi-box_profile .img {
	min-width: 60px;
	margin-right: 25px;
}

.testi-box_profile .img img {
	width: 60px;
	border-radius: 50%
}

.testi-box_profile h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 0;
}

.testi-box_profile span {
	margin-bottom: 0px;
	font-size: 16px;
}

.box-testimonial {
	display: inline-block;
	width: 400px;
	padding: 25px;
	border: none;
	border-radius: 5px;
	position: relative;
	margin-bottom: 30px;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%);
}

.box-testimonial .fa-quote-left {
	position: absolute;
	left: 15px;
	top: 55px;
	font-size: 95px;
	opacity: 0.1;
}

.box-testimonial p {
	position: relative;
	z-index: 1
}

.owl-carousel button.owl-dot {
	width: 12px;
	height: 12px;
	background: #B7B5B5;
	display: inline-block;
	margin-right: 15px;
	border-radius: 50%;
	transition: 0.5s all
}

.owl-carousel .owl-dots {
	display: flex;
	margin-top: 45px;
	justify-content: center;
}

.owl-carousel button.owl-dot.active {
	width: 40px;
	border-radius: 10px;
	background: var(--theme);
}

.box-testimonial .stars-icons {
	color: #FCB500;
	position: relative;
	z-index: 1;
	margin-bottom: 10px;
}

.customers_say .btn-primary {
	min-width: 300px;
}

/*we offer*/
.card-1 {
	display: inline-block;
	width: 100%;
	padding: 25px;
	border-radius: 5px;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%);
}

.card-1 i {
	font-size: 45px;
	color: var(--theme);
}

.engagement-models .row {
	align-items: center;
}

.card-1.invert {
	background: var(--bs-black);
	background: #f0fdff;
	backdrop-filter: blur(31px);
}

.card-1.margin-1 {
	margin-bottom: 30px;
}

.card-1 h3 {
	font-size: 22px;
}

/*industries*/
.industry-icons-set {
	margin-top: 35px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.industry-icons-set .box {
	display: inline-block;
	width: 100%;
	max-width: 160px;
	padding: 20px 0;
	background: #fff;
	border-radius: 5px;
	text-align: center;
	height: 300px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.industry-section {
	display: inline-block;
	width: 100%;
	background: #eefdff;
}

.industry-icons-set .box .icon {
	display: inline-block;
	width: 100%;
	position: relative;
	margin-bottom: 0px;
}

.industry-icons-set .box .icon img {
	max-width: 50px;
	position: relative;
	z-index: 1;
}

.industry-icons-set .box {
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%)
}

.industry-icons-set .box .title {
	color: #fff;
	padding: 15px;
	position: absolute;
	left: 0;
	bottom: 0;
	font-weight: 700;
	width: 100%;
}

/*about*/
.about-text-box {
	display: inline-block;
	margin-bottom: 35px;
	width: 100%;
	padding: 20px 0;
}

.about-text-box .count {
	font-size: 45px;
	font-weight: bold;
}

.award-div {
	margin-top: 40px;
}

.award-div .box {
	margin-bottom: 20px;
	border-radius: 5px;
	overflow: hidden;
	width: 100%;
	transition: 0.5s all;
	padding: 10px;
}

.award-div .icon {
	display: inline-block;
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%)
}

.about-section .owl-carousel .owl-dots {
	margin-top: 5px;
}

.clients-logo-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.clients-logo-list .img {
	margin-bottom: 30px;
	margin-right: 50px;
}

/*tp event*/
.tp-event__item {
	box-shadow: 0px 30px 50px 0px rgb(4 5 60 / 10%);
	background: #fff
}

.fix {
	overflow: hidden;
}

.tp-event__thumb img {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.tp-event__content {
	padding: 25px 30px;
	padding-bottom: 40px;
}

.tp-event__meta span.event-date {
	font-size: 16px;
	display: flex;
	align-items: center;
}

.tp-event__meta span.event-date i {
	margin-right: 10px;
	font-size: 25px;
	opacity: 0.3;
}

.tp-event__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
	margin-top: 10px;
	min-height: 110px;
}

.more-btn {
	font-weight: 400;
	color: var(--theme) !important;
}

.more-btn i {
	margin-left: 10px;
}

.tp-event__item .w-img img {
	width: 100%;
	height: auto;
}

.tp-event__title a {
	color: inherit;
}

.blog-section {
	background: #eefdff;
}


.faq-section .row {
	align-items: center;
}



.faq-section img {
	filter: grayscale(1);
}

/*contact*/
.contact-info-box {
	display: flex;
	width: 100%;
	margin-bottom: 25px;
	padding: 35px;
	text-align: left;
	border-radius: 5px;
	position: relative;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ddd;
	background: #fff
}

.contact-info-box i {
	text-align: center;
	font-size: 75px;
	position: absolute;
	right: 20px;
	opacity: 0.4;
	top: 30px;
	color: var(--theme);
}

.contact-info-box p {
	margin-bottom: 0px;
	position: relative;
	z-index: 1
}

.contact-info-box h3 {
	font-size: 20px;
	position: relative;
	z-index: 1;
}

.pl-left-1 {
	display: inline-block;
	width: 100%;
	padding-left: 50px;
}

.form-group {
	position: relative;
	margin-bottom: 30px;
	display: inline-block;
	width: 100%;
}

.form-group .icon {
	width: 60px;
	height: 58px;
	text-align: center;
	line-height: 58px;
	font-size: 28px;
	position: absolute;
	left: 1px;
	top: 1px;
	background: #e6ffe6;
	border-radius: 5px 0px 0px 5px;
	color: var(--theme);
}

.form-group .form-control {
	height: 48px;
	font-size: 16px;
	border-radius: 4px;
	box-shadow: none;
	border: 1px solid #ddd;
}

.form-group textarea.form-control {
	height: 120px;
}

.contact-us-section {
	background: #eefdff
}

/*footer*/
.site_footer {
	display: inline-block;
	width: 100%;
	padding: 40px 0;
	float: left;
	border-top: 1px solid #ddd;
	text-align: center;
}

.w-50-1 {
	width: 65%
}

h2 span {
	color: var(--theme);
	font-weight: 700;
}

.services-card .card-body i {
	font-size: 40px;
	margin-bottom: 0;
	display: inline-block;
	color: var(--theme);
}

/*site footer*/
.site_footer h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}

.site_footer .sub-3 {
	color: #fff;
	margin-bottom: 35px;
}

.site_footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.site_footer ul li {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 6px;
	justify-content: center;
}

.site_footer ul li:last-child {
	margin-bottom: 0px;
}

.site_footer ul li .icon {
	min-width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--theme);
	border-radius: 50%;
	color: #fff;
	font-size: 27px;
	margin-right: 25px;
}

.site_footer ul li .title {
	color: #fff;
	font-size: 20px;
	margin-bottom: 5px;
}

.site_footer ul li a {
	color: inherit !important;
	font-weight: 400;
	text-decoration: inherit;
}

.form-group {
	display: inline-block;
	width: 100%;
	margin-bottom: 30px;
}

textarea.form-control {
	height: 160px;
}

.socials {
	text-align: center;
	margin-top: 15px;
}

.socials a {
	display: inline-block;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	color: #7c7c7c;
	font-size: 30px;
	margin: 0 10px;
}

.socials a:hover {
	color: #0f0
}


/*site footer*/
.rating-links .btn-second {
	margin-left: 25px;
	background: var(--body-dark-color);
}

.overlay-video {
	position: absolute;
	right: 10%;
	top: 40px;
	z-index: 1;
	width: 540px;
	height: 540px;
}

.overlay-video video {
	width: 540px;
	height: 540px;
	object-fit: cover;
	position: absolute;
	clip-path: url(#myClip);
	left: 0;
	top: 0;
}

.client-portal .card-body .number {
	display: none;
}

.space-100 {
	display: inline-block;
	width: 100%;
	height: 100px;
}

.why_choose_card {
	padding: 25px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%);
	min-height: 100%;
}

.why_choose_card .icon {
	min-width: 45px;
	margin-bottom: 15px;
	filter: brightness(0) saturate(100%) invert(25%) sepia(87%) saturate(2288%) hue-rotate(210deg) brightness(106%) contrast(98%);
	transition: 0.5s all;
}

.why_choose_card h3 {
	font-size: 20px;
}

.why_choose {
	display: inline-block;
	width: 100%;
	background: #f9f9f9;
}

.powerfull-apps .row {
	align-items: center;
}

.why_choose .col-md-4 {
	margin-bottom: 30px;
}

.client-portal .card-body .mdi {
	font-size: 50px;
	margin-bottom: 10px;
	color: var(--theme);
	display: inline-block;
}

.faq-section {
	background: #f7f7f7;
}

.powerfull-apps p {
	font-size: 20px;
	margin: 25px 0;
}

.accordion-item {
	color: inherit;
}

.site_footer h2 {
	color: inherit;
}

.ul_style li {
	display: flex;
	width: 100%;
	position: relative;
	padding: 10px 0
}

.ul_style li:before {
	content: '\f00c';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 25px;
	color: var(--theme);
}

.ready-to-take .box {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 60px;
	background: var(--theme);
	border-radius: 25px;
}

.ready-to-take h2 {
	color: #fff;
}

.ready-to-take p {
	color: #fff;
}

.btn-dark-primary {
	background: #000
}

.faq-section .container {
	max-width: 750px;
}

.subbanner {
	background: #e2edff;
	padding: 50px 0;
}

.site_header .left {
	display: flex;
	align-items: center;
}

.btn-second:before {
	background-color: #434348;
}

.overlay-video svg clipPath {
	transform: scale(12);
}



.client-portal-fly {
	position: relative;
	top: 25px;
}

.services-section {}

.client-portal p {
	margin-top: 10px;
	margin-bottom: 0;
}

.bg-banner {
	display: flex;
	width: 100%;
	padding: 30px;
	border-radius: 5px;
	background-position: center;
	background-repeat: no-repeat;
	justify-content: center;
	text-align: center;
	min-height: 600px;
	justify-content: center;
	align-items: center;
}

.bg-banner h1 {
	color: #fff;
}

.bg-banner p {
	color: rgb(255 255 255 / 72%);
}

.banner-content-width form {
	overflow: hidden;
	border-radius: 55px;
	display: flex;
}

.banner-content-width form .form-control {
	border-radius: 0px;
	padding-left: 25px;
}

.banner-content-width form .btn-primary {
	border-radius: 0px;
	min-width: 150px;
}

.client-portal h2 {
	font-weight: 500;
}

.services-section .box h3 {
	font-weight: 500;
	font-size: 18px;
}

.services-section .box p {
	opacity: 0.75;
}

.services-section .box {
	text-align: center;
}

.services-section .box i {
	font-size: 50px;
	color: var(--theme);
}

.uberclone-section {
	background: #f5f5f5;
	padding: 50px;
}

.uberclone-section p {
	opacity: 0.75;
}

.bg-inherit {
	background: inherit;
}

.testibox {
	display: block;
	width: 600px;
	margin: 0 auto;
	text-align: center;
}

.testboxflex img {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	margin-bottom: 10px;
}

.testboxflex h3 {
	font-size: 20px;
}

.our-customer-story .carousel {
	margin-top: 40px;
}

.our-customer-story .carousel-control-next,
.our-customer-story .carousel-control-prev {
	color: var(--body-color);
	font-size: 55px;
}

.our-customer-story {
	background: #f5f5f5;
	padding: 50px;
}

.te-quote {
	font-style: italic;
	opacity: 0.75;
}

.te-quote:before,
.te-quote:after {
	content: "\F0757";
	font-family: "Material Design Icons";
}

.te-quote:after {
	content: "\F027E";
}

.site_footer .copy_top {
	text-align: left;
	border-top: 1px solid #ddd;
	margin-top: 25px;
	padding-top: 20px;
	font-size: 14px;
	opacity: 0.75;
}

.textcopy {
	display: flex;
	gap: 30px;
}

.textcopy a {
	color: inherit;
}

.banner-anotherpage .bg-banner {
	min-height: 350px;
}


.list-styles {
	padding: 0px;
}

.list-styles li {
	display: flex;
	width: 100%;
	position: relative;
	padding: 10px 0
}

.list-styles li:before {
	content: '\f00c';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 15px;
	color: var(--theme);
}

.height-30 {
	height: 500px;
	width: auto;
}

.divider {
	width: 100%;
	height: 1px;
	background: #ddd;
}

.small-subbanner {
	background: #f5f5f5;
	padding: 50px;
	text-align: center;
}

.fea-box {
	display: flex;
	margin-bottom: 15px;
}

.fea-box .number {
	min-width: 40px;
	height: 40px;
	border: 1px solid var(--theme);
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	font-weight: 700;
	color: var(--theme);
	margin-right: 25px;
}

.fea-box h3 {
	font-size: 18px;
}

.portfolio-section .row {
	margin-bottom: 30px;
}

.portfolio-section .row:nth-child(even) {
	background: #f5f5f5;
	flex-direction: row-reverse;
	padding: 20px 10px;
	margin: 0px;
	margin-bottom: 30px;
}


.portfolio-section h3 {
	font-size: 22px;
}



/* line */



.timeline-section ul {
	--col-gap: 2rem;
	--row-gap: 2rem;
	--line-w: 0.25rem;
	display: grid;
	grid-template-columns: var(--line-w) 1fr;
	grid-auto-columns: max-content;
	column-gap: var(--col-gap);
	list-style: none;
	width: min(60rem, 90%);
	margin-inline: auto;
}



.timeline-section ul::before {
	content: "";
	grid-column: 1;
	grid-row: 1 / span 20;
	background: rgb(225, 225, 225);
	border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.timeline-section ul li:not(:last-child) {
	margin-bottom: var(--row-gap);
}

/* card */
.timeline-section ul li {
	grid-column: 2;
	--inlineP: 1.5rem;
	margin-inline: var(--inlineP);
	grid-row: span 2;
	display: grid;
	grid-template-rows: min-content min-content min-content;
}

/* date */
.timeline-section ul li .date {
	--dateH: 3rem;
	height: var(--dateH);
	margin-inline: calc(var(--inlineP) * -1);

	text-align: center;
	background-color: var(--accent-color);

	color: white;
	font-size: 1.25rem;
	font-weight: 700;

	display: grid;
	place-content: center;
	position: relative;

	border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.timeline-section ul li .date::before {
	content: "";
	width: var(--inlineP);
	aspect-ratio: 1;
	background: var(--accent-color);
	background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
	position: absolute;
	top: 100%;

	clip-path: polygon(0 0, 100% 0, 0 100%);
	right: 0;
}

/* circle */
.timeline-section ul li .date::after {
	content: "";
	position: absolute;
	width: 2rem;
	aspect-ratio: 1;
	background: var(--bgColor);
	border: 0.3rem solid var(--accent-color);
	border-radius: 50%;
	top: 50%;

	transform: translate(50%, -50%);
	right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.timeline-section ul li .title,
.timeline-section ul li .descr {
	background: var(--bgColor);
	position: relative;
	padding-inline: 1.5rem;
}

.timeline-section ul li .title {
	overflow: hidden;
	padding-block-start: 1.5rem;
	padding-block-end: 1rem;
	font-weight: 500;
}

.timeline-section ul li .descr {
	padding-block-end: 1.5rem;
	font-weight: 300;
}

.timeline-section ul li .title::before {
	bottom: calc(100% + 0.125rem);
}

.timeline-section ul li .descr::before {
	z-index: -1;
	bottom: 0.25rem;
}

@media (min-width: 40rem) {
	.timeline-section ul {
		grid-template-columns: 1fr var(--line-w) 1fr;
	}

	.timeline-section ul::before {
		grid-column: 2;
	}

	.timeline-section ul li:nth-child(odd) {
		grid-column: 1;
	}

	.timeline-section ul li:nth-child(even) {
		grid-column: 3;
	}

	/* start second card */
	.timeline-section ul li:nth-child(2) {
		grid-row: 2/4;
	}

	.timeline-section ul li:nth-child(odd) .date::before {
		clip-path: polygon(0 0, 100% 0, 100% 100%);
		left: 0;
	}

	.timeline-section ul li:nth-child(odd) .date::after {
		transform: translate(-50%, -50%);
		left: calc(100% + var(--col-gap) + var(--line-w) / 2);
	}

	.timeline-section ul li:nth-child(odd) .date {
		border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
	}
}

.process-design {
	display: flex;
	gap: 15px;
	justify-content: space-between;
	align-items: center;
	text-align: center;

}

.process-design i {
	font-size: 50px;
	color: var(--theme);
}

.contact-form-section .container {
	max-width: 600px;
}

.contact-form-section .box {
	padding: 40px;
	background: #f5f5f5;
	border-radius: 5px;
}

.error-404 {
	padding: 0px 40px;
	background: #f6f6f6;
}

.iti {
	width: 100%;
	position: relative;
	z-index: 12;
}

.contact-form-section {
	position: relative;
	z-index: 1;
}

.btn-primary:disabled {
	background: #b0b0b0 !important;
}


.responsive-menu {
	display: none;
}

form#trail-form {
    display: flex;
    justify-content: center;
}
/* responsive */



@media only screen and (max-width: 767px) {
	body {
		padding: 0px;
	}

	.site_header .container {
		max-width: 100%;
	}

	.site_header .left {
		display: none;
	}

	.site_header {
		padding: 15px 0;
	}

	.main_content {
		margin-top: 60px;
	}

	h1 {
		font-size: 28px;
	}

	.banner p {
		font-size: 16px;
	}

	.banner-content-width form {
		flex-direction: column;
		border-radius: 5px;
	}

	.btn-primary {
		height: 40px;
		line-height: 40px;
	}

	.bg-banner {
		padding: 40px 0;
		min-height: inherit;
	}

	section {
		padding: 30px 0;
	}

	h2 {
		font-size: 24px;
	}

	.client-portal .col-md-4 {
		margin-bottom: 25px;
	}

	.w-75 {
		width: 100% !important;
	}

	.uberclone-section {
		padding: 20px 0;
	}

	.site_footer {
		text-align: left;
	}

	.site_footer ul li {
		justify-content: flex-start;
	}

	.textcopy {
		gap: 10px;
		flex-direction: column;
	}

	.copy_top .text-end {
		text-align: start !important;
		margin-top: 25px;
	}

	.site_footer .col-md-3 {
		margin-bottom: 30px;
	}

	.site_footer .copy_top {
		margin-top: 0px;
	}

	.uberclone-section .col-md-7 {
		margin-bottom: 30px;
	}

	.our-customer-story {
		padding: 40px 0;
	}

	.testibox {
		width: 100%;
	}

	.banner-content-width form .form-control {
		height: 45px;
	}

	.banner-anotherpage .bg-banner {
		min-height: inherit;
	}

	.process-design {
		flex-wrap: wrap;
	}

	.process-design .item {
		width: 28%;
	}

	.error-404 {
		padding: 20px 0;
	}

	.contact-form-section .box {
		padding: 20px;
	}

	.site_header .logo {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.responsive-menu {
		display: inline-block;
		width: 30px;
		height: 30px;
		line-height: 30px;
		text-align: center;
		font-size: 25px;
		color: inherit;
	}

	.responsive-menu.open {
		color: inherit;
	}

	.responsive-menu.open i.mdi-menu:before {
		content: '\F0156';
	}


	.site_header .left.open {
		position: fixed;
		display: inline-block;
		top: 70px;
		background: #fff;
		width: 200px;
		right: 10px;
		box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 19%);
	}

	.navigation li {
		width: 100%;
		margin: 0px;
	}

	.navigation {
		flex-direction: column;
		margin: 0px;
		padding: 15px;
	}

	.btn-started {
		width: 100%;
		border-radius: 0px;
	}

	.rating-links {
		flex-direction: column;
	}

	.rating-links .btn-second {
		margin: 0px;
	}

	.col-md-8 {
		margin-bottom: 20px;
	}

	.small-subbanner {
		padding: 20px 0;
	}

	.accordion-button {
		padding: 10px;
		border: 1px solid #ddd;
		line-height: 1.5;
	}

	.accordion-body {
		background: #f5f5f5;
	}

}

/* responsive */


@media (min-width: 768px) and (max-width: 992px) {

	body {
		padding: 0px;
	}

	.site_header .container {
		max-width: 100%;
		flex-direction: column;
	}

	.navigation li {
		margin-left: 10px;
	}



	.btn-started {
		padding: 5px 10px;
	}

	.textcopy {
		gap: 12px;
		flex-wrap: wrap;
	}

	.uberclone-section {
		padding: 40px 0px;
	}

	.site_header .left {
		margin-top: 15px;
	}

	.main_content {
		margin-top: 119px;
	}

}


@media (min-width: 993px) and (max-width: 1100px) {


	body {
		padding: 0px;
	}

	.site_header .container {
		max-width: 100%;
	}

}