@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans|Passion+One");
/* MAIN COLOR */
/* SECONDARY COLOR */
/* DARK GRAY, REASON WHY IT'S SET TO #333 IS SO YOU CAN DARKEN IT IF NEEDED USING darken($blk, 10%); FOR EXAMPLE. YOU COULD ALSO USE 2 VARIABLES INSTEAD */
/* USE THIS TO SET THE BORDER RADIUS FOR BUTTONS */
html, body {
  height: 100%;
  font-family: 'Josefin Sans', sans-serif;
}

html {
  font-size: 15px;
}

@media screen and (min-width: 320px) {
  html {
    font-size: calc(15px + 7 * ((100vw - 320px) / 1600));
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 22px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Passion One', cursive;
}

p {
  font-size: 1rem;
}

h1 {
  font-size: 2.0736rem;
}

h1 {
  font-size: 25.92px;
}

@media screen and (min-width: 320px) {
  h1 {
    font-size: calc(25.92px + 24.705 * ((100vw - 320px) / 1600));
  }
}

@media screen and (min-width: 1920px) {
  h1 {
    font-size: 50.625px;
  }
}

h2 {
  font-size: 1.728rem;
}

h2 {
  font-size: 25.92px;
}

@media screen and (min-width: 320px) {
  h2 {
    font-size: calc(25.92px + 24.705 * ((100vw - 320px) / 1600));
  }
}

@media screen and (min-width: 1920px) {
  h2 {
    font-size: 50.625px;
  }
}

h3 {
  font-size: 1.44rem;
}

h3 {
  font-size: 21.6px;
}

@media screen and (min-width: 320px) {
  h3 {
    font-size: calc(21.6px + 12.15 * ((100vw - 320px) / 1600));
  }
}

@media screen and (min-width: 1920px) {
  h3 {
    font-size: 33.75px;
  }
}

body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.flash {
  display: none;
}

q,
blockquote {
  quotes: "“" "”";
}

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

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #0065dd;
  -webkit-text-fill-color: #0065dd;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

nav.navbar {
  z-index: 1000;
  border: none;
  border-radius: 0px;
}

nav.navbar .navbar-nav > li > a {
  text-align: center;
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
}

@media (max-width: 767px) {
  nav.navbar .navbar-nav > li > a {
    margin-top: 0;
    padding: 6px;
    display: inline-block;
    text-align: center;
  }
}

nav.navbar .navbar-nav > li > a:focus, nav.navbar .navbar-nav > li > a:active {
  background: transparent;
  color: #333;
  outline: 0;
}

nav.navbar .navbar-nav > li > a:hover {
  background: #0097e3;
  color: #fafafa;
}

@media (max-width: 1024px) {
  nav.navbar .navbar-nav > li > a:hover {
    background: transparent;
    color: #333;
    outline: 0;
  }
}

.navbar-right {
  margin-top: 0px;
}

.navbar-toggle {
  margin: 20px 15px 8px 0px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/** LOGIN FORM **/
.btn-default {
  border: none;
  border-radius: 0px;
  background: #0097e3;
  color: #fafafa;
  padding: 0.5em 2em;
  font-size: 1.25em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin: 2em 0em;
  -webkit-transition: 0.7s ease all;
  transition: 0.7s ease all;
}

.btn-default:hover {
  background: #17b1ff;
  color: white;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .btn-default:hover {
    background: #00979b;
    color: #fafafa;
    -webkit-box-shadow: 0px 0px 5px #333;
            box-shadow: 0px 0px 5px #333;
  }
}

.modal-dialog {
  max-width: 500px;
  width: 100%;
  text-align: center;
  margin: 6em auto;
}

.modal-dialog .close {
  display: none;
}

.modal-dialog .modal-content {
  color: #0097e3;
}

.modal-dialog .modal-content h2 {
  text-align: center;
  font-size: 25px;
}

.modal-dialog a.btn, .modal-dialog a.btn-default, .modal-dialog button {
  border: none;
  border-radius: 0px;
  background: #0097e3;
  color: #fafafa;
  padding: 0.5em 2em;
  font-size: 1.25em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin: 2em 0em;
  -webkit-transition: 0.7s ease all;
  transition: 0.7s ease all;
  margin: 0;
  display: block;
}

.modal-dialog a.btn:hover, .modal-dialog a.btn-default:hover, .modal-dialog button:hover {
  background: #17b1ff;
  color: white;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .modal-dialog a.btn:hover, .modal-dialog a.btn-default:hover, .modal-dialog button:hover {
    background: #00979b;
    color: #fafafa;
    -webkit-box-shadow: 0px 0px 5px #333;
            box-shadow: 0px 0px 5px #333;
  }
}

.modal-header, .modal-footer {
  background: #0097e3;
  color: #fafafa;
}

.modal-open {
  overflow: auto;
  padding-right: 0px !important;
}

/** END LOGIN FORM **/
footer {
  padding: 50px 0px 20px;
  background: #0097e3;
  color: #fafafa;
  font-size: 15px;
}

footer a {
  color: #fafafa;
  white-space: nowrap;
  font-size: 15px;
}

@media (max-width: 990px) {
  footer a {
    font-size: 13px;
  }
}

footer a:hover {
  color: white;
  outline: 0 !important;
  text-decoration: none;
}

footer a:focus {
  color: #fafafa;
  outline: 0 !important;
  text-decoration: none;
}

footer p {
  font-size: 15px;
}

@media (max-width: 990px) {
  footer p {
    font-size: 13px;
  }
}

input#username,
input#password {
  width: 100%;
}

@media (max-width: 1024px) {
  input#username,
  input#password {
    font-size: 16px;
  }
}

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
}

a,
a:hover,
a:focus,
a:active {
  outline: 0 !important;
}

.logo {
  max-width: 250px;
  padding: 0.5em;
}

@media (max-width: 767px) {
  .logo {
    max-width: 175px;
  }
  .navbar-header a {
    float: left;
  }
}

@media (max-width: 600px) {
  .logo {
    max-width: 125px;
  }
  .navbar-toggle {
    margin-top: 5px;
  }
}

.top-pad {
  padding: 3em;
  background: white;
}

@media (max-width: 990px) {
  .top-pad {
    padding: 1em;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  .flex {
    display: block;
    /* may need to be inline-block */
  }
}

.terms p,
.privacy p {
  font-size: 1rem;
}

.terms ol li,
.privacy ol li {
  font-size: 1rem;
}

.terms ol ol li,
.privacy ol ol li {
  font-size: 0.85rem;
}

.bg1, .bg2, .bg3 {
  background-size: cover;
  padding: 11rem 0;
  background-position: 50% 50%;
  vertical-align: bottom;
}

.bg1 h1, .bg2 h1, .bg3 h1 {
  font-size: 1.2rem;
  color: #0097e3;
}

@media (max-width: 767px) {
  .bg1 h1, .bg2 h1, .bg3 h1 {
    color: white;
  }
}

.bg1 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0))), url(../img/banner.jpg) no-repeat;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0)), url(../img/banner.jpg) no-repeat;
  background-size: cover;
  background-position: right 50%;
}

@media (max-width: 767px) {
  .bg1 {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(0, 151, 227, 0.8)), to(rgba(0, 151, 227, 0.8))), url(../img/banner.jpg) no-repeat;
    background: linear-gradient(90deg, rgba(0, 151, 227, 0.8) 50%, rgba(0, 151, 227, 0.8)), url(../img/banner.jpg) no-repeat;
    background-position: 50% 50%, 50% 50%;
    background-size: cover;
  }
}

.bg2 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0))), url(../img/banner2.jpg) no-repeat;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0)), url(../img/banner2.jpg) no-repeat;
  background-size: cover;
  background-position: right 50%;
}

@media (max-width: 767px) {
  .bg2 {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(0, 151, 155, 0.8)), to(rgba(0, 151, 155, 0.8))), url(../img/banner2.jpg) no-repeat;
    background: linear-gradient(90deg, rgba(0, 151, 155, 0.8) 50%, rgba(0, 151, 155, 0.8)), url(../img/banner2.jpg) no-repeat;
    background-position: 50% 50%, 70% 100%;
    background-size: cover;
  }
}

.bg3 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0))), url(../img/banner3.jpg) no-repeat;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0)), url(../img/banner3.jpg) no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .bg3 {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(0, 151, 227, 0.8)), to(rgba(0, 151, 155, 0.8))), url(../img/banner3.jpg) no-repeat;
    background: linear-gradient(90deg, rgba(0, 151, 227, 0.8) 50%, rgba(0, 151, 155, 0.8)), url(../img/banner3.jpg) no-repeat;
    background-position: 50% 50%, 50% 50%;
    background-size: cover;
  }
}

.service {
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: white;
}

.sOne, .sThree {
  background: #0097e3;
}

.sTwo {
  background: #00979b;
}

.padTopBtm {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bg4 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 151, 227, 0.9)), to(rgba(0, 151, 155, 0.9))), url(../img/banner4.jpg) no-repeat;
  background: linear-gradient(rgba(0, 151, 227, 0.9), rgba(0, 151, 155, 0.9)), url(../img/banner4.jpg) no-repeat;
  background-size: cover;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: white;
}

.bg5 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 151, 227, 0.9)), to(rgba(0, 151, 227, 0.9))), url(../img/banner5.jpg) no-repeat;
  background: linear-gradient(rgba(0, 151, 227, 0.9), rgba(0, 151, 227, 0.9)), url(../img/banner5.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: 50% 50%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: white;
}

@media (max-width: 1024px) {
  .bg5 {
    background-attachment: scroll;
  }
}

.icon {
  max-width: 350px;
  width: 100%;
  display: block;
  margin: 0 auto;
  border: 8px solid white;
  border-radius: 10px;
}

.iconBox1 {
  background: #00979b;
}

.iconBox2 {
  background: #0097e3;
}

.iconBox {
  padding: 1rem;
  border-radius: 5px;
  color: white;
  min-height: 550px;
}

@media (max-width: 991px) {
  .iconBox {
    min-height: 600px;
  }
}

@media (max-width: 767px) {
  .iconBox {
    min-height: auto;
  }
}

.more_info {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

h1 a.link {
  color: white;
}

#contact {
  padding: 3rem 0;
  background: #00979b;
  color: white;
}

#contact:hover, #contact:focus, #contact:active {
  color: white;
  text-decoration: none;
}

@media (max-width: 991px) {
  .seoImg {
    max-width: 400px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
