body {
	font-family: "Poppins", serif;
	font-weight: 200;
	font-style: normal;
	margin: 0;
	padding: 0;
}

h1 {
	font-weight: 800;
}

h2, h3, h4 {
	font-weight: 300;
}

.main-banner {
	margin: 0;
	color: #ffffff;
	font-size: 40px;
	height: 40vh;
	display: flex;
	align-items: center; /* Vertically centers the text */
	justify-content: center; /* Horizontally centers the text (optional) */
	background-size: cover; /* Ensures the image covers the entire div */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    background-color: rgba(102, 204, 255, 1); /* Tint color */
	background-blend-mode: multiply;
}

.sub-title {
	background-color: #003092;
	color: #ffffff;
	margin: 0;
	font-size: 30px;
}

.padding-10 {
	padding: 10px;
}

.main-content-container {
	display: block;
}

.two-columns {
	width: 100%;
}

@media (min-width: 921px) {
    .two-columns {
        width: 50%;
    }
    .main-content-container {
    	display: flex;
    	align-items: center;
    }
    .image-container {
    	height: 50vh;
    }
}

.image-container {
	height: 75vh;
	background-color: #FFAB5B;
	overflow: hidden;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-content {
	background-color: #FFF2DB;
	color: #003092;
	font-size: 20px;
}

.main-footer {
	font-size: 24px;
	background-color: #003092;
	color: #ffffff;
	display: flex;
	align-items: center; /* Vertically centers the text */
	justify-content: center; /* Horizontally centers the text (optional) */
}