@import "../font/stylesheet.css";
body {
	font-family: "Roboto Condensed";
	font-size: 20px;
	line-height: 1.3;
	color: #0a5641;
	font-weight: 300;
}

/*PALETTE*/
.color-primary {
	color: #0a5641;
}
.color-white {
	color: white;
}

/*Font*/
.font-22 {
	font-size: 22px;
}
.font-25 {
	font-size: 25px;
}
strong {
	font-weight: 700;
}

/*Button*/
.btn {
	padding: 10px 30px;
	border: 1px solid;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 20px;
	border-radius: 30px;
	letter-spacing: 2px;
}

.btn-secondary-fill {
	border-color: #ebe54a;
	background-color: #ebe54a;
	color: #0a5641;
}
.btn-secondary-fill:hover,
.btn-secondary-fill:active,
.btn-secondary-fill:focus {
	background-color: #0a5641;
	color: #ebe54a;
	border-color: #0a5641;
}

.btn-primary-fill {
	border-color: #0a5641;
	background-color: #0a5641;
	color: white;
}
.btn-primary-fill:hover,
.btn-primary-fill:active,
.btn-primary-fill:focus {
	background-color: white;
	color: #0a5641;
}

/*landing*/
.landing-page {
	min-height: 100vh;
	width: 100vw;
	overflow-x: hidden;
}

.row {
	min-height: inherit;
}

.heading {
	font-size: 48px;
}

.col-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding-top: 100px;
	padding-bottom: 50px;
	padding-left: 20px;
}

.col-content img {
	max-width: 100%;
}

.logo {
	max-width: 80%;
}

.image-container {
	position: relative;
	height: 100%;
}

.featured-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.layout-space {
	height: 50px;
}
@media screen and (max-width: 991px) {
	.col-content {
		padding: 30px;
		padding-top: 50px;
	}
	.image-container {
		aspect-ratio: 1;
	}
	.logo {
		max-width: 60%;
	}
}
@media screen and (max-width: 576px) {
	.heading {
		font-size: 40px;
	}
	.font-25 {
		font-size: 20px;
	}
	.logo {
		max-width: 70%;
	}
}
