@charset "utf-8";
/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #62a198;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}


.image-wrapper {
	position: relative;
}
.container {
  position: relative;
}
.container h1 {
	font-size: 48px;
	padding: 30px;
}
.container h3 {
	font-size: 18px;
	padding-left: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.container p {
	font-size: 14px;
	padding-left: 30px;
	padding-right: 30px;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.transparent-square {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the transparency here */
  padding: 0px;
  color: #fff;
}

.transparent-square h2,
.transparent-square p {
  margin-top: 0;
}

.transparent-square button {
  margin-top: 0px;
}

.png-wrapper {
	display: relative;
	width: 100%;
}

.png-image {
	display: block;
	padding-left: 30px;
	padding-right: 150px;
}

.png-image png {
  margin-bottom: 0px; 
}
.png-image h4 {
	font-size: 16px;
	margin-bottom: 20px; 
	text-align: left;
}


nav {
	position: relative;
	background-color: #62a198;
	padding: 15px;
	text-align: right;
}
nav ul {
	list-style-type: none;
	margin: 0px;
	width: 100%;
	text-align: left;
}

nav ul li {
	display: inline-block;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-top: 10px;
  border-radius: 22px;
}

nav ul li a:hover {
  background-color: #609996;
}

section {
	background-color: #333;
	color: #fff;
	padding: 40px;
	text-align: left;
	margin-right: 20px;
	width: 38%;
	height: auto;
}

.text-overlay {
	position: absolute;
	top: 0%;
	left: 62%;
	transform: translate(-50%, -50%);
	text-align: left;
	margin-right: 0px;
	color: #fff;
}

.text-overlay h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

.text-overlay p {
  font-size: 16px;
  margin-bottom: 20px;
}
.section {
	display: inherit;
}
.section h2 {
	font-size: 36px;
	margin-left: 160px;
}
.section p {
  margin-top: 10px;
  padding: 50px;
  margin-left: 160px;
  width: 64%;
}

.projects {
  display: flex;
  flex-wrap: wrap;
}

.project {
  width: 40%;
  padding: 50px;
  margin-top: 20px;
  box-sizing: border-box;
}

.project:nth-child(odd) {
  float: left;
}

.project:nth-child(even) {
  float: right;
}

.project img {
  height: auto;
  width: 80%;
  margin-left: 160px;
  margin-top: 20px;
}
.project h2 {
  margin-top: 0px;
  margin-left: 160px;
  margin-top: 20px;
}
.project h3 {
  margin-top: 10px;
  margin-left: 160px;
  margin-top: 20px;
}
.project p {
  margin-top: 10px;
  margin-left: 160px;
  width: 80%;
}


#section2 {
	clear: inherit;
	margin-top: 80px;
}



.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
}

input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 14px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 26px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  font-size: 14px;
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  font-size: 16px;
  padding: 16px 30px;
  border: #45a049;
  border-radius: 26px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.paragraph {
	position: absolute;
	max-width: 35%;
	right: 220px;
	top: 3840px;
	color: #fff;
  border-radius: 5px;
  background-color: #62a198;
  padding: 40px;
  padding-left: 80px;
  font-size: 18px;
  padding-right: 80px;
}

.foottext {
	position: absolute;
	padding: 40px;
	top: 3840px;
	height: 560px;
	color: #fff;
	text-align: left;
}
.foottext h2{
	font-size: 92px;
	margin-left: 200px;
	color: #fff;
}
.foottext p{
	font-size: 22px;
	right: 0px;
	text-align: right;
	color: #fff;
}
.custom-link {
  color: #fff; /* Change the color to your desired value */
  text-decoration: none; /* Remove the underline */
}

