@charset "UTF-8";
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.woff2") format("woff2"), url("../fonts/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Light.woff2") format("woff2"), url("../fonts/Rubik-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2"), url("../fonts/Rubik-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
    font-family: "Rubik";
    src:
        url("../fonts/Rubik-Medium.woff2") format("woff2"),
        url("../fonts/Rubik-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: "PlayfairDisplay";
  src: url("../fonts/PlayfairDisplay-Bold.woff2") format("woff2"), url("../fonts/PlayfairDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PlayfairDisplay";
  src: url("../fonts/PlayfairDisplay-Regular.woff2") format("woff2"), url("../fonts/PlayfairDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik";
  overflow-x: hidden;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  padding: 0;
  position: relative;
}

.page-width {
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1600px) {
  .page-width {
    max-width: 80%;
  }
}
@media only screen and (max-width: 900px) {
  .page-width {
    max-width: 90%;
  }
}

.page-padding {
  padding: 70px 0;
}
@media screen and (max-width: 575px) {
  .page-padding {
    padding: 50px 0;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

.btn {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  background-color: #CFA670;
  border: none;
  text-align: center;
  padding: 20px 50px;
  transition: all 0.5s;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  position: relative;
}
.btn::after {
  background: #fff;
  content: "";
  height: 155px;
  left: -115px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 80px;
}
@media screen and (max-width: 1399px) {
  .btn {
    font-size: 16px;
    padding: 15px 40px;
  }
}
@media screen and (max-width: 575px) {
  .btn {
    font-size: 15px;
  }
}

.btn:hover::after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.light-btn {
  border: 1px solid #CFA670;
  color: #CFA670;
  background-color: transparent;
}

.light-btn:hover {
  color: #fff;
  background-color: #CFA670;
}
.light-btn:hover::after {
  display: none;
}

p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #989898;
}
@media only screen and (max-width: 1600px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 1399px) {
  p {
    font-size: 14px;
    line-height: 23px;
  }
}
p a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #CFA670;
}

.text p {
  margin-top: 20px;
}
.text p:first-child {
  margin-top: 0;
}

h1, h2 {
  font-family: "PlayfairDisplay";
  font-size: 55px;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width: 1600px) {
  h1, h2 {
    font-size: 45px;
  }
}
@media screen and (max-width: 1399px) {
  h1, h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 1199px) {
  h1, h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  h1, h2 {
    font-size: 28px;
  }
}

.title span {
  font-size: 18px;
  font-weight: 300;
  color: #CFA670;
}
@media only screen and (max-width: 1600px) {
  .title span {
    font-size: 16px;
  }
}
@media screen and (max-width: 1399px) {
  .title span {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .title span {
    font-size: 12px;
  }
}

.top-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.top-wrap-grid {
  display: grid;
  grid-template-columns: 70% 1fr;
}
.top-wrap-grid .top-btn {
  align-content: end;
  justify-self: end;
}
.top-wrap-grid .top-body {
  grid-column: span 2;
}
@media screen and (max-width: 991px) {
  .top-wrap-grid {
    grid-template-columns: 1fr;
  }
  .top-wrap-grid .top-title {
    order: 1;
  }
  .top-wrap-grid .top-body {
    order: 2;
    grid-column: span 1;
  }
  .top-wrap-grid .top-btn {
    order: 3;
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .top-wrap-grid .top-btn, .top-wrap-grid .top-btn .btn {
    width: 100%;
  }
}

.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.grey-bg {
  background-color: #F8F8F8;
}

.center-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.center-title * {
  text-align: center;
}

.no-scroll {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #CFA670;
}

::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.head1 {
  height: 200px;
  transition: all 0.5s;
}
.head1 .page-width,
.head1 .page-width .top-menu,
.head1 .page-width .top-menu ul {
  display: flex;
  align-items: center;
}
.head1 .page-width {
  justify-content: space-between;
  height: 100%;
}
.head1 .logo {
  position: relative;
  width: 110px;
  height: 80%;
}
.head1 .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  position: absolute;
  transition: all 0.5s;
}
.head1 .logo img:last-child {
  opacity: 0;
}
.head1 .hamburger-wrap {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 20px;
  padding: 5px;
  padding-right: 0;
}
.head1 .hamburger-wrap .hamburger {
  width: 25px;
  height: 14px;
  display: flex;
  align-items: center;
  position: relative;
}
.head1 .hamburger-wrap .hamburger .hamburger-inner, .head1 .hamburger-wrap .hamburger::before, .head1 .hamburger-wrap .hamburger::after {
  width: 25px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.5s;
}
.head1 .hamburger-wrap .hamburger::before, .head1 .hamburger-wrap .hamburger::after {
  position: absolute;
  content: "";
  left: 0;
}
.head1 .hamburger-wrap .hamburger::before {
  top: 0;
}
.head1 .hamburger-wrap .hamburger::after {
  bottom: 0;
}
.head1 .top-menu a {
  color: #fff;
  font-size: 18px;
  transition: all 0.5s;
}
.head1 .top-menu ul {
  list-style: none;
}
.head1 .top-menu ul li + li {
  margin-left: 25px;
}
.top-menu ul li a{
  text-transform: uppercase;
}
.head1 .top-menu .location {
  width: 54px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.head1 .top-menu .location svg path {
  fill: #CFA670;
  transition: all 0.5s;
}
.head1 .top-menu details {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}
.head1 .top-menu details summary {
  color: #fff;
  list-style: none;
  font-size: 18px;
  padding-right: 15px;
  background-image: url("../images/Expand_More.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 10px;
  transition: all 0.5s;
}
.head1 .top-menu details ul {
  position: absolute;
  top: calc(100% + 5px);
  left: 15px;
  background-color: #fff;
  padding: 5px;
}
.head1 .top-menu details ul li a {
  color: #000;
  font-size: 18px;
}
@media screen and (max-width: 1399px) {
  .head1 {
    height: 150px;
  }
  .head1 .top-menu a, .head1 .top-menu details summary, .head1 .top-menu details ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .head1 {
    height: 120px;
  }
  .head1 .page-width .top-menu > ul {
    display: none;
  }
  .head1 .page-width details {
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .head1 .page-width details {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .head1 {
    height: 100px;
  }
}

.white-head {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  height: 100px;
}
.white-head .logo img:first-child {
  opacity: 0;
}
.white-head .logo img:last-child {
  opacity: 1;
}
.white-head .hamburger-wrap .hamburger .hamburger-inner, .white-head .hamburger-wrap .hamburger::before, .white-head .hamburger-wrap .hamburger::after {
  background-color: #000;
}
.white-head .top-menu a {
  color: #000;
  font-size: 16px;
}
.white-head .top-menu details {
  border-left: 1px solid rgba(0, 0, 0, 0.5);
}
.white-head .top-menu details summary {
  color: #000;
  font-size: 16px;
  background-image: url("../images/Expand_More – black.svg");
}
.white-head .top-menu details ul {
  background-color: #CFA670;
}
.white-head .top-menu details ul li a {
  color: #fff;
  font-size: 16px;
}
.white-head .top-menu .location {
  background-color: rgba(207, 166, 112, 0.12);
}
@media screen and (max-width: 575px) {
  .white-head {
    height: 80px;
  }
}

.head2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #fff;
  padding: 50px 0;
  transform: translateY(-100%);
  transition: all 0.5s;
}
.head2 .page-width .head2-top, .head2 .page-width .head2-main {
  display: flex;
  justify-content: space-between;
}
.head2 .page-width .head2-top {
  align-items: center;
  margin-bottom: 100px;
}
.head2 .page-width .head2-top .logo img {
  width: 110px;
  height: auto;
}
.head2 .page-width .head2-top .close {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.head2 .page-width .head2-top .close img {
  width: 100%;
  height: 100%;
}
.head2 .page-width .head2-main {
  align-items: start;
}
.head2 .page-width .head2-main .nav {
  list-style: none;
}
.head2 .page-width .head2-main .nav li {
  text-align: right;
}
.head2 .page-width .head2-main .nav li a {
  font-family: "PlayfairDisplay";
  font-size: 35px;
  font-weight: 400;
  color: #000;
  transition: all 0.5s;
}
.head2 .page-width .head2-main .nav li a:hover {
  color: #CFA670;
}
.head2 .page-width .head2-main .nav li + li {
  margin-top: 10px;
}
.head2 .page-width .head2-main .social {
  margin-top: 70px;
}
.head2 .page-width .head2-main .social a {
  border-color: rgba(207, 166, 112, 0.5);
}
.head2 .page-width .head2-main .social a svg, .head2 .page-width .head2-main .social a path, .head2 .page-width .head2-main .social a g {
  fill: #CFA670;
}
.head2 .page-width .head2-main .social a:hover {
  background-color: #CFA670;
}
.head2 .page-width .head2-main .social a:hover svg, .head2 .page-width .head2-main .social a:hover path, .head2 .page-width .head2-main .social a:hover g {
  fill: #fff;
}
.head2 .page-width .head2-main .head-info p:first-child {
  font-size: 16px;
  font-weight: 400;
  color: #CFA670;
  margin-bottom: 5px;
}
.head2 .page-width .head2-main .head-info a {
  display: block;
  color: #000;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
.head2 .page-width .head2-main .head-info + .head-info {
  margin-top: 25px;
}
@media screen and (max-width: 1399px) {
  .head2 .page-width .head2-top .logo img {
    width: 95px;
  }
  .head2 .page-width .head2-top .close {
    width: 25px;
    height: 25px;
  }
  .head2 .page-width .head2-main .nav li a {
    font-size: 27px;
  }
}
@media screen and (max-width: 1199px) {
  .head2 {
    overflow-y: scroll;
  }
}
@media screen and (max-width: 991px) {
  .head2 .page-width .head2-top {
    margin-bottom: 50px;
  }
  .head2 .page-width .head2-main {
    flex-direction: column;
    align-items: center;
  }
  .head2 .page-width .head2-main .left {
    order: 2;
    margin-top: 100px;
  }
  .head2 .page-width .head2-main .nav {
    order: 1;
  }
  .head2 .page-width .head2-main .nav li {
    text-align: center;
  }
  .head2 .page-width .head2-main .head-info p, .head2 .page-width .head2-main .head-info a {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .head2 {
    padding-top: 20px;
  }
  .head2 .page-width .head2-top .logo img {
    width: 70px;
  }
  .head2 .page-width .head2-main .nav li a {
    font-size: 25px;
  }
}
@media screen and (max-width: 575px) {
  .head2 .page-width .head2-main .head-info p:first-child {
    font-size: 14px;
  }
  .head2 .page-width .head2-main .head-info a {
    font-size: 16px;
  }
  .head2 .page-width .head2-main .social a + a {
    margin-left: 10px;
  }
}

.lang-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .lang-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
  }
  .lang-mobile a {
    font-size: 16px;
    font-weight: 400;
    color: #000;
  }
  .lang-mobile .active {
    color: #CFA670;
  }
  .lang-mobile a + a {
    margin-left: 20px;
  }
}

footer {
  background-color: #000;
}

.foot1, .foot2, .foot3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot1 {
  padding-top: 70px;
  padding-bottom: 50px;
}
.foot1 .footer-logo img {
  width: 130px;
  height: auto;
}
.foot1 .working-hours p {
  color: #fff;
  text-align: right;
  font-size: 20px;
}
.foot1 .working-hours p:first-child {
  font-size: 25px;
  font-weight: 400;
}
.foot1 .working-hours p + p {
  margin-top: 10px;
}
@media screen and (max-width: 1399px) {
  .foot1 {
    padding-top: 50px;
  }
  .foot1 .footer-logo img {
    width: 110px;
  }
  .foot1 .working-hours p {
    font-size: 18px;
  }
  .foot1 .working-hours p:first-child {
    font-size: 23px;
  }
}
@media screen and (max-width: 575px) {
  .foot1 .footer-logo img {
    width: 90px;
  }
  .foot1 .working-hours p {
    font-size: 15px;
    max-width: 150px;
  }
  .foot1 .working-hours p:first-child {
    font-size: 20px;
  }
}
@media screen and (max-width: 350px) {
  .foot1 .working-hours p {
    font-size: 13px;
    max-width: 150px;
  }
  .foot1 .working-hours p:first-child {
    font-size: 16px;
  }
}

.foot2 {
  padding-top: 25px;
  padding-bottom: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  align-items: start;
}
.foot2 .foot-info {
  max-width: 350px;
}
.foot2 .foot-info p, .foot2 .foot-info a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}
.foot2 .foot-info p:first-child {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #fff;
}
.foot2 .foot-info .footer-nav a {
  transition: all 0.5s;
}
.foot2 .foot-info .footer-nav a:hover {
  color: #CFA670;
}
.foot2 .foot-info span {
  color: #CFA670;
  font-size: 14px;
  font-weight: 300;
  margin-top: 25px;
}
.foot2 .foot-info a, .foot2 .foot-info span {
  display: block;
}
.foot2 .foot-info a[href^=tel] {
  font-size: 25px;
  color: rgba(207, 166, 112, 0.8);
}
.foot2 .foot-info a[href^=mailto] {
  margin: 10px 0;
}
.foot2 .foot-info:last-child p, .foot2 .foot-info:last-child li, .foot2 .foot-info:last-child a {
  text-align: right;
}
@media screen and (max-width: 1399px) {
  .foot2 .foot-info p, .foot2 .foot-info a {
    font-size: 15px;
    line-height: 26px;
  }
  .foot2 .foot-info p:first-child, .foot2 .foot-info a[href^=tel] {
    font-size: 22px;
  }
}
@media screen and (max-width: 991px) {
  .foot2 {
    flex-direction: column;
    padding-bottom: 25px;
  }
  .foot2 .foot-info + .foot-info {
    margin-top: 50px;
  }
  .foot2 .foot-info:last-child p, .foot2 .foot-info:last-child li, .foot2 .foot-info:last-child a {
    text-align: left;
  }
}
@media screen and (max-width: 575px) {
  .foot2 .foot-info {
    max-width: unset;
  }
}
@media screen and (max-width: 350px) {
  .foot2 .foot-info p, .foot2 .foot-info a {
    font-size: 13px;
    line-height: 22px;
  }
  .foot2 .foot-info p:first-child, .foot2 .foot-info a[href^=tel] {
    font-size: 20px;
  }
}

.foot3 {
  padding: 20px 0;
}
.foot3 * {
  color: rgba(255, 255, 255, 0.46);
  font-size: 15px;
  font-weight: 300;
}
.foot3 ul {
  list-style: none;
  display: flex;
  align-items: center;
}
.foot3 ul li + li {
  margin-left: 20px;
}
@media screen and (max-width: 1399px) {
  .foot3 {
    padding: 15px 0;
  }
  .foot3 * {
    font-size: 13px;
    line-height: 26px;
  }
}
@media screen and (max-width: 575px) {
  .foot3 {
    align-items: end;
  }
  .foot3 ul {
    margin-left: 20px;
    flex-direction: column;
    align-items: end;
  }
  .foot3 ul li {
    text-align: right;
    width: -moz-max-content;
    width: max-content;
  }
  .foot3 ul li + li {
    margin-left: 0;
  }
}

.social {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.social a {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.social a svg path {
  fill: #fff;
  transition: all 0.5s;
}
.social a + a {
  margin-left: 15px;
}
.social a:hover {
  border: 1px solid rgba(207, 166, 112, 0.5);
}
.social a:hover svg path {
  fill: #CFA670;
}
@media screen and (max-width: 1399px) {
  .social {
    margin-top: 20px;
  }
  .social a {
    width: 50px;
    height: 50px;
  }
  .social a svg {
    scale: 0.8;
  }
}
@media screen and (max-width: 575px) {
  .social {
    justify-content: space-between;
  }
  .social a + a {
    margin: 0;
  }
}
@media screen and (max-width: 350px) {
  .social a {
    width: 40px;
    height: 40px;
  }
  .social a svg {
    scale: 0.6;
  }
}

.home-main {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
}
.home-main .mainSwiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-main .mainSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-main .scroll-down {
  position: absolute;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  opacity: 0.4;
}
@media screen and (max-width: 575px) {
  .home-main .scroll-down {
    bottom: 100px;
  }
}
.home-main .overlay {
  z-index: 2;
}
.home-main .page-width {
  position: relative;
  z-index: 3;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
  padding: 150px 0;
}
.home-main .page-width .swiper-pagination {
  bottom: unset;
  left: unset;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.home-main .page-width .swiper-pagination span {
  background-color: transparent;
  color: #fff;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 300;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 10px 0;
  transition: all 3s;
}
@media screen and (max-width: 1399px) {
  .home-main .page-width .swiper-pagination span {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .home-main .page-width .swiper-pagination span {
    font-size: 13px;
  }
}
.home-main .page-width .swiper-pagination .swiper-pagination-bullet {
  opacity: 0.45;
}
.home-main .page-width .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
@media screen and (max-width: 1199px) {
  .home-main .page-width .swiper-pagination {
    top: unset;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    bottom: 120px;
    flex-direction: row;
    display: none;
  }
  .home-main .page-width .swiper-pagination span {
    margin: 0 10px;
  }
}
.home-main .page-width, .home-main .headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home-main .headline h1, .home-main .headline p {
  color: #fff;
  text-align: center;
}
.home-main .headline h1 {
  font-size: 65px;
  font-weight: 300;
  margin-bottom: 10px;
  font-family: "Rubik";
}
.home-main .headline h1 span {
  font-weight: 400;
}
@media only screen and (max-width: 1600px) {
  .home-main .headline h1 {
    font-size: 55px;
  }
}
@media screen and (max-width: 1399px) {
  .home-main .headline h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 1199px) {
  .home-main .headline h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .home-main .headline h1 {
    font-size: 35px;
  }
}
.home-main .headline p {
  max-width: 780px;
}
@media screen and (max-width: 575px) {
  .home-main .headline p {
    font-size: 14px;
    line-height: 24px;
  }
}
.home-main .headline .btn {
  margin-top: 30px;
}

.md-bg-1, .md-bg-2 {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.md-bg-1 .page-width, .md-bg-2 .page-width {
  position: relative;
  z-index: 2;
}
.md-bg-1 .page-width *, .md-bg-2 .page-width * {
  color: #fff;
  text-align: center;
}
.md-bg-1 .page-width h2, .md-bg-1 .page-width p, .md-bg-2 .page-width h2, .md-bg-2 .page-width p {
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.md-bg-1 .page-width p, .md-bg-2 .page-width p {
  max-width: 870px;
  margin: 5px auto;
}

.md-bg-1 {
  padding: 200px 0;
}
.md-bg-1 .overlay {
  opacity: 0.3;
}
.md-bg-1 .page-width h2 {
  position: relative;
}
.md-bg-1 .page-width h2::before {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 110px;
  height: 25px;
  background-image: url("../images/star.png");
  background-position: left;
  background-size: contain;
  background-size: 24px;
  background-repeat: space;
}
@media screen and (max-width: 1399px) {
  .md-bg-1 {
    padding: 130px 0;
  }
  .md-bg-1 .page-width h2::before {
    background-size: 20px;
    width: 90px;
    height: 20px;
  }
}

.md-bg-2 {
  padding: 135px 0;
}
.md-bg-2 .page-width .btn {
  margin: 20px auto;
  display: block;
}
@media screen and (max-width: 1399px) {
  .md-bg-2 {
    padding: 100px 0;
  }
}

.home-about {
  position: relative;
}
.home-about .text {
  padding-right: calc(50% + 100px);
}
@media screen and (max-width: 1399px) {
  .home-about .text {
    padding-right: calc(50% + 50px);
  }
}
@media screen and (max-width: 1199px) {
  .home-about .text {
    padding-right: calc(50% + 20px);
  }
}
@media screen and (max-width: 991px) {
  .home-about .text {
    padding-right: 0;
  }
}
.home-about .text .btn {
  margin-top: 50px;
}
@media screen and (max-width: 575px) {
  .home-about .text .btn {
    margin-top: 25px;
  }
}
.home-about .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
}
@media screen and (max-width: 991px) {
  .home-about .image {
    display: none;
  }
}

.services {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 1199px) {
  .services {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 575px) {
  .services {
    grid-template-columns: 1fr;
  }
}
.services .service {
  background-color: #fff;
  box-shadow: 0px 15px 50px rgba(156, 156, 156, 0.1);
  padding: 40px 20px 20px;
  position: relative;
}
.services .service p {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (max-width: 1600px) {
  .services .service p {
    font-size: 15px;
    line-height: 23px;
  }
}
@media screen and (max-width: 1399px) {
  .services .service p {
    font-size: 14px;
    line-height: 22px;
  }
}
.services .service .service-title {
  margin-bottom: 15px;
}
.services .service .service-title p {
  font-family: "PlayfairDisplay";
  font-weight: bold;
  font-size: 25px;
  color: #000;
}
@media only screen and (max-width: 1600px) {
  .services .service .service-title p {
    font-size: 20px;
  }
}
.services .service .img {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #CFA670;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
}
.services .service .img img {
  width: 24px;
  height: 24px;
}

.home-event {
  position: relative;
  padding-left: 50%;
  padding-right: calc(50% - 700px);
}
.home-event .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
}
.home-event .text {
  padding: 70px 0 70px 100px;
}
.home-event .text .btn {
  margin-top: 50px;
}
@media screen and (max-width: 575px) {
  .home-event .text .btn {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 1600px) {
  .home-event {
    padding-right: 10%;
  }
  .home-event .text {
    padding: 70px 0 70px 50px;
  }
}
@media screen and (max-width: 1399px) {
  .home-event .text {
    padding: 50px 0 50px 50px;
  }
}
@media only screen and (max-width: 900px) {
  .home-event {
    padding-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .home-event {
    padding-left: 5%;
  }
  .home-event .image {
    display: none;
  }
  .home-event .text {
    padding: 0;
  }
}

.home-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 70px;
}
.home-gallery .gallery-section .image {
  position: relative;
  overflow: hidden;
  height: 350px;
}
.home-gallery .gallery-section .image img {
  transition: all 0.5s;
}
.home-gallery .gallery-section .image .gallery-title {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 50%;
  background: #000000;
  background: linear-gradient(0deg, #000000 0%, rgba(84, 84, 84, 0) 100%);
  padding: 0 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.home-gallery .gallery-section .image .gallery-title p {
  font-size: 25px;
  font-weight: 300;
  color: #fff;
}
.home-gallery .gallery-section .image .gallery-title span {
  font-size: 12px;
  font-weight: 300;
  color: #CFA670;
}
.home-gallery .gallery-section:hover .image img {
  scale: 1.1;
}
@media screen and (max-width: 1399px) {
  .home-gallery {
    margin-top: 50px;
  }
  .home-gallery .gallery-section .image {
    height: 250px;
  }
  .home-gallery .gallery-section .image .gallery-title p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .home-gallery .gallery-section .btn {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .home-gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 575px) {
  .home-gallery {
    grid-template-columns: 1fr;
  }
  .home-gallery .gallery-section .image .gallery-title {
    padding: 0 20px 20px;
  }
  .home-gallery .gallery-section .image .gallery-title p {
    font-size: 18px;
  }
}

.reservation {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 1299px) {
  .reservation {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .reservation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 575px) {
  .reservation {
    grid-template-columns: 1fr;
  }
}
.reservation > div {
  display: grid;
  gap: 15px;
}
.reservation label {
  font-family: "Rubik";
  font-size: 16px;
  font-weight: 400;
  color: #CFA670;
  padding-left: 25px;
  background-position: 0%;
  background-repeat: no-repeat;
  height: 25px;
  display: flex;
  align-items: center;
}
.reservation input, .reservation select, .reservation .custom-select {
  border: none;
  outline: none;
  border-bottom: 1px solid #686868;
  font-family: "Rubik";
  font-size: 16px;
  font-weight: 300;
  color: #000;
  width: 100%;
  cursor: pointer;
}
.reservation .date label {
  background-image: url("../images/calendar4-frame.svg");
  background-size: 17px;
}
.reservation .time label {
  background-image: url("../images/clock.svg");
  background-size: 17px;
}
.reservation .number-of-people label {
  background-image: url("../images/Social.svg");
  background-size: 20px;
}
.reservation .place label {
  background-image: url("../images/Maps.svg");
  background-size: 12px;
}
.reservation .name label {
  background-image: url("../images/name.svg");
  background-size: 16px;
}
.reservation .phone label {
  background-image: url("../images/phone.png");
  background-size: 14px;
}

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: "Rubik";
  border-bottom: 1px solid #686868;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #fff;
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
  color: #000;
  cursor: pointer;
}

.select-items div {
  padding: 5px;
  font-size: 13px;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  z-index: 9;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.litepicker .container__months .month-item-header .button-previous-month:hover, .litepicker .container__months .month-item-header .button-next-month:hover {
  color: #CFA670;
  cursor: pointer;
}
.litepicker .container__months .month-item-header .button-previous-month:hover svg, .litepicker .container__months .month-item-header .button-next-month:hover svg {
  fill: #CFA670;
}

.litepicker {
  font-family: "Rubik";
}

.litepicker .container__days .day-item.is-today {
  color: #CFA670;
}

.litepicker .container__days .day-item:hover {
  color: #CFA670;
  box-shadow: inset 0 0 0 1px #CFA670;
}

.litepicker .container__days .day-item.is-end-date {
  background-color: #CFA670;
}

.page-top {
  height: 230px;
  position: relative;
  background-image: url("../images/head2.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
}
.page-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .page-top {
    height: 170px;
  }
}
@media screen and (max-width: 767px) {
  .page-top {
    height: 140px;
  }
}
@media screen and (max-width: 575px) {
  .page-top {
    height: 100px;
  }
}

.privacy-text h2 {
  font-family: "PlayfairDisplay";
  font-size: 45px;
  font-weight: 400;
  color: #000;
  margin-top: 50px;
}

.privacy-text h3{
    font-family: "PlayfairDisplay";
  font-size: 35px;
    font-weight: 400;
  color: #000;
  margin-top: 50px;
}
@media only screen and (max-width: 1600px) {
  .privacy-text h2 {
    font-size: 35px;
  }

  .privacy-text h3{
    font-size: 30px;
  }
}
@media screen and (max-width: 1399px) {
  .privacy-text h2 {
    font-size: 28px;
  }

    .privacy-text h3{
    font-size: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .privacy-text h2 {
    font-size: 25px;
  }

    .privacy-text h3{
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .privacy-text h2 {
    font-size: 23px;
    margin-top: 30px;
  }
}
.privacy-text ul {
  margin: 20px 0;
}
.privacy-text a {
  word-break: break-all;
}

.text2 ul {
  list-style: none;
}
.text2 ul li {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #989898;
}
@media only screen and (max-width: 1600px) {
  .text2 ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 1399px) {
  .text2 ul li {
    font-size: 14px;
    line-height: 23px;
  }
}

.check-list ul {
  margin: 50px 0;
}
.check-list ul li {
  padding-left: 45px;
  position: relative;
}
.check-list ul li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 25px;
  height: 25px;
  background-image: url("../images/circle-check-solid.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1399px) {
  .check-list ul li {
    padding-left: 35px;
  }
  .check-list ul li::before {
    width: 20px;
    height: 20px;
  }
}
.check-list ul li + li {
  margin-top: 20px;
}

.template-gallery {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.template-gallery .overlay{
  color: #CFA670;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.template-gallery a {
  display: none;
  height: 570px;
  position: relative;
}

.template-gallery a:nth-child(1), 
.template-gallery a:nth-child(2), 
.template-gallery a:nth-child(3){
  display: block;
}

.template-gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media only screen and (max-width: 1600px) {
  .template-gallery a {
    height: 500px;
  }
}
@media screen and (max-width: 1399px) {
  .template-gallery {
    gap: 20px;
  }
  .template-gallery a {
    height: 400px;
  }
}
@media screen and (max-width: 1199px) {
  .template-gallery {
    gap: 10px;
  }
}
@media screen and (max-width: 991px) {
  .template-gallery a {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .template-gallery {
    gap: 5px;
    margin-top: 50px;
  }
  .template-gallery a {
    height: 260px;
  }
}
@media screen and (max-width: 575px) {
  .template-gallery a {
    height: 150px;
  }
}
@media only screen and (max-width: 400px) {
  .template-gallery a {
    height: 100px;
  }
}

.contact-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 50px 0;
}
.contact-background .overlay {
  opacity: 0.7;
}
.contact-background .page-width {
  position: relative;
  z-index: 1;
}
.contact-background .contact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-background .contact-top p {
  color: #fff;
  font-weight: 400;
  max-width: 680px;
}
.contact-background .contact-top .working-hours {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-left: 50px;
}
.contact-background .contact-top .working-hours p {
  text-align: right;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 575px) {
  .contact-background .contact-top {
    flex-direction: column;
    align-items: start;
  }
  .contact-background .contact-top .working-hours {
    align-items: start;
    margin-left: 0;
    margin-top: 20px;
  }
}
.contact-background .contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 100px;
}
.contact-background .contact-links a {
  border: 1px solid #808080;
  border-radius: 16px;
  padding: 20px 15px 20px 90px;
  background-position: 30px;
  background-repeat: no-repeat;
  background-size: 32px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-background .contact-links a p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
.contact-background .contact-links a p:first-child {
  color: #CFA670;
  font-weight: 500;
}
.contact-background .contact-links .location {
  background-image: url("../images/map.svg");
}
.contact-background .contact-links .email {
  background-image: url("../images/sms.svg");
}
.contact-background .contact-links .phone {
  background-image: url("../images/call-calling.svg");
}
.contact-background .contact-links a:hover {
  background-size: 40px;
  background-position: 25px;
}
@media screen and (max-width: 1399px) {
  .contact-background .contact-links {
    gap: 15px;
    margin-top: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .contact-background .contact-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .contact-background .contact-links {
    margin-top: 50px;
  }
}

.map {
  height: 400px;
  padding-top: 40px;
}
.map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 575px) {
  .map {
    height: 35vh;
  }
}

.contact-form {
  background-color: #fff;
  box-shadow: 0px 30px 30px rgba(187, 187, 187, 0.16);
  padding: 50px;
  position: relative;
  margin-top: 100px;
  /* margin-bottom: -200px; */
}
@media screen and (max-width: 1199px) {
  .contact-form {
    margin-bottom: -100px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 50px 25px;
  }
}
@media screen and (max-width: 575px) {
  .contact-form {
    margin: 0;
    max-width: 100%;
    padding: 50px 5%;
  }
}
.contact-form form {
  width: 60%;
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}
.contact-form form .inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 15px;
  margin: 25px 0;
}
.contact-form form .inputs input::-moz-placeholder, .contact-form form .inputs textarea::-moz-placeholder {
  font-family: "Rubik";
  font-size: 15px;
  font-weight: 300;
  color: #808080;
}
.contact-form form .inputs input, .contact-form form .inputs input::placeholder, .contact-form form .inputs textarea, .contact-form form .inputs textarea::placeholder {
  font-family: "Rubik";
  font-size: 15px;
  font-weight: 300;
  color: #808080;
}
.contact-form form .inputs input, .contact-form form .inputs textarea {
  padding: 12px;
  border: 1px solid #E3E3E3;
  height: 40px;
  width: 100%;
  outline: none;
}
.contact-form form .inputs textarea {
  resize: none;
  height: 95px;
  grid-column: span 2;
}
@media screen and (max-width: 575px) {
  .contact-form form .inputs {
    grid-template-columns: 1fr;
  }
  .contact-form form .inputs textarea {
    grid-column: span 1;
  }
}
.contact-form form .btn {
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  .contact-form form {
    width: 100%;
    padding-right: 0;
  }
}
.contact-form h2 {
  font-size: 30px;
  font-weight: 500;
  font-family: "Rubik";
}
@media screen and (max-width: 1199px) {
  .contact-form h2 {
    font-size: 26px;
  }
}
.contact-form img {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media screen and (max-width: 1199px) {
  .contact-form img {
    display: none;
  }
}

.event-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 520px;
}
@media screen and (max-width: 575px) {
  .event-background {
    height: 35vh;
  }
}

.event-form {
  margin-bottom: 100px;
  margin-top: -250px;
  border: 25px solid #CFA670;
}
.event-form .datepicker {
  background-image: url("../images/small-calendar.svg");
  background-position: calc(100% - 15px);
  background-repeat: no-repeat;
  background-size: 15px;
}
@media screen and (max-width: 1199px) {
  .event-form {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .event-form {
    margin: 0;
    border: none;
  }
}

.gallery-container {
  background-color: #F9F9F9;
  padding: 50px 0 100px;
}
@media screen and (max-width: 575px) {
  .gallery-container {
    padding: 50px 0;
  }
}

.d-none {
  display: none !important;
}

.active-panel {
  display: grid;
}

.gallery-buttons, .menu-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.gallery-buttons .galleryBtn, .gallery-buttons .menuBtn, .menu-buttons .galleryBtn, .menu-buttons .menuBtn {
  font-size: 18px;
  font-weight: 300;
  color: #000;
  font-family: "Rubik";
  border: 1px solid #000;
  margin-right: 15px;
  margin-bottom: 15px;
  background-color: transparent;
  padding: 10px 15px;
  transition: all 0.5s;
}
.gallery-buttons .activeBtn, .gallery-buttons .galleryBtn:hover, .gallery-buttons .menuBtn:hover, .menu-buttons .activeBtn, .menu-buttons .galleryBtn:hover, .menu-buttons .menuBtn:hover {
  background-color: #CFA670;
  border-color: #CFA670;
  color: #fff;
}
@media screen and (max-width: 1399px) {
  .gallery-buttons .galleryBtn, .gallery-buttons .menuBtn, .menu-buttons .galleryBtn, .menu-buttons .menuBtn {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .gallery-buttons, .menu-buttons {
    justify-content: center;
  }
  .gallery-buttons .galleryBtn, .gallery-buttons .menuBtn, .menu-buttons .galleryBtn, .menu-buttons .menuBtn {
    margin-right: 10px;
    padding: 10px;
    font-size: 15px;
  }
}

.gallery-panel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 300px;
  gap: 15px;
}
.gallery-panel a {
  overflow: hidden;
}
.gallery-panel a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: all 0.3s;
}
.gallery-panel a:nth-child(5n+1), .gallery-panel a:nth-child(5n+2) {
  grid-column: span 3;
}
.gallery-panel a:nth-child(5n+3), .gallery-panel a:nth-child(5n+4), .gallery-panel a:nth-child(5n) {
  grid-column: span 2;
}
.gallery-panel a:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 1600px) {
  .gallery-panel {
    grid-auto-rows: 270px;
  }
}
@media screen and (max-width: 1399px) {
  .gallery-panel {
    grid-auto-rows: 250px;
    gap: 10px;
  }
}
@media screen and (max-width: 991px) {
  .gallery-panel {
    grid-auto-rows: 200px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-panel {
    grid-template-columns: repeat(5, 1fr);
  }
  .gallery-panel a:nth-child(5n+1), .gallery-panel a:nth-child(5n+4) {
    grid-column: auto;
  }
  .gallery-panel a:nth-child(5n+2), .gallery-panel a:nth-child(5n+3), .gallery-panel a:nth-child(5n) {
    grid-column: auto;
  }
  .gallery-panel a:nth-child(4n+1), .gallery-panel a:nth-child(4n) {
    grid-column: span 3;
  }
  .gallery-panel a:nth-child(4n+2), .gallery-panel a:nth-child(4n+3) {
    grid-column: span 2;
  }
}
@media screen and (max-width: 575px) {
  .gallery-panel {
    gap: 5px;
    grid-auto-rows: 150px;
  }
}

.about-gallery {
  margin-top: 0;
}

.about1, .about2 {
  position: relative;
}
.about1 img, .about2 img {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.about1 .btn, .about2 .btn {
  margin-top: 50px;
}

.about1 {
  padding-right: 50%;
  padding-left: calc(50% - 700px);
  margin-bottom: 200px;
}
.about1 img {
  right: 0;
  width: 50%;
  max-height: 800px;
}
@media only screen and (max-width: 1600px) {
  .about1 {
    padding-left: 10%;
  }
}
@media screen and (max-width: 991px) {
  .about1 {
    padding-right: 10%;
    padding-bottom: 0;
  }
  .about1 img {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .about1 {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.about1 .content {
  /* padding-right: 100px; */
  padding-right: 30px;
}
@media screen and (max-width: 1399px) {
  .about1 .content {
    padding-right: 50px;
  }
}
@media screen and (max-width: 991px) {
  .about1 .content {
    padding-right: 0;
  }
}
.about1 .content span {
  font-size: 40px;
}
@media only screen and (max-width: 1600px) {
  .about1 .content span {
    font-size: 32px;
  }
}
@media screen and (max-width: 1399px) {
  .about1 .content span {
    font-size: 28px;
  }
}
@media screen and (max-width: 1199px) {
  .about1 .content span {
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .about1 .content span {
    font-size: 18px;
  }
}

.about2 {
  margin-bottom: 50px;
  margin-top: -70px;
  padding-top: 150px;
  padding-bottom: 60px;
  padding-left: 50%;
  padding-right: calc(50% - 700px);
}
.about2 img {
  left: 0;
  width: 45%;
}
@media only screen and (max-width: 1600px) {
  .about2 {
    padding-right: 10%;
  }
}
@media screen and (max-width: 991px) {
  .about2 {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 900px) {
  .about2 {
    padding-right: 5%;
  }
}
@media screen and (max-width: 575px) {
  .about2 {
    padding-left: 5%;
    padding-top: 350px;
    padding-bottom: 0;
  }
  .about2 img {
    right: 0;
    width: 100%;
    bottom: unset;
    height: 300px;
  }
}
.about2 .content .location {
  font-family: "PlayfairDisplay";
  font-weight: 400;
  color: #000;
  font-size: 30px;
  line-height: 45px;
}
@media only screen and (max-width: 1600px) {
  .about2 .content .location {
    font-size: 28px;
    line-height: 43px;
  }
}
@media screen and (max-width: 1399px) {
  .about2 .content .location {
    font-size: 26px;
    line-height: 41px;
  }
}
@media screen and (max-width: 1199px) {
  .about2 .content .location {
    font-size: 22px;
    line-height: 36px;
  }
}
.about2 .content p {
  font-size: 22px;
  line-height: 35px;
  font-weight: 300;
  color: #000;
}
@media screen and (max-width: 1199px) {
  .about2 .content p {
    font-size: 20px;
    line-height: 33px;
  }
}
@media screen and (max-width: 575px) {
  .about2 .content p {
    font-size: 18px;
    line-height: 30px;
  }
}

.short-p p {
  max-width: 930px;
}

.menu-buttons {
  justify-content: center;
  margin: 40px 0;
}

.menu-caption p {
  font-family: "PlayfairDisplay";
  font-size: 30px;
  line-height: 45px;
  font-weight: 400;
  color: #000;
}
.menu-caption p span {
  color: #CFA670;
}
@media screen and (max-width: 1399px) {
  .menu-caption p {
    font-size: 25px;
    line-height: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .menu-caption p {
    font-size: 20px;
    line-height: 30px;
  }
}

.menu-grid {
  margin: 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.menu-grid .menu-item {
  border: 1px solid #D9D9D9;
  padding: 20px 30px;
  position: relative;
  transition: all 0.5s;
  min-height: 130px;
  height: 100%;
}
.menu-grid .menu-item h2 {
  font-size: 30px;
  margin-bottom: 10px;
  padding-right: 150px;
}
.menu-grid .menu-item span {
  font-family: "PlayfairDisplay";
  font-size: 30px;
  font-weight: 400;
  color: #CFA670;
  position: absolute;
  top: 20px;
  right: 30px;
}
.menu-grid .menu-item .recom {
  font-family: "Rubik";
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  background-color: #000;
  padding: 5px;
  top: 0;
  left: 0;
  bottom: 0;
  right: unset;
  transform: rotate(180deg);
  writing-mode: tb-rl;
  text-align: center;
}
.menu-grid .recommendation, .menu-grid .menu-item:hover {
  border: 1px solid #000;
}
@media screen and (max-width: 1399px) {
  .menu-grid {
    gap: 20px;
  }
  .menu-grid .menu-item h2, .menu-grid .menu-item span {
    font-size: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .menu-grid {
    gap: 15px;
  }
  .menu-grid .menu-item h2, .menu-grid .menu-item span {
    font-size: 22px;
  }
}
@media screen and (max-width: 991px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid .menu-item h2 {
    padding-right: 100px;
  }
}
@media screen and (max-width: 575px) {
  .menu-grid .menu-item {
    padding-right: 10px;
  }
  .menu-grid .menu-item span {
    right: 10px;
  }
  .menu-grid .menu-item h2 {
    padding-right: 80px;
  }
  .menu-grid .menu-item h2, .menu-grid .menu-item span {
    font-size: 18px;
  }
}

.menu-gallery {
  margin-bottom: 100px;
}
@media screen and (max-width: 575px) {
  .menu-gallery {
    margin-bottom: 50px;
  }
}
.menu-gallery .menuSwiper {
  height: 460px;
}
@media screen and (max-width: 1600px) {
  .menu-gallery .menuSwiper {
    height: 400px;
  }
}
@media screen and (max-width: 1399px) {
  .menu-gallery .menuSwiper {
    height: 350px;
  }
}
@media screen and (max-width: 575px) {
  .menu-gallery .menuSwiper {
    height: 30vh;
  }
}
.menu-gallery .menuSwiper a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.general-text h2 {
  font-family: "PlayfairDisplay";
  font-size: 45px;
  font-weight: 400;
  color: #000;
  margin-top: 50px;
}

.general-text h3{
    font-family: "PlayfairDisplay";
  font-size: 35px;
    font-weight: 400;
  color: #000;
  margin-top: 50px;
}
@media only screen and (max-width: 1600px) {
  .general-text h2 {
    font-size: 35px;
  }

  .general-text h3{
    font-size: 30px;
  }
}
@media screen and (max-width: 1399px) {
  .general-text h2 {
    font-size: 28px;
  }

    .general-text h3{
    font-size: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .general-text h2 {
    font-size: 25px;
  }

    .general-text h3{
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .general-text h2 {
    font-size: 23px;
    margin-top: 30px;
  }
}

.map iframe {
    pointer-events: auto;
}
/*# sourceMappingURL=main.css.map */

.more-link{
  color: #CFA670;
  display: block;
}

.contact-form form .inputs input::-webkit-outer-spin-button, .reservation input::-webkit-outer-spin-button,
.contact-form form .inputs input::-webkit-inner-spin-button, .reservation input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact-form form .inputs input, .reservation input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.head-address{
  max-width: 205px;
}









.no-scroll, .no-scroll2 {
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  /* opacity: 0.2; */
  opacity: 0.8;
}

#page-overlay {
  z-index: 98;
  /* display: none; */
}
.mfp-content {
  position: fixed;
  z-index: 99;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: transparent;
  /* padding: 30px; */
  width: 100%;
  max-width: 900px;
  /* display: none; */
}
/* .mfp-content iframe {
  height: 100%;
  width: 100%;
} */
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler img,
.mfp-iframe-scaler video,
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
@media screen and (max-width: 1399px) {
  .mfp-content {
    max-width: 900px;
  }
}
@media screen and (max-width: 991px) {
  .mfp-content {
    max-width: 90%;
  }
}
@media screen and (max-width: 575px) {
  .mfp-content {
    max-width: 95%;
  }
}
.mfp-content .close {
  width: 30px;
  height: 30px;
  border: 1px solid white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: -15px;
  right: -15px;
  cursor: pointer;
  color: white;
  font-size: 22px;
  line-height: 1;
}
@media only screen and (max-width: 576px) {
  .mfp-content .close {
    top: -40px;
    right: -2px;
  }
}
.mfp-content .close img {
  width: 10px;
}
