@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-up {
  0% {
    transform: translateY(80%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    transform: translateY(80%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes button-transition-top {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(0, 10px) rotate(0);
  }
  100% {
    transform: translate(15px, 1px) rotate(45deg);
  }
}
@keyframes button-transition-top {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(0, 10px) rotate(0);
  }
  100% {
    transform: translate(15px, 1px) rotate(45deg);
  }
}
@-webkit-keyframes button-transition-top-backwards {
  0% {
    transform: translate(15px, 1px) rotate(45deg);
  }
  50% {
    transform: translate(0, 10px) rotate(0);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
@keyframes button-transition-top-backwards {
  0% {
    transform: translate(15px, 1px) rotate(45deg);
  }
  50% {
    transform: translate(0, 10px) rotate(0);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
@-webkit-keyframes button-transition-bottom-backwards {
  0% {
    transform: translate(-20px, 13px) rotate(-45deg);
  }
  50% {
    transform: translate(0, -10px) rotate(0);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
@keyframes button-transition-bottom-backwards {
  0% {
    transform: translate(-20px, 13px) rotate(-45deg);
  }
  50% {
    transform: translate(0, -10px) rotate(0);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
@-webkit-keyframes button-transition-bottom {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(0, -10px) rotate(0);
  }
  100% {
    transform: translate(-20px, 13px) rotate(-45deg);
  }
}
@keyframes button-transition-bottom {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(0, -10px) rotate(0);
  }
  100% {
    transform: translate(-20px, 13px) rotate(-45deg);
  }
}
@-webkit-keyframes button-transition-mid {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes button-transition-mid {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes button-transition-mid-backwards {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes button-transition-mid-backwards {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-up {
  -webkit-animation: fade-in 200ms ease-in forwards;
          animation: fade-in 200ms ease-in forwards;
}

.fade-down {
  -webkit-animation: fade-out 200ms ease-out forwards;
          animation: fade-out 200ms ease-out forwards;
}

.burger-to-close-top {
  -webkit-animation: button-transition-top 200ms ease-in forwards;
          animation: button-transition-top 200ms ease-in forwards;
}

.burger-to-close-bottom {
  -webkit-animation: button-transition-bottom 200ms ease-in forwards;
          animation: button-transition-bottom 200ms ease-in forwards;
}

.burger-to-close-mid {
  -webkit-animation: button-transition-mid 200ms ease-in forwards;
          animation: button-transition-mid 200ms ease-in forwards;
}

.close-to-burger-top {
  -webkit-animation: button-transition-top-backwards 200ms ease-out forwards;
          animation: button-transition-top-backwards 200ms ease-out forwards;
}

.close-to-burger-mid {
  -webkit-animation: button-transition-mid-backwards 200ms ease-out forwards;
          animation: button-transition-mid-backwards 200ms ease-out forwards;
}

.close-to-burger-bottom {
  -webkit-animation: button-transition-bottom-backwards 200ms ease-out forwards;
          animation: button-transition-bottom-backwards 200ms ease-out forwards;
}

.active-slide {
  -webkit-animation: fade-up 500ms ease-in forwards;
          animation: fade-up 500ms ease-in forwards;
  visibility: visible !important;
}

.slide-up {
  visibility: hidden;
}

#mobile-nav-button {
  position: absolute;
  top: 1px;
  right: 1vh;
  background-color: #94b0da;
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 4px;
  border: none;
  z-index: 1;
}

.mobile-nav-icon svg line {
  stroke-width: 3px;
  stroke: #fff;
}

#mobile-nav-modal {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #94b0da;
  z-index: 10;
}
#mobile-nav-modal .nav-link, #mobile-nav-modal .nav-dropdown-link {
  color: #fff;
  text-decoration: none;
}
#mobile-nav-modal .nav-link.active, #mobile-nav-modal .nav-dropdown-link.active {
  color: #487bc7;
}
#mobile-nav-modal .nav-dropdown-link {
  font-size: 0.95rem;
}
#mobile-nav-modal button {
  background-color: #94b0da;
  border: none;
  stroke: #fff;
  stroke-width: 8px;
  position: absolute;
  top: 10px;
  right: 3vw;
}
#mobile-nav-modal ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20%;
}
#mobile-nav-modal ul li {
  border-bottom: 1px solid white;
  text-align: center;
  font-size: 20px;
  width: 100%;
  letter-spacing: 2px;
  font-weight: 200;
  padding-bottom: 8px;
}
#mobile-nav-modal ul li a {
  display: inline;
}
#mobile-nav-modal ul li span {
  padding-right: 5px;
  color: #fff;
}

#navbarNav ul li .nav-link {
  font-size: 22px;
  font-weight: 200;
  background-color: #dcdcdc;
  color: #08335f !important;
  transition: background-color 250ms, color 250ms;
}
#navbarNav ul li .nav-link:hover {
  background-color: #08335f;
  color: #dcdcdc !important;
  transition: background-color 250ms, color 250ms;
}
#navbarNav ul li .nav-link.active {
  background-color: #08335f;
  color: #dcdcdc !important;
}

#navbarNav .nav-dropdown {
  position: absolute;
  z-index: 10;
}
#navbarNav .nav-dropdown-container {
  padding-top: 10px;
  background-color: #dcdcdc;
  box-shadow: 1px 2px 2px #aaa;
}
#navbarNav .nav-dropdown-container .nav-dropdown-link {
  color: #08335f !important;
  text-decoration: none;
  padding: 8px;
  margin: 0;
}
#navbarNav .nav-dropdown-container .nav-dropdown-link:hover {
  color: #fff !important;
}

#home-logo h1, #home-logo h3 {
  color: white;
  text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
  font-family: "Lulo Clean One Bold", sans-serif;
}
#home-logo h1 {
  font-size: 35px;
  letter-spacing: -0.1em;
}
#home-logo h3 {
  font-size: 16px;
  letter-spacing: 1.2em;
}

@font-face {
  font-family: "Lulo Clean One Bold";
  src: url("../fonts/lulo_clean/Lulo Clean One Bold.otf");
}
@font-face {
  font-family: "Open Sans Condensed";
  src: url("../fonts/open_sans/OpenSans-CondLight.ttf");
}
@font-face {
  font-family: "Open Sans Condensed Bold";
  src: url("../fonts/open_sans/OpenSans-CondBold.ttf");
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.lulo {
  font-family: "Lulo Clean One Bold", sans-serif;
}

.open-sans {
  font-family: "Open Sans Condensed", sans-serif;
}

.open-sans-bold {
  font-family: "Open Sans Condensed Bold", sans-serif;
}

h1, h3 {
  line-height: 1.2;
}

.contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.emphasized {
  font-weight: 600;
  line-height: 1.2rem;
}
.emphasized h6 {
  font-size: 1.2rem;
}

.expanded {
  line-height: 3em;
}

.small {
  font-size: 0.8em;
}

.nav-dropdown {
  display: none;
}

.btn-era {
  font-size: 22px;
  background-color: #dcdcdc;
  color: #08335f !important;
  transition: background-color 250ms, color 250ms;
  margin: 20px;
  padding: 8px 30px;
  border: none;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
}
.btn-era:hover {
  background-color: #08335f;
  color: #dcdcdc !important;
  transition: background-color 250ms, color 250ms;
}

.btn-outline {
  color: white;
  font-weight: lighter;
  text-decoration: none;
  padding: 15px 40px;
  border: 3px solid white;
  line-height: 5em;
  transition: background-color 500ms;
  word-break: keep-all;
}
.btn-outline.btn-outline-dark {
  color: black;
  border-color: black;
}
.btn-outline.btn-small {
  color: black;
  padding: 5px 10px;
  line-height: 1em;
}
.btn-outline:hover {
  background-color: #baceec;
  border-color: #baceec;
  color: white;
  transition: all 500ms;
}

.collage-img {
  transition: filter 1s;
}
.collage-img:hover {
  filter: contrast(0.2) brightness(1.7);
  cursor: pointer;
  transition: filter 1s;
}

.white-text {
  color: #fff;
}

.page-title {
  color: #002e5d;
  letter-spacing: 5px;
  padding: 15px;
  font-size: 90px;
  font-family: "Lulo Clean One Bold", sans-serif;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
.page-title.page-title-light {
  color: #fff;
}

.secondary-color {
  color: #08335f;
}

/* X-Small */
/* Medium  */
@media (max-width: 768px) {
  .page-title {
    font-size: 40px !important;
  }
}
@media (min-width: 768px) {
  #home-logo {
    background: url(../img/hotTubBanner.png);
    background-size: cover;
    background-position: center 789px;
    height: 696px;
    padding-top: 60px;
  }
  #home-logo h1 {
    font-size: 4.4rem;
    line-height: 2.3em;
  }
  #home-logo h3 {
    font-size: 1.7rem;
  }
}
/* Large */
/* X-Large */
.agent-name {
  font-family: "Open Sans Condensed Bold", sans-serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #5c5c5c;
}

.agent-title {
  font-family: "Open Sans Condensed Bold", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #5c5c5c;
}

.agent-quote {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #5c5c5c;
}

.agent-contact {
  font-size: 12px;
  font-family: "Open Sans Condensed", sans-serif;
}

.galleria-container {
  position: fixed;
  width: 100vw;
  height: 100%;
  background-color: white;
  color: #3a3a3a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 50;
}
.galleria-container .galleria-container-dark {
  background-color: rgba(0, 0, 0, 0.8) !important;
  color: white !important;
}

.galleria-prev, .galleria-next {
  font-size: 100px;
  cursor: pointer;
}

.galleria-close {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 50px;
  width: 50px;
  font-size: 40px;
  font-weight: 800;
  color: #3a3a3a;
  cursor: pointer;
}
.galleria-close .galleria-close-dark {
  color: white !important;
}

.galleria-image {
  display: none;
}

.galleria-active {
  display: inline-block;
  width: 100%;
}/*# sourceMappingURL=index.css.map */
