a {
  text-decoration: none;
}

#nav {
  font-weight: bolder;
  background-color: #00bde3;
  text-align: center;
  padding: 0.25em 0em;
}
#nav ul {
  padding: 0;
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
#nav li {
  list-style: none;
  display: inline;
}
#nav a {
  font-size: large;
  color: #fcfcfc;
  padding: 0.5em 2em;
  margin: 0.5em;
  transition: background-color 0.25s linear;
}
#nav a:hover, #nav a:focus, #nav a:active {
  background-color: #005364;
}
#nav .active {
  background-color: #0093b0;
}
@media (max-width: 38em) {
  #nav ul {
    display: none;
  }
  #nav ul a {
    display: block;
  }
  #nav #menuShowHide + label span:before {
    font-size: large;
    text-decoration: none;
    color: #fcfcfc;
    padding: 0.5em 2em;
    transition: background-color 0.25s linear;
    cursor: pointer;
    content: "Show Menu";
    background-color: #0093b0;
  }
  #nav #menuShowHide:checked + label span:before {
    content: "Hide Menu";
    background-color: #007d97;
  }
  #nav #menuShowHide:checked ~ ul {
    display: block;
  }
  #nav #menuShowHide + label {
    font-size: large;
    display: block;
    margin-bottom: 1em;
    margin-top: 1em;
    text-align: center;
  }
}
#nav #menuShowHide {
  position: absolute;
  left: -999em;
}

.stick {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

#header #firstLogo {
  padding: 0;
}

.margin p, .margin img {
  margin: 15px;
}

.slideshow-container {
  position: relative;
  margin: auto;
  padding-top: 1em;
}
@media (max-width: 38em) {
  .slideshow-container {
    width: 75%;
  }
}
@media not all and (max-width: 38em) {
  .slideshow-container {
    width: 60%;
  }
}
.slideshow-container .slide {
  display: none;
  -webkit-animation-name: slideshow-fade;
          animation-name: slideshow-fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
.slideshow-container .slide img {
  width: 100%;
}
.slideshow-container .next, .slideshow-container .prev {
  cursor: pointer;
  opacity: 0.2;
  transition: opacity 0.25s linear;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  background-color: #00bde3;
  color: #fcfcfc;
  padding: 1em;
}
.slideshow-container .next:hover, .slideshow-container .prev:hover {
  opacity: 1;
}
.slideshow-container .next {
  right: 0;
}
@-webkit-keyframes slideshow-fade {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideshow-fade {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

#map {
  height: 25em;
}

/*.columns {
    display: grid; 
    //grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(0, 35em));
    grid-gap: .5em;
    align-items: flex-start;
}*/
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}

.flex-col {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}
@media not all and (max-width: 38em) {
  .flex-col {
    flex: 1;
  }
}

.contact-form {
  margin: 15px;
}
.contact-form input, .contact-form textarea {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  margin-bottom: 15px;
}

.center {
  margin: auto;
  text-align: center;
}

.text-center {
  text-align: center;
  margin: auto;
}

button {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: bolder;
  background-color: #00bde3;
  color: #fcfcfc;
  padding: 0.5em 2em;
  border: 2px solid #00a8ca;
  border-radius: 25px;
  transition: background-color 0.25s linear;
}
button:hover {
  background-color: #17d8ff;
}

html, body {
  background-color: #f2f2f2;
  width: 100%;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.res-img {
  margin: 15px;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 38em) {
  .res-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media not all and (max-width: 38em) {
  .res-img.right {
    float: right;
  }
}

@media (max-width: 38em) {
  .large-screen {
    display: none;
  }
}

#main p, #main h1, #main h2, #main h3, #main h4, #main h5, #main h6, #main ul, #main .fmt {
  color: #0d0d0d;
  margin: 15px;
}
#main p a, #main h1 a, #main h2 a, #main h3 a, #main h4 a, #main h5 a, #main h6 a, #main ul a, #main .fmt a {
  color: #005364;
}
#main p a:hover, #main p a:focus, #main p a:active, #main h1 a:hover, #main h1 a:focus, #main h1 a:active, #main h2 a:hover, #main h2 a:focus, #main h2 a:active, #main h3 a:hover, #main h3 a:focus, #main h3 a:active, #main h4 a:hover, #main h4 a:focus, #main h4 a:active, #main h5 a:hover, #main h5 a:focus, #main h5 a:active, #main h6 a:hover, #main h6 a:focus, #main h6 a:active, #main ul a:hover, #main ul a:focus, #main ul a:active, #main .fmt a:hover, #main .fmt a:focus, #main .fmt a:active {
  color: #00a8ca;
}

#header {
  background-color: #00bde3;
}

#header > #belowNav {
  background-color: #0c0c0c;
  padding: 1em;
}
#header > #belowNav .container {
  display: flex;
}
#header > #belowNav .box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header > #belowNav .side {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1000px) {
  #header > #belowNav .side {
    display: none;
  }
}
#header > #belowNav .side img {
  width: 32px;
  height: 32px;
  filter: invert(100%);
  vertical-align: middle;
}
#header > #belowNav span {
  padding-left: 0.5em;
  color: #fcfcfc;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: larger;
}
#header > #belowNav .box:first-child > p {
  margin-left: auto;
  margin-right: 2em;
}
#header > #belowNav .box:last-child > p {
  margin-right: auto;
  margin-left: 2em;
}
#header > #belowNav a {
  color: #bcbcbc;
}
#header > #belowNav a:hover, #header > #belowNav a:focus, #header > #belowNav a:active {
  color: #e3e3e3;
}

.fixed-width {
  max-width: 85em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#footer {
  font-weight: bolder;
  background-color: #00bde3;
  color: #fcfcfc;
  padding: 0 0.5em;
}
#footer a {
  color: #005364;
}
#footer a:hover, #footer a:focus, #footer a:active {
  color: #e3faff;
}
#footer .smallFooterText {
  font-size: small;
  color: #fcfcfc;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

#footer {
  margin-top: auto;
}

.pricing-pad > li {
  padding-bottom: 0.5em;
}/*# sourceMappingURL=main.css.map */