@import url("https://fonts.googleapis.com/css?family=Open+Sans");
@import url("https://fonts.googleapis.com/css?family=Lato:900");
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.4);
    -webkit-transform: scale(1.4);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
body {
  width: 100%;
  height: 100%;
  margin: 0px auto;
  padding: 0px;
  font-family: "Open Sans", sans-serif;
}
body .content nav {
  width: 100%;
  position: absolute;
  background-color: transparent;
  z-index: 1000;
}
body .content nav #nav-content {
  width: 90%;
  margin-left: 5%;
}
body .content nav img {
  height: 90px;
  width: auto;
  margin-left: 30px;
  align-items: flex-end;
}
body .content nav h1 {
  color: #C9DEED;
  font-weight: 100;
}
body .content nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  float: right;
  margin-right: 30px;
}
body .content nav ul li {
  margin-top: 1em;
  margin-left: 1em;
  font-size: 1.2rem;
}
body .content nav ul li a {
  color: #ffffff;
  text-decoration: none;
}
body .content #hero {
  width: 100%;
  height: 100vh;
  margin: 0px auto;
  background-color: #153e5a;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
body .content #hero .box {
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  border-radius: 50%;
  animation: pulse var(--animation-time) infinite;
}
body .content #hero h1 {
  width: 90%;
  margin-left: 5%;
  text-align: left;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 5rem;
}
body .content #hero .hero-animation {
  animation: 1.5s ease-in-out 1 fadeIn forwards;
}
body .content #hero .hero-ani-1 {
  opacity: 0;
}
body .content #hero .hero-ani-2 {
  opacity: 0;
  animation-delay: 1s;
}
body .content #hero .hero-ani-3 {
  opacity: 0;
  animation-delay: 2s;
}
body .content #hero i {
  position: absolute;
  bottom: 2rem;
  animation-duration: 2s;
}
body .content .block {
  background-color: #ffffff;
  width: 100%;
  height: auto;
  font-size: 1.2rem;
  z-index: 10;
}
body .content .block:nth-child(2n) {
  background-color: #efefef;
}
body .content .block section {
  display: flex;
  justify-content: space-between;
}
body .content .block section .image {
  background-color: #ffffff;
  height: auto;
  min-width: 50%;
}
body .content .block section .image img {
  width: 100%;
  height: auto;
}
body .content .block section h1 {
  font-size: 3em;
  border: none;
}
body .content .block section h1::before {
  content: "";
  width: 50px;
  position: absolute;
  border: none;
  border-top: 2px solid #979797;
}
body .content .block #contact {
  width: 70%;
  margin-left: 15%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 50%;
}
body .content .block #contact h1::before {
  border: none;
}
body .content .block #contact .form {
  display: block;
}
body .content .block #contact .form input {
  width: 100%;
  height: 40px;
  font-size: 1.1em;
  border: 2px solid #3585A6;
  border-radius: 5px;
  margin: 10px 0px 10px 0px;
}
body .content .block #contact .form textarea {
  width: 100%;
  columns: 5;
  border: 2px solid #3585A6;
  border-radius: 5px;
  margin-top: 10px;
  height: 200px;
  color: #000000;
  font-size: 1.1em;
}
body .content .block #contact .form button {
  margin-top: 20px;
  width: 100%;
  height: 40px;
}
body .content #quote {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #8a8a8a;
  font-style: italic;
  font-family: "Lato", "sans-serif";
}
body .content #footer {
  width: 100%;
  height: auto;
  min-height: 100px;
  background-color: #979797;
  color: #ffffff;
}
body .content #footer .footerContent {
  display: flex;
  flex-direction: row;
}
body .content #footer .footerContent .left {
  width: 50%;
}
body .content #footer .footerContent .right {
  width: 50%;
  text-align: right;
}
body .content #footer #creator {
  width: 100%;
  padding: 5px 5px 5px 5px;
  background-color: #494949;
  text-align: center;
}
body .content #footer #creator a {
  color: #ffffff;
  text-decoration: underline;
}
body .form-group button {
  background-color: #153e5a;
  border-color: #153e5a;
  width: 100%;
  padding: 1.25rem;
  cursor: pointer;
}
body .form-control {
  padding: 1.25rem !important;
  font-size: 1.25rem;
  border: 3px solid #153e5a;
  border-radius: 0px;
  margin-bottom: 1.25rem;
}
body h1 {
  font-family: "Lato", "sans serif";
}

@media (max-width: 1281px) {
  body {
    font-size: 2rem !important;
    font-display: block;
  }

  nav {
    justify-content: center;
  }
  nav #logo {
    width: 100% !important;
    margin-top: 4rem;
  }
  nav img {
    height: 200px !important;
  }
  nav ul {
    display: none !important;
    flex-direction: column !important;
  }
  nav ul li {
    font-size: 3rem !important;
  }

  .block {
    font-size: 2rem !important;
  }
  .block section {
    flex-direction: column-reverse;
  }
  .block #right {
    align-self: flex-start;
    order: 1;
  }

  #contact {
    width: 100% !important;
    margin: 0px !important;
    padding: 2rem !important;
  }
  #contact .form-control {
    font-size: 2rem;
    padding: 2rem !important;
  }
  #contact .form-group button {
    font-size: 2rem !important;
    padding: 2rem;
  }

  #footer .footerContent {
    flex-direction: column !important;
  }
  #footer .footerContent .right {
    margin-top: 2rem;
    text-align: left !important;
  }
}
@media (min-width: 1281px) {
  .stickynav {
    top: 0 !important;
    position: fixed !important;
    width: 100%;
    background: #153e5a !important;
  }
}

/*# sourceMappingURL=style.css.map */
