html, body {
	height: 100vh;
	width:100%;
	margin: 0;
	font-family: Arial, sans-serif;
	font-size: 16px;
   
}

.welcome-page-wrapper{
	height: 100vh;
	width:100%;
	margin: 0;
	font-family: Arial, sans-serif;
   
}

.page-logo {
	width:100%;
	text-align: center; 
	padding-top: 3rem;            
	margin-bottom: 1.5rem;        
}

.page-logo img {
	width: 100px;                 
	height: 100%;    
}

.map-title-section {
	margin-top:10px;
	text-align: center;
	color: #012C6C; 
	font-family: "Arial", sans-serif;
	margin-top: 2rem;
}

.map-title-section h1 {
	font-size: 2rem;       
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.map-title-section p {
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	padding: 20px;
}

.map-documentation {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5rem;
	flex-wrap: wrap; 
	margin-top: 6px;
	text-align: center;
}
  
.map-option img {
	width: 300px;
	height: 225px;
	display: block;
	margin: 0 auto 1rem;
}

.map-btn {
	width:253px;
	display: inline-block;
	padding: 0.8rem 1.5rem;
	border: 2px solid #012C6C;
	border-radius: 6px;
	color: #012C6C;
	font-family: "Arial", sans-serif;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.map-btn:hover {
	/* position:absolute; */
	background-color: #012C6C;
	color: #fff;
}
  
.page-disclaimer {
	background-color: rgba(217, 217, 217, 0.1);
	text-align: center;
	color: #012C6C;
	font-family: "Arial", sans-serif;
	padding:35px 0;
	padding: 35px;
    margin-top: 60px;
}
  
.page-disclaimer h3 {
	font-size: 1rem;
	font-weight: 100;
	margin-bottom: 1rem;
}

.page-disclaimer p {
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1.6;
	max-width: 900px;
	margin: 0 auto 1.5rem;
}

.page-disclaimer a {
	color: #012C6C;
	text-decoration: none;
}

.contactus-btn {
	display: inline-block;
	padding: 0.6rem 1.5rem;
	border: 1.8px solid #012C6C;
	border-radius: 6px;
	color: #012C6C;
	font-weight: 500;
	transition: all 0.3s ease;
}

.contactus-btn:hover {
	background-color: #012C6C;
	color: #fff;
}

.welcome-page-wrapper .body-wrapper{
	position: relative;
    height: calc(100vh - 194px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.welcome-page-wrapper header {
    height: 120px;
} 


@media (max-width: 768px) {
	.welcome-page-wrapper .body-wrapper {
	  position: static; /* removes relative positioning */
	  height: unset; /* lets content flow naturally */
	  display: block; /* no flexbox layout */
	  flex-direction: unset;
	  justify-content: unset;
	}

	.map-title-section p {
		font-size: 0.9rem;
		margin-top: 2rem;
		padding: 0 26px;
	}

	.map-title-section h1 {
		font-size: 1.7rem;
		padding:0 20px;
	}
}

@media (max-width: 1300px) {
	.welcome-page-wrapper .body-wrapper {
		padding-bottom: 50px;
		height: unset;
	}

}
@media (min-width: 993px) and (max-width: 1300px)  and (orientation: portrait) {
	.welcome-page-wrapper .body-wrapper {
		height: calc(100vh - 194px);
	}

}
     



