@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz@6..12&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

:root {
	--primary-blue: #315eb4;
	--dark-blue: #062c66;
	/* --dark-blue: #3472b8; */
	--orange-red: #f58616;
	/* --orange-red: #ec701c; */
	--bright-orange: #f58616;
	--sky-blue: #4bb2c9;
	--bg-color: #062c66;
	--default-font: "Oswald", sans-serif;
	--heading-font: "Oswald", sans-serif;
	--nav-font: "Oswald", sans-serif;
	--para-font: "Montserrat", sans-serif;
}

body {
	padding: 0;
	margin: 0;
	font-family: var(--para-font);
	box-sizing: border-box;
}

.brand__logo-container {
	background-color: var(--dark-blue);
	padding: 5px auto;
	text-align: left;
}

.brand__logo-container img {
	width: 250px;
}

.Hero---banner {
	min-height: 100vh;
	background-image: url("../img/development/11062b_c0e8134e83a54720a43fb4f14dc5e9ba~mv2.jpeg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #f2f4f5;
	background-blend-mode: overlay;
	align-content: center;
}

.Hero---banner h1 {
	font-size: 50px;
	font-weight: 800;
	font-family: var(--heading-font);
	/* word-spacing: 1px; */
	/* letter-spacing: 1px; */
	text-align: end;
	color: var(--dark-blue);
	/* -webkit-text-stroke: 1px; */
	/* -webkit-text-stroke-color:var(--orange-red); */
}

.Hero---banner h1 span {
	color: var(--orange-red);
	/* -webkit-text-stroke-color:white; */
}

.Hero---banner p {
	font-size: 20px;
	text-align: end;
	/* color: white; */
}

.about---section {
	/* background-image: url('../image/about-bg.webp'); */
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	/* background-color: #f2f4f5; */
	background-blend-mode: overlay;
}

.about---section h2 {
	font-size: 45px;
	font-weight: 600;
	font-family: var(--heading-font);
}

.about---section .abt-card {
	padding: 10px;
	text-align: center;
	height: 100%;
	transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.about---section .abt-card img {
	width: 70px;
	margin-bottom: 20px;
}

.about---section .abt-card h4 {
	font-size: 18px;
	font-weight: 800;
	margin: 0 auto 10px;
	width: 70%;
	color: var(--dark-blue);
}

.about---section .abt-card p {
	width: 80%;
	margin: auto;
}

.about---section .abt-card:hover {
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 10px;
	background-color: #f2f4f5;
}

.abt-section-2 h2 {
	font-size: 48px;
	font-weight: 700;
	font-family: var(--heading-font);
	color: var(--dark-blue);
	line-height: 1.2;
	word-spacing: 5px;
}

.abt-section-2 .abt-sec-desc {
	font-size: 18px;
}

.services-container ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.services-container ul li {
	position: relative;
	/* padding-left: ; */
	/* space for icon */
	/* margin-bottom: 12px; */
	padding: 0px 0px 20px 35px;
}

.services-container ul li:last-child {
	padding-bottom: 0px;
}

.services-container ul li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f061";
	/* arrow-right icon */
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 0;
	color: var(--orange-red);
	/* Bootstrap primary blue */
	font-size: 21px;
	font-weight: 700;
}

.services-container ul li p {
	margin-bottom: 0;
	font-weight: 800;
	font-size: 21px;
}

.apart-section h2 {
	font-size: 45px;
	font-weight: 600;
	font-family: var(--heading-font);
}

.apart-section .apart-card {
	text-align: center;
	padding: 10px;
	height: 100%;
}

.apart-section .apart-card:hover {
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 10px;
	background-color: #f2f4f5;
}

.apart-section .apart-card h4 {
	font-size: 17px;
	text-align: center;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.apart-section .apart-card img {
	margin-bottom: 20px;
	width: 80px;
}

.cta-section-2 .cta--text h2 {
	font-size: 40px;
	font-weight: 700;
	font-family: var(--heading-font);
	color: white;
}

.cta-section-2 .cta--text h2 span {
	color: var(--orange-red);
}

.marquee {
	width: 100%;
	overflow: hidden;
	background: #fff;
	color: #000;
	white-space: nowrap;
	padding: 10px 0px;
}

.marquee__inner {
	display: inline-flex;
	animation: scroll 20s linear infinite;
}

.marquee__inner span:not(span span) {
	padding: 0 2rem;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--bright-orange);
}

.marquee__inner span > span {
	color: #000;
}

/* Smooth scrolling */
@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}

	/* scroll half width for loop */
}

/* Pause on hover */
.marquee:hover .marquee__inner {
	animation-play-state: paused;
}

/* style all tel: links */
a[href^="tel:"] {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s;
}

a[href^="tel:"]:hover {
	/* background: #007bff; */
	color: var(--orange-red);
}

/* style all mailto: links */
a[href^="mailto:"] {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s;
}

a[href^="mailto:"]:hover {
	color: var(--orange-red);
}

.brand__logo-container {
	position: relative;
}

@media (max-width: 768px) {
	.brand__logo-container {
		text-align: center;
		padding: 10px auto;
	}

	.brand__logo-container img {
		height: 40px;
		width: unset;
		text-align: center;
	}

	.Hero---banner {
		padding: 15px 0px;
	}

	.Hero---banner h1 {
		text-align: left;
		font-size: 40px;
	}

	.Hero---banner p {
		text-align: left;
		font-size: 18px;
	}

	.about---section h2 {
		font-size: 36px;
		text-align: left;
	}

	.about---section p {
		text-align: left;
		margin-bottom: 0;
	}

	.abt-section-2 h2 {
		font-size: 36px;
		text-align: left;
	}

	.abt-section-2 .abt-sec-desc {
		font-size: 16px;
		text-align: left;
	}

	.services-container ul li p {
		font-size: 20px;
	}

	.apart-section h2 {
		font-size: 36px;
		text-align: left;
	}

	.services-container ul li::before {
		font-size: 21px;
	}

	.about---section .abt-card {
		box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
		border-radius: 10px;
		background-color: #f2f4f5;
	}

	.cta-section-2 .cta--text h2 {
		font-size: 36px;
		text-align: left;
	}

	.apart-section .apart-card {
		box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
		border-radius: 10px;
		background-color: #f2f4f5 !important;
		margin-bottom: 10px;
	}
}