.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}
.container.container--narrow {
  max-width: 1100px;
}

.row {
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
}
.row.row-no-padding {
  padding: 0;
}
.row.row-no-padding > .column {
  padding: 0;
}
.row.row-wrap {
  flex-wrap: wrap;
}
.row.row-top {
  align-items: flex-start;
}
.row.row-bottom {
  align-items: flex-end;
}
.row.row-center {
  align-items: center;
}
.row.row-stretch {
  align-items: stretch;
}
.row.row-baseline {
  align-items: baseline;
}
.row .column {
  display: block;
  flex: 1 1 auto;
  margin-left: 0;
  max-width: 100%;
  width: 100%;
  padding-bottom: 10px;
}
.row .column.column-offset-10 {
  margin-left: 10%;
}
.row .column.column-offset-20 {
  margin-left: 20%;
}
.row .column.column-offset-25 {
  margin-left: 25%;
}
.row .column.column-offset-33, .row .column.column-offset-34 {
  margin-left: 33.3333%;
}
.row .column.column-offset-50 {
  margin-left: 50%;
}
.row .column.column-offset-66, .row .column.column-offset-67 {
  margin-left: 66.6666%;
}
.row .column.column-offset-75 {
  margin-left: 75%;
}
.row .column.column-offset-80 {
  margin-left: 80%;
}
.row .column.column-offset-90 {
  margin-left: 90%;
}
@media screen and (min-width: 1024px) {
  .row .column.column-10 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .row .column.column-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row .column.column-25, .row .column.column-1\/4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row .column.column-33, .row .column.column-34, .row .column.column-1\/3 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .row .column.column-40 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .row .column.column-5\/12 {
    flex: 0 0 41.6666%;
    max-width: 41.6666%;
  }
  .row .column.column-50 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row .column.column-7\/12 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  .row .column.column-60 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .row .column.column-66, .row .column.column-67, .row .column.column-2\/3 {
    flex: 0 0 66.6666%;
    max-width: 66.6666%;
  }
  .row .column.column-75 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .row .column.column-80 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .row .column.column-90 {
    flex: 0 0 90%;
    max-width: 90%;
  }
}
.row .column.column-top {
  align-self: flex-start;
}
.row .column.column-bottom {
  align-self: flex-end;
}
.row .column.column-center {
  align-self: center;
}

@media (min-width: 1024px) {
  .row {
    flex-direction: row;
  }

  .row .column {
    margin-bottom: inherit;
    padding: 0 1rem;
  }
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  box-sizing: border-box;
}

body {
  font-family: ratiomodern, serif;
  color: #5d6159;
  line-height: 1.2;
}

img {
  display: block;
  max-width: 100%;
}

body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus,
body:not(.user-is-tabbing) a:focus {
  outline: none;
}

.sr-only {
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
}

.slick-slide:not(.slick-active) {
  transition-delay: 500ms !important;
}

.site-wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.header {
  width: 100%;
  height: 100vh;
  background-image: url("../img/header-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header__logo {
  max-width: 80%;
}
@media screen and (min-width: 1024px) {
  .header .header__logo {
    max-width: 60%;
  }
}
.header .header__logo.uk-animation-fade {
  animation-duration: 1.25s;
}

.leaf {
  height: 100vh;
  width: 100%;
  position: relative;
}
.leaf .leaf__slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leaf #slide-1, .leaf #slide-3 {
  background-image: url("../img/bg-texture.jpg");
}
.leaf #slide-1 {
  z-index: 2;
}
.leaf #slide-2 .leaf__img-wrap img {
  margin: 10px 0;
}
@media screen and (min-width: 1024px) {
  .leaf #slide-2 .leaf__img-wrap {
    margin: 20px 0;
  }
}
.leaf #slide-3 {
  z-index: -1;
}
.leaf .leaf__img-wrap {
  width: 300px;
}
@media screen and (min-width: 768px) {
  .leaf .leaf__img-wrap {
    width: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .leaf .leaf__img-wrap {
    width: 900px;
  }
}
.leaf .leaf__copy {
  font-family: baskerville-urw, serif;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .leaf .leaf__copy {
    font-size: 2.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .leaf .leaf__copy {
    font-size: 3.5rem;
  }
}

.links {
  width: 100%;
  min-height: 100vh;
  background-image: url("../img/woodsy-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
@media screen and (min-width: 1024px) {
  .links {
    padding: 200px;
  }
}
.links .links__link-wrap {
  text-align: center;
  padding: 20px 0;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .links .links__link-wrap {
    padding: 40px 0;
  }
}
.links .links__link-wrap:after {
  content: "";
  position: absolute;
  width: 25%;
  height: 1px;
  background-color: #ffffff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.links .links__link-wrap:last-child:after {
  display: none;
}
.links .links__link-wrap .links__link {
  color: #ffffff;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 2.5rem;
  letter-spacing: 0.3em;
  margin-left: 0.3em;
  transform: scale(1);
  transition: transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .links .links__link-wrap .links__link {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .links .links__link-wrap .links__link {
    font-size: 5rem;
  }
}
.links .links__link-wrap .links__link:hover {
  transform: scale(1.03);
}
.links .links__logo {
  width: 50px;
  margin: 50px auto 0;
}
@media screen and (min-width: 1024px) {
  .links .links__logo {
    width: 85px;
  }
}

.discover {
  padding: 50px 0;
  background: #e6e5e3;
}
@media screen and (min-width: 1024px) {
  .discover {
    padding: 100px 0;
  }
}
.discover .discover__h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.3em;
}
.discover .discover__slide {
  padding: 10px;
}
.discover .discover__img {
  margin-bottom: 10px;
}
.discover .discover__copy {
  font-family: ratio-modern-sc, serif;
  color: #5d6159;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .discover .discover__copy {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1280px) {
  .discover .discover__copy {
    font-size: 1.5rem;
    max-width: 225px;
  }
}

.footer {
  padding: 50px 0;
  background: #015486;
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: 75px 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer .footer__row {
    align-items: center;
  }
}
.footer .footer__logo {
  margin-bottom: 20px;
}
.footer .footer__logo .footer__logo-img {
  width: 250px;
}
@media screen and (min-width: 1024px) {
  .footer .footer__logo .footer__logo-img {
    width: 350px;
  }
}
.footer .footer__copy {
  color: #00aeef;
  text-transform: uppercase;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .footer .footer__copy {
    flex-direction: row;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1600px) {
  .footer .footer__copy {
    font-size: 1.125rem;
  }
}
.footer .footer__address {
  margin-bottom: 20px;
  margin-right: 60px;
}
.footer .footer__links-col {
  margin-right: 30px;
}
.footer .footer__links {
  margin-bottom: 20px;
  margin-right: 30px;
}
.footer .footer__link {
  color: #00aeef;
}
.footer .footer__link:hover {
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .footer .footer__social {
    flex-direction: column;
  }
}
.footer .footer__social .footer__social-img {
  width: 25px;
  margin-right: 15px;
  opacity: 0.5;
}
@media screen and (min-width: 1024px) {
  .footer .footer__social .footer__social-img {
    margin-bottom: 15px;
  }
}

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