@charset "UTF-8";
@keyframes slideIn {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slideOut {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
#menu-primary-menu .current-menu-item a {
  color: #a3c0e6;
  font-weight: bold;
}

#mobile-menu-wrapper {
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
  justify-items: center;
  position: fixed;
  z-index: 50;
  height: 100vh;
  overflow-y: scroll;
}
#mobile-menu-wrapper.slideIn {
  animation: slideIn 0.5s ease-in-out;
}
#mobile-menu-wrapper.slideOut {
  animation: slideOut 0.5s ease-in-out;
}
#mobile-menu-wrapper.hidden {
  display: none;
}
#mobile-menu-wrapper #negative-space {
  height: 100vh;
  flex-grow: 1;
}
#mobile-menu-wrapper #content-space {
  overflow-y: scroll;
  background: #a3c0e6;
  height: 100%;
  width: 250px;
  box-shadow: 0px 0px 100px 50px rgba(114, 19, 19, 0.25);
  padding: 40px;
  color: #fff;
}
#mobile-menu-wrapper #content-space p {
  margin-top: 10px;
}
#mobile-menu-wrapper #content-space #mobile-menu ul li {
  padding: 10px 0px;
}
#mobile-menu-wrapper #content-space #mobile-menu ul li.menu-item-has-children {
  font-style: italic;
}
#mobile-menu-wrapper #content-space #mobile-menu ul li a {
  color: #fff;
  transition: all 0.25s ease-in-out;
}
#mobile-menu-wrapper #content-space #mobile-menu ul li a:hover {
  color: #a3c0e6;
}
#mobile-menu-wrapper #content-space #mobile-menu ul li .sub-menu {
  margin-left: 15px;
}

header #primary-menu #menu-primary-new-menu .current-menu-item a {
  color: #000;
  font-weight: bold;
}

/* mobile menu */
@media screen and (max-width: 960px) {
  #primary-menu .menu-item-has-children .sub-menu {
    display: block !important;
  }
  #primary-menu {
    padding-left: 0px;
  }
  #primary-menu .menu-item-has-children li {
    padding: 5px 0px;
  }
  #primary-menu .menu-item-has-children .sub-menu li {
    padding-left: 15px;
  }
}
/* desktop menu */
@media screen and (min-width: 960px) {
  /* hide sub menus */
  #primary-menu .menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    background: #a3c0e6;
    z-index: 50;
    padding: 5px 15px 10px 0px;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.15);
  }
  /* sub menu items */
  #primary-menu .menu-item-has-children .sub-menu li {
    padding: 2.5px 0px;
  }
  #primary-menu .menu-item-has-children .sub-menu li a {
    color: #000;
  }
  /* add arrow */
  #primary-menu .menu-item-has-children:after {
    content: "▼";
    position: relative;
    font-size: 7px;
    bottom: 3px;
    left: 2px;
  }
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  color: #fff;
  cursor: pointer;
  padding: 18px 0px 0px 0px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin: 15px auto 20px auto;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion:after {
  content: "➕"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #fff;
  float: right;
  position: relative;
  right: -5px;
  margin-left: 5px;
}

.active:after {
  content: "➖"; /* Unicode character for "minus" sign (-) */
}

html {
  background: #fff;
  margin: 0 !important;
}

body {
  font-family: "DM Sans", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

.header-font, h1, h2, h3, h4, h5 {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.youtube-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.youtube-container iframe, .youtube-container object, .youtube-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-form-bg {
  background: url("../assets/contact-image.webp") no-repeat center;
  background-size: cover;
  max-width: 350px;
}

.footer-host-bg {
  background: url("../assets/footer-host-bg.webp") no-repeat center;
  background-size: cover;
}

.banner-header {
  background: url("../assets/banner.webp") no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 500px) {
  .custom-logo {
    max-width: 150px;
    height: auto;
  }
}

.contact-form input, .contact-form textarea {
  border: 1px solid #ccc;
  width: 100%;
}
.contact-form p {
  margin-bottom: 10px;
}
.contact-form input {
  padding: 0px 5px;
  margin: 5px 0px;
}
.contact-form textarea {
  margin-top: 5px;
  padding: 0px 5px;
}
.contact-form input[type=submit] {
  background: green;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
}
.contact-form input[type=submit]:hover {
  filter: brightness(1.2);
}

.entry-content img {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
}
.entry-content figcaption {
  color: #a3c0e6;
  padding: 0px;
  margin: 0px;
}
.entry-content figure {
  width: 100% !important;
  color: #888;
  padding-bottom: 30px;
}
.entry-content p {
  margin-bottom: 15px;
}
.entry-content h2 {
  font-size: 21px;
  color: #a3c0e6;
}
.entry-content a {
  text-decoration: underline;
}

.main-hero {
  background: url("../assets/main-hero.webp") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 784px) {
  .main-hero {
    background: url("../assets/main-hero-mobile-v3.webp") no-repeat center;
  }
}

.form-container {
  background: url("../assets/vibrant-bg.webp") no-repeat center;
  background-size: cover;
}

.plain-template-container h1 {
  font-size: 30px;
}
.plain-template-container h2 {
  font-size: 26px;
}
.plain-template-container h3 {
  font-size: 21px;
}

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