a, a:visited {
  color: #000000;
}

a:hover {
  color: lightskyblue;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.grand-container {
  margin: auto;
  display: block;
  justify-content: center;
  align-items: center;
  width: 90%;
}

/* Center the image horizontally and vertically within the div */
.image-container {
  width: 100%;
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
}

.map-container {
  width: 100%;
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
}

.map-container {
  overflow: hidden;
  padding-bottom: 50%;
  position: relative;
  height: 0;
}

.map-container iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* Centre the text horizontally within the div */
.text-container {
  display: block;
  text-align: center;
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: 700;
  width: 80%;
  padding: 10px 0px 10px 0px;
}

.mid-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact-container {
  width: 100%;
}

table.contact {
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.footer-container {
  text-align: center;
  font-family: sans-serif;
  font-size: 1.2rem;
  width: 100%;
  padding: 10px 0px 10px 0px;
}

div {
  margin-top: 0;
  padding-top: 0;
}

td {
  vertical-align: top; /* Vertically center */
  padding: 15px;
}

.la {
  text-align: left; /* Horizontally center */
}

.ra {
  text-align: right; /* Horizontally center */
  font-weight: 700;
}

.contact-form{
	font: 95% Arial, Helvetica, sans-serif;
	max-width: 400px;
	margin: 10px auto;
	padding: 16px;
	background: #F7F7F7;
}
.contact-form h2{
	font-size: 140%;
	font-weight: 700;
	text-align: center;
	color: #000000;
}
.contact-form input[type="text"],
.contact-form input[type="date"],
.contact-form input[type="datetime"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form input[type="search"],
.contact-form input[type="time"],
.contact-form input[type="url"],
.contact-form textarea,
.contact-form select 
{
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	background: #fff;
	margin-bottom: 4%;
	border: 1px solid #ccc;
	padding: 3%;
	color: #555;
	font: 95% Arial, Helvetica, sans-serif;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="date"]:focus,
.contact-form input[type="datetime"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="number"]:focus,
.contact-form input[type="search"]:focus,
.contact-form input[type="time"]:focus,
.contact-form input[type="url"]:focus,
.contact-form textarea:focus,
.contact-form select:focus
{
	box-shadow: 0 0 5px #43D1AF;
	padding: 3%;
	border: 1px solid #43D1AF;
}

.contact-form input[type="submit"],
.contact-form input[type="button"]{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	padding: 3%;
	background: #43D1AF;
	border-bottom: 2px solid #30C29E;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;	
	color: #fff;
}
.contact-form input[type="submit"]:hover,
.contact-form input[type="button"]:hover{
	background: #2EBC99;
}

.overlay {
  font-size: 1.2em;
  font-weight: 700;
  color: darkblue;
  position: fixed;
  width: 101%;
  height: 101%;
  background-color: rgb(255,255,255,0.9);
  text-align: center;
  vertical-align: middle;
  z-index: 1000;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}


/* Default styles for images */
img {
  max-width: 100%; /* Images will scale down to fit their container */
  height: auto; /* Maintain aspect ratio */
}

/* Media query for screens with a maximum width of 768px */
@media screen and (max-width: 768px) {
  img {
      max-width: 100%; /* Reduce image size for smaller screens */
  }
}

/* Media query for screens with a maximum width of 480px */
@media screen and (max-width: 480px) {
  img {
      max-width: 100%; /* Further reduce image size for even smaller screens */
  }
}

@media screen and (max-width: 910px) {
  .text-container {
    font-size: 1.4rem;
  }

  .footer-container {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 641px) {
  .text-container {
    font-size: 1.0rem;
  }
}

@media screen and (max-width: 463px) {
  .text-container {
    font-size: 0.6rem;
  }
}