@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	font-family: "Poppins", Helvetica;
	font-size: 16px;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* custom scroll-bar */
body::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
body::-webkit-scrollbar-thumb {
	/* background-color: rgb(72, 141, 182); */
	background-color: rgb(72, 141, 182);
}
body::-webkit-scrollbar-track {
	background-color: #f6f9ff;
}

a {
	text-decoration: none !important;
	text-transform: none !important;
	color: #000 !important;
}

section {
	width: 100%;
	z-index: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* background-color: #f0f3fa; */
	background-color: #f6f9ff;
}
section:not(:first-of-type) {
	padding-top: 83px;
}
.section-n {
	height: 100vh;
}
.section-container {
	width: 100%;
	max-width: 1440px;
	height: 100%;
}

#logo-image {
	max-height: 65px;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	transition: 0.3s;
	padding: 0.5rem;
	width: 100vw;
	background: #fff;
}

.sticky {
	padding-top: 1rem;
	padding-bottom: 2rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%),
		0 8px 10px -6px rgb(0 0 0 / 10%);
}

.navbar-container {
	padding-left: 5rem;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.navbar-container a:not(:first-child) {
	/* border-bottom: solid 3px rgb(72, 141, 182); */
}

.navbar-brand {
	padding: 0 !important;
}

.navbar-home {
	margin-left: 6rem;
	padding: 5px 0px;
}
.navbar-services {
	margin-left: 3rem;
	padding: 5px 0px;
}

.navbar-alias {
	width: 100%;
	height: 83px;
}

.home {
	background: url("../images/banner.webp") rgba(58, 46, 43, 0.8);
	background-blend-mode: multiply;
	background-position: left 100px top 100px;
	background-repeat: no-repeat;
}

.banner {
	height: 100%;
	width: 100%;
	padding: 3rem 6rem;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	color: #fff !important;
}

.banner-left p:first-child {
	font-size: 1.75rem;
	font-weight: 200;
	line-height: 1.3;
}
.banner-left p span {
	font-size: 4rem;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
}

.banner-left p:nth-child(2) {
	font-weight: 300;
}

/* animated button css */
.learn-more-btn {
	display: inline-block;
	padding: 0.75rem 1.25rem;
	border-radius: 10rem;
	color: #fff !important;
	letter-spacing: 0.075rem;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.learn-more-btn:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: rgb(254, 0, 56); */
	background-color: rgb(72, 141, 182);
	border-radius: 10rem;
	z-index: -2;
}
.learn-more-btn:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 100%;
	/* background-color: #b9c4d3; */
	transition: all 0.3s;
	border-radius: 10rem;
	z-index: -1;
}
.learn-more-btn:hover::before {
	color: #fff;
	width: 100%;
}
/*  */

/* about-us start */
.about-us h3 {
	border-bottom: solid 3px #324a6f;
	display: inline-block;
}
.about-us-image {
	width: 100%;
	max-width: 550px;
	mix-blend-mode: multiply;
}
/* about-us end */

.services .row-2 {
	max-width: 1100px;
	margin: auto;
}
.services .services-heading {
	border-bottom: solid 3px #324a6f;
	display: inline-block;
}
.services-item {
	max-width: 350px;
	min-height: 350px;
	box-shadow: 0 0px 35px rgb(0 0 0 / 9%);
	padding: 1.5rem 1.25rem;
	color: #fff;
	background: #fff;
	font-family: Arial, Helvetica, sans-serif;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 200%;
	background-color: rgb(0 0 0 /60%);
	background-blend-mode: multiply;
	transition: 0.3s cubic-bezier(0.43, 0.07, 0.61, 0.95);
	/* color: rgb(95, 5, 95); */
}
.services-item:hover {
	background-size: 270%;
}
.services-item h4 {
	/* color: rgb(0 0 0 / 50%); */
	/* color: rgb(75, 75, 75); */
	margin-bottom: 1.5rem;
}
.services-item p {
	/* font-size: 0.875rem; */
	/* color: rgb(95, 95, 95); */
	font-family: Helvetica, sans-serif;
}
.bim-training {
	background-size: 100%;
}
.bim-training:hover {
	background-size: 125%;
}

/* footer start */
footer {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* background: rgb(38, 46, 58); */
	background: #1a1a1a;
	color: #fff !important;
	padding: 2rem 3rem;
	border-top: solid 10px rgb(72, 141, 182);
}
footer * {
	font-size: 16px;
	font-family: "Poppins";
}
.footer-container {
	width: 100%;
	max-width: 1440px;
	height: 100%;
}
.footer-container .row-1 a {
	color: #a8a8a8 !important;
	transition: color 0.3s;
}
.footer-container .row-1 a:hover {
	color: #fff !important;
}
.footer-container .footer-brand {
	color: #a8a8a8;
}
.footer-container .footer-social a {
	color: #fff !important;
}
.footer-container .footer-social .fa-brands {
	transition: all 0.2s;
}
.footer-container .footer-social .fa-brands:hover {
	transform: scale(1.2);
}
.footer-logo {
	border-left: 8px solid #fff;
	border-bottom: 8px solid #fff;
}

@media screen and (min-width: 1440px) {
	.section-n {
		max-height: 960px;
	}
}

@media screen and (max-width: 1024px) {
	* {
		font-size: 1rem;
	}
	.banner {
		padding: 1.25rem;
	}
	nav {
		padding-left: 1rem;
	}
	.navbar-container {
		padding: 0;
	}
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 576px) {
	.navbar-home {
		margin-left: 2rem;
	}
	.navbar-services {
		margin-left: 1rem;
	}
	footer {
		padding: 2rem 2rem;
	}
}

@media screen and (max-width: 425px) {
	.banner-left p:first-child {
		font-size: 1.25rem;
	}
	.banner-left p span {
		font-size: 3rem;
	}
	.banner-left p:first-child {
		font-weight: 300;
	}
	#home {
		background-position: top;
	}
	footer {
		padding: 2rem 1rem;
	}
}

@media screen and (max-width: 375px) {
}
