/* Global Variables */

:root {
	/* Ethiopian IT Park Strict Brand Colors */
	--brand-primary: #0C7C92;
	/* Primary Blue */
	--brand-secondary: #16284F;
	/* Secondary Blue */
	--brand-accent: #6EC9C4;
	/* Accent Teal */
	--brand-white: #FFFFFF;
	--brand-black: #000000;

	/* Legacy variable mapping for backward compatibility */
	--primary-color: var(--brand-primary);
	--secondary-color: var(--brand-accent);
	--accent-color: var(--brand-secondary);
	--white-color: var(--brand-white);

	/* Utility colors */
	--text-color: #f4f4f4;
	--divider-color: #313131;
	--dark-divider-color: #FFFFFF33;
	--error-color: rgb(230, 87, 87);

	/* Ethiopian IT Park Strict Typography */
	--brand-font: "Roboto", sans-serif;
	--brand-font-amharic: "Noto Sans Ethiopic", sans-serif;

	/* Legacy font mapping */
	--default-font: var(--brand-font);
	--accent-font: var(--brand-font);
}

/* General Styles */

body {
	font-family: var(--default-font);
	font-size: 17px;
	font-weight: 300;
	line-height: 1.6em;
	color: var(--text-color);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--accent-font);
	font-weight: 300;
	line-height: 1.1em;
	color: var(--white-color);
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1400px;
}

.container,
.container-fluid {
	padding-right: 15px;
	padding-left: 15px;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2em;
	text-transform: capitalize;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--white-color);
	border-radius: 100px;
	padding: 19px 70px 19px 35px;
	border: none;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.btn-default:hover {
	background-position: right 32px center;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: radial-gradient(50.3% 49% at 53% 30%, #3E3E3E 0%, #C2C2C2 0%, #3E3E3E 100%);
	opacity: 30%;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition: all 0.5s ease-in-out;
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: radial-gradient(45.3% 50% at 52.82% 83.33%, #C2C2C2 0%, #3E3E3E 100%);
	opacity: 20%;
	width: 100%;
	height: 100%;
	z-index: -1;
}


.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--dark-divider-color) transparent var(--dark-divider-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-btn {
	text-align: end;
}

.section-title {
	margin-bottom: 60px;
}

.section-title h3 {
	display: inline-block;
	position: relative;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing: 0.21em;
	text-transform: uppercase;
	color: var(--white-color);
	border-radius: 100px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 8px 15px 8px 30px;
	margin-bottom: 10px;
	overflow: hidden;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: radial-gradient(50.3% 49% at 53% 30%, #C2C2C2 0%, #3E3E3E 100%);
	opacity: 30%;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.section-title h3::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: radial-gradient(45.3% 50% at 52.82% 83.33%, #C2C2C2 0%, #3E3E3E 100%);
	opacity: 20%;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.section-title h1 {
	font-size: 90px;
	letter-spacing: -0.04em;
	background: -webkit-linear-gradient(270.46deg, var(--text-color) 25.72%, var(--primary-color) 148.05%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	cursor: none;
	padding-bottom: 0.1em;
}

.section-title h2 {
	font-size: 60px;
	background: -webkit-linear-gradient(270.46deg, var(--text-color) 25.72%, var(--primary-color) 148.05%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	cursor: none;
	padding-bottom: 0.1em;
}

.section-title p {
	margin-top: 30px;
	margin-bottom: 0;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	padding: 280px 0 60px;
	position: relative;
	z-index: 1;
}

.hero-content {
	position: relative;
	text-align: center;
	max-width: 1025px;
	margin: 0 auto;
	z-index: 2;
}

/************************************/
/***       06. About Us css   	  ***/
/************************************/

.progress {
	width: 150px;
	height: 150px;
	background: none;
	position: relative;
}

.progress::after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 6px solid #eee;
	position: absolute;
	top: 0;
	left: 0;
}

.progress>span {
	width: 50%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: 1;
}

/************************************/
/***     07. Our Services css	  ***/
/************************************/

/************************************/
/***    08. Working Process css	  ***/
/************************************/

.working-process {
	background-position: left center;
	background-size: auto 100%;
	padding: 60px 0 60px;
}

.working-process-step {
	position: relative;
	background: white;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px 30px 30px 40px;
}

.working-process-step::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(30px, -50%);
	background-color: var(--secondary-color);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	z-index: 1;
}

.working-process-step::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -80px;
	transform: translate(30px, -50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	z-index: 0;
}

.working-process-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	z-index: 1;
}

.working-process-title h3 {
	font-size: 22px;
	text-transform: capitalize;
}

.working-process-no p {
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	background-color: var(--white-color);
	color: var(--secondary-color);
	border-radius: 50%;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
	margin-bottom: 0;
}

.working-process-content {
	position: relative;
	z-index: 1;
}

.working-process-content p {
	margin: 0;
}

/* Our FAQs */

/* Our Blog */

/* Footer */

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.footer-logo {
	margin-right: 50px;
}

.footer-logo img {
	max-width: 180px;
}

/************************************/
/***    15. About us Page css     ***/
/************************************/

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Service Page */

/* Service Single */

@keyframes planningrotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Blog Archive */

/* Blog Single */

/* Team Page */

/* Team Single */

/* Portfolio Page */

/* Portfolio Single */

/* Pricing Page */

/* Contact Us Page */

.contact-form {
	padding: 50px;
	background-color: var(--secondary-color);
}

/* FAQs Page */

/* 404 Page */

/* Responsive */

@media only screen and (max-width: 991px) {

	.btn-default {
		font-size: 16px;
		background-position: right 25px center;
		background-size: 20px auto;
		padding: 17px 60px 17px 25px;
	}

	.btn-default:hover {
		background-position: right 22px center;
	}

	.section-title {
		margin-bottom: 40px;
	}

	.section-title h1 {
		font-size: 60px;
	}

	.section-title h2 {
		font-size: 44px;
	}

	.section-title p {
		margin-top: 20px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.hero {
		padding: 140px 0 30px;
		margin-top: -90px;
	}

	.hero-content {
		max-width: 100%;
	}

	.working-process {
		padding: 30px 0 0;
	}

	.working-process-title h3 {
		font-size: 20px;
	}

	.section-title p {
		margin-top: 20px;
	}

	.contact-form {
		padding: 40px;
	}
}

@media only screen and (max-width: 767px) {

	body {
		font-size: 15px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 40px;
	}

	.section-title h2 {
		font-size: 30px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.working-process-step::before,
	.working-process-step::after {
		display: none;
	}

	.working-process-step {
		padding: 20px;
	}

	.working-process-title h3 {
		font-size: 18px;
	}

	.working-process-no p {
		font-size: 16px;
	}

	.footer-logo {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.contact-form {
		padding: 30px 20px;
	}
}