/* Font Stuff */
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/* Variables Stuff */
/* Core Stuff */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html, button, input, select, textarea,
.pure-g [class*="pure-u"] {
  /* Set your content font stack here: */
  font-family: 'PT Sans', sans-serif; }

html {
  font-size: 100%; }

body {
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1c1c1c; }

a {
  color: darkgoldenrod;
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

pre {
  background: #F0F0F0;
  margin: 1rem 0;
  border-radius: 2px; }

blockquote {
  border-left: 10px solid #eee;
  margin: 0;
  padding: 0 2rem; }

/* Utility Classes */
.wrapper {
  margin: 0 1rem; }

.padding {
  padding: 1rem; }

.left {
  float: left; }

.right {
  float: right; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.text-left {
  text-align: left; }

/* Content Styling */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  min-height: 9rem;
  background-image: linear-gradient(180deg, white, transparent); }
  .header .padding {
    padding: 1rem 0; }
  .header a {
    color: inherit;
    text-decoration: none; }
  .header .logo {
    font-size: 2rem;
    padding: 0 1.2rem .2rem;
    background-color: whitesmoke; }

.main {
  margin-top: 9rem; }

.footer {
  background-color: whitesmoke;
  min-height: 5rem;
  border-top: .5rem solid darkgoldenrod; }

/* Menu Settings */
.main-nav {
  font-size: 1.5rem;
  font-weight: bold;
  font-style: italic; }

.main-nav ul {
  text-align: right;
  margin: 0;
  padding: 0; }

.main-nav ul li {
  display: inline-block;
  letter-spacing: normal;
  margin-left: .75rem; }

.main-nav ul li a {
  position: relative;
  display: block;
  padding: 0 1rem;
  white-space: nowrap;
  text-decoration: none;
  background-color: whitesmoke; }
  .main-nav ul li a.active {
    color: darkgoldenrod; }

/*Active dropdown nav item */
.main-nav ul li:hover > a {
  color: darkgoldenrod; }

/* Selected Dropdown nav item */
.main-nav ul li.selected > a {
  background-color: #fff;
  color: #175E91; }

/* Dropdown CSS */
.main-nav ul li {
  position: relative; }

.main-nav ul li ul {
  position: absolute;
  background-color: #1F8DD6;
  min-width: 100%;
  text-align: left;
  z-index: 999;
  display: none; }

.main-nav ul li ul li {
  display: block; }

/* Dropdown CSS */
.main-nav ul li ul ul {
  left: 100%;
  top: 0; }

/* Active on Hover */
.main-nav li:hover > ul {
  display: block; }

/* Child Indicator */
.main-nav .has-children > a {
  padding-right: 30px; }

.main-nav .has-children > a:after {
  font-family: FontAwesome;
  content: '\f107';
  position: absolute;
  display: inline-block;
  right: 8px;
  top: 0; }

.mobile-nav {
  display: none;
  top: 0;
  right: 0;
  z-index: 3; }
  .mobile-nav .button_container {
    position: absolute;
    top: 1rem;
    right: 1rem;
    height: 3.2rem;
    width: 3.2rem;
    background-color: whitesmoke;
    border: .6rem solid whitesmoke;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease, top 0.5s ease; }
    .mobile-nav .button_container:hover {
      opacity: .7; }
    .mobile-nav .button_container.active {
      position: fixed; }
      .mobile-nav .button_container.active .top {
        transform: translateY(0.8rem) translateX(0) rotate(45deg);
        background: darkgoldenrod; }
      .mobile-nav .button_container.active .middle {
        opacity: 0;
        background: darkgoldenrod; }
      .mobile-nav .button_container.active .bottom {
        transform: translateY(-0.8rem) translateX(0) rotate(-45deg);
        background: darkgoldenrod; }
    .mobile-nav .button_container span {
      background: #1c1c1c;
      border: none;
      height: .4rem;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      transition: all .35s ease;
      cursor: pointer; }
      .mobile-nav .button_container span:nth-of-type(2) {
        top: .8rem; }
      .mobile-nav .button_container span:nth-of-type(3) {
        top: 1.6rem; }

.overlay {
  position: fixed;
  top: 5rem;
  left: 0;
  margin: 0 1rem;
  width: calc(100% - 2rem);
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s; }
  .overlay.open {
    opacity: .95;
    visibility: visible;
    z-index: 3; }
  .overlay nav {
    position: relative;
    margin: 0 auto;
    text-align: center; }
  .overlay .overlay-menu {
    overflow-y: scroll;
    font-size: 2rem; }
    .overlay .overlay-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      padding: 0;
      margin: 1rem 0 5rem; }
      .overlay .overlay-menu ul li {
        padding: 0 1.25rem .2rem;
        background-color: whitesmoke;
        margin: .5rem 0; }
        .overlay .overlay-menu ul li a {
          color: #1C1C1C;
          font-weight: bold;
          font-style: italic; }
          .overlay .overlay-menu ul li a.active {
            color: darkgoldenrod; }

.anchor {
  margin-top: 9rem; }

.section.modular-text .text-wrapper {
  max-width: 56rem;
  margin-left: 4rem;
  padding: .25rem 1.25rem;
  background-color: whitesmoke; }
.section.modular-contact {
  min-height: calc(100vh - 14rem); }
  .section.modular-contact .block {
    position: relative; }
  .section.modular-contact .text-wrapper {
    max-width: 56rem;
    margin-left: 4rem;
    position: absolute;
    bottom: 0; }
    .section.modular-contact .text-wrapper h3 {
      padding: .5rem 1rem;
      background-color: whitesmoke;
      display: inline;
      font-style: italic; }
    .section.modular-contact .text-wrapper p {
      margin-left: 4rem; }
  .section.modular-contact .image-wrapper {
    padding: 1rem;
    background-color: whitesmoke; }
    .section.modular-contact .image-wrapper img {
      display: block;
      max-width: 100%; }
.section.modular-gallery {
  background-color: whitesmoke;
  position: relative; }
  .section.modular-gallery.padding {
    padding: 0; }
  .section.modular-gallery .swiper {
    height: 75vh;
    max-height: 75vh;
    padding: 1rem 0; }
    .section.modular-gallery .swiper .swiper-wrapper {
      cursor: grab; }
    .section.modular-gallery .swiper .swiper-slide {
      width: auto;
      max-width: 100%;
      margin-right: 1rem; }
      .section.modular-gallery .swiper .swiper-slide:last-child {
        margin-right: 0; }
      .section.modular-gallery .swiper .swiper-slide img {
        display: block;
        height: 100%;
        max-height: 100%; }
  .section.modular-gallery .swiper-button-prev,
  .section.modular-gallery .swiper-button-next {
    color: whitesmoke; }
    .section.modular-gallery .swiper-button-prev:hover,
    .section.modular-gallery .swiper-button-next:hover {
      color: darkgoldenrod; }
  .section.modular-gallery .swiper-pagination-progressbar {
    background: whitesmoke; }
    .section.modular-gallery .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
      background: darkgoldenrod; }
  .section.modular-gallery .swiper-pagination-progressbar.swiper-pagination-horizontal {
    height: 100%;
    z-index: 0; }
  .section.modular-gallery .swiper-pagination-bullet {
    background: darkgray; }
  .section.modular-gallery .swiper-pagination-bullet-active {
    background: darkgoldenrod; }
  .section.modular-gallery .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: auto; }

@media screen and (max-height: 35.5em) {
  html {
    font-size: 62.5%; } }
@media screen and (max-width: 35.5em) {
  html {
    font-size: 62.5%; }

  .header {
    min-height: 4rem; }

  .main-nav {
    display: none; }

  .mobile-nav {
    display: block; }

  .section.modular-contact .pure-u-1-2 {
    width: 100%; }
  .section.modular-contact .text-wrapper {
    position: relative; }
  .section.modular-text .text-wrapper {
    margin-left: 0; }
  .section.modular-gallery {
    background-color: whitesmoke;
    position: relative; }
    .section.modular-gallery.padding {
      padding: 0; }
    .section.modular-gallery .swiper {
      height: 60vh;
      max-height: 60vh; }
      .section.modular-gallery .swiper .swiper-wrapper {
        cursor: grab; }
      .section.modular-gallery .swiper .swiper-slide {
        width: auto;
        max-width: 100%;
        margin-right: 1rem; }
        .section.modular-gallery .swiper .swiper-slide img {
          display: block;
          height: auto;
          max-width: 100%;
          max-height: 100%;
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .section.modular-gallery .swiper-button-prev,
    .section.modular-gallery .swiper-button-next {
      display: none; } }
@media screen and (max-width: 48em) {
  .section.modular-contact .pure-u-1-2 {
    width: 100%; }
  .section.modular-contact .image-wrapper {
    margin-right: 4rem; }
  .section.modular-contact .text-wrapper {
    position: relative; }
  .section.modular-gallery {
    background-color: whitesmoke;
    position: relative; }
    .section.modular-gallery.padding {
      padding: 0; }
    .section.modular-gallery .swiper {
      height: 60vh;
      max-height: 60vh; }
      .section.modular-gallery .swiper .swiper-wrapper {
        cursor: grab; }
      .section.modular-gallery .swiper .swiper-slide {
        width: auto;
        max-width: 100%;
        margin-right: 1rem; }
        .section.modular-gallery .swiper .swiper-slide img {
          display: block;
          height: auto;
          max-width: 100%;
          max-height: 100%;
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .section.modular-gallery .swiper-button-prev,
    .section.modular-gallery .swiper-button-next {
      display: none; } }

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