body {
	font-family: 'BL Melody';
	background-color: #fff;
	color: #000;
}

@media (min-width: 992px){
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 0.6rem;
		padding-left: 0.6rem;
	}
}

.links-transparent {
    background-color: transparent !important;
}

#navbar {
    background-color: #fff;
    transition: background 0.25s;
}

a.nav-link {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Montserrat';
}

a.nav-link.active {
	font-weight: 700;
}

.navbar-links {
	background-color: #000;
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 0rem 1.5rem;
}

@media (max-width: 991.98px) {
	.navbar-links {
		display: block;
	}
}

.navbar-links-two {
	background-color: #000;
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 0rem 0.6rem;
}

.navbar-toggler {
    background-color: #000;
}

.logo-title {
	color: #000;
	vertical-align: middle;
	font-family: 'Inter';
	font-weight: 500;
}

@media (max-width: 767.98px) {
	.logo-title {
		font-size: 16px;
	}
}

.login-button {
    color: #fff;
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
	background-color: #007BFF;
    border: none;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Montserrat';
}

.login-button:hover {
	color: #fff;
}

.login-button:focus {
	box-shadow: none;
}

@media (max-width: 767.98px){
	.navbar-nav{
		padding-left: 5px;
	}
}

.gif-container {
	width: 100%;
	margin-left: 20%;
}

@media (max-width: 767.98px) {
	.gif-container {
		margin-left: 0;
	}
}

.gif-container img {
	width: 100%;
}

.banner-subtitle {
	font-size: 16px;
	margin-bottom: 15px;
	font-family: "Suprema";
}

@media (max-width: 767.98px) {
	.banner-subtitle {
		font-size: 13px;
	}
}

.carwash-btn {
	color: #fff;
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
	background-color: #000;
    border: none;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Montserrat';
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.carwash-btn {
		padding: 0.5rem 0.7rem;
    	font-size: 15px;
	}
}

@media (max-width: 767.98px) {
	.carwash-btn {
		font-size: 13px;
		padding: 0.4rem 1rem;
	}
}

.carwash-btn:hover {
	color: #fff;
}

.banner-title {
	font-size: 5rem;
	font-weight: 400;
	color: #007BFF; 
	line-height: 1;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.banner-title {
		font-size: 4rem;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.banner-title {
		font-size: 3rem;
	}
}

@media (max-width: 767.98px) {
	.banner-title {
		font-size: 32px;
	}
}

.words {
	display: inline-block; 
	transition: transform 0.5s ease-in-out, opacity 0.5s;
}

.jump {
	animation: bounceAnimation 0.8s ease-in-out;
}

@keyframes bounceAnimation {
	0%   { transform: translateY(0); opacity: 1; }
	20%  { transform: translateY(-60px); opacity: 0.7; } 
	40%  { transform: translateY(10px); opacity: 0.9; }  
	60%  { transform: translateY(-30px); opacity: 0.8; } 
	80%  { transform: translateY(5px); opacity: 0.95; }  
	100% { transform: translateY(0); opacity: 1; }   
}

.secondary-background {
	background-color: #F3F3F3;
}

.car {
	display: flex;
	justify-content: center;
}

.car img{
	mix-blend-mode: multiply; 
	background-color: #F3F3F3;
}

.car-responsive {
	width: 75%;
}

@media (max-width: 767.98px) {
	.car-responsive {
		width: 100%;
	}
}

.top-border-radius {
	border-top-left-radius: 60px;
	border-top-right-radius: 60px; 
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 50%;
    margin: auto;
}

@media (max-width: 767.98px) {
	.progress-container {
		width: 100%;
	}
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.progress-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #C3C3C3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 767.98px) {
	.progress-circle {
		width: 15px;
		height: 15px;
	}
}

.progress-step.active .progress-circle {
    background-color: #007BFF;
}

.progress-text {
    font-size: 16px;
    margin-top: 5px;
	font-family: "Suprema";
}

@media (max-width: 767.98px) {
	.progress-text {
		font-size: 13px;
	}
}

.progress-bar {
    height: 5px;
    background-color: #C3C3C3; 
    position: absolute;
    top: 17%; 
    left: 50%;
    width: 100%;
    z-index: 1;
}

@media (max-width: 767.98px) {
	.progress-bar {
		top: 15%;
	}
}

.progress-step:first-child .progress-bar {
    background: linear-gradient(to right, #007BFF 50%, #C3C3C3 50%);
}

.progress-step.active:not(:last-child)::after {
    background-color: #007BFF;
}

.car-studio-padding {
	padding-top: 8rem;
	padding-bottom: 8rem;
}

@media (max-width: 767.98px) {
	.car-studio-padding {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

.title {
	font-size: 9.4rem;
	font-weight: 700;
	color: #007BFF;
	text-align: center;
	line-height: 0.9;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.title {
		font-size: 8rem;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.title {
		font-size: 6rem;
	}
}   

@media (max-width: 767.98px) {
	.title {
		font-size: 2.8rem;
	}
}

.square-responsive {
	width: 100%;
}

@media (max-width: 767.98px) {
	.square-responsive {
		width: 50%;
	}
}

.car-studio-details {
	font-size: 16px;
	text-transform: capitalize;
	line-height: 1.2;
}

@media (max-width: 767.98px) {
	.car-studio-details {
		font-size: 14px;
	}
}

.title-two {
	font-size: 4.5rem;
	font-weight: 400;
	color: #007BFF; 
	line-height: 1;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.title-two {
		font-size: 4rem;
	}
} 

@media (max-width: 767.98px) {
	.title-two {
		font-size: 1.8rem;
		font-weight: 700;
	}
}

@media (min-width: 768px) {
	.digital-padding {
		padding-left: 14%;
	}
}

.best-software {
	font-size: 16px;
	font-weight: 300;
	text-align: center;
}

@media (max-width: 767.98px) { 
	.best-software {
		font-size: 14px;
	}
}

.gradient-line {
	width: 75%;
	height: 1px;
	background: linear-gradient(to right, #f1f1f1, #000, #f1f1f1);
	display: block;
}

@media (max-width: 767.98px) { 
	.gradient-line {
		width: 100%;
	}
}

.title-three {
	font-size: 4rem;
	font-weight: 700;
	text-align: center;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.title-three {
		font-size: 3rem;
	}
} 

@media (max-width: 767.98px) { 
	.title-three {
		font-size: 1.9rem;
	}
}

.feature-column {
	background-color: #000;
	color: #fff;
	border-radius: 20px;
}

.feature-title {
	font-size: 20px;
}

@media (max-width: 767.98px) { 
	.feature-title {
		font-size: 18px;
	}
}

.feature-details {
	text-transform: capitalize;
	padding-top: 5rem;
}

@media (max-width: 767.98px) { 
	.feature-details {
		padding-top: 4rem;
		font-size: 14px;
	}
}

.feature-subtitle {
	font-size: 2.7rem;
	line-height: 1;
	text-transform: capitalize;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.feature-subtitle {
		font-size: 1.5rem;
	}
} 

@media (max-width: 767.98px) { 
	.feature-subtitle {
		font-size: 1.3rem;
	}
}

.report-column {
	background-color: #1E1E1E;
	border-radius: 10px;
}

.report-title {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
}

@media (max-width: 767.98px) { 
	.report-title {
		font-size: 16px;
	}
}

.feeback-text {
	font-size: 13.6px;
}

.history-width {
	width: 60%;
}

@media (max-width: 575.98px) {
	.history-width {
		width: 59%;
	}
}

.history-image {
	position: absolute;
	bottom: 5%;
	right: 5%;
	width: 40%;
	height: auto;
}

@media (max-width: 767.98px) {
	.history-image {
    	height: 90%;
	}	
}

.vector-image {
	position: absolute;
    width: 92%;
    bottom: 25%;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.vector-image {
		bottom: 35%;
	}
}


@media (min-width: 768px) and (max-width: 991.98px) {  
	.vector-image {
		bottom: 30%;
	}
}

@media (max-width: 767.98px) {
	.vector-image {
    	bottom: 35%;
	}	
}

@media (max-width: 767.98px) {
	.employee-tracking-details {
		padding-top: 62%;
	}	
}

.subscription-light-orange {
	background-color: #FFEAC2;
	border-radius: 30px;
}

.subscription-orange {
	background-color: #FFD280;
	border-radius: 15px;
}

.subscription-title {
	font-family: 'Montserrat';
	font-size: 18px;
	font-weight: 600;
}

@media (max-width: 767.98px) {
	.subscription-title {
		font-size: 16px;
	}
}

.subscription-details {
	font-family: "Suprema";
	text-transform: capitalize;
	line-height: 1.2;
}

.subscription-price {
	font-family: "Suprema";
	font-size: 18px;
	font-weight: 600;
}

@media (max-width: 767.98px) {
	.subscription-price {
		font-size: 16px;
	}
}

.subscription-price-color {
	opacity: 40%;
}

.subscription-button {
	border-radius: 15px;
	font-family: "Suprema";
}

.subscription-button.orange{
	background-color: #FFD280;
}

.subscription-light-green {
	background-color: #C5FFD2;
	border-radius: 30px;
}

.subscription-green {
	background-color: #76FF95;
	border-radius: 15px;
}

.subscription-button.green{
	background-color: #76FF95;
}

.subscription-light-blue {
	background-color: #B4D8FF;
	border-radius: 30px;
}

.subscription-blue {
	background-color: #6AB1FE;
	border-radius: 15px;
}

.subscription-button.blue{
	background-color: #6AB1FE;
}

#testimonials {
    .slick-slide {
        margin: 10px 10px;
    }

    .slick-slider
    {
        position: relative;
        display: block;
        box-sizing: border-box;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
                user-select: none;
        -webkit-touch-callout: none;
        -khtml-user-select: none;
        -ms-touch-action: pan-y;
            touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }

    .slick-list
    {
        position: relative;
        display: block;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .slick-list:focus
    {
        outline: none;
    }

    .slick-list.dragging
    {
        cursor: pointer;
        cursor: hand;
    }

    .slick-slider .slick-track,
    .slick-slider .slick-list
    {
        -webkit-transform: translate3d(0, 0, 0);
           -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
             -o-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
    }

    .slick-track
    {
        position: relative;
        top: 0;
        left: 0;
        display: block;
    }

    .slick-track:before,
    .slick-track:after
    {
        display: table;
        content: '';
    }

    .slick-track:after
    {
        clear: both;
    }

    .slick-loading .slick-track
    {
        visibility: hidden;
    }

    .slick-slide
    {
        display: none;
        float: left;
        height: 100%;
        min-height: 1px;
    }

    [dir='rtl'] .slick-slide
    {
        float: right;
    }

    .slick-slide img
    {
        display: block;
    }

    .slick-slide.slick-loading img
    {
        display: none;
    }

    .slick-slide.dragging img
    {
        pointer-events: none;
    }

    .slick-initialized .slick-slide
    {
        display: block;
    }

    .slick-loading .slick-slide
    {
        visibility: hidden;
    }

    .slick-vertical .slick-slide
    {
        display: block;
        height: auto;
        border: 1px solid transparent;
    }

    .slick-arrow.slick-hidden {
        display: none;
    }

	.testimonial-images {
		width: 25%;
	}

	@media (max-width: 767.98px) {
		.testimonial-images {
			width: 75%;
		}
	}

	.testimonial-container {
		background-color: #E9E9E9;
		border-radius: 10px;
		padding: 1.5rem;
	}

	.testimonial-details {
		font-family: "Suprema";
		text-transform: capitalize;
	}

	.testimoial-name {
		font-family: "Suprema";
	}
}

.software {
	font-size: 2.5rem;
	font-weight: 700;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.software {
		font-size: 2rem;
	}
}  

@media (max-width: 767.98px) {
	.software {
		font-size: 1.9rem;
		text-align: center;
        line-height: 1.2;
	}
}

#vector {
    background-image: url(/frontend/images/new/vectors.png);
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 767.98px) {
	#vector {
		background-size: 100% 100%;
	}
}

.contact-form {
	background-color: #000;
	border-radius: 100px;
	font-family: "Suprema";
}

@media (max-width: 767.98px) {
	.contact-form {
		border-radius: 50px;
	}
}

.gradient-line-two {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #000, #fff, #000);
	display: block;
	margin-top: 2rem;
    margin-bottom: 2rem;
} 

@media (max-width: 767.98px) {
	.gradient-line-two {
		margin-top: 1.5rem;
    	margin-bottom: 1.5rem;
	}
}

.contact-form a {
	color: #fff;
	text-decoration: none;
}

.contact-container {
	background-color: #fff;
	border-radius: 50px;
	padding: 2rem;
}


@media (min-width: 768px) and (max-width: 991.98px) {
	.contact-container {
		padding: 1.5rem;
	}
}  

@media (max-width: 767.98px) {
	.contact-container {
		padding: 1.3rem;
		border-radius: 25px;
	}
}

.contact-title {
	font-size: 2.5rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.contact-title {
		font-size: 1.6rem;
	}
}  

@media (max-width: 767.98px) {
	.contact-title {
		font-size: 1.4rem;
	}
}

#contact-form {
	.form-control {
		border: none;
		background-color: #E7E7E7;
	}
}

.submit-btn {
	color: #fff;
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
	background-color: #8DC5FE;
    border: none;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Montserrat';
}

@media (max-width: 767.98px) {
	.submit-btn {
		font-size: 14px;
		padding: 0.5rem 1.2rem;
	}
}

.submit-btn:hover {
	color: #fff;
}

.download-app {
	mix-blend-mode: multiply;
    background-color: #F3F3F3;
}

@media (max-width: 767.98px) {
	.platform {
		width: 80%;
	}
}


.footer-bg {
	padding-top: 3rem;
	background-color: #F3F3F3;
}

@media (max-width: 767.98px) {
	.footer-bg {
		padding-top: 2rem;
	}
}

.footer-container {
	background-color: #000;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	padding: 5rem;
}

@media (max-width: 767.98px) {
	.footer-container {
		border-top-left-radius: 50px;
		border-top-right-radius: 50px;
		padding: 0;
	}
}

.footer-title {
	font-size: 9.6rem;
    font-weight: 600;
    text-align: center;
    line-height: 0.9;
	background: linear-gradient(to right, #007BFF, #015FC5, #004C9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	padding-bottom: 5rem;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.footer-title {
		font-size: 7.2rem;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.footer-title {
		font-size: 5rem;
	}
}

@media (max-width: 767.98px) {
	.footer-title {
		font-size: 2.5rem;
		padding-bottom: 3.5rem;
		padding-top: 3rem;
	}
}

.footer-phone {
    color: #000;
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
    background-color: #fff;
    border: none;
	font-size: 13px;
    font-weight: 400;
	font-family: "Suprema";
}

@media (max-width: 767.98px) {
	.footer-phone {
		padding: 0.4rem 0.7rem;
	}
}

.footer-phone:hover {
	color: #000;
	text-decoration: none;
}

.social-icon {
	display: inline-block;
	position: relative;
	height: 35px;
	width: 35px;
	border-radius: 50%;
	margin: 0 5px;
	background-color: #fff;
}

@media (max-width: 767.98px) {
	.social-icon {
		height: 30px;
		width: 30px;
	}
}

.social-icon i {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	color: #000;
}

.footer-links a {
	color: #fff;
	font-size: 13px;
}

@media (max-width: 575.98px) {
	.footer-links a {
		font-size: 12px;
	}	
}

.footer-links a:hover {
	text-decoration: none;
}

.footer-copyright {
	color: #fff;
	font-size: 13px;
}

@media (max-width: 575.98px) {
	.footer-copyright {
		font-size: 11px;
	}	
}

.footer-copyright a {
	color: #fff;
	font-size: 13px;
}

@media (max-width: 575.98px) {
	.footer-copyright a {
		font-size: 11px;
	}	
}

.footer-copyright a:hover {
	text-decoration: none;
}

.page-padding {
	padding-top: 110px;
}

#login-bg {
    background-image: url(/frontend/images/new/login-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.login-title {
	font-family: 'Poppins';
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
    line-height: 1.2;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.login-title {
		font-size: 2rem;
	}
}

@media (max-width: 575.98px) {
	.login-title {
		font-size: 1.7rem;
	}
}

#carwash-form {
	.form-control {
		border-radius: 26px;
		font-family: 'Poppins';
	}

	label {
		font-family: 'Poppins';
	}
}

.text-over-image {
	font-family: 'Poppins';
	font-size: 1.4rem;
	font-weight: 600;
	color: #fff;
	position: absolute;
	top: 20%;
  	left: 50%;
  	transform: translate(-50%, -50%);
	text-align: center;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.text-over-image {
		font-size: 1rem;
	}
}

@media (max-width: 575.98px) {
	.text-over-image {
		font-size: 0.8rem;
	}
}