/*!***********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./scss/global.scss ***!
  \***********************************************************************************************************/
.slide-in-down.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateX(-90deg);
  transform: perspective(2000px) rotateX(-90deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateX(90deg);
  transform: perspective(2000px) rotateX(90deg);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateY(90deg);
  transform: perspective(2000px) rotateY(90deg);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateX(-90deg);
  transform: perspective(2000px) rotateX(-90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(-90deg);
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(90deg);
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(90deg);
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(-90deg);
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0);
  transform: perspective(2000px) rotate(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: rotate(-0.75turn);
  -ms-transform: rotate(-0.75turn);
  transform: rotate(-0.75turn);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  -webkit-transform: rotate(0.75turn);
  -ms-transform: rotate(0.75turn);
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: rotate(0.75turn);
  -ms-transform: rotate(0.75turn);
  transform: rotate(0.75turn);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 0.5s;
  transition-timing-function: linear;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  -webkit-transform: rotate(-0.75turn);
  -ms-transform: rotate(-0.75turn);
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 0.3s !important;
}

.long-delay {
  transition-delay: 0.7s !important;
}

.shake {
  -webkit-animation-name: shake-7;
  animation-name: shake-7;
}

@-webkit-keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    -webkit-transform: translateX(7%);
    transform: translateX(7%);
  }
  15%, 25%, 35%, 45%, 5%, 55%, 65%, 75%, 85%, 95% {
    -webkit-transform: translateX(-7%);
    transform: translateX(-7%);
  }
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    -webkit-transform: translateX(7%);
    transform: translateX(7%);
  }
  15%, 25%, 35%, 45%, 5%, 55%, 65%, 75%, 85%, 95% {
    -webkit-transform: translateX(-7%);
    transform: translateX(-7%);
  }
}
.spin-cw {
  -webkit-animation-name: spin-cw-1turn;
  animation-name: spin-cw-1turn;
}

@-webkit-keyframes spin-cw-1turn {
  0% {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes spin-cw-1turn {
  0% {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.spin-ccw {
  -webkit-animation-name: spin-cw-1turn;
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.wiggle {
  -webkit-animation-name: wiggle-7deg;
  animation-name: wiggle-7deg;
}

@-webkit-keyframes wiggle-7deg {
  40%, 50%, 60% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
  }
  0%, 100%, 30%, 70% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
  }
  0%, 100%, 30%, 70% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.shake, .spin-ccw, .spin-cw, .wiggle {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.slow {
  -webkit-animation-duration: 750ms !important;
  animation-duration: 750ms !important;
}

.fast {
  -webkit-animation-duration: 250ms !important;
  animation-duration: 250ms !important;
}

.linear {
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}

.ease {
  -webkit-animation-timing-function: ease !important;
  animation-timing-function: ease !important;
}

.ease-in {
  -webkit-animation-timing-function: ease-in !important;
  animation-timing-function: ease-in !important;
}

.ease-out {
  -webkit-animation-timing-function: ease-out !important;
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  -webkit-animation-timing-function: ease-in-out !important;
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  -webkit-animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.long-delay {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.disable-scroll {
  height: 100%;
  overflow-y: hidden;
}

header, main, footer {
  font-family: Oswald, sans-serif;
}

.ep-spacer {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 1.33333%;
}
@media (min-width: 768px) {
  .ep-spacer {
    width: 8.33333%;
  }
}

.slick-arrow {
  z-index: 2;
}
.slick-arrow.slick-prev {
  left: 25px;
}
.slick-arrow.slick-next {
  right: 25px;
}

.sb-field {
  margin: 0 0 1rem;
}
.sb-field label {
  color: white;
  display: flex;
  flex-direction: column;
  color: #345073;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
}
.sb-field label input:not([type=submit]), .sb-field label textarea, .sb-field label select {
  width: 100%;
  border: 1px solid grey;
  padding-left: 0.4rem;
  color: black !important;
}
.sb-field .wpcf7-not-valid-tip {
  font-size: 12px;
}
.sb-field .wpcf7-submit {
  cursor: pointer;
  color: #345073;
  border: 1px solid #345073;
  width: auto;
  background-color: #002446;
  transition: all ease-in-out 250ms;
}
.sb-field .wpcf7-submit:hover {
  color: #002446;
  background-color: #345073;
}

.wpcf7-response-output {
  display: none;
}

.main-navigation-link.nav-btn {
  background-color: #002446;
  color: white !important;
  border: 1px solid transparent;
  transition: all ease-in-out 250ms;
  text-transform: uppercase;
  margin: 0 0.5rem;
}
@media (min-width: 1280px) {
  .main-navigation-link.nav-btn {
    margin: 0 1rem;
  }
}
.main-navigation-link.nav-btn:after {
  display: none !important;
}
.main-navigation-link.nav-btn:hover {
  color: #345073 !important;
  background-color: white !important;
  border: 1px solid #002446 !important;
}
.main-navigation-link.nav-btn:last-of-type {
  margin-right: 0;
}

.sem-cta {
  background: #1e6694;
  color: #002446;
  margin: 2rem auto;
  display: block;
  text-align: center;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  padding: 0.5rem;
  width: fit-content;
  font-weight: bold;
}

.appointment-modal {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all ease-in-out 250ms;
  z-index: -1;
  visibility: hidden;
}
.appointment-modal.active {
  z-index: 99;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  visibility: visible;
  transition: all ease-in-out 250ms;
}
.appointment-modal__title {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  color: white;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .appointment-modal__title {
    font-size: 22.4px;
  }
}
.appointment-modal__close {
  cursor: pointer;
  position: absolute;
  right: 0rem;
  font-size: 1.2rem;
  font-weight: 900;
  color: #333;
  background: rgba(255, 255, 255, 0.58);
  width: 7%;
  top: 0;
  text-align: center;
}
.appointment-modal__content {
  position: absolute;
  background: #002446;
  height: auto;
  width: 95vw;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .appointment-modal__content {
    width: 70vw;
  }
}
@media (min-width: 1024px) {
  .appointment-modal__content {
    width: 30vw;
  }
}

button.appointment-modal__button {
  position: fixed;
  background-color: #002446;
  right: 0rem;
  bottom: 0rem;
  color: white;
  padding: 1.5rem 0.75rem;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  opacity: 1;
  transition: all ease-in-out 250ms;
  border: 2px solid transparent;
  z-index: 2;
  width: 100%;
}
@media (min-width: 768px) {
  button.appointment-modal__button {
    right: 1rem;
    bottom: 1rem;
    width: auto;
  }
}
@media (min-width: 1024px) {
  button.appointment-modal__button {
    right: 3rem;
    bottom: 3rem;
  }
}
button.appointment-modal__button:hover {
  color: #002446;
  background-color: white;
  border: 2px solid #002446;
}

.top-banner {
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  background: #1e6694;
  margin-bottom: 0;
  color: #FFF;
  height: 45px;
  font-weight: 900;
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  transition: all ease-in-out 250ms;
}
@media (min-width: 768px) {
  .top-banner {
    font-size: 1.2rem;
  }
}
.top-banner.scroll-hide {
  height: 0;
  overflow: hidden;
}

.bottom-banner {
  text-align: center;
  background: #002446;
  margin-bottom: 0;
  color: #fff;
  padding: 0.25rem;
  font-weight: 900;
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.contact-banner {
  background: #002446;
  align-items: center;
  color: white;
  text-align: center;
  height: 45px;
  font-weight: 900;
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  transition: all ease-in-out 250ms;
}
.contact-banner.scroll-hide {
  height: 0;
  overflow: hidden;
}
.contact-banner a {
  color: #345073;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.07rem;
  text-decoration: none;
  margin: 0 1rem;
  opacity: 1;
  transition: all ease-in-out 250ms;
}
.contact-banner a:hover {
  opacity: 0.8;
}

#header {
  position: absolute;
  z-index: 3;
  height: auto;
  width: 100%;
  background-color: transparent;
  transition: all ease-in-out 250ms;
}
#header.sem-landing-header {
  background-color: #345073;
}
#header.scroll {
  position: fixed;
  background-color: #345073;
  top: 0;
}
#header .header-content {
  margin-left: auto;
}
#header .main-logo {
  background-color: white;
  padding: 1rem;
  width: fit-content;
}
#header .main-logo__image {
  max-width: 5rem;
}
@media (min-width: 1024px) {
  #header .main-logo__image {
    max-width: 10rem;
  }
}
#header .header-contact {
  display: none;
}
@media (min-width: 768px) {
  #header .header-contact {
    color: white;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
  }
}
#header .header-contact__phone {
  margin-left: 10px;
  transition: all ease-in-out 250ms;
  opacity: 1;
}
#header .header-contact__phone:hover {
  opacity: 0.7;
}
#header .header-contact__directions {
  margin-left: 10px;
  transition: all ease-in-out 250ms;
  opacity: 1;
}
#header .header-contact__directions:hover {
  opacity: 0.7;
}
#header .veterans {
  width: fit-content;
  display: none;
  margin-right: 0;
}
@media (min-width: 1024px) {
  #header .veterans {
    display: block;
    margin-right: auto;
  }
}
#header .veterans__link {
  max-width: 4.5rem;
}
#header .veterans__image {
  max-width: 4.5rem;
}
#header .hamburger-menu {
  display: block;
  width: 2.25rem;
  position: relative;
  height: 18px;
}
#header .hamburger-menu.active {
  z-index: 11;
}
#header .hamburger-menu.active span {
  top: 50%;
}
#header .hamburger-menu.active span:first-of-type {
  top: 50%;
  transform: rotate(-45deg);
}
#header .hamburger-menu.active span:nth-of-type(2) {
  opacity: 0;
}
#header .hamburger-menu.active span:last-of-type {
  top: 50%;
  transform: rotate(-135deg);
}
#header .hamburger-menu span {
  position: absolute;
  display: block;
  width: 100%;
  background-color: white;
  height: 4px;
  top: 50%;
  transition: all ease-in-out 250ms;
}
#header .hamburger-menu span:first-of-type {
  top: 0;
  transition: all ease-in-out 250ms;
  transform: rotate(0);
}
#header .hamburger-menu span:nth-of-type(2) {
  opacity: 1;
}
#header .hamburger-menu span:last-of-type {
  top: 100%;
  transition: all ease-in-out 250ms;
  transform: rotate(0);
}
@media (min-width: 1024px) {
  #header .hamburger-menu {
    display: none;
  }
}

.footer {
  background: #1e6694;
  color: white;
}
.footer__logo {
  max-width: 10rem;
  padding: 1rem;
  background-color: white;
}
.footer__title {
  position: relative;
  text-align: left;
}
.footer__title::after {
  content: " ";
  display: block;
  width: 100%;
  max-width: 6rem;
  bottom: -3px;
  height: 2px;
  background: #002446;
  position: absolute;
}
.footer__block {
  min-width: 40%;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer__block {
    min-width: none;
    margin-bottom: 0rem;
  }
}
.footer__social {
  opacity: 1;
  transition: all ease-in-out 250ms;
}
.footer__social:hover {
  opacity: 0.8;
}
.footer__bottom {
  background-color: #333d46;
  border-top: 1px solid rgba(204, 204, 204, 0.270588);
}
.footer__bottom img {
  background-color: white;
}

.main-navigation {
  justify-content: center;
  display: none;
}
@media (min-width: 1024px) {
  .main-navigation {
    display: flex;
  }
}
.main-navigation .main-navigation-list {
  display: flex;
  flex-direction: row;
}
.main-navigation .main-navigation-list-item {
  position: relative;
  text-transform: uppercase;
}
.main-navigation .main-navigation-list-item.sub-nav-present a.main-navigation-link i {
  color: #002446;
}
.main-navigation .main-navigation-list-item.sub-nav-present a.main-navigation-link:after {
  display: none;
}
.main-navigation .main-navigation-list-item:hover .main-navigation-link:after {
  width: 100%;
}
.main-navigation .main-navigation-list-item:hover .subnav {
  max-height: 20vh;
}
.main-navigation .main-navigation-link {
  color: white;
  text-decoration: none;
  white-space: nowrap;
  transition: all ease-in-out 250ms;
  display: block;
  font-weight: 400;
  position: relative;
  font-size: 18px;
}
.main-navigation .main-navigation-link:after {
  transition: all ease-in-out 250ms;
  content: "";
  display: block;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #002446;
}
.main-navigation .main-navigation-link span {
  position: relative;
}

.subnav {
  height: auto;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  transition: all ease-in-out 250ms;
  background-color: #1e6694;
  top: calc(100% - 15px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  width: fit-content;
  color: white;
  border-top: #002446;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.subnav:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #002446;
  position: absolute;
  top: 0;
  left: 0;
}
.subnav__link {
  display: block;
  position: relative;
  white-space: nowrap;
}
.subnav__link i {
  opacity: 0;
  transform: translateX(-50%);
  transition: all ease-in-out 250ms;
}
.subnav__link:hover i {
  opacity: 1;
  transform: translateX(0%);
}

.mobile-nav {
  display: block;
  height: 100vh;
  background: #1e6694;
  width: 80vw;
  position: absolute;
  z-index: 10;
  top: 0px;
  left: 0;
  overflow: scroll;
  transition: all ease-in-out 250ms;
  transform: translateX(-100%);
}
.mobile-nav.active {
  transform: translateX(0%);
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav .logo__link {
  display: block;
  max-width: 5rem;
}
.mobile-nav__link {
  color: white;
}
.mobile-nav button {
  color: white;
  transform: rotate(0deg);
  transition: all ease-in-out 250ms;
}
.mobile-nav button.active {
  transform: rotate(180deg);
}
.mobile-nav__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-nav__sub {
  max-height: 0;
  overflow: hidden;
}
.mobile-nav__sub.active {
  max-height: fit-content;
}
.mobile-nav__sub-link {
  color: white;
}
.mobile-nav .mobile-contact {
  color: white;
}
.mobile-nav .mobile-contact a {
  display: block;
}

/* Modal Content/Box */
.modal {
  /* display: none;  */
  position: fixed;
  /* Stay in place */
  z-index: 1000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

.modal-content {
  background: #1e6694;
  border: 1px solid #002446;
  color: white;
  padding: 50px;
  width: auto;
  /* Could be more or less, depending on screen size */
  max-height: 90vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-content-inner {
  border: 2px solid #002446;
  padding: 20px;
}

.modal-content h2 {
  font-size: 2rem;
  /*font-size: 2rem;*/
  border-bottom: 2px solid #002446;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.modal-content p {
  font-size: 2rem;
  text-align: center;
  /*font-size: 3rem;*/
  margin-bottom: 0;
}

.modal-content p:last-of-type {
  font-size: 1.75rem;
  text-align: center;
  /*font-size: 3rem;*/
  margin-bottom: 0;
}

.modal-content ul li {
  font-size: 1.25rem;
  list-style-type: none;
  text-align: center;
  margin-bottom: 0;
}

.modal-content del {
  text-decoration-thickness: 2px;
  text-decoration-color: #002446;
}

/* The Close Button */
.close {
  cursor: pointer;
  display: block;
  color: #fff;
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 28px;
  font-weight: bold;
  transition: all ease-in-out 250ms;
  opacity: 1;
}

.close:hover, .close:focus {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
  cursor: pointer;
}

.modal-content h2, h3 {
  font-family: "Copperplate Gothic", serif;
  text-align: center;
}

.modal-content .btn {
  padding: 0.75em 0.8em;
  font-family: "Oswald", sans-serif;
  display: block;
  font-size: 18px;
  margin: 0 auto;
  width: fit-content;
  background-color: #002446;
  border: 1px solid #002446;
  color: #fff;
  font-weight: bold;
  transition: all ease-in-out 250ms;
}

.modal-content .btn:hover {
  background-color: #fff;
  color: #002446;
}

.modal-content .image-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  max-height: 500px;
}

.modal-content .image-grid img {
  display: block;
  margin: 5px;
  width: calc(50% - 10px);
  max-height: 400px;
  max-width: 600px;
}

@media screen and (max-width: 576px) {
  .modal-content {
    margin: 0% auto;
    max-height: 95vh;
    width: 94%;
    padding: 20px 15px;
  }
  .modal-content h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .modal-content p {
    font-size: 1.25rem;
    padding-bottom: 0.1rem;
    margin-bottom: 10px;
  }
  .modal-content p:last-of-type {
    font-size: 1rem;
    text-align: center;
    /*font-size: 3rem;*/
    margin-bottom: 0;
  }
  .modal-content ul li {
    font-size: 0.75rem;
  }
  .modal-content .image-grid {
    flex-direction: column;
  }
  .modal-content .image-grid img {
    width: 100%;
    margin: 0 auto;
    max-width: 75vw;
    margin-bottom: 5px;
  }
  .modal-content .btn.modal-cta {
    margin: 1rem auto;
  }
}
.body-copy__wrap.sidebar {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .body-copy__wrap.sidebar {
    justify-content: center;
    flex-direction: row;
  }
}
.body-copy__content {
  max-width: 100%;
  margin-right: 0%;
  background: #fefefe;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
}
.body-copy__content .alignleft {
  float: left;
  padding-right: 1rem;
  margin: 0;
}
.body-copy__content blockquote, .body-copy__content dd, .body-copy__content div, .body-copy__content dl, .body-copy__content dt, .body-copy__content form, .body-copy__content h1, .body-copy__content h2, .body-copy__content h3, .body-copy__content h4, .body-copy__content h5, .body-copy__content h6, .body-copy__content li, .body-copy__content ol, .body-copy__content p, .body-copy__content pre, .body-copy__content td, .body-copy__content th, .body-copy__content ul {
  margin: 0;
  padding: 0;
}
.body-copy__content p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
.body-copy__content em, .body-copy__content i {
  font-style: italic;
  line-height: inherit;
}
.body-copy__content b, .body-copy__content strong {
  font-weight: 700;
  line-height: inherit;
}
.body-copy__content small {
  font-size: 80%;
  line-height: inherit;
}
.body-copy__content .h1, .body-copy__content .h2, .body-copy__content .h3, .body-copy__content .h4, .body-copy__content .h5, .body-copy__content .h6, .body-copy__content h1, .body-copy__content h2, .body-copy__content h3, .body-copy__content h4, .body-copy__content h5, .body-copy__content h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: inherit;
  text-rendering: optimizeLegibility;
}
.body-copy__content .h1 small, .body-copy__content .h2 small, .body-copy__content .h3 small, .body-copy__content .h4 small, .body-copy__content .h5 small, .body-copy__content .h6 small, .body-copy__content h1 small, .body-copy__content h2 small, .body-copy__content h3 small, .body-copy__content h4 small, .body-copy__content h5 small, .body-copy__content h6 small {
  line-height: 0;
  color: #cacaca;
}
.body-copy__content .h1, .body-copy__content h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.body-copy__content .h2, .body-copy__content h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.body-copy__content .h3, .body-copy__content h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.body-copy__content .h4, .body-copy__content h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.body-copy__content .h5, .body-copy__content h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.body-copy__content .h6, .body-copy__content h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 64em) {
  .body-copy__content .h1, .body-copy__content h1 {
    font-size: 3rem;
  }
  .body-copy__content .h2, .body-copy__content h2 {
    font-size: 2.5rem;
  }
  .body-copy__content .h3, .body-copy__content h3 {
    font-size: 1.9375rem;
  }
  .body-copy__content .h4, .body-copy__content h4 {
    font-size: 1.5625rem;
  }
  .body-copy__content .h5, .body-copy__content h5 {
    font-size: 1.25rem;
  }
  .body-copy__content .h6, .body-copy__content h6 {
    font-size: 1rem;
  }
}
.body-copy__content a {
  line-height: inherit;
  color: #898c75;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.body-copy__content a:focus, .body-copy__content a:hover {
  color: #6d6f5e;
}
.body-copy__content a img {
  border: 0;
}
.body-copy__content hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}
.body-copy__content dl, .body-copy__content ol, .body-copy__content ul {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}
.body-copy__content li {
  font-size: inherit;
}
.body-copy__content ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}
.body-copy__content ol {
  margin-left: 1.25rem;
}
.body-copy__content ol ol, .body-copy__content ol ul, .body-copy__content ul ol, .body-copy__content ul ul {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
.body-copy__content dl {
  margin-bottom: 1rem;
}
.body-copy__content dl dt {
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.body-copy__content table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
.body-copy__content tbody, .body-copy__content tfoot, .body-copy__content thead {
  border: 1px solid #f1f1f1;
  background-color: #fefefe;
}
.body-copy__content caption {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: 700;
}
.body-copy__content thead {
  background: #f8f8f8;
  color: #0a0a0a;
}
.body-copy__content tfoot {
  background: #f1f1f1;
  color: #0a0a0a;
}
.body-copy__content tfoot tr, .body-copy__content thead tr {
  background: 0 0;
}
.body-copy__content tfoot td, .body-copy__content tfoot th, .body-copy__content thead td, .body-copy__content thead th {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: 700;
  text-align: left;
}
.body-copy__content tbody td, .body-copy__content tbody th {
  padding: 0.5rem 0.625rem 0.625rem;
}
.body-copy__content tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: #f1f1f1;
}
.body-copy__content table.unstriped tbody {
  background-color: #fefefe;
}
.body-copy__content table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f1f1f1;
  background-color: #fefefe;
}
@media screen and (max-width: 74.9375em) {
  .body-copy__content table.stack thead {
    display: none;
  }
  .body-copy__content table.stack tfoot {
    display: none;
  }
  .body-copy__content table.stack td, .body-copy__content table.stack th, .body-copy__content table.stack tr {
    display: block;
  }
  .body-copy__content table.stack td {
    border-top: 0;
  }
}
.body-copy__content table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}
.body-copy__content table.hover thead tr:hover {
  background-color: #f3f3f3;
}
.body-copy__content table.hover tfoot tr:hover {
  background-color: #ececec;
}
.body-copy__content table.hover tbody tr:hover {
  background-color: #f9f9f9;
}
.body-copy__content table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ececec;
}
.body-copy__content .table-scroll {
  overflow-x: auto;
}
.body-copy__content .table-scroll table {
  width: auto;
}
.body-copy__content.sidebar {
  max-width: 100%;
  margin-right: 0%;
}
@media (min-width: 768px) {
  .body-copy__content.sidebar {
    max-width: 65%;
    margin-right: 2.5%;
  }
}
.body-copy__sidebar {
  max-width: 100%;
  margin-left: 0%;
  background: #002446;
  height: fit-content;
}
@media (min-width: 768px) {
  .body-copy__sidebar {
    max-width: 30%;
    margin-left: 2.5%;
  }
}
.body-copy__sidebar-title {
  font-family: Oswald, sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  font-size: 2rem;
  text-align: center;
  background: #1e6694;
  color: #fff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.body-copy__sidebar-form {
  padding: 1rem;
}

.hero-main {
  width: 100%;
  height: 80vh;
}
@media (min-width: 1024px) {
  .hero-main {
    height: calc(100vh - 90px);
  }
}
.hero-main .slick-slider .slick-slide {
  position: relative;
  height: 100%;
}
.hero-main .slick-slider .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 80vh;
}
@media (min-width: 1024px) {
  .hero-main .slick-slider .slick-slide img {
    max-height: 50vh;
    height: 100%;
    max-height: calc(100vh - 90px);
  }
}
.hero-main .slick-slider .slick-slide .hero-slide-wrap {
  position: relative;
}
.hero-main .slick-slider .slick-slide .hero-slide-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-main .slick-slider .slick-slide .hero-slide-content {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  top: 50%;
  font-family: Oswald;
  color: white;
  transform: translateY(-50%);
  z-index: 2;
}
.hero-main__cta {
  background-color: #002446;
  color: #6087b7;
}
.hero-main__cta:hover i {
  opacity: 1;
  width: auto;
  visibility: visible;
  transform: translateX(0px);
}
.hero-main__cta i {
  opacity: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all ease-in-out 250ms;
  transform: translateX(-5px);
}

.hero-narrow {
  width: 100%;
  height: 80vh;
  position: relative;
  font-family: Oswald, sans-serif;
}
@media (min-width: 768px) {
  .hero-narrow {
    height: 25rem;
  }
}
.hero-narrow__title {
  position: absolute;
  color: white;
  top: 40%;
  left: 10%;
  width: fit-content;
  letter-spacing: 1.92px;
  transform: translateY(-50%);
}
@media (min-width: 640px) {
  .hero-narrow__title {
    top: 55%;
  }
}
.hero-narrow__title::after {
  content: " ";
  display: block;
  width: 50%;
  position: absolute;
  height: 0.2rem;
  background: #002446;
  left: 0%;
  bottom: -15px;
}
@media (min-width: 640px) {
  .hero-narrow__title::after {
    left: -5%;
  }
}
.hero-narrow__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.bc-bg {
  background: #1e6694;
  color: white;
}
.bc-bg .breadcrumb-wraps {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 75rem;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.bc-bg .breadcrumb-wraps .breadcrumb-wrapper {
  width: calc(100% - 1.875rem);
  margin-right: 0.9375rem;
  margin-left: 0.9375rem;
  color: white;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
}
.bc-bg .breadcrumb-wraps .breadcrumb-wrapper #breadcrumbs {
  padding-top: 0.8rem;
  margin-bottom: 0;
  padding-bottom: 0.8rem;
  color: white;
}
.bc-bg .breadcrumb-wraps .breadcrumb-wrapper #breadcrumbs a {
  color: white;
}
.bc-bg .breadcrumb-wraps .breadcrumb-wrapper #breadcrumbs a:hover {
  color: #002446;
}
.bc-bg .breadcrumb-wraps .breadcrumb-wrapper .breadcrumb_last {
  color: white;
  font-weight: 900;
}

@media print {
  .bc-bg .breadcrumb-wraps {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media screen and (min-width: 64em) {
  .bc-bg .breadcrumb-wraps {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.feature-cards .feature-card {
  position: relative;
  overflow: hidden;
}
.feature-cards .feature-card__content {
  color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.feature-cards .feature-card__content::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.feature-cards .feature-card__title {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(0%);
  opacity: 1;
  transition: all ease-in-out 500ms;
}
.feature-cards .feature-card__title h2 {
  position: relative;
  transform: translateX(0);
  transition: all ease-in-out 500ms;
}
.feature-cards .feature-card__title h2:after {
  content: "";
  display: block;
  width: 20%;
  margin: 0 auto;
  height: 2px;
  background-color: #002446;
}
.feature-cards .feature-card__title h3 {
  transform: translateX(0);
  transition: all ease-in-out 500ms;
}
.feature-cards .feature-card__copy {
  transition: all ease-in-out 500ms;
  opacity: 0;
  transform: translateY(100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
}
.feature-cards .feature-card:hover .feature-card__title {
  opacity: 0;
}
.feature-cards .feature-card:hover .feature-card__title h2 {
  transform: translateX(-100%);
}
.feature-cards .feature-card:hover .feature-card__title h3 {
  transform: translateX(100%);
}
.feature-cards .feature-card:hover .feature-card__copy {
  transition: all ease-in-out 500ms;
  opacity: 1;
  transform: translateY(0%);
}

.featured-images__image {
  filter: brightness(100%);
  transition: all ease-in-out 250ms;
}
.featured-images__image:hover {
  filter: brightness(90%);
}
.featured-images__cta {
  background-color: #002446;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.featured-images__cta:hover i {
  opacity: 1;
  width: auto;
  visibility: visible;
  transform: translateX(5px);
}
.featured-images__cta i {
  opacity: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all ease-in-out 250ms;
  transform: translateX(-10px);
}

.image-text__container {
  width: 100%;
  display: block;
  position: relative;
}
@media (min-width: 768px) {
  .image-text__container {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .image-text__container {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .image-text__container.right {
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .image-text__container.right {
    flex-direction: row-reverse;
  }
}
.image-text__col {
  width: 100%;
}
@media (min-width: 1024px) {
  .image-text__col {
    width: 50%;
  }
}
.image-text__col.image {
  position: relative;
}
.image-text__col.image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 1024px) {
  .image-text__col.image::before {
    display: none;
  }
}
.image-text__col.image img {
  object-fit: cover;
  height: 70vh;
}
@media (min-width: 1024px) {
  .image-text__col.image img {
    object-fit: none;
    height: auto;
  }
}
.image-text__col.image iframe {
  min-height: 30rem;
  width: 100%;
}
.image-text__col.content {
  padding-left: 3rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  color: white;
  top: 5%;
}
.image-text__col.content.matterport {
  display: none;
}
@media (min-width: 1024px) {
  .image-text__col.content.matterport {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .image-text__col.content {
    top: 0;
  }
}
@media (min-width: 768px) {
  .image-text__col.content {
    color: black;
    padding-left: 5rem;
    padding-right: 3rem;
    position: static;
  }
}
.image-text__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 1.2rem;
  max-width: 20rem;
  background: #F4DBB2;
  color: #505050;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-text__cta:hover i {
  opacity: 1;
  width: auto;
  visibility: visible;
  transform: translateX(5px);
}
.image-text__cta i {
  opacity: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all ease-in-out 250ms;
  transform: translateX(-10px);
}

.gallery__grid {
  padding: 0rem;
}
@media (min-width: 768px) {
  .gallery__grid {
    padding: 0 4rem;
  }
}
.gallery__grid-list {
  margin: 0;
  max-width: 100vw;
}
@media (min-width: 768px) {
  .gallery__grid-list {
    max-width: 100%;
    margin: 0 auto;
  }
}
.gallery__grid-list li {
  width: 49%;
}
@media (min-width: 768px) {
  .gallery__grid-list li {
    width: 33%;
  }
}
.gallery__grid-list li a img {
  padding: 1.5%;
}
.gallery__filter {
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .gallery__filter {
    padding: 0;
  }
}
.gallery__filter-list {
  display: flex;
  margin: 0 auto;
  width: fit-content;
  margin-top: 2rem;
  margin-bottom: 2rem;
  flex-direction: row;
  flex-wrap: wrap;
}
.gallery__filter-list li {
  color: #FFF;
  background: #1e6694;
  font-weight: 300;
  margin-right: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  padding: 0.5rem 0.5rem;
  border: 1px solid #1e6694;
  transition: all ease-in-out 250ms;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .gallery__filter-list li {
    margin-bottom: 0;
  }
}
.gallery__filter-list li.selected {
  color: #1e6694;
  background: #fff;
}
.gallery__filter-list li:hover {
  color: #1e6694;
  background: #fff;
}

.contact-page__form .cpage-field {
  margin: 0 0 1rem;
}
.contact-page__form .cpage-field label {
  color: white;
  display: flex;
  flex-direction: column;
  color: #fff;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
}
.contact-page__form .cpage-field label input, .contact-page__form .cpage-field label textarea, .contact-page__form .cpage-field label select {
  width: 100%;
  border: 1px solid grey;
  padding-left: 0.4rem;
}
.contact-page__form .cpage-field.submit {
  display: block;
  margin: 1rem auto -16px auto;
  border: none;
  padding: 1rem;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: #002446;
  cursor: pointer;
  position: relative;
  z-index: 2;
  width: 100%;
  box-shadow: 0 7px 0 #1e6694;
  transition: 0.3s all linear;
}
.contact-page__form .cpage-field.submit:hover {
  background: #1e6694;
}

.ep-places .section-heading {
  width: calc(100% - 1.875rem);
  margin-right: 0.9375rem;
  margin-left: 0.9375rem;
  text-align: center;
  color: white;
}
.ep-places .section-heading .section-tag-thin {
  font-weight: 100;
  font-size: 4rem;
}
.ep-places .section-heading .section-tag-thin span {
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (max-width: 63.9375em) {
  .ep-places .section-heading .section-tag-thin {
    font-size: 2rem;
    line-height: 4rem;
  }
  .ep-places .section-heading .section-tag-thin span {
    margin-top: -2rem;
    display: block;
  }
}
.ep-places body.page-template-flexible .map-bg-wrap {
  padding-left: 7rem;
}
@media screen and (max-width: 63.9375em) {
  .ep-places body.page-template-flexible .map-bg-wrap {
    padding-left: 0;
  }
}
.ep-places body.page-template-flexible .map-bg-wrap .map-wrap {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 79rem;
  margin: 0 auto;
}
@media print, screen and (min-width: 64em) {
  .ep-places body.page-template-flexible .map-bg-wrap .map-wrap {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.ep-places body.page-template-flexible .map-bg-wrap .map-wrap .this-content {
  max-width: 22rem;
}
@media screen and (max-width: 64em) {
  .ep-places body.page-template-flexible .map-bg-wrap .map-wrap .this-content {
    max-width: 100%;
  }
}
.ep-places .map-bg-wrap {
  background: #1e6694;
}
.ep-places .map-wrap {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 75rem;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  padding-top: 2rem;
  padding-bottom: 7rem;
}
@media print, screen and (min-width: 64em) {
  .ep-places .map-wrap {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.ep-places .map-wrap .map-box-left {
  width: calc(42.33333% - 1.875rem);
  margin-right: 0.9375rem;
  margin-left: 0.9375rem;
  margin-right: -0.625rem;
  margin-left: -0.625rem;
  background: #345073;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media print, screen and (min-width: 64em) {
  .ep-places .map-wrap .map-box-left {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .ep-places .map-wrap .map-box-left {
    width: calc(100% - 1.25rem);
    margin-right: 0.625rem;
    margin-left: 0.625rem;
    border-right: 1px solid #ccc;
  }
}
.ep-places .map-wrap .map-box-left .map-controller {
  margin: 0;
  list-style: none;
}
.ep-places .map-wrap .map-box-left .map-controller li button {
  background: #345073;
  text-align: left;
  color: #fff;
  padding: 1rem 0 1rem 1rem;
  border-bottom: 1px solid #ccc;
  display: block;
  width: 100%;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.06rem;
  font-family: "Oswald", sans-serif;
  cursor: pointer;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
}
.ep-places .map-wrap .map-box-left .map-controller li button:hover {
  background: #6087b7;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
}
.ep-places .map-wrap .map-box-left .map-controller li button:hover i {
  margin-left: 1rem;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
}
.ep-places .map-wrap .map-box-left .map-controller li button i {
  font-size: 1.4rem;
  margin-right: 1rem;
  top: 0.1rem;
  position: relative;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
}
.ep-places .map-wrap .map-box-left .map-controller .this-content {
  display: none;
  max-height: 18rem;
  overflow: scroll;
  max-width: 20.5rem;
}
@media screen and (max-width: 63.9375em) {
  .ep-places .map-wrap .map-box-left .map-controller .this-content {
    max-width: 100%;
  }
}
.ep-places .map-wrap .map-box-left .map-controller .this-content p {
  color: #fff;
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
}
.ep-places .map-wrap .map-box-left .map-controller .this-content p:hover {
  text-decoration: underline;
  cursor: pointer;
}
.ep-places .map-wrap .map-box-right {
  width: calc(66.66667% - 1.875rem);
  margin-right: 0.9375rem;
  margin-left: 0.9375rem;
  margin-right: -0.625rem;
  margin-left: -0.625rem;
  min-height: 40rem;
  border-right: 1px solid #ccc;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}
@media print, screen and (min-width: 64em) {
  .ep-places .map-wrap .map-box-right {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .ep-places .map-wrap .map-box-right {
    width: calc(100% - 1.25rem);
    margin-right: 0.625rem;
    margin-left: 0.625rem;
    min-height: 25rem;
  }
}
.ep-places .map-wrap .map-box-right #map {
  width: 100%;
  height: 100%;
}

.virtual-tours__title {
  font-size: 1.6rem;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}
.virtual-tours__title::after {
  content: " ";
  display: block;
  width: 20%;
  position: absolute;
  height: 0.2rem;
  background: #002446;
  bottom: -10px;
}
.virtual-tours__tour {
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .virtual-tours__tour {
    max-width: 100%;
    margin: 0;
  }
}
.virtual-tours__tour iframe {
  max-width: 100%;
}

.review_hero {
  height: 28rem;
  position: relative;
}
.review_hero__content {
  width: 80%;
  left: 5%;
  transform: translateX(0%);
  color: white;
  position: absolute;
  top: 20%;
}
@media (min-width: 768px) {
  .review_hero__content {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
  }
}
.review_hero__image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.review_hero__quote {
  font-weight: 100;
  text-transform: uppercase;
  display: flex;
  font-size: 1.4rem;
  margin-top: 4.5rem;
  line-height: 1.4;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .review_hero__quote {
    font-size: 2.7rem;
    margin-top: 8.5rem;
    line-height: 2.8rem;
    padding-bottom: 2rem;
  }
}
.review_hero__quote .quote-mark {
  color: #f8b805;
  margin-right: 10px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .review_hero__quote .quote-mark {
    font-size: 5rem;
  }
}
.review_hero__name {
  font-size: 1rem;
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .review_hero__name {
    font-size: 2rem;
  }
}
.review_hero__stars {
  color: #f8b805;
}
.review_hero__cta {
  color: #345073;
  font-size: 1rem;
  display: block;
  margin-left: auto;
  width: fit-content;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 6px 1rem;
  text-shadow: none;
  transition: background-color 200ms, color 200ms;
}

.reviews {
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .reviews {
    padding: 3rem 0;
  }
}
.reviews h2 {
  font-size: 1.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #345073;
  margin-bottom: 1rem;
}
.reviews .review-card {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  padding: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}
.reviews .review-card .review-name {
  font-weight: 700;
  font-size: 1.3rem;
}
.reviews .review-card .review-stars {
  color: #f8b805;
}
.reviews .review-card .review-divider {
  border-bottom: 2px solid #345073;
  margin: 8px auto;
  max-width: 40px;
}
.reviews .review-card .review-text {
  font-size: 1.3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  margin-bottom: 8px;
}

#reviews_button {
  text-align: center;
}
#reviews_button a {
  background: #F4DBB2;
  color: #002446;
}
#reviews_button a:hover {
  background: #F4DBB2;
  color: #002446;
}

.static_floorplans {
  padding: 4rem 0;
}
.static_floorplans__filter-list {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  width: fit-content;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.static_floorplans__filter-list li {
  color: #FFF;
  background: #1e6694;
  font-weight: 300;
  margin-right: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  padding: 0.5rem 0.5rem;
  border: 1px solid #1e6694;
  transition: all ease-in-out 250ms;
}
.static_floorplans__filter-list li.selected {
  color: #1e6694;
  background: #fff;
}
.static_floorplans__filter-list li:hover {
  color: #1e6694;
  background: #fff;
}
.static_floorplans__list {
  height: auto;
}
.static_floorplans__image {
  display: block;
  width: 100%;
  cursor: pointer;
  border: 2px solid #CCC;
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.static_floorplans__item {
  width: 30.5%;
  margin: 1%;
}
.static_floorplans__item figcaption {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.static_floorplans__item .fp-pdf {
  color: #1e6694;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.2rem;
  padding-right: 1rem;
  text-align: right;
}
.static_floorplans__item .fp-pdf a:after {
  font-family: FontAwesome;
  content: " \f1c1";
  color: #F4DBB2;
  margin-left: 0.9rem;
  display: inline-block;
  font-size: 1.2rem;
}

.contact-page {
  position: relative;
}
.contact-page__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.contact-page__content {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  padding: 2rem;
  padding-top: 100px;
}
@media (min-width: 1024px) {
  .contact-page__content {
    padding: 4rem;
    padding-top: 150px;
    flex-direction: row;
  }
}
.contact-page__main {
  border: 2px solid white;
  background: rgba(0, 59, 93, 0.51);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  padding: 1rem 2rem;
}
@media (min-width: 1024px) {
  .contact-page__main {
    width: 60%;
    padding: 2rem 4rem;
  }
}
.contact-page__sidebar {
  color: white;
  position: relative;
  background: rgba(0, 59, 93, 0.51);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-page__sidebar {
    width: 30%;
  }
}
.contact-page__sidebar-title {
  background: #345073;
  color: white;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.contact-page__sidebar-block {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.contact-page__sidebar-heading {
  font-size: 1.5rem;
  letter-spacing: 0.12rem;
  position: relative;
  margin-bottom: 0.75rem;
}
.contact-page__sidebar-heading:after {
  content: " ";
  display: block;
  background: #002446;
  position: absolute;
  width: 5rem;
  height: 0.2rem;
  bottom: -3px;
}
.contact-page__sidebar-download {
  font-weight: 700;
  color: #fff;
  display: block;
  font-size: 1rem;
  opacity: 1;
  transition: all ease-in-out 250ms;
}
.contact-page__sidebar-download:hover {
  opacity: 0.8;
}

.sem {
  margin-top: calc(80px + 2.5rem);
}
@media (min-width: 1024px) {
  .sem {
    margin-top: calc(100px + 2.5rem);
  }
}
.sem.scroll {
  margin-top: 0;
}
.sem__hero {
  max-width: 100%;
  width: 100%;
  height: fit-content;
}
.sem__hero-tag {
  background-color: #002446;
  border: 1px solid rgba(204, 204, 204, 0.68);
  z-index: 1;
  padding: 0.7rem 1rem;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  text-align: center;
  position: static;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .sem__hero-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    max-width: 375px;
  }
}
.sem__hero-form {
  background: #345073;
  text-align: center;
  color: #fff;
  border: 0.01rem solid rgba(255, 255, 255, 0.89);
  padding: 1rem;
}
@media (min-width: 1024px) {
  .sem__hero-form {
    position: absolute;
    top: 12px;
    right: 12px;
    max-width: 400px;
  }
}
.sem__hero-wrap {
  position: relative;
  height: 100%;
}
.sem__hero-slider {
  width: 100%;
  height: 100%;
}
.sem__hero-slider .sem-hero-slide {
  width: 100%;
}
.sem__hero-slider .sem-hero-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.sem__content-wrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.sem__content-title {
  font-size: 3rem;
  font-family: Oswald, sans-serif;
  position: relative;
  text-align: center;
}
.sem__content-title:after {
  content: "";
  display: block;
  height: 1px;
  width: 30%;
  background: #002446;
  margin: 1rem auto 2rem auto;
}
.sem__content-copy {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  text-align: center;
}
.sem__features {
  background-color: #1e6694;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.sem__features-title {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.12rem;
  font-weight: 300;
}
.sem__features-list li {
  color: white;
  margin-bottom: 1rem;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sem__features-list li svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.sem__features-list li svg path {
  fill: #002446 !important;
}
.sem__features-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .sem__features-wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}
.sem__neighborhood {
  background: #d0d0d0;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.sem__neighborhood-title {
  font-size: 1.5rem;
  letter-spacing: 0.12rem;
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}
.sem__neighborhood-image {
  border: 2px solid rgba(51, 51, 51, 0.22);
  max-width: 45rem;
  margin: 0 auto;
  width: 100%;
}
.sem__neighborhood-copy {
  margin: 0 auto;
  text-align: justify;
  width: fit-content;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.sem__neighborhood-cta {
  display: block;
  margin: 0 auto;
  border: 1px solid #002446;
}
.sem__floorplan {
  background-color: #1e6694;
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: white;
  border-bottom: 1px solid white;
}
.sem__floorplan-title {
  font-size: 1.5rem;
  letter-spacing: 0.12rem;
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}
.sem__floorplan-image {
  border: 2px solid rgba(51, 51, 51, 0.22);
  max-width: 45rem;
  margin: 0 auto;
  width: 100%;
  display: block;
}
.sem__floorplan-copy {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.sem__floorplan-cta {
  display: block;
  margin: 0 auto;
  border: 1px solid #002446;
}

.interactive-map-page {
  background-color: rgba(46, 64, 44, 0.2);
}
.interactive-map-page .floorplan_container {
  max-width: 68rem;
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.interactive-map-page .floorplan-img {
  display: block;
  width: 1200px;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .interactive-map-page .floorplan-img {
    height: 515px;
  }
}
.interactive-map-page .floorplan-img .floorplan-group {
  stroke: transparent;
  cursor: pointer;
  fill: transparent;
  outline: 0;
}
.interactive-map-page .floorplan-img .floorplan-group .floorplan-icon {
  fill: rgba(237, 187, 51, 0.8);
  stroke: rgba(0, 0, 0, 0.4705882353);
  stroke-width: 2px;
  transition: fill 200ms;
}
.interactive-map-page .floorplan-img .floorplan-group .floorplan-area {
  stroke-width: 4px;
  stroke-dasharray: 4px;
  fill: transparent;
  transition: fill 200ms;
}
.interactive-map-page .floorplan-img .floorplan-group .floorplan-area.stroke-yellow {
  stroke: #edbb33;
}
.interactive-map-page .floorplan-img .floorplan-group:hover .floorplan-icon {
  fill: #edbb33;
}
.interactive-map-page .floorplan-img .floorplan-group:hover .floorplan-area {
  fill: rgba(237, 187, 51, 0.2);
}
.interactive-map-page .floorplan-img .floorplan-layer {
  stroke: transparent;
  cursor: pointer;
  fill: transparent;
}
.interactive-map-page .floorplan-img .floorplan-layer:hover {
  stroke: #023b5b;
  fill: rgba(237, 187, 51, 0.2);
}
.interactive-map-page .courtyard-interactive {
  text-align: center;
  padding: 3rem 0;
}
.interactive-map-page .courtyard-header-text {
  border-bottom: 2px solid #FFC704;
  font-size: 2rem;
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
}
.interactive-map-page .courtyard-img {
  width: 1200px;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .interactive-map-page .courtyard-img {
    height: 515px;
  }
}
.interactive-map-page .courtyard-img .courtyard-group {
  stroke: transparent;
  cursor: pointer;
  fill: transparent;
}
.interactive-map-page .courtyard-img .courtyard-group .courtyard-icon {
  fill: rgba(237, 187, 51, 0.8);
  stroke: rgba(0, 0, 0, 0.4705882353);
  stroke-width: 2px;
  transition: fill 200ms;
}
.interactive-map-page .courtyard-img .courtyard-group .courtyard-area {
  stroke-width: 4px;
  stroke-dasharray: 4px;
  fill: transparent;
  transition: fill 200ms;
}
.interactive-map-page .courtyard-img .courtyard-group .courtyard-area.stroke-yellow {
  stroke: #edbb33;
}
.interactive-map-page .courtyard-img .courtyard-group:hover .courtyard-icon {
  fill: #edbb33;
}
.interactive-map-page .courtyard-img .courtyard-group:hover .courtyard-area {
  fill: rgba(237, 187, 51, 0.2);
}
.interactive-map-page .courtyard-img .courtyard-layer {
  stroke: transparent;
  cursor: pointer;
  fill: transparent;
}
.interactive-map-page .courtyard-img .courtyard-layer:hover {
  stroke: #023b5b;
  fill: rgba(237, 187, 51, 0.2);
}

.modal-floorplan {
  max-width: 1400px;
}

.modal-floorplan .modal-header .close {
  color: #FFF;
}

.modal-floorplan .modal-floorplan-header {
  border-bottom: 2px solid #edbb33;
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 1rem;
  max-width: 100%;
}

.modal-floorplan .modal-floorplan-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-floorplan .modal-floorplan-body .modal-floorplan-img {
  padding: 0 1rem;
  max-width: 100%;
}

.modal-floorplan .modal-floorplan-body .modal-floorplan-img img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.modal-floorplan .modal-floorplan-body .modal-floorplan-text {
  line-height: 1.8;
  padding: 1rem;
  font-size: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.modal-floorplan .modal-floorplan-body .modal-floorplan-text p {
  max-width: 100%;
}

html.is-reveal-open, html.is-reveal-open body {
  min-height: 100%;
  overflow: hidden;
  position: fixed;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: scroll;
}

.reveal {
  z-index: 1006;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}

[data-whatinput=mouse] .reveal {
  outline: 0;
}

@media print, screen and (min-width: 64em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column {
  min-width: 0;
}

.reveal > :last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 64em) {
  .reveal {
    width: 600px;
    max-width: 75rem;
  }
}
.reveal.collapse {
  padding: 0;
}

@media print, screen and (min-width: 64em) {
  .reveal.tiny {
    width: 30%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 64em) {
  .reveal.small {
    width: 50%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 64em) {
  .reveal.large {
    width: 90%;
    max-width: 75rem;
  }
}
.reveal.full {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}

@media screen and (max-width: 63.9375em) {
  .reveal {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.close-button {
  position: absolute;
  color: #8a8a8a;
  cursor: pointer;
}

[data-whatinput=mouse] .close-button {
  outline: 0;
}

.close-button:focus, .close-button:hover {
  color: #0a0a0a;
}

.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

.close-button, .close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}
