@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;400&display=swap");
/* line 1, ../sass/_base.scss */
* {
  touch-action: manipulation;
  box-sizing: border-box;
}

/* line 5, ../sass/_base.scss */
.d-flex {
  display: flex;
}

/* line 9, ../sass/_base.scss */
.primary-bg {
  background-color: #C2B69B;
}

/* line 13, ../sass/_base.scss */
.justify-content-center {
  justify-content: center;
}

/* line 17, ../sass/_base.scss */
.collapse, .hidden {
  display: none;
}

/* line 21, ../sass/_base.scss */
.link {
  text-decoration: underline;
  cursor: pointer;
}

/* line 26, ../sass/_base.scss */
.text-right {
  text-align: right;
}

/* line 30, ../sass/_base.scss */
form {
  margin: 0 auto;
}
/* line 33, ../sass/_base.scss */
form label {
  color: #fff;
  font-weight: normal;
  margin: 10px 0;
}
/* line 38, ../sass/_base.scss */
form input, form textarea {
  line-height: 30px;
  padding: 8px 10px;
}
/* line 42, ../sass/_base.scss */
form input, form label, form textarea, form button {
  display: block;
  width: 100%;
}
/* line 47, ../sass/_base.scss */
form input, form button {
  border: solid 1px rgba(0, 0, 0, 0.4);
}
/* line 49, ../sass/_base.scss */
form input:focus, form input:active, form button:focus, form button:active {
  border: solid 1px rgba(0, 0, 0, 0.6);
}
/* line 53, ../sass/_base.scss */
form input:focus-visible, form button:focus-visible {
  outline: none;
  border: solid 1px black;
}
/* line 60, ../sass/_base.scss */
form textarea {
  min-height: 200px;
}
/* line 63, ../sass/_base.scss */
form button, form input[type="submit"] {
  color: #fff;
  cursor: pointer;
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.3);
  line-height: 50px;
  transition: background 0.8s ease 0s;
  text-transform: uppercase;
}
/* line 71, ../sass/_base.scss */
form button:hover, form input[type="submit"]:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fade-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-4rem);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes pop-in {
  0% {
    opacity: 0;
    transform: translateY(-4rem) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes rotate-up {
  100% {
    transform: rotateZ(-90deg);
  }
}
/* line 1, ../sass/_layout.scss */
body {
  font-family: "Barlow Condensed", serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

/* line 9, ../sass/_layout.scss */
.footer {
  background-color: #664C4B;
  padding: 25px 0;
}
/* line 12, ../sass/_layout.scss */
.footer ul {
  margin: 15px 0;
  color: #fff;
  list-style-type: none;
  margin: 0 auto;
  width: fit-content;
}
/* line 18, ../sass/_layout.scss */
.footer ul li {
  display: inline-block;
}
/* line 20, ../sass/_layout.scss */
.footer ul li a {
  font-size: 15px;
  color: #fff;
  margin: 0 15px;
  cursor: pointer;
  transition: color 0.8s ease 0s;
  text-decoration: none;
}
/* line 27, ../sass/_layout.scss */
.footer ul li a:hover {
  color: #C2B69B;
  text-decoration: none;
}

/* line 36, ../sass/_layout.scss */
.center-content {
  max-width: 700px;
  margin: 0 auto;
}

/* line 1, ../sass/_header.scss */
header {
  align-items: center;
  display: flex;
  font-size: 18px;
  height: 100vh;
  justify-content: end;
  overflow: hidden;
  position: relative;
  text-align: center;
}
/* line 10, ../sass/_header.scss */
header .logo {
  max-width: 250px;
  z-index: 1;
  height: auto;
  width: 100%;
  position: absolute;
  left: 10%;
  top: 50px;
  z-index: 1;
  height: auto;
}
@media screen and (min-width: 769px) {
  /* line 10, ../sass/_header.scss */
  header .logo {
    max-width: 400px;
  }
}
@media screen and (max-width: 380px) {
  /* line 10, ../sass/_header.scss */
  header .logo {
    max-width: 100px;
    width: 100%;
    position: absolute;
    right: 15px;
    bottom: 100px;
    top: unset;
    left: unset;
  }
}
/* line 34, ../sass/_header.scss */
header .main-header-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background-size: cover;
  bottom: 0;
  background-repeat: no-repeat;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  /* line 34, ../sass/_header.scss */
  header .main-header-bg {
    background-position: -300px center;
  }
}
@media screen and (max-width: 490px) {
  /* line 34, ../sass/_header.scss */
  header .main-header-bg {
    background-position: -370px center;
  }
}
@media screen and (max-width: 380px) {
  /* line 34, ../sass/_header.scss */
  header .main-header-bg {
    background-position: center center;
  }
}
/* line 53, ../sass/_header.scss */
header:before {
  animation: fade-slide-down 2s 0.5s cubic-bezier(0, 0.5, 0, 1) forwards;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* line 67, ../sass/_header.scss */
.header-title, .header-subtitle {
  color: #fff;
  z-index: 1000;
}

/* line 72, ../sass/_header.scss */
.header-subtitle {
  text-transform: uppercase;
  margin-bottom: 5rem;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}

/* line 80, ../sass/_header.scss */
.header-button {
  transform: translateZ(0.1px);
  position: relative;
  z-index: 10;
}

/* line 86, ../sass/_header.scss */
.animate-pop-in {
  animation: pop-in 0.6s cubic-bezier(0, 0.9, 0.3, 1.2) forwards;
  opacity: 0;
}

/* line 90, ../sass/_header.scss */
.animate-rotate-up {
  animation: rotate-up 0.6s cubic-bezier(0, 0.9, 0.3, 1.2) forwards;
  opacity: 1;
}

/* line 94, ../sass/_header.scss */
.rocky-dashed {
  animation-delay: .6s;
}

/* line 98, ../sass/_header.scss */
.header-title {
  animation-delay: 1s;
  transform: rotateY(90);
  margin-right: 0;
  font-weight: 200;
}

/* line 106, ../sass/_header.scss */
.header-subtitle {
  animation-delay: 1s;
}

/* line 111, ../sass/_header.scss */
.header-menu {
  position: absolute;
  left: 0;
  bottom: 69px;
  list-style-type: none;
  z-index: 100;
}
/* line 117, ../sass/_header.scss */
.header-menu li {
  margin-bottom: 10px;
  font-weight: 200;
  font-size: 30px;
  text-align: left;
}
/* line 123, ../sass/_header.scss */
.header-menu li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.8s ease 0s;
}
/* line 127, ../sass/_header.scss */
.header-menu li a:hover {
  color: #C2B69B;
}

/* line 1, ../sass/_elements.scss */
.posts {
  margin: 0;
  color: #fff;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 0;
}
/* line 8, ../sass/_elements.scss */
.posts .post-item {
  max-width: 250px;
}
/* line 10, ../sass/_elements.scss */
.posts .post-item h1 {
  font-weight: 400;
}
/* line 13, ../sass/_elements.scss */
.posts .post-item img {
  max-width: 200px;
  height: auto;
}
/* line 17, ../sass/_elements.scss */
.posts .post-item p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 200;
}

/* line 25, ../sass/_elements.scss */
.dates-section {
  padding: 80px 20px 100px 20px;
  max-width: 1024px;
  margin: 0 auto;
}
/* line 31, ../sass/_elements.scss */
.dates-section__event-list__row {
  border-bottom: solid 1px #C2B69B;
}
/* line 33, ../sass/_elements.scss */
.dates-section__event-list__row .event {
  display: grid;
  grid-template-columns: repeat(3, auto);
}
@media (min-width: 768px) {
  /* line 33, ../sass/_elements.scss */
  .dates-section__event-list__row .event {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* line 45, ../sass/_elements.scss */
.dates-section__event-list__row .event .link {
  color: #C2B69B;
  text-align: right;
}
/* line 54, ../sass/_elements.scss */
.dates-section form {
  margin-bottom: 40px;
  padding: 0;
}
/* line 57, ../sass/_elements.scss */
.dates-section form label {
  color: #C2B69B;
}

/* line 68, ../sass/_elements.scss */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 60px;
}
/* line 76, ../sass/_elements.scss */
.contact-section__contact-form {
  flex: 1;
}
/* line 78, ../sass/_elements.scss */
.contact-section__contact-form form {
  min-width: 300px;
  max-width: 500px;
}
/* line 84, ../sass/_elements.scss */
.contact-section__video {
  flex: 1;
  margin: 80px auto;
}
/* line 87, ../sass/_elements.scss */
.contact-section__video .wp-video {
  display: flex;
  justify-content: center;
}
/* line 90, ../sass/_elements.scss */
.contact-section__video .wp-video video {
  min-width: 300px;
  max-width: 500px;
}
/* line 98, ../sass/_elements.scss */
.contact-section h1 {
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 30px 0;
}

/* line 110, ../sass/_elements.scss */
.content-container {
  margin: 60px auto;
  padding: 0 25px;
}
/* line 113, ../sass/_elements.scss */
.content-container video {
  max-height: 300px;
}

/* line 118, ../sass/_elements.scss */
form {
  padding: 0 25px;
}

/* line 122, ../sass/_elements.scss */
.wpforms-confirmation-container-full {
  text-align: center;
  color: #fff;
}
