@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap");
/* 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 */
/* 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 */
/* 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;
}

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;
  }
}

p {
  font-size: .8rem;
}

h1 {
  font-size: 1rem;
}

h1 {
  font-size: 15px;
}

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

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

h2 {
  font-size: 1rem;
}

h2 {
  font-size: 15px;
}

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

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

h3 {
  font-size: 1rem;
}

h3 {
  font-size: 15px;
}

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

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

#about {
  padding-top: 150px;
  margin-top: -150px;
  padding-bottom: 200px;
}

#services {
  padding-top: 150px;
  margin-top: -150px;
}

h1, h2, h3, h4 {
  font-family: "Montserrat";
  font-weight: bold;
}

html, body {
  height: 100%;
  /*margin: 0;
  padding: 0;
  overflow: auto;*/
}

body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  font-family: "Montserrat";
  font-weight: normal;
}

.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;
}

nav.navbar .navbar-nav > li > a {
  text-align: center;
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  font-family: 'Source Sans Pro', sans-serif;
  text-transform: uppercase;
}

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

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

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

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

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

.navbar-toggler {
  margin: 20px 15px 8px 0px;
  border: 1px solid #fbb03b;
  border-radius: 4px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(251, 176, 59, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/** LOGIN FORM **/
.btn-default {
  border: none;
  background: #29ABE2;
  color: #fafafa;
  padding: 1em 2em;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin: 1em 0em;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  text-decoration: none;
  outline: 0;
}

@media (max-width: 767px) {
  .btn-default {
    font-size: .7em;
  }
}

.btn-default:hover {
  background: #fbb03b;
  color: #fafafa;
  text-decoration: none;
  outline: 0;
}

@media (max-width: 1024px) {
  .btn-default:hover {
    background: #29ABE2;
    color: #fafafa;
    text-decoration: none;
    outline: 0;
  }
}

.btn-default:focus, .btn-default:active {
  background: #29ABE2;
  color: #fafafa;
  text-decoration: none !important;
}

section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}

@media (max-width: 991px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}

.section {
  margin-top: 135px;
  padding: 150px 0;
  background-color: #c6e9f7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.2))), url("../img/bg1.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), url("../img/bg1.jpg");
  background-attachment: fixed;
}

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

@media (max-width: 991px) {
  .section {
    padding: 100px 0;
    margin-top: 115px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 80px 0;
    margin-top: 85px;
  }
}

@media (max-width: 450px) {
  .section {
    padding: 30px 0;
  }
}

.section h1 {
  color: #fafafa;
  font-weight: bold;
}

.section-a {
  color: #333;
  background-color: #fafafa;
}

.section-a h2 {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
}

.section-a .box {
  padding: 2px;
}

@media (max-width: 991px) {
  .section-a img {
    max-width: 400px;
    width: 100%;
  }
}

.section-b {
  background-color: #29ABE2;
  padding: 150px 0;
  color: #fafafa;
}

@media (max-width: 991px) {
  .section-b {
    padding: 120px 0;
  }
}

@media (max-width: 767px) {
  .section-b {
    padding: 80px 0;
  }
}

.section-b h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}

.section-c h2 {
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 25px 10px 25px;
  color: #29ABE2;
  border-bottom: 2px solid #29ABE2;
}

.section-c p {
  padding: 0 5px;
}

.section-c img {
  margin-bottom: 15px;
}

.section-c .box {
  padding: 2px;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .section-c img {
    max-width: 400px;
    width: 100%;
  }
}

.section-d {
  color: #333;
  background-color: #fafafa;
}

.section-d h3 {
  text-transform: uppercase;
  font-weight: bold;
}

@media (max-width: 480px) {
  .section-d {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-d i {
    text-align: center;
  }
}

.section-d a {
  text-decoration: none;
}

.section-d a:hover, .section-d a:focus {
  text-decoration: none;
  outline: 0;
}

.section-d .footer-banner {
  border-left: 10px solid #333;
}

@media (max-width: 991px) {
  .section-d .footer-banner {
    border: none;
  }
}

.section-d ul {
  padding: 0;
}

.section-d ul li {
  line-height: 2em;
  list-style: none;
}

.section-d ul li {
  font-size: 15px;
}

@media screen and (min-width: 320px) {
  .section-d ul li {
    font-size: calc(15px + 2 * ((100vw - 320px) / 1600));
  }
}

@media screen and (min-width: 1920px) {
  .section-d ul li {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .section-d ul li {
    text-align: center;
  }
}

.section-d ul li i {
  padding-right: 10px;
}

.section-d ul li a {
  color: #333;
  text-align: left;
}

.section-d ul li a {
  font-size: 15px;
}

@media screen and (min-width: 320px) {
  .section-d ul li a {
    font-size: calc(15px + 2 * ((100vw - 320px) / 1600));
  }
}

@media screen and (min-width: 1920px) {
  .section-d ul li a {
    font-size: 17px;
  }
}

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

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

.modal-dialog .modal-content {
  color: #29ABE2;
}

.modal-dialog .modal-content h2 {
  text-align: center;
}

.modal-dialog a.btn, .modal-dialog a.btn-default, .modal-dialog button {
  border: none;
  background: #29ABE2;
  color: #fafafa;
  padding: 1em 2em;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin: 1em 0em;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  text-decoration: none;
  outline: 0;
  margin: 0;
  display: block;
}

@media (max-width: 767px) {
  .modal-dialog a.btn, .modal-dialog a.btn-default, .modal-dialog button {
    font-size: .7em;
  }
}

.modal-dialog a.btn:hover, .modal-dialog a.btn-default:hover, .modal-dialog button:hover {
  background: #fbb03b;
  color: #fafafa;
  text-decoration: none;
  outline: 0;
}

@media (max-width: 1024px) {
  .modal-dialog a.btn:hover, .modal-dialog a.btn-default:hover, .modal-dialog button:hover {
    background: #29ABE2;
    color: #fafafa;
    text-decoration: none;
    outline: 0;
  }
}

.modal-dialog a.btn:focus, .modal-dialog a.btn:active, .modal-dialog a.btn-default:focus, .modal-dialog a.btn-default:active, .modal-dialog button:focus, .modal-dialog button:active {
  background: #29ABE2;
  color: #fafafa;
  text-decoration: none !important;
}

.modal-header, .modal-footer {
  background: #29ABE2;
  color: #fafafa;
}

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

footer {
  padding: 50px 0px 20px;
  background: #29ABE2;
  color: #fff;
  font-size: 15px;
}

@media (max-width: 767px) {
  footer p {
    margin: 0;
  }
}

footer a {
  color: #fff;
  white-space: nowrap;
  font-size: 1rem;
}

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

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

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

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

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

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

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

.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 */
  }
}

.navbar-default {
  background: white;
}

.visible-500 {
  display: none;
}

@media (max-width: 500px) {
  .visible-500 {
    display: block;
  }
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
  background: transparent;
}
