@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
span.gold-text {
  color: #C19B43;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  span.gold-text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 540px) {
  span.gold-text {
    font-size: 18px;
  }
}

.block-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 400;
  padding-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .block-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .block-title {
    font-size: 30px;
  }
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: 84px;
  font-weight: 400;
  padding-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main-title {
    font-size: 64px;
  }
}
@media only screen and (max-width: 540px) {
  .main-title {
    font-size: 44px;
  }
}

main > section {
  padding: 75px 0;
}

img.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

span.gold-text {
  color: #C19B43;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  span.gold-text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 540px) {
  span.gold-text {
    font-size: 18px;
  }
}

.block-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 400;
  padding-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .block-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .block-title {
    font-size: 30px;
  }
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: 84px;
  font-weight: 400;
  padding-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main-title {
    font-size: 64px;
  }
}
@media only screen and (max-width: 540px) {
  .main-title {
    font-size: 44px;
  }
}

main > section {
  padding: 75px 0;
}

img.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

#header .top-header {
  display: flex;
  padding: 0.75rem;
  justify-content: space-between;
  align-items: center;
}
#header .top-header .right {
  display: flex;
  align-items: center;
}
#header .top-header .right .language-switcher {
  margin-right: 1rem;
}
#header .top-header .right .language-switcher img {
  width: 28px;
  margin: 0 5px;
}
#header .bottom-header {
  display: flex;
  justify-content: center;
}
#header .bottom-header ul {
  display: flex;
  align-items: center;
  list-style: none;
}
#header .bottom-header ul li {
  padding: 0.5rem 1rem;
}
#header .bottom-header ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
#header .bottom-header ul li a::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 2px;
  width: 0;
  transition: all 0.3s ease;
  background-color: #000;
}
#header .bottom-header ul li a:hover::before {
  transition: all 0.3s ease;
  width: 100%;
}
#header .mobile-header {
  display: none;
}
@media only screen and (max-width: 767px) {
  #header .top-header, #header .bottom-header {
    display: none;
  }
  #header .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #fff;
    width: 100%;
  }
  #header .mobile-header .center {
    z-index: 99;
  }
  #header .mobile-header .center a {
    display: flex;
    margin-right: 20px;
  }
  #header .mobile-header .center a img {
    max-width: 300px;
  }
  #header .mobile-header .burger {
    display: flex;
    flex-direction: column;
    z-index: 99;
  }
  #header .mobile-header .burger .bar {
    width: 40px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  #header .mobile-header .burger.closed .bar {
    transition: all 0.3s ease;
  }
  #header .mobile-header .burger.closed .bar:nth-child(1) {
    transform: rotateZ(45deg) translateY(6px);
  }
  #header .mobile-header .burger.closed .bar:nth-child(2) {
    display: none;
  }
  #header .mobile-header .burger.closed .bar:nth-child(3) {
    transform: rotateZ(-45deg) translateY(-6px);
  }
  #header .mobile-header .mobile-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s ease;
    transform: translateY(0);
  }
  #header .mobile-header .mobile-menu .menu-header-menu-container {
    margin-bottom: 50px;
  }
  #header .mobile-header .mobile-menu .menu-header-menu-container ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #header .mobile-header .mobile-menu .menu-header-menu-container ul li {
    margin-bottom: 20px;
  }
  #header .mobile-header .mobile-menu .menu-header-menu-container ul li:last-child {
    margin-bottom: 0;
  }
  #header .mobile-header .mobile-menu .menu-header-menu-container ul li a {
    font-weight: 500;
    font-size: 20px;
  }
  #header .mobile-header .mobile-menu .language-switcher {
    margin: 2rem 0;
  }
  #header .mobile-header .mobile-menu .language-switcher img {
    width: 26px;
    margin: 0 10px;
  }
  #header .mobile-header .mobile-menu .social-icons-parent a {
    margin: 0 10px;
  }
  #header .mobile-header .mobile-menu .social-icons-parent a i {
    font-size: 24px;
  }
  #header .mobile-header .mobile-menu.hidden {
    transform: translateY(-100%);
    transition: all 0.3s ease;
  }
}

span.gold-text {
  color: #C19B43;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  span.gold-text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 540px) {
  span.gold-text {
    font-size: 18px;
  }
}

.block-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 400;
  padding-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .block-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .block-title {
    font-size: 30px;
  }
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: 84px;
  font-weight: 400;
  padding-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main-title {
    font-size: 64px;
  }
}
@media only screen and (max-width: 540px) {
  .main-title {
    font-size: 44px;
  }
}

main > section {
  padding: 75px 0;
}

img.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.banner {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3764705882);
  z-index: 1;
}
.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .texts {
  z-index: 2;
}
.banner .texts .line {
  text-align: center !important;
}
.banner .texts p {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.banner .texts p .char {
  font-size: 8rem;
  text-transform: uppercase;
  background: linear-gradient(0deg, #c19b43 18.76%, #ecdda2 47.4%, #c19b43 79.86%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% auto;
  transform: translateY(200px);
}
@media only screen and (max-width: 767px) {
  .banner .texts p .char {
    font-size: 5rem;
  }
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.text-content img {
  margin-bottom: 75px;
}
.text-content .description {
  max-width: 600px;
  text-align: center;
}
.text-content .description ul {
  text-align: start;
}

.left-right-content {
  display: flex;
}
.left-right-content.image-right {
  flex-direction: row-reverse;
}
.left-right-content img.large-image {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.left-right-content > div {
  width: 50%;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.left-right-content > div img {
  margin-bottom: 50px;
}
.left-right-content > div p {
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 540px) {
  .left-right-content {
    flex-direction: column-reverse !important;
  }
  .left-right-content img.large-image, .left-right-content > div {
    width: 100%;
  }
}

.gallery {
  position: relative;
}
.gallery .container .gallery-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gallery .container .gallery-content .images {
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 1024px) {
  .gallery .container .gallery-content .images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .gallery .container .gallery-content .images {
    grid-template-columns: 1fr;
  }
}
.gallery .container .gallery-content .images img {
  max-width: 100%;
  height: auto;
  cursor: pointer;
}

.contact {
  position: relative;
}
.contact .container .contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .container .contact-content .box {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
}
.contact .container .contact-content .box img {
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 1024px) {
  .contact .container .contact-content .box img {
    display: none;
  }
}
.contact .container .contact-content .box .contact {
  max-width: 100%;
}
@media only screen and (max-width: 1024px) {
  .contact .container .contact-content .box .contact {
    width: 100%;
  }
}
.contact .container .contact-content .locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}
@media only screen and (max-width: 767px) {
  .contact .container .contact-content .locations {
    gap: 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .contact .container .contact-content .locations {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 660px) {
  .contact .container .contact-content .locations {
    grid-template-columns: 1fr;
  }
}
.contact .container .contact-content .locations .location {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
@media only screen and (max-width: 660px) {
  .contact .container .contact-content .locations .location {
    align-items: center;
  }
}
.contact .container .contact-content .locations .location strong {
  font-weight: 500;
  font-size: 18px;
}
@media only screen and (max-width: 660px) {
  .contact .container .contact-content .locations .location .address {
    text-align: center;
  }
}
.contact .container .contact-content .locations .location .google-maps {
  width: 300px;
  height: 300px;
}
.contact .container .contact-content .locations .location .google-maps iframe {
  width: 100%;
  height: 100%;
}

span.gold-text {
  color: #C19B43;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  span.gold-text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 540px) {
  span.gold-text {
    font-size: 18px;
  }
}

.block-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 400;
  padding-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .block-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .block-title {
    font-size: 30px;
  }
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: 84px;
  font-weight: 400;
  padding-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main-title {
    font-size: 64px;
  }
}
@media only screen and (max-width: 540px) {
  .main-title {
    font-size: 44px;
  }
}

main > section {
  padding: 75px 0;
}

img.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.gallery-popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 999;
}
.gallery-popup.show {
  transition: all 0.3s ease;
  transform: translateY(0);
}
.gallery-popup .close-popup {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.gallery-popup .close-popup i {
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.gallery-popup .gallery-box .swiper {
  max-width: 1440px;
  width: 100%;
}
.gallery-popup .gallery-box .swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
.gallery-popup .gallery-box .swiper .swiper-slide img {
  margin: 0 20px;
  max-width: 90vw;
}

#footer {
  padding: 10px 0;
}
#footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer .container .center img {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  #footer .container {
    flex-direction: column;
  }
  #footer .container > div {
    margin: 10px 0;
  }
}

span.gold-text {
  color: #C19B43;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  span.gold-text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 540px) {
  span.gold-text {
    font-size: 18px;
  }
}

.block-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 400;
  padding-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .block-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .block-title {
    font-size: 30px;
  }
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: 84px;
  font-weight: 400;
  padding-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main-title {
    font-size: 64px;
  }
}
@media only screen and (max-width: 540px) {
  .main-title {
    font-size: 44px;
  }
}

main > section {
  padding: 75px 0;
}

img.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.wpcf7-form .row {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  .wpcf7-form .row {
    flex-direction: column;
  }
}
.wpcf7-form .row label {
  color: #818181;
}
.wpcf7-form .row .wpcf7-text, .wpcf7-form .row select, .wpcf7-form .row textarea {
  padding: 1rem;
  border: 1px solid rgba(129, 129, 129, 0.69);
  outline: none;
  width: 100%;
  font-family: "Jost", sans-serif;
}
.wpcf7-form .row p, .wpcf7-form .row span {
  width: 100%;
  display: block;
}
.wpcf7-form .wpcf7-submit {
  background-color: #C19B43;
  width: 100%;
  padding: 1rem;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #C19B43;
  outline: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
}

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

html, body {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1480px) {
  .container {
    padding: 0 20px;
  }
}

a {
  text-decoration: none;
  color: #000;
}

.btn {
  padding: 1rem;
  cursor: pointer;
  text-decoration: none;
}
.btn.btn-primary {
  color: #fff;
  background-color: #C19B43;
}

.social-icons-parent {
  display: flex;
  align-items: center;
}
.social-icons-parent > div {
  padding-right: 1rem;
}
.social-icons-parent > div:last-child {
  padding-right: 0;
}
.social-icons-parent > div a {
  color: #000;
}

.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer, .otgs-development-site-front-end {
  display: none;
}/*# sourceMappingURL=styles.css.map */