/********** style CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	letter-spacing: 0.5px;
}

#scrollbar::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #393071;
}

#scrollbar::-webkit-scrollbar {
	width: 5px;
	background-color: #393071;
}

#scrollbar::-webkit-scrollbar-thumb {
	background-color: #555;
	border-left: 1px solid #555;
}

:root {
	--primary: #393071;
	--secondary: #333333;
	--light: #F3F6F8;
	--dark: #000000;
}

.py-6 {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.my-6 {
	margin-top: 6rem;
	margin-bottom: 6rem;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 30px;
	bottom: 30px;
	z-index: 99;
}

.fw-300
{
	font-weight:300;
}

/*** Button ***/
.btn {
	font-weight: 500;
	transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
	color: #FFFFFF;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.w-55 {
	font-size: 40px;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	padding: 21px 25px;
	vertical-align: middle;
}

.services-card-box {
	min-height: 100px;
	padding: 25px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

.text-left {
	text-align: left !important;
}

.text-justify {
	text-align: justify !important;
}

/*** Navbar ***/

.header-logo {
	width: 270px;
}

.navbar.sticky-top {
	top: -100px;
	transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
	height: 80px
}

.navbar .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 25px 0;
	color: #c0c0c0;
	font-weight: 600;
	text-transform: uppercase;
	outline: none;
	letter-spacing: 1.5px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:active,
.navbar .navbar-nav .nav-link.active {
	color: #fff;
}

.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar .navbar-nav {
		border-top: 1px solid #EEEEEE;
	}
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		border: none;
		margin-top: 0;
		top: 150%;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
	}

	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}


/*** Header ***/
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background:linear-gradient(#000000cf, #39307100);
	z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	padding: 10px 5px;
	background-color: var(--primary);
}

@media (max-width: 768px) {
	#header-carousel .carousel-item {
		position: relative;
		min-height: 450px;
	}

	#header-carousel .carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.page-header {
	background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../assets/images/banner-1.jpg) center center no-repeat;
	background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
	color: #999999;
}

.products-section {
	background: #e1dcff;
}

.products-item::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	background: #FFFFFF;
	transition: .5s;
	z-index: -1;
}

.products-item:hover::after {
	height: 100%;
	background: var(--primary);
}

.products-item .team-btn {
	position: absolute;
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #393071b0;
	overflow: hidden;
	opacity: 0;
	transition: .5s;
}

.products-item:hover .team-btn {
	height: 100%;
	opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: var(--light);
	font-weight: normal;
	text-transform: capitalize;
	transition: .3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--light);
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	color: var(--primary);
	letter-spacing: 1px;
	box-shadow: none;
}

.copyright {
	background: #092139;
}

.copyright a {
	color: var(--primary);
}

.copyright a:hover {
	color: var(--light);
}

.services-item
{
	border:1px solid #ccc;
}

.services-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 2px;
    width: 10px;
    height: 6px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.services-carousel .owl-dot.active {
    width: 10px;
    height: 6px;
    background: var(--primary);
}

 

		.step-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background:var(--primary); /* Primary Color */
            color: white;
            font-size: 12px;
            font-weight: bold;
            padding: 4px 8px;
            z-index: 10;
			font-weight:300;
        }
	
 