/* GENERAL */
:root {
	--purple: #6079E6;
	--border-radius: 1.5rem;
}

@media (max-width: 767.98px) {
	/*body {
		font-size: 0.875rem!important;
	}*/
	h1, .h1 {
		font-size: 1.625rem!important;
		line-height: 1.75rem!important;
	}
	h2, .h2 {
		font-size: 1.125rem!important;
		line-height: 1.625rem!important;
	}
	.card {
		font-size: 0.9rem!important;		
	}

	h3 {
/*		font-size: 0.875rem!important;*/
		font-size: 1rem!important;
	}



}

.cl-button {
	position: absolute;
	-webkit-transition: all .1s ease-out;
	-moz-transition: all .1s ease-out;
	-o-transition: all .1s ease-out;
	transition: all .1s ease-out;
}

.cl-button:hover, 
.cl-button:focus,
.cl-button:active {
	border-color: #00DFA4;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #fff;
	color: #00DFA4;
	border-radius: 50px;
	border-color:#00DFA4;
}

h1, .h1 { 
	font-weight: 500!important; 
/*	letter-spacing: -0.125rem;*/
	line-height: 4.375rem;
}
.purple { 
	color: var(--purple)!important;
}

/**/

/* NAVIGATION */
	#navbarNav ul li a { padding-left:30px; padding-right: 30px;}

	.navbar {
		transition: 500ms ease;
		background: transparent;
	}

	

	@media (max-width: 991.98px) {
		.navbar-brand img {
			width: 125px!important;
		}

		.navbar-collapse {
			background-color: #fff;
			-webkit-box-shadow: 0px 10px 5px 0px rgba(35, 48, 86, 0.10);
			-moz-box-shadow: 0px 10px 5px 0px rgba(35, 48, 86, 0.10);
			box-shadow: 0px 10px 5px 0px rgba(35, 48, 86, 0.10);
			border-radius: var(--border-radius);
		}
	}

	.navbar-toggler:focus,
	.navbar-toggler-icon:focus {
		outline: none;
		box-shadow: none;
	}

/**/


.header-container { 
	position: relative;
	overflow: hidden;
}

.header-bg {
	position: absolute;
	bottom: 10%;
	left: 45%;
}

@media (max-width: 991.98px) {
	.header-bg {
		top: -2%;
		left: 45%;
		max-width: 840px;
	}
}


@media (max-width: 767.98px) {
	.header-bg {
		top: -2%;
		left: 50%;
		max-width: 530px;
	}
}

@media (max-width: 575.98px) {
	.header-bg {	
		top: -14%;
		left: 46%;
		max-width: 530px;
	}
}


/* HERO */


.hero-img {
	max-width: 860px;
	/* width: 100%; */
	position: relative;
	top: 0;
	left: 0;
}


@media (max-width: 991.98px) {
	.hero-img { 
		width: 100%!important;
		position: relative!important;
	}
}


/* OUR PROCESS */
	.process-list { 
		position: relative;
	}
	.process-list::before { 
		content: ""; 
		position: absolute; 
		width: 4px; 
		display: block; 
		height: 100%; 
		background-color: var(--purple); 
		border-radius: 2px; 
		left: 12px 
	}
	.process-list li { 
		position: relative;
		padding-left: 50px;
		padding-bottom: 3.125rem;
	}

	.process-list li::before { 
		position: absolute; 
		content: ""; 
		width: 30px; 
		height: 30px; 
		display: block; 
		border:4px solid; 
		border-color: var(--purple); 
		background-color: var(--primary); 
		border-radius: 50%;
		left: 0;
	}

	@media (max-width: 767.98px) {
		.process-list li {
			padding-bottom: 2rem;
		}
		.process-list li:last-child {
			padding-bottom: 0.6rem;
		}
	}


/**/

/* DATA ANALYSTICS*/
.data-analytics { 
	background-image: url(../img/da_bcg.png);
	background-position: bottom right;
	background-size: 40%;
	background-repeat: no-repeat;
	overflow: hidden;
}

.icons { width: 100%; max-width: 105px;}
@media (max-width: 767.98px) {
	.icons {
		width: 50px;
	}
}
/**/

/* POTENTIAL WITH US */
.pie {
	width: 100% !important;
	height: auto !important;
	margin-bottom: 1rem;
}

.pie-text-1,
.pie-text-2,
.pie-text-3 {
	font-family: "Outfit" !important;
}

.code {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	width: 260px;
	height: 0;
	left: 0;
	margin: auto;
	line-height: 1.6;
	transition: visibility 0s, opacity 0.5s linear;
}

.show-code .code {
	visibility: visible;
	opacity: 1;
	height: 100%;
	top: 45px;
}

pre {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

code {
	height: calc(100% - 45px);
	margin-top: -20px;
}/**/

/* FOOTER */

	.footer li { 
		position: relative;
		padding-left: 45px;
		line-height: 36px;
	}
	.footer li a::before { 
		position: absolute;
		content: "";
		top: 0;
		left:0;
		background-repeat: no-repeat;
		width: 36px;
		height: 36px;
		display: block;
	}
	
	.footer li.phone a::before {
		background-image:url(../img/phone.svg);
	}
	.footer li.email a::before {
		background-image:url(../img/email.svg);
	}
	.footer li.facebook a::before {
		background-image:url(../img/facebook.svg);
	}

	.footer li a:hover,
	.footer li a:focus {
		color: var(--purple)!important ;
		text-decoration: none;
	}

	.footer .logo {
		max-width:245px;
	}


	@media (max-width: 991.98px) {
		.footer .logo {
			max-width: 135px;
		}
	}

/**/