@charset "UTF-8";

/* color palette */
/* color palette */
.hidden {
  display: none !important;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: 0;
}

:root {
  --input-padding-x: 0.75rem;
  --input-padding-y: 0.75rem;
  --navbar-height: 116px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #FFFFFE;
  background: #0F0E17;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  font-smooth: auto;
  padding-top: var(--navbar-height);
  overflow-x: hidden;
}

.overflow-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #27262E;
}

.overflow-scrollbar::-webkit-scrollbar {
  width: 6px;
  background-color: #27262E;
}

.overflow-scrollbar::-webkit-scrollbar-thumb {
  background-color: #8F9B7D;
}

.row-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row-flex>[class*=col-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-b-48 {
  padding-bottom: 48px;
}

.p-b-26 {
  padding-bottom: 26px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-t-20 {
  padding-top: 20px !important;
}

.p-l-20 {
  padding-left: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-34 {
  margin-top: 34px;
}

.mt-44 {
  margin-top: 44px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-34 {
  margin-bottom: 34px;
}

.mb-44 {
  margin-bottom: 44px;
}

ul li {
  list-style-type: none;
}

a {
  font-size: 14px;
  line-height: 1.7;
  color: #8F9B7D;
  margin: 0px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: underline;
  color: #d3404b;
}

button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

a,
.btn,
.btn:hover {
  text-decoration: none;
}

a:focus,
.btn:focus,
.btn:focus {
  outline: 0;
}

.btn {
  position: relative;
  font-size: 16px;
  font-weight: normal;
  line-height: 150%;
  letter-spacing: -0.01em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px 26px;
  color: #FFFFFE;
  border-radius: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.btn::after {
  content: "";
  position: absolute;
  left: calc(100% - 20px);
  top: 50%;
  width: 50px;
  height: 3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #d3404b;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.dark-btn {
  border: 1px solid rgba(255, 255, 254, 0.32);
}

.dark-btn:hover {
  background: #d3404b;
  border-color: #d3404b;
  color: #FFFFFE;
}

.dark-btn:hover::after {
  background-color: #FFFFFE;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  left: 20px;
}

.secondary-btn {
  background: #FFFFFE;
  color: #0F0E17;
}

.secondary-btn:hover {
  background: #d3404b;
  border-color: #d3404b;
  color: #FFFFFE;
}

.secondary-btn:hover::after {
  background-color: #FFFFFE;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  left: 20px;
}

section {
  padding: 90px 0;
}

section img {
  display: block;
  background: #27262E;
}

.txt-uppercase {
  text-transform: uppercase;
}

.body-txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
}

.lg-txt {
  font-size: calc(28px + (44 - 28) * ((100vw - 300px) / (1600 - 300))) !important;
  font-weight: 700;
}

.md-txt {
  font-size: calc(28px + (44 - 28) * ((100vw - 300px) / (1600 - 300)));
}

.sm-txt {
  font-size: calc(28px + (44 - 28) * ((100vw - 300px) / (1600 - 300)));
}

/* navigation-bar style start */
.navigation-bar {
  background: #0F0E17;
}

.navigation-bar.fixed-left {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 1030;
}

.navigation-bar .navbar-collapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.navigation-bar .copyright-text {
  display: none;
}

.navigation-bar.fixed-left .social {
  margin-top: 24px;
  width: 100%;
}

.navbar-brand {
  margin-bottom: 0;
  width: 90px;
}

.navbar-brand img {
  width: 100%;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  cursor: pointer;
}

.navbar-toggler {
  color: white;
  border-color: white;
}

button.navbar-toggler {
  position: relative;
  display: block;
  background: 0 0;
  outline: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 44px;
  height: 34px;
  cursor: pointer;
}

button span.line {
  position: relative;
  height: 2px;
  background: #FFFFFE;
  width: 100%;
  display: block;
  margin: 4px 0;
  moz-transform-origin: center;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button.navbar-toggler:hover span.line {
  background: #FFFFFE;
}

button.navbar-toggler {
  color: unset;
  border: 0;
}

button.navbar-toggler[aria-expanded=true] .line:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(-135deg);
  -ms-transform: translateY(6px) rotate(-135deg);
  transform: translateY(6px) rotate(-135deg);
}

button.navbar-toggler[aria-expanded=true] .line:nth-child(2) {
  -webkit-transform: translateY(0) rotate(135deg);
  -ms-transform: translateY(0) rotate(135deg);
  transform: translateY(0) rotate(135deg);
  opacity: 0;
}

button.navbar-toggler[aria-expanded=true] .line:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(135deg);
  -ms-transform: translateY(-6px) rotate(135deg);
  transform: translateY(-6px) rotate(135deg);
}

.navbar-expand-lg .navbar-nav .nav-link {
  font-size: calc(20px + (36 - 20) * ((100vw - 300px) / (1600 - 300)));
  line-height: 150%;
  /* identical to box height, or 24px */
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 8px 0;
  color: #FFFFFE;
  position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link.active::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 3px;
  background: #8F9B7D;
}

.navbar-expand-lg .navbar-nav .nav-item {
  margin-bottom: 14px;
}

.navigation-bar .social ul {
  margin: 0;
  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;
}

.navigation-bar .social ul li a {
  display: block;
  padding-right: 18px;
  color: #FFFFFE;
}

.navigation-bar .social ul li a:hover {
  color: #8F9B7D;
}

.navigation-bar .social ul li i {
  font-size: 20px;
}

.navigation-bar .social ul li:last-child a {
  padding-right: 0;
}

.copyright-text {
  margin-top: 34px;
}

.copyright-text span {
  display: block;
}

.copyright-text p,
.copyright-text a {
  font-size: 11px;
}

/* navigation-bar style close */
/* hero-section start */
.hero-section {
  padding: 0;
}

.hero-section .contact-info {
  display: none;
}

.hero-section .cta-btn-wrapper {
  display: block;
}

.hero-section .cta-btn-wrapper .btn {
  margin-block: 10px;
}

.hero-section .cta-btn-wrapper .btn:last-child {
  margin-right: 0;
}

.carousel-inner {
  height: min(100vh, 717px);
}

.carousel-item {
  height: 100%;
}

.carousel-img__wrapper {
  position: relative;
  height: 100%;
  margin-top: 24%;
}

.carousel-img__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 14, 23, 0.8)), color-stop(52.08%, rgba(15, 14, 23, 0.2)), to(rgba(15, 14, 23, 0.4)));
  background: -o-linear-gradient(top, rgba(15, 14, 23, 0.8) 0%, rgba(15, 14, 23, 0.2) 52.08%, rgba(15, 14, 23, 0.4) 100%);
  background: linear-gradient(180deg, rgba(15, 14, 23, 0.8) 0%, rgba(15, 14, 23, 0.2) 52.08%, rgba(15, 14, 23, 0.4) 100%);
}

.carousel-img__wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  aspect-ratio: 818/717;
}

.cta-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel-caption {
  top: 0;
  text-align: left;
}

.carousel-caption p {
  font-weight: normal;
  margin-bottom: 0;
}

.carousel-caption .cta-btn-wrapper {
  margin-top: 54px;
}

.intro-header-title {
  position: relative;
  font-weight: 700;
  font-size: 80px;
  line-height: 120%;
  margin-bottom: 14px;
  white-space: normal;
  word-break: break-all;
}

.intro-header-title::before {
  content: "";
  position: absolute;
  right: calc(100% - 14px);
  top: 30px;
  width: 87px;
  height: 3px;
  background: #FFFFFE;
  z-index: -1;
}

.intro-header-title span {
  display: block;
  color: #8F9B7D;
}

.carousel-indicators {
  left: 0;
  right: unset;
  bottom: 50px;
}

.carousel-indicators .active {
  width: 50px;
}

.carousel-indicators li {
  margin-right: 7px;
  margin-left: 7px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.carousel-indicators li:first-child {
  margin-left: 0;
}

.carousel-indicators li:last-child {
  margin-right: 0;
}

/* hero-section close */
/* page title start */
.section-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 44px;
  white-space: normal;
  word-break: break-all;
  text-transform: uppercase;
  position: relative;
}

.section-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% - 10px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 3px;
  background: #8F9B7D;
}

.section-title.--primary-dark-text {
  color: #0F0E17;
}

.section-title.--primary-dark-text::before {
  background: #FFFFFE;
}

.section-title.--primary-light-text {
  color: #FFFFFE;
}

.section-title.--primary-light-text::before {
  background: #0F0E17;
}

.section-title.pl-line::before {
  right: unset;
  left: -10px;
}

.pl--50 {
  padding-left: 30px;
}

/* page title close */
/* card start */
.card {
  background: transparent;
  display: block;
  border: 0;
  border-radius: 0;
}

.card-img {
  border-radius: 0;
}

.card--blockout {
  background: #27262E;
  padding: 80px 24px;
}

/* card close */
/* our-service start */
.our-service {
  padding-top: 90px;
}

.our-service .section-title {
  margin-top: 30px;
}

.our-service .img__wrapper img {
  width: 100%;
  height: 100%;
  aspect-ratio: 7/6;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.our-service_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 34px;
}

.our-service_item .item-icon {
  width: 60px;
  height: 60px;
  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;
  margin-right: 14px;
  position: relative;
}

.our-service_item .item-icon::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: #d3404b;
  z-index: -1;
}

.our-service_item .blurb {
  width: calc(100% - 74px);
}

.our-service_item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background: transparent;
}

.our-service_item .blurb {
  margin-top: 10px;
}

.our-service_item h3 {
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.our-service_item p {
  margin-bottom: 0;
}

/* our-service close */
/* our-story start */
.about-section {
  padding-bottom: 140px;
}

.about-section .section-title {
  margin-top: 20px;
}

/* our-story close */
/* gallery start */
.instagram-feed_item {
  position: relative;
}

.instagram-feed_item:hover .overlay {
  opacity: 0.8;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.instagram-feed_item:hover .search-icon {
  opacity: 1;
  -webkit-transform: scale(1.4) translate3d(0, 0, 0);
  transform: scale(1.4) translate3d(0, 0, 0);
}

.instagram-feed_item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #27262E;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.instagram-feed_item .search-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  pointer-events: none;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.instagram-feed_item .search-icon::after {
  position: absolute;
  font-family: "unicons";
  content: "";
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  color: #FFFFFE;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* gallery close */
/* instagram-section start */
.instagram-feed__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -15px;
}

.instagram-feed_item {
  margin: 15px;
}

.instagram-feed_item {
  width: calc(100% / 2 - 30px);
}

.instagram-feed_item:nth-child(2),
.instagram-feed_item:nth-child(4) {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}

.instagram-feed_item figure {
  margin-bottom: 0;
}

.instagram-feed_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  aspect-ratio: 1/1;
}

/* instagram-section close */
/* terminology-section start */
.terminology-section {
  overflow: hidden;
}

.terminology-section .cta-btn-wrapper {
  margin-top: 64px;
}

.terminology__row .terminology__col:nth-child(2) .card--menu-item {
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
}

.terminology__row .terminology__col:nth-child(5) .card--menu-item {
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
}

.terminology__row .terminology__col:nth-child(8) .card--menu-item {
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
}

.terminology__row .terminology__col:nth-child(11) .card--menu-item {
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
}

.terminology__row .terminology__col:nth-child(14) .card--menu-item {
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
}

.card--menu-item {
  background: transparent;
  display: block;
  border: 0;
  border-radius: 0;
  margin-bottom: 90px;
}

.card--menu-item .img__wrapper {
  position: relative;
  width: 100%;
}

.card--menu-item .card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  aspect-ratio: 1/1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.card--menu-item .card-body {
  padding: 0;
  margin-top: 24px;
}

.card--menu-item .card-title {
  font-weight: normal;
}

.card--menu-item:hover {
  cursor: pointer;
}

.card--menu-item:hover .card-img {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.card--menu-item:hover .card-back {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.card--menu-item .card-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  font-size: 12px;
  padding: 10px;
  background: #27262E;
  overflow-y: scroll;
  -webkit-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.card--menu-item .card-back .item-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.card--menu-item .card-back .desc {
  margin-bottom: 0;
}

/* terminology-section close */
/* reservation-section start */
.reservation-section .container {
  position: relative;
}

.reservation-section .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  height: 300px;
  background: #8F9B7D;
}

.reservation-section .section-title {
  margin-top: 80px;
}

.card--reservation .img__wrapper {
  width: 100%;
  height: 345px;
  position: relative;
}

.card--reservation .img__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 14, 23, 0.8)), to(rgba(15, 14, 23, 0.4)));
  background: -o-linear-gradient(top, rgba(15, 14, 23, 0.8) 0%, rgba(15, 14, 23, 0.4) 100%);
  background: linear-gradient(180deg, rgba(15, 14, 23, 0.8) 0%, rgba(15, 14, 23, 0.4) 100%);
}

.card--reservation .card-img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.card--reservation .card-body {
  padding: 0;
  position: absolute;
  bottom: 44px;
  left: 0;
  right: 0;
  padding-left: 24px;
  padding-right: 24px;
  display: block;
}

.card--reservation .card-body .cta-btn-wrapper {
  margin-top: 34px;
}

.card--reservation .card-header {
  padding: 0;
  border: 0;
}

.card--reservation .card-title,
.card--reservation .card-link {
  margin-bottom: 0;
}

.card--reservation .card-link {
  color: #d3404b;
}

.card--reservation .card-link:hover {
  color: #8F9B7D;
}

/* reservation-section close */
/* contact-section start */
.contact-section {
  background: #27262E;
}

.contact-section .section-title {
  margin-top: 30px;
}

.contact-section .title {
  letter-spacing: 0.02em;
}

.contact-item .title {
  margin-bottom: 10px;
}

.contact-item {
  margin-bottom: 34px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item .blurb ul {
  margin-bottom: 0;
}

.contact-item .blurb ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 18px;
}

.contact-item.opening-hour .blurb ul li {
  padding: 8px 0;
}

.contact-item.contact-info .blurb-item,
.contact-item.contact-info .blurb-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-item.contact-info .blurb-item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 8px;
}

.contact-item span.warning {
  color: #f44336;
}

.contact-item .blurb-item span.icon {
  margin-right: 8px;
  font-size: 24px;
}

.contact-item .blurb-item span.icon i {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-item .blurb-item a {
  width: 100%;
}

.contact-item a:hover,
.contact-item a:hover i {
  color: #FFFFFE;
}

.contact-item .social ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact-item .social li {
  margin: 0 14px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-item .social li:hover {
  cursor: pointer;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.contact-item .social li:hover i {
  color: #FFFFFE;
}

.contact-item .social i {
  font-size: 28px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.map-wrapper {
  resize: none;
  max-width: 100%;
  width: 100%;
  height: 640px;
  margin-top: 34px;
  overflow: hidden;
}

/* contact-section close */
/* gift-card-section start */
.gift-card-section {
  overflow: hidden;
}

.gift-card-section .container {
  position: relative;
}

.gift-card-section .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 90%;
  background: #d3404b;
}

.gift-card__wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
}

.gift-card__wrapper .section-title {
  width: min(100%, 285px);
  margin-bottom: 0;
  word-break: normal;
}

.gift-card__wrapper .section-title::before {
  top: 15px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.gift-card__wrapper .cta-btn-wrapper {
  margin-top: 24px;
}

.gift-card__wrapper .cta-btn-wrapper .btn {
  margin-left: 30px;
}

.gift-card__wrapper .btn::after {
  background: #8F9B7D;
}

.gift-card__wrapper .btn:hover {
  background: #8F9B7D;
}

.gift-card__wrapper .btn:hover::after {
  background: #FFFFFE;
}

/* gift-card-section clsoe */
/* footer sectio start */
footer.footer-area {
  padding: 20px 0;
}

footer .copyright-text {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: normal;
  letter-spacing: 0.5px;
  margin-top: 0;
}

footer .copyright-text .copyright {
  margin-right: 24px;
}

footer .poweredBy a {
  font-size: 12px;
}

footer .poweredBy a:hover {
  color: #8F9B7D;
}

footer a {
  color: #8F9B7D;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

footer a:hover {
  color: #8F9B7D;
}

/* footer sectio close */
/* advertisement popup modal start */
#advertisementModal .modal-lg,
#advertisementModal .modal-xl {
  width: min(96%, 660px);
  padding: 24px;
}

#advertisementModal {
  width: 100vw;
}

#advertisementModal .modal-body {
  padding: 0;
}

#advertisementModal .modal-content {
  color: #FFFFFE;
  background: #27262E;
  border-radius: 0;
}

#advertisementModal .popup-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  /* @include justify-content-center; */
}

#advertisementModal button.close {
  background: #d3404b;
  height: 44px;
  width: 44px;
  opacity: 1;
  display: inline-block;
  position: absolute;
  top: -10px;
  right: -10px;
  border-radius: 0;
  text-align: center;
  line-height: 100%;
  color: #FFFFFE;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 8px 0px rgba(36, 36, 36, 0.08);
  box-shadow: 0 4px 8px 0px rgba(36, 36, 36, 0.08);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#advertisementModal button.close span {
  margin-top: -3px;
  display: block;
}

#advertisementModal button.close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 1 !important;
}

#advertisementModal .popup-content {
  width: calc(100% - 240px);
  margin-right: 14px;
  padding: 24px 4px 24px 24px;
}

#advertisementModal .popup-inner h2 {
  color: #8F9B7D;
  font-size: calc(20px + (34 - 20) * ((100vw - 300px) / (1600 - 300)));
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

#advertisementModal .popup-inner p {
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-bottom: 0;
}

#advertisementModal .popup-img-wrapper {
  width: 240px;
  border-radius: 0;
  margin-top: 20px;
  margin-bottom: -20px;
  margin-right: -20px;
  overflow: hidden;
}

#advertisementModal .popup-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* advertisement popup modal close */
/* cookie popup modal start */
div#cookieModal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #27262E;
  color: #FFFFFE;
  width: 100vw;
  padding: 8px 10px 8px;
  z-index: 1040;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
}

.notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cookie-text {
  font-size: 12px;
}

#cookieModal .buttons {
  margin-left: auto;
  margin-right: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#cookieModal .buttons .btn {
  white-space: nowrap;
}

#cookieModal .buttons .dark-btn {
  margin-bottom: 0;
  margin-right: 14px;
  font-size: 12px;
}

/* cookie popup modal close */
/* preloader start */
body.preloader-site {
  overflow-x: hidden;
}

body.preloader-site .navigation-bar,
body.preloader-site main {
  opacity: 0;
}

.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100vw;
  background: #0F0E17;
  z-index: 9999999;
}

.preloader-wrapper .preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: min(70%, 280px);
  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;
  text-align: center;
}

.preloader-wrapper .preloader svg {
  width: 100%;
}

/***************************************************
 * Generated by SVG Artista on 3/1/2022, 10:43:33 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 650.4274634562px;
    stroke-dasharray: 650.4274634562px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 650.4274634562px;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 650.4274634562px;
    stroke-dasharray: 650.4274634562px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 650.4274634562px;
  }
}

@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: #8e9b7d;
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: #8e9b7d;
  }
}

#Layer_7 {
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  animation: scale-down 1.2s infinite alternate-reverse;
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 355.3241577148px;
    stroke-dasharray: 355.3241577148px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 355.3241577148px;
  }
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 355.3241577148px;
    stroke-dasharray: 355.3241577148px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 355.3241577148px;
  }
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: black;
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: black;
  }
}

.svg-elem-2 {
  -webkit-animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.92s both, animate-svg-fill-2 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
  animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.92s both, animate-svg-fill-2 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 579.6139526367px;
    stroke-dasharray: 579.6139526367px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 579.6139526367px;
  }
}

@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 579.6139526367px;
    stroke-dasharray: 579.6139526367px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 579.6139526367px;
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-stroke-3 2.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.04s infinite both, animate-svg-fill-3 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s infinite both;
  animation: animate-svg-stroke-3 2.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.04s infinite both, animate-svg-fill-3 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s infinite both;
}

@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 1271.3160400391px;
    stroke-dasharray: 1271.3160400391px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1271.3160400391px;
  }
}

@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 1271.3160400391px;
    stroke-dasharray: 1271.3160400391px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1271.3160400391px;
  }
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: black;
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: black;
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.16s both, animate-svg-fill-4 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
  animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.16s both, animate-svg-fill-4 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
}

/* preloader close */
/* animation start */
/* hero-wrapper animation start */
.custom-slide-left {
  -webkit-animation: custom-slide-left 3s both;
  animation: custom-slide-left 3s both;
}

.custom-slide-up {
  -webkit-animation: custom-slide-up 2.4s both;
  animation: custom-slide-up 2.4s both;
}

.custom-fade-up {
  -webkit-animation: custom-fade-up 1.2s both;
  animation: custom-fade-up 1.2s both;
}

.custom-slide-up--delay-100 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@-webkit-keyframes custom-slide-left {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, -100% 0, -100% 100%, 0% 100%);
    clip-path: polygon(0 0, -100% 0, -100% 100%, 0% 100%);
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes custom-slide-left {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, -100% 0, -100% 100%, 0% 100%);
    clip-path: polygon(0 0, -100% 0, -100% 100%, 0% 100%);
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes custom-slide-up {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 150%, 100% 150%, 100% 100%, 0% 100%);
    clip-path: polygon(0 150%, 100% 150%, 100% 100%, 0% 100%);
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(-100% -100%, 200% -100%, 200% 200%, -100% 200%);
    clip-path: polygon(-100% -100%, 200% -100%, 200% 200%, -100% 200%);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes custom-slide-up {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 150%, 100% 150%, 100% 100%, 0% 100%);
    clip-path: polygon(0 150%, 100% 150%, 100% 100%, 0% 100%);
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(-100% -100%, 200% -100%, 200% 200%, -100% 200%);
    clip-path: polygon(-100% -100%, 200% -100%, 200% 200%, -100% 200%);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes custom-fade-up {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes custom-fade-up {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

[data-aos=custom-slide-left] {
  opacity: 0;
  -webkit-clip-path: polygon(0 0, -100% 0, -100% 100%, 0% 100%);
  clip-path: polygon(0 0, -100% 0, -100% 100%, 0% 100%);
  -webkit-transform: translateX(80px);
  -ms-transform: translateX(80px);
  transform: translateX(80px);
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
}

[data-aos=custom-slide-left].aos-animate {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

[data-aos=custom-slide-up] {
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
  opacity: 0;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
}

[data-aos=custom-slide-up].aos-animate {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-clip-path: polygon(-100% -100%, 200% -100%, 200% 200%, -100% 200%);
  clip-path: polygon(-100% -100%, 200% -100%, 200% 200%, -100% 200%);
}

[data-aos=custom-fade-up] {
  opacity: 0;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
}

[data-aos=custom-fade-up].aos-animate {
  opacity: 1;
}

/* hero-wrapper animation close */
/* animation close */
/* responsive media query */
@media (max-width: 1199px) {
  .scroll-down {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navigation-bar .navbar-collapse {
    position: fixed;
    z-index: 9;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    background: #0F0E17;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .intro-header-title {
    font-size: calc(34px + (44 - 34) * ((100vw - 300px) / (1600 - 300)));
  }

  .intro-header-title::before {
    top: 20px;
  }

  .hero-section {
    padding-top: 60px;
  }

  .hero-section .dark-btn {
    background: #d3404b;
    border-color: #d3404b;
    color: #FFFFFE;
  }

  .hero-section .dark-btn::after {
    background-color: #FFFFFE;
  }

  .hero-section .dark-btn:hover {
    background: #FFFFFE;
    border-color: #FFFFFE;
    color: #0F0E17;
  }

  .hero-section .dark-btn:hover::after {
    background-color: #d3404b;
  }
}

@media (max-width: 767.99px) {
  .navbar-collapse {
    background: #0F0E17;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .navbar-collapse ul.navbar-nav {
    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;
    width: 100%;
  }

  .navbar-collapse ul.navbar-nav li {
    opacity: 0;
    -webkit-transition: opacity 0.4s cubic-bezier(0.58, 0.3, 0.005, 1);
    -o-transition: opacity 0.4s cubic-bezier(0.58, 0.3, 0.005, 1);
    transition: opacity 0.4s cubic-bezier(0.58, 0.3, 0.005, 1);
    padding: 0;
    margin-bottom: 20px;
  }

  .navbar-collapse ul.navbar-nav li a {
    color: white;
    padding: 0;
  }

  .navbar-collapse.show {
    top: var(--navbar-height);
    height: calc(100% - var(--navbar-height));
    visibility: visible;
    opacity: 1;
    z-index: 9;
  }

  .navbar-collapse.show ul li {
    opacity: 1;
  }

  .navbar-collapse.show ul li:nth-child(1) {
    -webkit-transition-delay: 0.08s;
    -o-transition-delay: 0.08s;
    transition-delay: 0.08s;
  }

  .navbar-collapse.show ul li:nth-child(2) {
    -webkit-transition-delay: 0.16s;
    -o-transition-delay: 0.16s;
    transition-delay: 0.16s;
  }

  .navbar-collapse.show ul li:nth-child(3) {
    -webkit-transition-delay: 0.24s;
    -o-transition-delay: 0.24s;
    transition-delay: 0.24s;
  }

  .navbar-collapse.show ul li:nth-child(4) {
    -webkit-transition-delay: 0.32s;
    -o-transition-delay: 0.32s;
    transition-delay: 0.32s;
  }

  .navbar-collapse.show ul li:nth-child(5) {
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }

  .navbar-collapse.show ul li:nth-child(6) {
    -webkit-transition-delay: 0.48s;
    -o-transition-delay: 0.48s;
    transition-delay: 0.48s;
  }

  .notice {
    display: block;
  }

  #cookieModal .buttons {
    margin-right: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding-bottom: 90px;
  }

  .about-section .img__wrapper {
    height: 100%;
  }

  .about-section .img__wrapper img {
    width: calc(100% - 60px);
    margin: -60px auto 0;
  }

  #advertisementModal .popup-content {
    width: 100%;
    padding: 0;
    margin-bottom: 14px;
  }

  #advertisementModal .popup-inner {
    display: block;
    padding: 24px;
  }

  #advertisementModal .popup-img-wrapper {
    margin: 0 auto 24px;
    width: 100%;
    height: 300px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: none;
  }

  #advertisementModal a.popup-close {
    width: 42px;
    height: 42px;
    right: 14px;
  }

  #advertisementModal span.line-wrapper {
    top: 1px;
  }
}

@media (max-width: 375px) {
  .reservation-section .section-title {
    padding-left: 24px;
  }

  .reservation-section .section-title.pl-line::before {
    left: -20px;
  }

  #cookieModal .buttons {
    display: block;
  }

  #cookieModal .buttons .btn {
    display: block;
    width: 100%;
  }
}

@media (min-width: 480px) {
  .section-title {
    font-size: 32px;
    font-weight: 700;
  }

  .gift-card-section .container::before {
    width: 70%;
  }

  .gift-card__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .gift-card__wrapper .section-title {
    width: min(100%, 220px);
  }

  .gift-card__wrapper .cta-btn-wrapper {
    margin-top: 0;
  }

  .gift-card__wrapper .cta-btn-wrapper .btn {
    margin-left: auto;
    margin-right: 55px;
  }
}

@media (min-width: 576px) {
  .hero-section .cta-btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero-section .cta-btn-wrapper .btn {
    margin-right: 34px;
  }

  .hero-section .cta-btn-wrapper .btn::after {
    opacity: 0;
  }

  .hero-section .cta-btn-wrapper .btn:last-child {
    margin-right: 0;
  }

  .hero-section .cta-btn-wrapper .btn:hover::after {
    opacity: 1;
  }

  .section-title.pl-line::before {
    right: unset;
    left: 10px;
  }

  .pl--50 {
    padding-left: 50px;
  }

  .about-section {
    padding-bottom: 140px;
  }

  .about-section .img__wrapper {
    position: relative;
    height: 100%;
  }

  .about-section .img__wrapper img {
    position: absolute;
    top: -135px;
    right: -14px;
    bottom: unset;
  }

  .about-section .card--blockout {
    padding-bottom: 140px;
  }

  .card--blockout {
    padding: 80px 34px;
  }

  .gift-card-section .container::before {
    width: 78%;
  }

  .card--reservation .card-body {
    padding-left: 34px;
    padding-right: 34px;
  }

  .card--reservation .card-body .cta-btn-wrapper {
    margin-top: 0;
  }

  #advertisementModal button.close {
    top: -10px;
    right: -24px;
  }
}

@media (min-width: 768px) {
  body {
    padding-top: 0;
    margin-left: 200px;
  }

  .navigation-bar.fixed-left {
    bottom: 0;
    right: auto;
    width: 200px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-right: 1px solid rgba(167, 169, 190, 0.2);
  }

  .navigation-bar.fixed-left .navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 35px;
    padding-top: 50px;
    height: 100vh;
  }

  .navigation-bar.fixed-left .navbar-brand {
    margin: 0 0 24px;
    width: 100%;
  }

  .navigation-bar.fixed-left .navbar-toggler {
    display: none;
  }

  .navigation-bar.fixed-left .navbar-collapse {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    overflow: visible;
  }

  .navigation-bar.fixed-left .navbar-collapse.collapse:not(.show) {
    display: block;
  }

  .navigation-bar.fixed-left .navbar-collapse .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .navigation-bar.fixed-left .navbar-collapse .navbar-nav .nav-item {
    width: 100%;
    opacity: 1;
  }

  .navigation-bar.fixed-left .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    top: 0;
  }

  .navigation-bar.fixed-left .navbar-collapse .navbar-nav .nav-link {
    font-size: 16px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .navigation-bar.fixed-left .navbar-collapse .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    width: 50px;
    height: 3px;
    background: transparent;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .navigation-bar.fixed-left .navbar-collapse .navbar-nav .nav-link:hover::before {
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: #8F9B7D;
    opacity: 1;
  }

  .navigation-bar.fixed-left .navbar-collapse .navbar-nav .nav-link.active::before {
    right: calc(100% + 10px);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    background: #d3404b;
    opacity: 1;
  }

  .navigation-bar.fixed-left .navbar-nav .nav-item .dropdown-toggle:after {
    border-top: 0.3em solid transparent;
    border-left: 0.3em solid;
    border-bottom: 0.3em solid transparent;
    border-right: none;
    vertical-align: baseline;
  }

  .navigation-bar.fixed-left .navbar-nav .nav-item .dropdown-menu {
    left: 100%;
  }

  .navigation-bar .copyright-text {
    display: block;
  }

  .navigation-bar .social ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .intro-header-title {
    font-size: 68px;
  }

  .carousel-img__wrapper {
    width: calc(100% - 34%);
    margin-top: 0;
    margin-left: auto;
  }

  .carousel-img__wrapper::before {
    background: -o-linear-gradient(218.08deg, rgba(15, 14, 23, 0.2) 0.69%, rgba(15, 14, 23, 0.008) 28.1%, rgba(15, 14, 23, 0) 100%), -o-linear-gradient(left, rgba(15, 14, 23, 0.8) 0%, rgba(15, 14, 23, 0.04) 32.81%, rgba(15, 14, 23, 0) 100%);
    background: linear-gradient(231.92deg, rgba(15, 14, 23, 0.2) 0.69%, rgba(15, 14, 23, 0.008) 28.1%, rgba(15, 14, 23, 0) 100%), linear-gradient(90deg, rgba(15, 14, 23, 0.8) 0%, rgba(15, 14, 23, 0.04) 32.81%, rgba(15, 14, 23, 0) 100%);
  }

  .carousel-caption {
    top: 50%;
    bottom: unset;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: min(78%, 544px);
  }

  .carousel-caption .blurb {
    width: 100%;
  }

  .carousel-caption p {
    font-size: 20px;
  }

  .carousel-indicators {
    left: unset;
    right: 0;
    bottom: 20px;
  }

  .our-service_item .item-icon {
    width: 90px;
    height: 90px;
  }

  .our-service_item .blurb {
    width: calc(100% - 104px);
  }

  .about-section .img__wrapper img {
    top: -135px;
  }

  .instagram-section .section-title {
    margin-top: 80px;
  }

  .gift-card__wrapper .section-title {
    width: min(100%, 285px);
    margin-bottom: 0;
  }

  .gift-card__wrapper .section-title::before {
    top: 19px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .gift-card__wrapper .cta-btn-wrapper .btn {
    margin-right: unset;
  }

  .contact-section {
    background: transparent;
  }

  .card--contact {
    background: #8F9B7D;
    padding: 34px 44px;
  }

  .card--contact,
  .card--contact i,
  .card--contact a {
    color: #0F0E17;
  }

  .gift-card-section .container::before {
    width: 72%;
  }

  .card--reservation .card-body {
    padding-left: 60px;
    padding-right: 70px;
  }

  .card--reservation .img__wrapper {
    height: 395px;
  }

  footer.footer-area {
    display: none;
  }
}

@media (min-width: 992px) {
  .carousel-caption {
    width: min(60%, 544px);
  }

  .carousel-indicators {
    left: 0;
    right: unset;
    bottom: 20px;
  }

  .our-service {
    padding-top: 180px;
  }

  .pl--50:not(.pl-line) {
    padding-left: 50px;
  }

  .our-service .order-1 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .our-service .order-2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .about-section .img__wrapper {
    position: relative;
    height: 100%;
  }

  .about-section .img__wrapper img {
    position: absolute;
    top: unset;
    right: 0;
    bottom: -50px;
  }

  .about-section .card--blockout {
    padding-bottom: 80px;
  }

  .contact-section .order-1 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .contact-section .order-2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .card--contact {
    width: calc(100% + 11%);
    margin-left: -11%;
  }

  .map-wrapper {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .hero-section {
    position: relative;
  }

  .hero-section .contact-info {
    content: "";
    position: absolute;
    top: 65px;
    right: 8%;
    display: block;
    text-align: right;
  }

  .hero-section .contact-info a {
    color: #fff;
  }

  .hero-section .contact-info p {
    margin-bottom: 0;
  }

  .intro-header-title {
    font-size: 80px;
  }

  .scroll-down {
    position: absolute;
    right: 8%;
    bottom: 15%;
    font-size: 12px;
    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;
    letter-spacing: 0.02em;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    moz-transform-origin: right;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    color: #FFFFFE;
  }

  .scroll-down .line {
    display: inline-block;
    width: 1px;
    height: 87px;
    background: #FFFFFE;
    margin-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .scroll-down:hover {
    cursor: pointer;
  }

  .scroll-down:hover .line {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
  }

  .card--reservation .card-body {
    bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .card--reservation .cta-btn-wrapper {
    margin-top: 0;
  }
}

@media (min-width: 1440px) {
  .carousel-inner {
    height: 100vh;
  }
}