@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: #cbb873;
  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;
}
#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 {
  background: #cbb873;
  height: 100%;
  width: 250px;
  box-shadow: 0px 0px 100px 50px rgba(0, 0, 0, 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: yellow;
}
#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: #fff;
    z-index: 10;
    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;
  }
  /* 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: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin: 15px auto 20px auto;
}
.accordion:hover {
  background: #eee;
}

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

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

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

.swiper {
  max-width: 900px;
  margin: 0 auto;
  height: 150px;
}

.swiper-pagination-bullet-active {
  background: #cbb873 !important;
}

html {
  background: #fff;
}

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

.header-font, h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
}

.page-header {
  background: url("../assets/page-hero.webp") no-repeat center;
  background-size: cover;
  color: #fff;
  padding: 90px 30px;
}

.form-container {
  background: url("../assets/free-quote-bg.webp") no-repeat center;
  background-size: cover;
  box-shadow: 0px 0px 0px 1000px rgba(234, 234, 234, 0.9) inset;
}
@media screen and (min-width: 782px) {
  .form-container {
    background: none;
  }
}

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

.header-logo img {
  max-width: 250px;
  height: auto;
}

.contact-form input, .contact-form textarea {
  border: 1px solid #ccc;
  padding: 0px 5px;
  color: #001;
  width: 100%;
}
.contact-form p {
  margin-bottom: 10px;
}
.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);
}

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