@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"), url("../fonts/Inter-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.woff2") format("woff2"), url("../fonts/Inter-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-LightBETA.woff2") format("woff2"), url("../fonts/Inter-LightBETA.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  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;
}

:root {
  --body-color: #0A1A17;
  --white: #fff;
  --primary-color: #C97C4A;
  --foot-color: #09110f;
}
*,
*: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: "Inter";
  overflow-x: hidden;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  padding: 0;
  position: relative;
  background-color: var(--body-color);
  color: var(--white); 
}

body::before{
  content: "";
  position: absolute;
  top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: -1;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
}

.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: transparent;
  border: 2px solid #fff;
  text-align: center;
  padding: 20px 50px;
  transition: all 0.5s;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 280px;
  overflow: hidden;
  position: relative;
  font-family: "PlayfairDisplay";
}
.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 #C97C4A;
  color: #C97C4A;
  background-color: transparent;
}

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

p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #fff;
}
@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: #C97C4A;
}

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

h1, h2 {
  font-family: "PlayfairDisplay";
  font-size: 45px;
  font-weight: 400;
  color: #fff;
}

h3 {
  font-family: "PlayfairDisplay";
  font-size: 32px;
  font-weight: 400;
  color: #fff;
}
@media only screen and (max-width: 1600px) {
  h1, h2 {
    font-size: 45px;
  }
}
@media screen and (max-width: 1399px) {
  h1, h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) {
  h1, h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  h1, h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 25px;
  }
}

.title span {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
@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;
  width: 100%;
}

.top-wrap-grid .title{
  grid-column: span 2;
}

.top-wrap-grid .top-btn button {
  background-color: #C97C4A;
  min-width: 100%;
  width: 100%;
  border: none;
  padding: 20px 30px;
}
.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-body {
    order: 2;
    grid-column: span 2;
  }

  .top-wrap-grid .top-btn {
    grid-column: span 2;
    margin-top: 20px;
  }

  .home-gallery.blog-gallery {
    grid-template-columns: 1fr;
  }
  
}
@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: #C97C4A;
}

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

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

.head1 {
  height: 135px;
  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: 230px;
  height: 73px;
}
.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: 16px;
  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: #C97C4A;
  transition: all 0.5s;
}
.head1 .top-menu details {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  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: 70px;
  }
}

.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: #C97C4A;
}
.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: #0A1A17;
  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: 264px;
  height: 73px;
  object-fit: contain;
  object-position: center;
}
.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: 32px;
  font-weight: 400;
  color: #fff;
  transition: all 0.5s;
}
.head2 .page-width .head2-main .nav li a:hover {
  color: #C97C4A;
}
.head2 .page-width .head2-main .nav li + li {
  margin-top: 15px;
}
.head2 .page-width .head2-main .social {
  margin-top: 70px;
}
.head2 .page-width .head2-main .social a {
  border-color: rgba(255, 255, 255, 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: #C97C4A; */
}
.head2 .page-width .head2-main .social a:hover {
  background-color: #C97C4A;
}
.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:24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 5px;
  font-family: "PlayfairDisplay";
  letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.head2 .page-width .head2-main .head-info a {
  display: block;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 10px;

}

.head2 .page-width .head2-main .head-info a svg{
  margin-right: 10px;
}

.head2 .page-width .head2-main .head-info + .head-info {
  margin-top: 40px;
}
@media screen and (max-width: 1399px) {

  .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;
  }

    .head2 .page-width .head2-top .logo img {
  height: 50px;
  width: auto;
  }
}
@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-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: #C97C4A;
  }
  .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: 30px;
  padding-bottom: 50px;
}
.footer-logo img {
  width: 264px;
  height: 73px;
  margin-bottom: 20px;
}
.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 .working-hours p {
    font-size: 18px;
  }
  .foot1 .working-hours p:first-child {
    font-size: 23px;
  }
}
@media screen and (max-width: 575px) {
 
  .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;
  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: 32px;
  font-family: "PlayfairDisplay";
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}
.foot2 .foot-info .footer-nav a {
  transition: all 0.5s;
}
.foot2 .foot-info .footer-nav a:hover {
  color: #C97C4A;
}
.foot2 .foot-info span {
  color: #C97C4A;
  font-size: 14px;
  font-weight: 300;
  margin-top: 25px;
}
.foot2 .foot-info a, .foot2 .foot-info span {
  display: block;
}


.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: 15px 0;
  background-color: var(--primary-color);
}
.foot3 * {
color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}
.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);
  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;
  margin-top: 0 !important;
}
.social a:hover {
  border: 1px solid rgba(207, 166, 112, 0.5);
}
.social a:hover svg path {
  fill: #C97C4A;
}
@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:flex-start;
  }
  .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: 700px;
}
.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: "Inter";
}
.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-left: calc(46% + 100px);
}
@media screen and (max-width: 1399px) {
  .home-about .text {
    padding-left: calc(50% + 50px);
  }
}
@media screen and (max-width: 1199px) {
  .home-about .text {
    padding-left: calc(50% + 20px);
  }
}
@media screen and (max-width: 991px) {
  .home-about .text {
    padding-left: 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;
  left: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .home-about .image {
    display: none;
  }
}

.services {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 82px;
       column-gap: 82px;
}
@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: transparent;
 
  position: relative;
}
.services .service p {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
@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: 400;
  font-size: 25px;
  letter-spacing: 0.5px;
  margin-top: 30px;
}
@media only screen and (max-width: 1600px) {
  .services .service .service-title p {
    font-size: 20px;
  }
}
.services .service .img {
  /* position: absolute; */
  width: 100%;
  max-width: 246px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;

}
.services .service .img img {
width: 100%;
height: 100%;
object-fit: contain;
object-position: center;
}

.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: 70px;
  margin-top: 100px;
}
.home-gallery .gallery-section .image {
  position: relative;
  height: 500px;
}

.home-gallery .gallery-section .image::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  top: -7%;
  left: 7%;
  z-index: -1;
}
.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;
  background: var(--primary-color);
  padding:  15px 30px;
width: 100%;
}
.home-gallery .gallery-section .image .gallery-title p {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  font-family: "PlayfairDisplay";
}
.home-gallery .gallery-section .image .gallery-title span {
  font-size: 12px;
  font-weight: 300;
  color: #C97C4A;
}
.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: 10px 15px;
  }
  .home-gallery .gallery-section .image .gallery-title p {
    font-size: 18px;
  }
}

.reservation {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 50px;
 background: rgba(255, 255, 255, 0); /* mora biti poluprovidno */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* za Safari */
  padding: 50px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@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: "Inter";
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-position: 0%;
  background-repeat: no-repeat;
  height: 25px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}
.reservation input, .reservation select, .reservation .custom-select, .reservation textarea {
  border: none;
  outline: none;
  border-bottom: 1px solid #fff;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  width: 100%;
  cursor: pointer;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 100%;
  padding-bottom: 10px;
}
.reservation .date input{
  background-image: url("../images/calendar4-frame.svg");
  background-size: 15px;
}
.reservation .time input{
  background-image: url("../images/clock.svg");
  background-size: 15px;
}
.reservation .number-of-people input{
  background-image: url("../images/Social.svg");
  background-size: 15px;
}
.reservation .place input{
  background-image: url("../images/Maps.svg");
  background-size: 15px;
}
.reservation .name input{
  background-image: url("../images/name.svg");
  background-size: 15px;
}
.reservation .phone input{
  background-image: url("../images/phone-o.svg");
  background-size: 15px;
}
.reservation .email input{
  background-image: url("../images/mail-o.svg");
  background-size: 15px;
}
.reservation .event input{
  background-image: url("../images/bottle-icon.svg");
  background-size: 8px;
}

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

.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: #C97C4A;
  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: #C97C4A;
}

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

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

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

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

.page-top {
  height: 550px;
  position: relative;
  background-image: url("../images/template-cover.webp");
  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;
  display: none;
}
@media screen and (max-width: 1199px) {
  .page-top {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .page-top {
    height: 300px;
  }
}
@media screen and (max-width: 575px) {
  .page-top {
    height: 250px;
  }
}

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

.privacy-text h3{
    font-family: "PlayfairDisplay";
  font-size: 35px;
    font-weight: 400;
  color: #fff;
  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 1fr;
  gap: 30px;
}

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

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

.template-gallery a:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
}

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

@media screen and (max-width: 1399px) {
  .template-gallery {
    gap: 20px;
  }
  .template-gallery a {
    height: 295px;
  }
}
@media screen and (max-width: 1199px) {
  .template-gallery {
    gap: 10px;
  }
}
@media screen and (max-width: 991px) {
  .template-gallery a {
    height: 295px;
  }
}
@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;
}
.contact-background .contact-links a {
  border: 1px solid var(--primary-color);
  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: 300;
  margin-top: 5px;
}
.contact-background .contact-links a p:first-child {
  color: #fff;
  font-weight: 600;
}
.contact-background .contact-links .location {
  background-image: url("../images/big-clock-o.svg");
}
.contact-background .contact-links .email {
  background-image: url("../images/big-mail-o.svg");
}
.contact-background .contact-links .phone {
  background-image: url("../images/big-phone-o.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;
  }
}
@media screen and (max-width: 1199px) {
  .contact-background .contact-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


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

.contact-form {
  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;
  }
}

.contact-form form {
  width:100%;
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}

.contact-form form .inputs input::-moz-placeholder, .contact-form form .inputs textarea::-moz-placeholder {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
.contact-form form .inputs input, .contact-form form .inputs input::placeholder, .contact-form form .inputs textarea, .contact-form form .inputs textarea::placeholder {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}



@media screen and (max-width: 1199px) {
  .contact-form form {
    width: 100%;
    padding-right: 0;
  }
}


.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: -100px;
   background: rgba(255, 255, 255, 0); /* mora biti poluprovidno */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* za Safari */
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 90%;
  margin-left: auto;
  margin-right: auto;

}
.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 auto 0 auto;
    border: none;
    padding: 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;
  justify-content: space-between;
}
.gallery-buttons .galleryBtn, .gallery-buttons .menuBtn, .menu-buttons .galleryBtn, .menu-buttons .menuBtn {
  font-size: 21px;
  font-weight: 500;
  color: #fff;
 min-width: 200px;
  border: 1px solid #fff;
  margin-right: 15px;
  margin-bottom: 15px;
  background-color: transparent;
  padding: 13px 25px;
  transition: all 0.5s;
  text-align: center;
}
.gallery-buttons .activeBtn, .gallery-buttons .galleryBtn:hover, .gallery-buttons .menuBtn:hover, .menu-buttons .activeBtn, .menu-buttons .galleryBtn:hover, .menu-buttons .menuBtn:hover {
  background-color: #C97C4A;
  border-color: #C97C4A;
  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(3, 1fr);
  grid-auto-rows: 300px;
  gap: 15px;
}
.gallery-panel a {
  overflow: hidden;
  height: 300px;
}
.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(9n + 1),
.gallery-panel a:nth-child(9n + 3),
.gallery-panel a:nth-child(9n + 4),
.gallery-panel a:nth-child(9n + 7),
.gallery-panel a:nth-child(9n + 9) {
  grid-row: span 2;
  height: 100%;
}


.gallery-panel a:hover img {
  transform: scale(1.1);
}

@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: #fff;
  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: #C97C4A;
}
@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: #C97C4A;
  position: absolute;
  top: 20px;
  right: 30px;
}
.menu-grid .menu-item .recom {
  font-family: "Inter";
  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: #fff;
  margin-top: 50px;
}

.general-text h3{
    font-family: "PlayfairDisplay";
  font-size: 35px;
    font-weight: 400;
  color: #fff;
  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: #C97C4A;
  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;
}

.reservation input{
  font-family: "Inter";
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}


.reservation input::placeholder{
  font-family: "Inter";
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}




.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;
}

.head2 .overlay{
  opacity: 0.5;
  z-index: 0;
}

.head2 .page-width{
  z-index: 1;
  position: relative;
}

.reservation-wrapper{
  margin-top: -300px;
  z-index: 2;
  position: relative;
}

.grey-noise-background{
  background-color: var(--body-color);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
position: relative;
}

.grey-noise-background2 {
  background-color: #13221F;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
position: relative;
}

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

.home-about h2{
  position: relative;
}



.line-title h2::before {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    width: calc(70vw - 700px - 5px);
    background-color: var(--primary-color);
    right: calc(100% + 5px);
    top: 25px;
    z-index: 0;
}

.home-about2 .image{
  left: auto;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.home-about2 .image img{
  width: 45%;
}

.home-about2 .text {
  padding-right: calc(46% + 100px);
  padding-left: 0;
}

.top-vertical-line::before {
  content: "";
  position: absolute;
  top: 0;
  left:50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background-color: var(--primary-color);
}

.top-vertical-line{
  position: relative;
}

.blog-section .top-wrap-grid .title{
  grid-column: span 1;
}

.blog-section .top-wrap-grid .btn{
  background-color: var(--primary-color);
  color: #fff;
  font-size: 24px;
}

.home-gallery.blog-gallery {
  column-gap: 30px;
  row-gap: 30px;
}

.home-gallery.blog-gallery .gallery-section .image{
  height: 320px;
}

.home-gallery.blog-gallery .gallery-section .image .gallery-title {
  background-color: transparent;

}

.home-gallery.blog-gallery .gallery-section .image .gallery-title p {
  font-weight: 700;
  margin-top: 10px;
}

.home-gallery.blog-gallery .gallery-section .image .gallery-title span {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  background-color: var(--primary-color);
  padding: 5px 10px;

}

.home-gallery.blog-gallery .gallery-section.text-section {
  background-color: var(--body-color);
  padding: 30px;
}
.home-gallery.blog-gallery .gallery-section.text-section p{
  font-size: 14px;
  font-weight: 300;
}

.home-gallery.blog-gallery .gallery-section.text-section p + p{
  margin-top: 15px;
}

.home-gallery.blog-gallery .gallery-section.text-section .btn{
  background-color: transparent;
  font-size: 14px;
  min-width: max-content;
  padding: 10px 50px;
  margin-top: 30px;
}


.foot-contact-info a svg{
margin-right: 10px;
}

.foot-contact-info a + a{
  margin-top: 10px;
}

.foot-contact-info .social a svg{
  margin-right: 0;
}

.foot-info ul {
  list-style: none;
}

.foot-info ul li + li {
  margin-top: 10px;
}

.white-head .hamburger-wrap svg line{
  stroke:var(--body-color) ;
}

.page-top .title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
width: 90%;
}


.blog-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 40px;
}
@media screen and (max-width: 991px) {
  .blog-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-wrapper .blog .blog-image {
  width: 100%;
  height: 435px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .blog-wrapper .blog .blog-image {
    height: 315px;
  }
}
.blog-wrapper .blog .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 30px;
  transition: all 0.5s ease-in-out;
}
.blog-wrapper .blog .blog-image .blog-date {
  position: absolute;
  bottom: 0px;
  left: 0;
  color: #fff;
  background-color: var(--primary-color);
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
}
.blog-wrapper .blog .blog-info {
  background-color: transparent;
  padding-top: 20px;
}
.blog-wrapper .blog .blog-info h3 {
  font-weight: 400;
  font-size: 24px;
  font-family: "PlayfairDisplay";
  margin-bottom: 10px;
  transition: all 0.5s ease-in-out;
  color: #fff;
}
.blog-wrapper .blog:hover .blog-image img {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
.blog-wrapper .blog:hover .blog-info h3 {
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}



.blog-details-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1199px) {
  .blog-details-wrapper {
    flex-direction: column;
  }
}
.blog-details-wrapper .blog-details {
  width: 67%;
}
@media screen and (max-width: 1199px) {
  .blog-details-wrapper .blog-details {
    width: 100%;
  }
}
.blog-details-wrapper .blog-details .blog-image {
  width: 100%;
  height: 500px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog-details-wrapper .blog-details .blog-image {
    height: 350px;
  }
}
.blog-details-wrapper .blog-details .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog-details-wrapper .blog-details .blog-image .blog-date {
  position: absolute;
  bottom: 0px;
  left: 0;
  color: #fff;
  background-color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 25px;
}

.blog-details-wrapper .blog-details .blog-text {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-details-wrapper .blog-details .blog-text h1 {
  color: #fff;
  margin-bottom: 25px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .blog-details-wrapper .blog-details .blog-text h1 {
    font-size: 28px;
    letter-spacing: 0.35px;
    font-weight: 600;
  }
}
.blog-details-wrapper .blog-details .blog-text h2 {
  margin-bottom: 20px;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .blog-details-wrapper .blog-details .blog-text h2 {
    font-size: 30px;
  }
}
.blog-details-wrapper .blog-details .blog-text p {
  margin-bottom: 15px;
}
.blog-details-wrapper .blog-details .blog-text ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  .blog-details-wrapper .blog-details .blog-text ul li {
    padding-left: 30px;
  }
}
.blog-details-wrapper .blog-details .blog-text ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../images/checked.svg);
  background-repeat: no-repeat;
  width: 31px;
  height: 31px;
}
@media screen and (max-width: 767px) {
  .blog-details-wrapper .blog-details .blog-text ul li::before {
    top: 0;
    transform: none;
    width: 20px;
    height: 20px;
    background-size: contain;
  }
}

.blog-details .template-gallery{
  margin-top: 40px;
}

.blog-details .template-gallery a {
  height: 200px;
}

.blog-details .template-gallery a:nth-child(1) {
  height: 100%;
}

.margin-top {
  margin-top: 135px;
}

@media screen and (max-width: 1199px) {
  .margin-top{
    margin-top: 120px;
  }
}

@media screen and (max-width: 575px) {
  .margin-top {
    margin-top: 70px;
  }
}

.right-blog-details {
    width: 27%;
}

@media screen and (max-width: 1199px) {
  .right-blog-details {
    width: 100%;
    margin-top: 30px;
  }
}
.right-blog-details .similar-blogs {
  padding: 20px;
  margin-top: 30px;
}
.right-blog-details .similar-blogs a {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.right-blog-details .similar-blogs a img {
  width: 158px;
  height: 158px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-right: 15px;
}
.right-blog-details .similar-blogs a p {
  font-weight: 400;
  font-size: 24px;
  font-family: "PlayfairDisplay";
}
.right-blog-details .similar-blogs a span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.7);
}
.right-blog-details .share-wrapper {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background-color: #fff;
  border-radius: 30px;
  padding: 20px;
}


.pagination {
  list-style: none;
  width: 100%;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-top: 50px;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 767px) {
  .pagination {
    gap: 20px;
  }
}
.pagination li {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .pagination li {
    width: 40px;
    height: 40px;
  }
}
.pagination li a {
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  font-family: "PlayfairDisplay";
  background-color: transparent;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .pagination li a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.pagination li .active {
  background-color: var(--primary-color);
  color: #fff;
    border: 1px solid transparent;
}


.pagination li:has(svg) a {
  background-color: transparent;
}

.pagination-news {
  margin-top: 80px;
}

.right-title {
  text-align: end;
}

.events-text {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.events-text p{
  text-align: end;
  font-weight: 300;
}

.events-text p + p {
  margin-left: 60px;
  padding-right: 60px;
  position: relative;
}

.events-text p + p::after{
  content: "";
  position: absolute;
  top: 15px;
  right: -45%;
  width: 50%;
  height: 1px;
  background-color: var(--primary-color);
}

.events-background {
  height: 527px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.event-form .reservation{
grid-template-columns: repeat(5, minmax(0, 1fr));
border: none;
filter: none;
row-gap: 40px;
}

.event-form .reservation .message{
  grid-column: span 5;
}

.event-form .reservation textarea{
  resize: none;
  height: 120px;
}

.event-form .reservation .btn{
  background-color: var(--primary-color);
  grid-column: span 4;
  margin-left: auto;
  border: 1px solid transparent;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.about-top-text p{
text-align: left;
position: relative;
letter-spacing: 0.35px;
line-height: 25px;
}

.about-top-text p:first-of-type{
  padding-left: 60px;
}

.about-top-text p + p{
  padding-right: 0;
}

.about-top-text p + p::after{
  display: none;
}

.about-top-text p:first-of-type::before{
   content: "";
  position: absolute;
  top: 15px;
  left: -45%;
  width: 50%;
  height: 1px;
  background-color: var(--primary-color);
}

.about-wrapper1 .image{
height: 530px;
left: auto;
right: 5%;
width: 60vw;
top: 50%;
transform: translateY(-50%);
}

.about-wrapper1 .text{
  padding-left: 0;
  margin-right: calc(58% + 100px);
  padding:50px  30px;
  position: relative;
  z-index: 2;
}

.about-wrapper1 .text p + p {
  margin-top: 15px;
}

.line-title-span span {
  position: relative;
  display: block;
}

.line-title-span span::before {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    width: 25px;
    background-color: var(--primary-color);
    right: calc(100% + 5px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.about-wrapper2 .image{
height: 530px;
left: 5%;
right: auto;

}

.about-wrapper2 .text{
  padding-right: 0;
  padding-left: 0;
  margin-right: 0;
  margin-left: calc(58% + 100px);
  padding:50px  30px;
  position: relative;
  z-index: 2;
}


.about-wrapper1 .text .btn{
font-size: 24px;
}

.blog-details-wrapper .blog-details .blog-text ul{
  list-style: none;
  margin-top: 20px;
}

.blog-details-wrapper .blog-details .blog-text hr{
  margin: 20px 0;
}















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



@media screen and (max-width: 1399px) {
  .home-about2 .text {
    padding-right: calc(50% + 50px);
    padding-left: 0;
  }
}
@media screen and (max-width: 1199px) {
  .home-about2 .text {
    padding-right: calc(50% + 20px);
    padding-left: 0;
  }

  .head1 .logo {
    height: 50px;
width: 112px;
  }

  .home-main {
    min-height: 500px;
  }

  .top-wrap-grid .top-btn {
    width: 100%;
  }

  .top-wrap-grid .top-btn button {
    width: 100%;
  }
  .home-gallery.blog-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-form .reservation {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-form .reservation .message {
    grid-column: span 2;
  }

  .event-form .reservation .btn {
    grid-column: span 1;
  }

  .reservation .event {
    grid-column: span 2;
  }
}


@media screen and (max-width: 991px) {
  .home-about2 .text {
    padding-right: 0;
    padding-left: 0;
  }

  .foot1{
    display: none;
  }

  .home-about2 .image {
    display: none;
  }


  .template-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .template-gallery a:nth-child(1) {
    height: 295px;
  }

  .template-gallery a:nth-child(4), .template-gallery a:nth-child(5) {
    display: none;
  }

  .events-text {
    flex-direction: column;
  }

  .events-text p + p {
    margin-left: 0;
    margin-top: 20px;
    padding-right: 0;
  }

   .events-text p + p::after{
    display: none;
   }

   .event-form .reservation .btn {
    min-width: max-content;
   }

   .events-background {
    height: 300px;
   }

   .about-wrapper1 .text {
    margin-right: 0;
    margin-left: 0 !important;
    padding: 40px 20px;
   }

   .about-wrapper2{
    margin-top: -60px;
   }

   .line-title-span span::before {
    width: 15px;
   }
}


@media only screen and (max-width: 576px) {
  .mfp-content .close {
    top: -40px;
    right: -2px;
  }

  .home-gallery .gallery-section .image::before {
    left: -3%;
  }

  .home-gallery.blog-gallery .gallery-section .image {
    height: 350px;
  }

  .head1 .logo {
    height: 35px;
  }

  .head2 .page-width .head2-top .logo img {
    height: 35px;
  }
  .home-main {
    min-height: 350px;
  }

  .event-form .reservation {
    padding: 0;
  }

  .home-gallery.blog-gallery.blog-gallery-home{
grid-template-columns: 1fr;
  }
}

.mfp-content .close img {
  width: 10px;
}


/* MENU CSS */


.menu-swiper-section {
  position: relative;
  padding: 30px 0;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .menu-swiper-section {
    padding: 20px 0;
  }
}
.menu-swiper-section .max-width {
  max-width: 1570px;
}

.menu-swiper-section.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--body-color);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .menuSwiper {
    left: 0;
    width: calc(100vw - (100vw - 1600px) / 2);
    max-width: 100vw;
    margin-left: 0;
    margin-right: calc(-1 * (100vw - 1600px) / 3);
  }
}
.menuSwiper .swiper-slide .menu-btn {
  cursor: pointer;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}
.menuSwiper .swiper-slide .menu-btn.active {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
@media screen and (max-width: 767px) {
  .menuSwiper .swiper-slide .menu-btn {
    font-size: 12px;
    padding: 10px;
  }
}

.swiper-button-next-menu,
.swiper-button-prev-menu {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

.swiper-button-next-menu {
  margin-right: 3%;
}

.swiper-button-prev-menu {
  margin-left: 3%;
}

.menu-section {
  border-top: 2px solid #60461f;
  border-bottom: 2px solid #60461f;
  margin-bottom: 80px;
  padding-top: 50px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .menu-section {
    margin-bottom: 50px;
    border-bottom: none;
  }
}
.menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: #60461f;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .menu-section::before {
    display: none;
  }
}
.menu-section .menu-wrapper {
  /* display: flex; */
  columns: 2;
  gap: 80px;
}
@media screen and (max-width: 1199px) {
  .menu-section .menu-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.menu-section .menu-wrapper .details {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .menu-section .menu-wrapper .details {
    display: contents;
  }
}
.menu-section .menu-wrapper details {
  position: relative;
  width: 100%;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.menu-section .menu-wrapper details summary {
  background-color: var(--primary-color);
  color: var(--body-color);
  font-size: 32px;
  font-weight: 400;
  font-family: "PlayfairDisplay";
  text-transform: uppercase;
  text-align: center;
  list-style: none;
  padding: 20px 20px;
  position: relative;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .menu-section .menu-wrapper details summary {
    pointer-events: all;
  }
  .menu-section .menu-wrapper details summary::after {
    content: "";
    position: absolute;
    background-image: url("../images/arr-bottom-g.svg");
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    width: 15px;
    height: 9px;
  }
}
@media screen and (max-width: 767px) {
  .menu-section .menu-wrapper details summary {
    font-size: 20px;
    padding: 15px;
  }

  .menu-section .menu-wrapper {
    columns: 1;
  } 
}
.menu-section .menu-wrapper details summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.menu-section .menu-wrapper details.active summary {
  color: #fff;
}
.menu-section .menu-wrapper details ul.submenu {
  padding: 50px 0;
}
@media screen and (max-width: 991px) {
  .menu-section .menu-wrapper details ul.submenu {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }
}
@media screen and (max-width: 767px) {
  .menu-section .menu-wrapper details ul.submenu {
    padding: 0;
  }
}
.menu-section .menu-wrapper details ul.submenu li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .menu-section .menu-wrapper details ul.submenu li {
    padding-bottom: 10px;
  }
}
.menu-section .menu-wrapper details ul.submenu li p {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
}

.menu-section .menu-wrapper details ul.submenu li span {
  font-size: 24px;
  font-weight: 300;
  font-family: "PlayfairDisplay";
}

.menu-section .menu-wrapper details ul.submenu li p span{
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .menu-section .menu-wrapper details ul.submenu li p {
    font-size: 14px;
  }
}
.menu-section .menu-wrapper details ul.submenu li p span {
  font-size: 12px;
  font-weight: 300;
}
@media screen and (max-width: 991px) {
  .menu-section .menu-wrapper details ul.submenu li:nth-of-type(1) {
    padding-top: 25px;
  }
}
.menu-section .menu-wrapper details ul.submenu li + li {
  padding-top: 15px;
}
@media screen and (max-width: 767px) {
  .menu-section .menu-wrapper details ul.submenu li + li {
    padding-top: 10px;
  }

  .head2 .overlay {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .menu-section .menu-wrapper details[open] summary {
    color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .menu-section .menu-wrapper details[open] summary::after {
    content: "";
    position: absolute;
    background-image: url("../images/arr-top.svg");
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    width: 15px;
    height: 9px;
  }
  .menu-section .menu-wrapper details[open] ul.submenu {
    /* fallback, realna visina se postavlja u JS */
    max-height: 500px;
  }
}

.hamb-part {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.hamburger-icon {
  display: none;
}

.thank-you-txt {
  padding-left: 50px;
}

.thank-you-txt p {
  position: relative;
}

.thank-you-txt p::before {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    width: calc(70vw - 700px - 5px);
    background-color: var(--primary-color);
    right: calc(100% + 5px);
    top: 10px;
    z-index: 0;
}

.thank-you-txt .btn{
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.home-gallery.blog-gallery .gallery-section .image .blog-text{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0A1A17;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  padding: 30px;
}

.home-gallery.blog-gallery .gallery-section .image .blog-text p {
  color: #fff;
}

.home-gallery.blog-gallery .gallery-section .image .blog-text .btn{
  background-color: transparent;
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
    min-width: 200px;
    padding: 15px 35px;
}


.home-gallery.blog-gallery .gallery-section:hover .image img{
  scale: 1;
}

.home-gallery.blog-gallery .gallery-section .image:hover .blog-text {
  opacity: 1;
  visibility: visible;
}

 .title span {
  letter-spacing: 1px;
  font-weight: 300;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}






@media only screen and (max-width: 1919px) {
  .swiper-button-next-menu {
    margin-right: 2%;
  }
  .swiper-button-prev-menu {
    margin-left: 2%;
  }
}
@media only screen and (max-width: 1600px) {
  .menu-swiper-section .max-width {
    max-width: 1370px;
  }
  .swiper-button-next-menu {
    margin-right: 1%;
  }
  .swiper-button-prev-menu {
    margin-left: 1%;
  }
}
@media only screen and (max-width: 1400px) {
  .menu-swiper-section .max-width {
    max-width: 90%;
  }
  .swiper-button-next-menu,
  .swiper-button-prev-menu {
    width: 38px;
    height: 38px;
  }
  .swiper-button-next-menu {
    margin-right: 1%;
    margin-left: 20px;
  }
  .swiper-button-next-menu,
  .swiper-button-prev-menu {
    margin-left: 1%;
    margin-right: 20px;
  }
}


@media only screen and (max-width: 1199px) {
.swiper-button-next-menu,
  .swiper-button-prev-menu {
    display: none;
  }

  .thank-you-txt p::before {
    display: none;
  }

   .thank-you-txt {
    padding-left: 0;
   }
}


@media only screen and (max-width: 991px) {
.about-top-text p:first-of-type{
  padding-left: 0;
}

.about-top-text p:first-of-type::before {
  display: none;
}
}

@media only screen and (max-width: 767px) {
.menu-section .menu-wrapper details ul.submenu li span{
font-size: 14px;
}

.menu-section .menu-wrapper details {
  margin-bottom: 20px;
}
}


@media only screen and (max-width: 576px) {
.top-wrap-grid .top-btn{
grid-column: span 1;
}

footer .social a { 
  margin-right: 10px;
}

.blog-section .top-wrap-grid{
  grid-template-columns: 1fr;
}

.blog-section .top-wrap-grid .top-body {
  grid-column: span 1;
}
}










