
body {
    margin: 0 0.5em;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: #fff;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
header nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.logo {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.logo-img {
	height: 1.6em;
	width: auto;
}
.logo-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.frace {
	letter-spacing: 0.1em;
	font-size: 1.2em;
	font-weight: bold;
}
.engineering {
	letter-spacing: 0.1em;
	font-size: 0.6em;
}
.hero {
    background: linear-gradient(to right, rgba(12, 26, 123, 1), rgba(12, 26, 123, 0.8)), url("images/frace.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 6rem 2rem;
    text-align: left;
    color: #fff;
}
button {
	background-color: #369500;
	padding: 0.5em;
	border: none;
	border-radius: 0.4em;
}
hr {
	height 0.5em;
	margin: 0;
	padding: 0.41em;
	border: none;
	background: #151a7b;

}
.contact-us-btn {
	background-color: #e69500;
	color: #000;
}
#hero-btn {
	display: flex;
	justify-content: flex-start;
	gap: 2em;
}
.services, .why-choose-us, .footer-nav {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	padding: 0.3em;
	margin: 1em;
	text-align: left;
}
.services img {
	width: 10%;
	margin-bottom: 0.5rem;
}
.why-choose-us img {
	width: 10%;
	margin-bottom: 0.5rem;
}
section, article {
	padding: 2em;
	margin: 1.2em auto;
    	border-radius: 1em;
	background-color: #f5f5f5;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.26);

}
footer {
    background: rgba(12, 26, 123, 0.9);
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin: 0.3em;
    border-radius: 5px;
}
.social-icons a {
	display: inline-block;
	margin: 0px;
	text-decoration: none;
	color: #fff;
	font-size: 0.61em;
	position: relative;
	padding-left: 5px;
}
/*
.social-icons a::before {
	content: "";
	font-family: "Font Awesom 6 Free";
	font-weight: 400;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 0.13em;
}
*/
.footer-nav ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.footer-services ul li, .footer-contact ul li {
	display: inline-block;
	padding: 0;
	margin: 5px;
}
.footer-nav h4 a {
	background-color: #e69500;
	color: rgba(45, 45, 45, 1);
	padding: 5px;
	text-decoration: none;
	border-radius: 5px;
}
.deep-footer {
	display: flex;
	justify-content: space-around;
	background: #ced;
	width: 100%;
}
.footer-logo {
	display: flex;
	flex-direction: row;
}
#copyright {
	margin-left: auto;
}

.menu-toggle {
	display: none;
	background-color: #fff;
	cursor: pointer;
	font-size: 1.5rem;
	border: none;
	color: #151a7b;
}

@media screen and (max-width: 768px) {
	.menu-toggle {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	.nav-items {
		display: none;
		opacity: 0;
		transition: opacity 0.5s ease;
	}
	.nav-items.show {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		position: absolute;
		top: 60px;
		right: 1em;
		background-color: #fff;
		color: #151a7b;
		width: 120px;
		padding: 1rem;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
		opacity: 1;
	}
}
/*
.footer-contact ul li a {
	text-decoration: none;
}
*/

.footer-contact ul li a i {
	color: #151a7b;
	background-color: #f5f5f5;
	padding: 0.5em;
	border-radius: 20px;
}
form button {
	background-color: #e69500;
	color: #151a7b;
}
