body {
	font-family: Arial, sans-serif;
	color: #fff;
	margin: 0;
	padding: 0;
	text-align: left;
}

.container {
	position: relative;
}

.logo-placement {
	position: absolute;
	top: 30px;
	left: 12%;
	text-align: left;
	overflow: hidden;
	width: 50%;
	z-index: 1;
}

.logo-placement img {
	width: 26%;
	height: auto;
	max-height:185px
}

.blank-header {
	position: relative;
	background-color: rgb(255, 255, 255);
	padding: none;
	text-align: center;
	width: 100%;
	height: 39px;
}

.menu {
	text-align: right;
	padding: 20px;
	height: 70px;
	padding-right: 150px;
}

.menu ul {
	list-style-type: none;
	margin: 25px;
	padding: none;
}

.menu ul li {
	display: inline-block;
	margin-left: 10px;
}

.menu ul li:first-child {
	margin-left: 0;
}

.menu ul li a {
	text-decoration: none;
	color: #126DA5;
	padding: 5px 10px;
}

.menu ul li a:hover {
	background-color: #f0f0f0;
}

.top-bar {
	background-color: #004870;
	display: flex;
	justify-content: flex-end;
	align-items:right;
	padding: 15px;
	border-bottom: 1px solid #fff;
	height: 6%;
}

.contact-info {
	color: #fff;
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-end;
	align-items: flex-end;
	text-align: right;
	padding-bottom: 10px;
	max-width: 55%;
}

.contact-info span {
	margin-left: 10px;
}
#search-bar {
	display: none;
	width: 150px;
	padding: 7px;
	border-radius: 20px;
}

#search-icon {
	background: none;
	border: none;
	cursor: pointer;
	padding-left: 10px;
	padding-top: 7px;
}

#search-icon img {
	width: 25x;
	height: 25px;
}



.background-div {
	position: relative;
	background-image: url('/assets/images/background1.png');
	background-size: cover;
	background-position: center;
	height: 60vh;
	background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: overlay;
}

.background2-div {
	position: relative;
	background-image: url('/assets/images/background2.png');
	background-size: cover;
	background-position: center;
	height: 60vh;
	background-color: rgba(51, 124, 157, 0.45);
	background-blend-mode: overlay;
}

.background3-div {
	position: relative;
	background-image: url('/assets/images/background3.png');
	background-size: cover;
	background-position: center;
	height: 65vh;
	width: 100%;
}

.text-div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 0, 0, 0.17);
	padding-left: 70px;
	padding-right: 20px;
	padding-top: none;
	padding-bottom: none;
	
	text-align: left;
	box-sizing: border-box;
	width:100%;
}

.image-div {
	position: absolute;
	top: 70%;
	left: 0px;
	/*margin-left: -60px;*/
	padding-left: 70px;
	margin: none;
	text-align: left;

}

.image-div img {
	max-width: 50%;
	height: auto;

}

/*SERVICES LIST*/

#services {
	border: 1px solid blue;
}

.custom-list {
	list-style-type: none; /* Remove default bullet points */
	padding: 20px; /* Remove default padding */
}

.custom-list li {
	margin-bottom: 20px; 
	padding-left: 100px; 
	background: url('../images/DATANAV_LOGO_bulb.png') left center no-repeat; /* Use background image for list item */
	background-size: 40px; /* Adjust the size of the background image */
	line-height: 5; /* Adjust line height */
	font-size: 21px;
}


  .content-wrapper {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
  }
  h2{
	color:#fff;
	font-size: 21px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;

  }

  .left-div, .right-div {
	flex: 1 1 50%; /* Equal width for both divs, can adjust for different proportions */
	padding: 5px; /* Add padding as needed */
	box-sizing: border-box; /* Include padding in width calculation */
	color: #fff;
  }


.footer {
	background-color: #f8f9fa;
	padding: none;
	text-align: right;
}
.footer img{
	width:70%;
	max-width:100%;
}
/* Adjust the webpage for smaller screens */
@media (max-width: 768px) {
	.logo-placement img{
		min-width: 100px;
	}
	.top-bar {
		flex-direction: column;
		align-items:flex-end; 
	}

	.contact-info {
	
		justify-content: flex-end;
		margin: 5px 0;
		align-items:end;
		text-align: right;
	}

	.image-div {
		top: 80%;
	}

	.contact-info span {
		text-align: right;
		margin-left: 0; /* Remove left margin for better alignment */
		margin-right: 10px; /* Add right margin for spacing */
	}

	.menu{
		display: flex;
		padding:10px 10px;
		align-items: center;
		justify-content: center;
	}

	.menu ul {
		margin: 0%;
		padding: 0%;
	}
	.custom-list li{
		margin-top:20px;
		line-height: 1.5; /* Adjust line height */
		background-size: 20px;
		margin-bottom: 20px;
	}

	.left-div, .right-div {
		flex-basis: 100%; /* Full width for both divs on smaller screens */
	}
}
/*FORM*/
form {
	max-width: 80%;
	margin: 0 auto;
}

label {
	display: block;
	margin-bottom: 8px;
}

input[type="text"],
input[type="email"] {

	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	height: 10%;
}

textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	height: 10%;
}

textarea {
	height: 100px;
}

input[type="submit"] {
	background-color: #004870;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-size: 16px;
	display: block;
	margin: 0 auto;
	transition: background-color 0.3s;
}
input[type="submit"]:hover {
	background-color:  #6a5acd;
}

#querytype {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box; 
	height: 37px; 
	background-color: white;
	padding-bottom: 10px;
}
/*generic comment*/


/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Header */
.modal-header {
	padding: 2px 16px;
	background-color: #126DA5;
	color: white;
	border-radius: 10px 10px 0 0;
}

/* Modal Body */
.modal-body {padding: 2px 16px;}

/* Modal Footer */
.modal-footer {

	padding: 2px 16px;
	/* background-color: #5cb85c; */
	color: white;
	text-align: right;

}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 10px;
	border-radius: 20px;
	border: 1px solid #888;
	width: 40%; /* Could be more or less, depending on screen size */
	animation-name: animatetop;
	animation-duration: 0.4s
}

/* Add Animation */
@keyframes animatetop {
	from {top: -300px; opacity: 0}
	to {top: 0; opacity: 1}
}

/* The Close Button */
.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

#myBtn, #btnClose {
	background-color: #126DA5;
	border-radius: 5px;
	border-width: 0;
	box-shadow: rgba(25, 25, 25, 0.04) 0 0 1px 0, rgba(0, 0, 0, 0.1) 0 3px 4px 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: Arial, sans-serif;
	font-size: 1em;
	height: 30px;
	padding: 0 25px;
	transition: all 200ms;
}

#myBtn:hover, #btnClose:hover {
	background-color: lightblue;
	color: #000;
	transform: scale(1.05);
}