@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {

	--button-main-bg: #E9C46A;
	--button-main-text: #457B9D;
	--button-sec-bg: #1D3557;
	--button-sec-text: #ffffff;

	--text-main: #1D3557;
	--text-sec: #457B9D;

	--teal: #2A9D8F;

}

* {
	background: none;
	background-color: none;
	margin: 0;
	padding: 0;
}

hr {
	margin: 0px !important;
	padding: 0px !important;
}

html body {
	background-color: #f4f4f9;
    scroll-behavior: smooth;
	/* padding: 0px 20px; */
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#navbar {
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	padding: 0px 20px;
	z-index: 2;
	color: #84a6a6;
	/* background-color: #d8e8e8; */
}


#navbarSupportedContent li {
	padding: 10px;
}

.navbar-nav {
	/* border: 1px solid blue; */
	flex: 1;
	justify-content: center;
}


.navbar-nav a {
	text-decoration: none;
	color: white;
	font-weight: 300;
}

.navbar-brand {
	color: white;
	font-weight: 500;
}

.navbar-nav a:hover {
	color: #ffffff90;

}

.my-button-main {
	background: none;
	border: none;

	background-color: var(--button-main-bg);
	color: var(--button-main-text);
	font-weight: bold;
	font-size: 0.8rem;
	border-radius: 20px;
	/* height: 40px; */
	padding: 10px 15px;
	line-height: 36px;
	cursor: pointer;
	transition: all 0.3s;
    text-decoration: none;
}

.my-button-sec {
	background: none;
	border: none;

	background-color: var(--button-sec-bg);
	color: var(--button-sec-text);
	font-weight: bold;
	font-size: 0.8rem;
	border-radius: 20px;
	/* height: 40px; */
	padding: 10px 15px;
	line-height: 36px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.my-button-main:hover {
    filter: opacity(0.8);
}

.my-button-main:active {
	scale: 0.95;
}


#cover-page {
	position: relative;
	background: 
		url("./assets/grad-bg.png") no-repeat;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	padding: 0px 6vw;
	height: 100vh;
}

#cover-header h1 {
	font-size: 2.5rem;
	font-weight: 600;
	width: 66%;
	color: white;
	z-index: 99;
	margin-bottom: 10px;
	line-height: 2.9rem;
}

#cover-header p {
	font-size: 2rem;
	font-weight: 200;
	width: 66%;
	color: white;
	z-index: 99;
	line-height: 2.5rem;
}

.my-section {
	padding: 0px 5vw;
	padding-top: 43px;
	width: 100%;
	max-width: 1400px;
}

.section-content {
	width: 100%;
	/* border: 1px solid red; */
	margin: 0px 2vw;
	margin-bottom: 50px;
}

.section-content.centered {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.section-title {
	margin-bottom: 10px;
}

.section-title .section-title-sub {
	font-family: "Inter";
	line-height: 18px;
	margin: 0;
	padding: 0;
	color: var(--text-sec);
	font-size: 18px;
	font-weight: bolder;
	margin-bottom: 4px;
}
.section-title.centered{
	/* border: 1px solid red; */
	text-align: center;
}

.section-title h2 {
	font-family: "Inter";
	line-height: 32px;
	margin: 0;
	color: var(--text-main);
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

.section-paragraph {

	margin: 0;
	font-size: 18px;
	color: var(--text-main);
	font-weight: 300;
	width: 80%;
	margin-bottom: 10px;

}

.section-paragraph.centered {
	text-align: center;
}

.who-we-are-icons {
	display: flex;
	flex-direction: row;
	margin-bottom: 20px;
}

.who-we-are-icon {

	width: 48px;
	height: 48px;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 10px;

}

.who-we-are-icon-finance {
	background-image: url("./assets/icons/finance-chart.png");
}

.who-we-are-icon-suitcase {
	background-image: url("./assets/icons/suitcase.png");
}

.who-we-are-icon-bookmark {
	background-image: url("./assets/icons/bookmark.png");
}

.map-img {

	border-radius: 15px;
	border: 1px solid gray;

}

.row {

	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-evenly;
	width: 100%;

}

#home-our-services-content .home-services-col {

	width: 350px;
	max-width: 75%;
	padding: 23px 2%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;

}

#home-our-services-content .home-services-col .icon {
	width: 84px;
	height: 84px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

#home-our-services-content .home-services-col .title {
	font-size: 26px;
	font-weight: 600;
	color: var(--text-main);
	margin-bottom: 10px;
	text-align: center;
}

#home-our-services-content .home-services-col .paragraph {
	font-size: 18px;
	font-weight: 300;
	color: var(--text-main);
	margin-bottom: 20px;
}

#home-services-finance-icon {

	background-image: url("assets/icons/finance-chart.png");
}

#home-why-choose-us-cols {
	flex-wrap: wrap;
}

.home-why-choose-us-col {
	max-width: 30% !important;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	color: var(--text-main);
	margin-top: 40px !important;
}

#home-why-choose-us-cols .home-why-choose-us-col .icon {

	margin: 0;
	padding: 0;
	width: 64px;
	height: 64px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-bottom: 15px;
}

.expertise-img {
	background-image: url("./assets/icons/expertise.png");
}

.globe-img {
	background-image: url("./assets/icons/globe.png");
}

.brain-img {
	background-image: url("./assets/icons/brain-chip.png");
}

.home-why-choose-us-col h4 {
	font-size: 22px;
	font-weight: 600;
}

.home-why-choose-us-col .paragraph {
	font-size: 16px;
	font-weight: 300;
}

#home-quote-section {

	background-image: url("./assets/grad-bg.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
	/* height: 245px; */
	padding: 34px 7.5vw;
}

#home-quote-section #home-quote-text {

	font-size: min(3vw, 26px);
	font-weight: 700;
	letter-spacing: 0.5px;

}

#home-quote-section #home-quote-author {

	font-size: min(2.4vw, 22px);
	font-weight: 400;
	font-style: italic;
	letter-spacing: 0.5px;
	color: #ffffffAA;

} 

#home-contact-us-cols {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: flex-start;
	width: 100%;
	margin-top: 30px;
}
#home-contact-us-cols .col {
	width: 50%;
}

#contact-us-form {

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 0px 20px;
	border-right: 1px solid rgba(128, 128, 128, 0.47);
	/* border: 1px solid blue; */
}

#contact-us-form .input-row {
	width: 100%;
	padding: 5px 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

#contact-us-form .input-row input, textarea {
	border:	none;
	padding: 10px 15px;
	border-radius: 15px;
	background-color: #b5b5b556;
	filter: drop-shadow(2px 2px 5px #0000002b);
	width: min(100%,370px);
	
}


#contact-us-form .input-row input:active, textarea:active {
	border: none;
	outline: none;
}

#contact-us-form .input-row input::placeholder, textarea::placeholder {
	color: #7a79797b;
	font-weight: 300;
	font-size: 14px;
}



#home-contact-us-address-col p {

font-size: 14px;
font-weight: 400;
color: var(--text-main);
margin: 5px;
}

#home-contact-us-address-col span {

	font-weight: 600;
	color: var(--text-main);

}
#contact-us-form .input-row label {
	text-align: right;
	margin-right: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-main);
	height: 100%;
}


#contact-us-form .input-row label[for="body-input"] {
	padding-top: 5px;
	height: 100%;
	align-self: flex-start !important;
}

textarea {
	height: 200px;
	min-height: 84px;
}

#contact-us-form .input-row input[type="submit"] {
	background-color: var(--button-main-bg);
	min-height: none;
}

footer {

	min-height: 250px;
	height: 250px;
	padding: 25px 100px;
	background-image: url("./assets/grad-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}

footer #footer-content {
	/* border: 1px solid red; */
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

footer #footer-business-name {
	padding-right: 28px;
	border-right: 1px solid #97979780;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;

}
footer #footer-business-name h3 {

	color: white;
	font-weight: 600;
	font-size: 34px;

}

footer #footer-links {
	padding-left: 25px;
	width: 40%;
}

footer #footer-links ul li {
	list-style-type: none;
	text-decoration: none;
	margin-bottom: 10px;
}

footer #footer-links ul li a {
	text-decoration: none;
	color: white;
	font-weight: 200;
	font-size: 16px;
}
footer #footer-links ul li a:hover {
	color: rgba(255, 255, 255, 0.531);
	transition: color 0.2s ease-in-out;
}

footer #footer-copyright {
	font-size: 18px;
	font-weight: 200;
	letter-spacing: 0.6px;

}

.sub-page-header {
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("./assets/grad-bg.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
}

.sub-page-header h1 {
	font-size: 40px;
	font-weight: 650;
	letter-spacing: 1px;
	color: white;
	margin-top: 45px;
}

.subpage-catchphrase {

	width: 100%;
	padding: 0px 5vw;
	padding-top: 18px;
	text-align: center;

	color: var(--text-main);
	font-size: 24px;
	font-weight: 650;
}
.subpage-catchphrase p {
	width: 100%;
	padding: 0px 10vw;
	font-style: italic;
}


@media screen and (max-width: 768px) {

	#cover-header h1 {
		font-size: 2rem;
		font-weight: 600;
		width: 90%;
		color: white;
		z-index: 99;
		margin-bottom: 10px;
		line-height: 2.2rem;
	}
	
	#cover-header p {
		font-size: 1.4rem;
		font-weight: 200;
		width: 66%;
		color: white;
		z-index: 99;
		line-height: 1.8rem;
	}

	.section-paragraph {
		font-size: 16px;
	}

	#home-our-services-content .home-services-col .title {
		font-size: 22px;
	}

	#home-our-services-content .home-services-col .paragraph {
		font-size: 14px;
	}

	#home-our-services-content {

		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
	}

	#home-our-services-content .home-services-col {

		width: 100%;
	}

	.home-why-choose-us-col  {
		margin-top: 20px !important;
	}
	.home-why-choose-us-col h4 {
		font-size: 18px;
		font-weight: 600;
	}
	.home-why-choose-us-col .paragraph {
		font-size: 14px;
	}

	.row {

		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		width: 100%;

	}

	.col {

		width: 100%;
		max-width: 100%;

	}

	#home-contact-us-cols {
		flex-direction: column;
	}

	#home-contact-us-cols .col {
		width: 100%;
		max-width: 100%;
	}

	#contact-us-form {
		border: none;
		border-bottom: 1px solid rgba(128, 128, 128, 0.47);
		margin-bottom: 15px;
		padding-bottom: 10px;
	}

	footer {
		height: auto;
		margin: 0;
		padding: 0;
	}

	footer #footer-content {
		/* border: 1px solid red; */
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		margin: 0;
		padding: 0px 28px;
	}

	footer #footer-business-name {
		padding: 0;
		margin: 0;
		/* padding-top: 28px; */
		padding-bottom: 20px;
		margin-bottom: 20px;
		border: none;
		border-bottom: 1px solid #97979780;
		width: 100%;
		
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	
	}

	footer #footer-business-name br {
		display: none;
	}

	footer #footer-links {
		padding: 0;
		width: 100%;
		border-bottom: 1px solid #97979780;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin-bottom: 20px;

	}	

	footer #footer-links ul {
		display: flex;
		flex-direction: row;
		align-items: center;
	}

	footer #footer-links ul > li {

		margin-right: 20px;

	}

	

}