@font-face {
  font-family: 'GeorgiaBallparkScript';
  src: url("../fonts/GeorgiaBallpark Script.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GeorgiaBallparkSerif';
  src: url("../fonts/GeorgiaBallpark Serif.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: #ffffff;
  font-family: 'GeorgiaBallparkScript', sans-serif;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 90px;
  background-color: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-family: "Lato", Sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .h-container {
  max-width: 1430px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  margin: 0 auto;
}

header .h-container .h-logo a {
  width: 100%;
  max-width: max-content;
  text-decoration: none;
}

header .h-container .h-logo a img, header .h-container .h-logo a svg {
  width: 100%;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

header .h-container .h-menu-wrap ul {
  justify-content: center;
  width: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
}

header .h-container .h-menu-wrap ul li {
  margin-right: 45px;
}

header .h-container .h-menu-wrap ul li a {
  color: #fff;
  text-decoration: none;
  font-family: "Lato", Sans-serif;
  line-height: 30px;
  font-size: 20px;
}

header .h-container .h-menu-wrap ul li:last-of-type {
  margin-right: 0;
}

header .h-container .h-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: end;
}

header .h-container .h-btn-wrap .search-btn {
  margin-right: 35px;
}

header .h-container .h-btn-wrap .mobile-menu-btn img:last-of-type {
  display: none;
}

header .mobile-menu-btn,
header .search-btn,
header .mobile-menu-btn {
  cursor: pointer;
}

.mobile-menu-overlay {
  background-color: rgba(30, 30, 30, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  display: none;
  opacity: 0;
}

.mobile-menu-wrap {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 9999;
  transition: top 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  background: #191919;
  padding: 0;
}

.mobile-menu-wrap.active {
  top: 0;
}

.mobile-menu-wrap .mobile-menu-header,
.mobile-menu-wrap .mobile-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
}

.mobile-menu-wrap .mobile-menu-header .mob-logo {
  width: max-content;
  display: block;
}

.mobile-menu-wrap .mobile-menu-header .mob-logo img,
.mobile-menu-wrap .mobile-menu-header .mob-logo svg {
  width: 120px;
  display: block;
  object-fit: contain;
}

.mobile-menu-wrap .mobile-menu-header .h-btn-wrap {
  display: flex;
  align-items: center;
}

.mobile-menu-wrap .mobile-menu-header .h-btn-wrap img {
  width: 30px;
}

.mobile-menu-wrap .mobile-menu-header .h-btn-wrap .search-btn {
  margin-right: 15px;
  display: none;
}

.mobile-menu-wrap .mobile-menu-footer {
  margin-bottom: 25px;
}

.mobile-menu-wrap .mobile-menu-footer ul {
  display: flex;
  list-style-type: none;
  font-family: "Lato", sans-serif;
}

.mobile-menu-wrap .mobile-menu-footer ul li {
  margin-right: 25px;
}

.mobile-menu-wrap .mobile-menu-footer ul li:last-of-type {
  margin-right: 0;
}

.mobile-menu-wrap .mobile-menu-footer ul li a {
  padding: 8px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
}

.mobile-menu-wrap .mobile-menu-content {
  padding-top: 54px;
  background: #191919;
  display: flex;
  overflow-y: auto;
}

.mobile-menu-wrap .mobile-menu-content .menu, .mobile-menu-wrap .mobile-menu-content .menu-global-menu-container, .mobile-menu-wrap .mobile-menu-content .menu-main-menu-en-container {
  width: 100%;
}

.mobile-menu-wrap .mobile-menu-content .menu ul, .mobile-menu-wrap .mobile-menu-content .menu-global-menu-container ul, .mobile-menu-wrap .mobile-menu-content .menu-main-menu-en-container ul {
  list-style: none;
  padding: 0;
}

.mobile-menu-wrap .mobile-menu-content .menu ul li, .mobile-menu-wrap .mobile-menu-content .menu-global-menu-container ul li, .mobile-menu-wrap .mobile-menu-content .menu-main-menu-en-container ul li {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-wrap .mobile-menu-content .menu ul li:nth-child(even), .mobile-menu-wrap .mobile-menu-content .menu-global-menu-container ul li:nth-child(even), .mobile-menu-wrap .mobile-menu-content .menu-main-menu-en-container ul li:nth-child(even) {
  transition-delay: 0.1s;
}

.mobile-menu-wrap .mobile-menu-content .menu ul li:nth-child(odd), .mobile-menu-wrap .mobile-menu-content .menu-global-menu-container ul li:nth-child(odd), .mobile-menu-wrap .mobile-menu-content .menu-main-menu-en-container ul li:nth-child(odd) {
  transition-delay: 0.2s;
}

.mobile-menu-wrap .mobile-menu-content .menu ul li.show, .mobile-menu-wrap .mobile-menu-content .menu-global-menu-container ul li.show, .mobile-menu-wrap .mobile-menu-content .menu-main-menu-en-container ul li.show {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-wrap .mobile-menu-content .menu ul li a, .mobile-menu-wrap .mobile-menu-content .menu-global-menu-container ul li a, .mobile-menu-wrap .mobile-menu-content .menu-main-menu-en-container ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  padding: 25px 25px;
  display: flex;
}

.mobile-menu-wrap .mobile-menu-content .menu ul li a:hover, .mobile-menu-wrap .mobile-menu-content .menu-global-menu-container ul li a:hover, .mobile-menu-wrap .mobile-menu-content .menu-main-menu-en-container ul li a:hover {
  background-color: #f6f1ea;
  color: #595249;
}

.mobile-menu-wrap .mobile-menu-btn,
.mobile-menu-wrap .search-btn,
.mobile-menu-wrap .mobile-menu-btn {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'GeorgiaBallparkSerif', serif;
}

.site-main h1, .site-main h2, .site-main h3, .site-main h4, .site-main h5, .site-main h6 {
  font-family: 'GeorgiaBallparkSerif', serif !important;
}

.cfont {
  font-family: 'GeorgiaBallparkSerif', sans-serif !important;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  color: #fff;
  font-family: 'GeorgiaBallparkSerif', serif !important;
}

footer a {
  color: #fff;
}

.wpcf7-form input {
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #B9A283;
  padding: 10px 0;
  outline: none;
  min-height: 60px;
  width: 100% !important;
}

.wpcf7-form .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-form .wpcf7-not-valid {
  border-bottom-color: red !important;
}

.wpcf7-form .wpcf7-submit {
  width: 230px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: "Lato", Sans-serif;
  border-radius: 35px;
  border: 1px solid #B9A283;
  margin-top: 50px;
  color: #B9A283;
  font-size: 20px;
  cursor: pointer;
  background-color: transparent;
}

.wpcf7-form .wpcf7-submit svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin-left: 8px;
  vertical-align: middle;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  color: #b9a283 !important;
  font-size: 13px !important;
  border-width: 1px !important;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  color: #b9a283 !important;
  border-width: 1px !important;
}

.wpcf7-form {
  font-family: "Lato", sans-serif !important;
}

@media (max-width: 768px) {
  .h-menu-wrap .menu, .h-menu-wrap .menu-global-menu-container, .h-menu-wrap .menu-main-menu-en-container {
    display: none;
  }
}
/*# sourceMappingURL=main.css.map */