@charset "utf-8";
/* CSS Document */
p {
  color: #003d4c;
}
header {
  padding: 2em;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
nav a {
  padding: 1em;
  text-decoration: none;
  color: #003d4c;
  font-size: 1.15em;
}

nav {
  display: flex;
  padding-top: 5em;
  margin-left: 11em;
}
	
nav a:hover {
  color: white;
  background-color: #003d4c;
}
section h4, section p {
  text-align: center
}
section {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 3em;
  padding-left: 3em;
  padding-top: 2em;
  padding-bottom: 2em;
}
.content {
  text-align: center;
  margin-top: 20px;
}
.content img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  margin-top: 20px;
  padding-bottom: 2em;
}
.imgbox img {}
.imgbox {
  float: right;
  padding: 1em 2em;
  opacity: 0.5;
  transition: opacity 2s;
}
.box {
  padding: 5em 2em;
  width: 80%;
}
.imgbox:hover {
  opacity: 1.0;
}
body {
  background-color: antiquewhite;
}
section h4 {
  font-size: 2em;
}
section p {
  padding-top: 2em;
  font-size: 1.25em
}
h1 {
  text-align: center;
	padding-top: 0.5em;
}
nav {
  float: right;
}
.color-bar {
  background-color: #003d4c;
  padding: 1em 0em
}
h3 {
  text-align: center;
  color: white;
  font-size: 1.5em
}
footer {
  padding: 40px 0 30px;
  width: 100%;
  font-size: 0.75em;
  overflow: hidden;
  background-color: #003d4c;
}
h5, footer p {
  color: white
}
#footer-content {
  width: 90%;
  margin: 0 auto;
}
#footer-left {
  width: 35%;
  float: left;
}
#footer-right {
  width: 45%;
  float: right;
  text-align: right;
}
.banner img {
  width: 100%;
  height: 441px;
}
#slideshow-wrapper {
  width: 100%;
  height: 441px;
}
#slideshow {
  width: 100%;
  height: 441px;
  overflow: hidden;
  white-space: nowrap;
}
#slideshow img {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.circle {
  display: inline-block;
  background-color: antiquewhite;
  width: 1%;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.9375em;
}
#circle-nav {
  margin-top: -50px;
  text-align: center
}
.contact-container {
  width: 100%;
  padding: 1.25em;
  margin-top: 20px;
}
.accordion-button {
  background-color: #003d4c;
  color: antiquewhite;
  border: none;
  font-size: 0.5em;
}
.accordion-button:hover {
  background-color: #256474;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  margin-bottom: 10px;
}
.accordion-body {
  background-color: white;
  padding: 1.25em;
  font-size: 0.875em;
}
.accordion-body a {
  color: #003d4c;
  text-decoration: none;
}
.accordion-body a:hover {
  text-decoration: underline;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
 padding-bottom: 1em;
}
form label {
  font-size: 0.875em;
  margin-top: 10px;
}
form input, form textarea {
  padding: 0.625em;
  margin-top: 5px;
  font-size: 0.875em;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 80%;
  max-width: 31.25em;
}
form button {
  background-color: #003d4c;
  color: antiquewhite;
  border: none;
  padding: 10px;
  margin-top: 20px;
  font-size: 1em;
  cursor: pointer;
  width: 80%;
  max-width: 31.25em;
}

.container {text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
	background-color: #CBC096;
}

form button:hover {
  background-color: #256474;
}
@media screen and (min-width: 1025px) {
  section {
    width: 60%;
  }
  .box {
    width: 70%;
  }
  #footer-left, #footer-right {
    width: 45%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  section {
    width: 80%;
  }
  .box {
    width: 80%;
  }
  #footer-left, #footer-right {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  /* Header */
  header {
    padding: 1em;
    text-align: center;
  }
  nav {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  nav a {
    padding: 0.8em;
    font-size: 1em;
    display: inline-block;
    margin: 5px 0;
  }
  section {
    width: 90%;
    padding: 1em;
  }
  .box {
    width: 90%;
    padding: 2em 1em;
  }
  #footer-left, #footer-right {
    width: 100%;
    float: none;
    text-align: center;
    padding: 10px 0;
  }
  .banner img {
    height: auto;
  }
  #slideshow-wrapper, #slideshow {
    height: auto;
  }
  form input, form textarea, form button {
    width: 90%;
    font-size: 16px;
  }
  .accordion-body {
    padding: 15px;
  }
  .accordion-button {
    font-size: 14px;
  }
}