html {
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  /* font-family: Verdana, Geneva, sans-serif; */
  /* font-family: 'Merriweather'; */
}

.sf-menu ul li .menu-title-text {
  transform-origin: 0 0;
  transition: transform .35s cubic-bezier(.52, .01, .16, 1);
  bottom: -3px
}

body #header-secondary-outer[data-lhe=animated_underline] nav>.sf-menu>li:not([class*=button_])>a .menu-title-text:after {
  bottom: 0;
  border-width: 1px
}

/* Reset default browser styles */
body,
h1,
p {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  width: 100%;
}

body .stamp {
  width: 42vw;
  height: 9.5vw;
  position: fixed;
  padding-top: 1.5vw;
  z-index: 10;
  background-color: white;
  box-shadow: 0 0px 51px 0 rgba(0, 0, 0, 0.5), 0 0px 19px 0 rgba(0, 0, 0, 0.07);
  transform: rotate(-5deg);
  /* Equal to rotateZ(45deg) */
  border-radius: 4px;
}

header {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
  width: 100%;
  position: fixed;
  z-index: 2;
  /* Ensure the video appears behind the header */
  /* opacity: 0.4; */
  /* Set opacity to make it slightly translucent */
  /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6)); */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.5));
  /* Gradient with varying opacity */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media screen and (max-width: 480px) {
  header {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.big-section {
  text-align: center;
  font-size: 40px;
  margin: 0px;
  font-family: 'Poppins';
}

@media screen and (max-width: 480px) {
  .big-section {
    font-size: 26px;
  }
}

.section-header {
  font-family: 'Poppins';
  font-size: 28px;
}

@media screen and (max-width: 480px) {
  .section-header {
    font-size: 18px;
  }
}

.section-text {
  font-family: 'Poppins';
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .section-text {
    font-size: 14px;
  }
}

header table {}

.logo {
  width: 300px;
  /* -webkit-filter: drop-shadow( 4px 4px 2px rgba(0, 0, 0, .7)); */
  /* filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7)); */
}

@media screen and (max-width: 480px) {
  .logo {
    width: 180px;
  }
}



body .title {
  text-align: left;
  /* padding-top: 0.5vw; */
  padding-left: 2vw;
  font-size: 3vw;
  /* font-weight: bold; */
}

body .logo {
  text-align: left;
  padding-top: 0.5vw;
  padding-left: 2vw;
  /* font-size: 4vw; */
}

body .logo-spacing {
  text-align: left;
  padding-top: 0.5vw;
  padding-left: 2vw;
  /* font-size: 4vw; */
}

body .mission {
  text-align: left;
  /* padding-top: 0px; */
  padding-left: 2vw;
  font-size: 1.2vw;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

@media (hover: hover) {
  nav ul li a:hover {
    color: #0070c9;
  }
}

footer {
  background-color: #ebebeb;
  color: #999;
  padding: 1vw 0;
  text-align: center;
  bottom: 0;
  box-shadow: 0 -2px 0px rgba(0, 0, 0, 0.1);
  font-size: 1vw;
  font-family: 'Poppins';
}

.footer-about-us {
  width: 30vw;
}

@media screen and (max-width: 480px) {
  .footer-about-us {
    width: 80vw;
  }
}

.container {
  /* position: relative; Relative positioning to position the video inside */
  max-width: 100%;
  background-color: #fff;
  margin: 0 auto;
  padding-left: 2vw;
  padding-right: 2vw;
  /* border-radius: 22px; */
}

.video {
  /* border-radius: 10px; */
  /* padding-top: 6vw; */
  width: 100%;
  /* position: relative; Absolute positioning to cover the container */
  z-index: 1;
  /* Ensure the video appears behind the header */
  margin: auto;
  /* This centers the video */
  box-shadow: 0 0px 51px 0 rgba(0, 0, 0, 0.5), 0 0px 19px 0 rgba(0, 0, 0, 0.07);
}

/* Cards section */

.cards-container {
  /* display: block; */
  /* align-items: flex-start; */
  /* justify-content: flex-end; Align items to the end (right) of the container */
}

.cards-container {
  display: flex;
  /* Aligns children (cards) in a row */
  /* overflow-x: auto; */
  /* overflow-y: visible; */
  /* Enables horizontal scrolling */
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling on touch devices */
  scrollbar-width: none;
  /* Hides scrollbar for Firefox */
  -ms-overflow-style: none;
  /* Hides scrollbar for IE 10+ */
}

.cards-container::-webkit-scrollbar {
  display: none;
  /* Hides scrollbar for Chrome, Safari, Opera */
}

.card {
  flex: 0 0 auto;
  /* Don’t grow, don’t shrink, and don’t allow wrapping */
  width: 30vw;
  padding: 1.5vw;
  margin: 1vw;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* display: inline; */
}

.card p {
  /* width: 30vw;
    height: 400px; */
  font-size: 1vw;
  padding: 0.5vw;
  margin: 0vw;
  border-radius: 0.5vw;
  /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
  /* opacity: 0; */
  /* transform: translateX(100%); */
  /* transition: opacity 0.5s ease, transform 0.5s ease; */
}

.card svg {
  padding-top: 1vw;
  width: 5vw;
  height: 5vw;
}

.card.animated {
  opacity: 1;
  transform: translateX(0);
  transition-duration: 0.2s;
}

.card.animated:nth-child(1) {
  /* transition-delay: 0.3s; Delay for the first card */
}

.card.animated:nth-child(2) {
  /* transition-delay: 0.6s; Delay for the second card */
}

.card.animated:nth-child(3) {
  /* transition-delay: 0.9s; Delay for the third card */
}

/* Scale effect on card hover */
@media (hover: hover) {
  .card:hover {
    transform: scale(1.05);
    /* transition: transform 0.3s ease-in-out; */
    transition-duration: 0.2s;
  }
}

.gallery {
  /* justify-content: flex-end; Align items to the end (right) of the container */
  padding: 1vw 0.5vw;
  font-size: 1vw;
  color: #000;
  border-radius: 0.5vw;
  margin: 1vw 0.5vw;
  border: 2px solid #000;
  font-weight: 600;
  /* font-family: 'Montserrat'; */
}

@media (hover: hover) {
  .gallery:hover {
    background-color: #DDD;
    /* Darker background color on hover */
  }
}

.contact {
  /* justify-content: flex-end; Align items to the end (right) of the container */
  padding: 16px 16px;
  font-size: 20px;
  color: #ffffff;
  border-radius: 30px;
  /* height:4vw; */
  margin: 1vw 0.5vw;
  border: 2px solid #000;
  font-weight: 600;
  font-family: 'Poppins';
  background-color: #000;
  /* font-family: 'Montserrat'; */
  transition-duration: 0.2s;
  cursor: pointer;
}

@media (hover: hover) {
  .contact:hover {
    background-color: #333;
  }
}

@media screen and (max-width: 480px) {
  .contact {
    font-size: 12px;
    padding: 8px 8px;
    border-radius: 16px;
  }
}

.about_us {
  font-size: 20px;
}

@media screen and (max-width: 480px) {
  .about_us {
    font-size: 12px;
  }
}

.button-container {
  padding-right: 2vw;
  /* display: flex; */
  /* Use flexbox */
  justify-content: right;
  text-align: right;
  /* font-size: 20px; */
  font-weight: bold;
  font-family: 'Poppins';
  /* Align items to the end (right) of the container */
}

.button-container a {
  margin-right: 2vw;
  /* font-size: inherit; */
}

.button-container button {
  margin-right: 1vw;
  /* font-size: inherit; */
}

.modal-overlay {
  position: fixed;
  /* Stay in place */
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  background-color: rgba(0, 0, 0, 0.5);
  /* Black w/ opacity */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Blur effect */

  display: flex;
  align-items: center;
  /* Align vertically */
  justify-content: center;
  /* Align horizontally */

  opacity: 0;
  visibility: hidden;
  /* Not visible initially */
  transition: opacity 0.5s ease, visibility 0.5s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease;
}

.modal-overlay.visible {
  z-index: 11;
  opacity: 1;
  /* Fully visible */
  visibility: visible;
  /* Make visible */
  background-color: rgba(0, 0, 0, 0.5);
  /* Black w/ opacity */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Blur effect */
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  width: 60vw;
  /* Adjust as necessary */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-content img {
  width: 60vw;
}

@media screen and (max-width: 480px) {
  .modal-content {
    width: 80vw;
  }

  .modal-content img {
    width: 80vw;
  }
}

.close-button {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

body .thumb {
  width: 10vw;
  height: 14vw;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  position: fixed;
  /* z-index:10; */
  transition-property: transform;
  transition-duration: 2s;
}

body .thumb img {
  width: 10vw;
  height: 14vw;
  border-radius: 5px;
}

body .rotated0 {
  transform: translateY(2vw) translateX(2vw) rotate(-15deg);
  /* Equal to rotateZ(45deg) */
}

body .rotated1 {
  transform: translateY(2vw) translateX(7vw) rotate(0deg);
  /* Equal to rotateZ(45deg) */
}

body .rotated2 {
  transform: translateY(2vw) translateX(12vw) rotate(15deg);
  /* Equal to rotateZ(45deg) */
}

#footer-outer,
#nectar_fullscreen_rows>#footer-outer.wpb_row .full-page-inner-wrap {
  background-color: #44526c !important
}

#footer-outer #footer-widgets {
  border-bottom: none
}

body.original #footer-outer #footer-widgets .col ul li {
  border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.original #footer-outer #footer-widgets .col .widget_recent_comments ul li,
#footer-outer #footer-widgets .col .widget_recent_comments ul li {
  background-color: rgba(0, 0, 0, .07);
  border-bottom: 0
}

#footer-outer,
#footer-outer a:not(.nectar-button) {
  color: #d3d3d3 !important
}

#footer-outer[data-link-hover="underline"][data-custom-color="true"] #footer-widgets ul:not([class*="nectar_blog_posts"]) a:not(.tag-cloud-link):not(.nectar-button),
#footer-outer[data-link-hover="underline"] #footer-widgets .textwidget a:not(.nectar-button) {
  background-image: linear-gradient(to right, #d3d3d3 0, #d3d3d3 100%)
}

#footer-outer #footer-widgets .widget h4,
#footer-outer .col .widget_recent_entries span,
#footer-outer .col .recent_posts_extra_widget .post-widget-text span {
  color: #ffffff !important
}

body #footer-outer #copyright,
.ascend #footer-outer #copyright {
  border: none;
  background-color: #44526c
}

body #footer-outer #copyright .widget h4,
body #footer-outer #copyright li a i,
body #footer-outer #copyright p {
  color: #d3d3d3
}

#footer-outer #copyright a:not(.nectar-button) {
  color: #d3d3d3 !important
}

body #footer-outer[data-cols="1"] #copyright li a i:after {
  border-color: #d3d3d3
}

body #footer-outer #copyright li a:hover i,
body #footer-outer[data-cols="1"] #copyright li a:hover i,
body #footer-outer[data-cols="1"] #copyright li a:hover i:after {
  border-color: #fff;
  color: #fff
}

#footer-outer #copyright a:hover:not(.nectar-button) {
  color: #ffffff !important
}

#ajax-content-wrap #footer-outer #copyright {
  border-top: 1px solid rgba(255, 255, 255, .18)
}


/* Horizontal line on hover */

.hover-underline {
  position: relative;
  display: inline-block;
  /* font-size: 22px; */
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: f 0.3s ease-out;
  font-family: 'Poppins';
  text-shadow: 0px 0px 20px #e8dfda;
}

.hover-underline:hover {
  color: #000;
}

.hover-underline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transition: width 0.3s ease-out;
}

.hover-underline:hover::after {
  width: 100%;
  box-shadow: 0px 0px 30px #e8dfda;
}


.parallax-container {
  /* height: 100vh; */
  height: 150vh;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 1px;
}

.parallax-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateZ(-1px) scale(2);
  background-image: url('frontpage_full.png');
  /* background-image: url('kitchen_frontpage2.png'); */
  background-size: cover;
  background-position: center;
  z-index: -10;
}

.content {
  position: relative;
  padding-top: 100vh;
  /* background-color: rgba(255, 255, 255, 0.8); */
  transform: translateZ(0);
}


.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.image-item {
  flex: 1;
  min-width: 260px;
  max-width: 260px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

@media screen and (max-width: 480px) {
  .image-item {
    min-width: 140px;
    max-width: 140px;
  }
}

.image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

@media screen and (max-width: 480px) {
  .image-text {
    font-size: 1em;
  }
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.image-item:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.image-item:hover img {
  filter: brightness(1.1);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .image-grid {
    flex-direction: row;
  }

  .image-item {
    flex-basis: calc(50% - 10px);
  }
}


.parallax-table {
  width: 70%;
  border-collapse: collapse;
  margin: 0 auto;
  /* This centers the table if the body flex is not supported */
}

@media screen and (max-width: 480px) {
  .parallax-table {
    width: 90%;
  }
}

.parallax-table td {
  /* padding: 20px; */
  vertical-align: top;
}

.description {
  width: 50%;
}

.image-cell {
  width: 50%;
}

.parallax-div {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  will-change: transform;
}

.logo-shine {
  position: relative;
  overflow: visible;
  /* fill:red; */
  /* fill: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 70%); */
  /* stroke: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 70%); */
}

.logo-shine-2 {
  /* content: ""; */
  /* position: absolute; */
  /* overflow:visible; */
  /* top: 10px;
  left: 30px; */

  /* left: -100%; */
  /* width: 100%; */
  /* height: 100%; */
  /* color: linear-gradiet(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 70%); */
  /* fill: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 70%); */
  /* fill: linear-gradient(#e66465); */
  /* fill: blue; */
  /* z-index: 1000; */
  /* z-index: 2000; */
  /* transform: skewX(-30deg); */
  /* animation: shine 1s infinite; */
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}


.divider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2vw;
}

.divider {
  width: 200px;
  height: 2px;
  background-color: #333;
  transition: width 0.6s ease;
}

.divider-container:hover .divider {
  width: 220px;
}

.image-gallery-item {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  position: relative;
  overflow: hidden;
}

/* .image-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
} */

.map {
  /* width:80vw; */
  /* height:40vw; */
}