:root {

  /**
     * COLORS
     */
  --off-white: #FAFAFA;
  --gold-green: #CCCC99;
  --gold-crayola: #CCCC99;


  --quick-silver: hsla(0, 0%, 65%, 1);
  --davys-grey: hsla(30, 3%, 34%, 1);
  --smoky-black-1: hsla(40, 12%, 5%, 1);
  --smoky-black-2: hsla(30, 8%, 5%, 1);
  --smoky-black-3: hsla(0, 3%, 7%, 1);
  --eerie-black-1: hsla(210, 4%, 9%, 1);
  --eerie-black-2: hsla(210, 4%, 11%, 1);
  --eerie-black-3: hsla(180, 2%, 8%, 1);
  --eerie-black-4: hsla(0, 0%, 13%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --white-alpha-20: hsla(0, 0%, 100%, 0.2);
  --white-alpha-10: hsla(0, 0%, 100%, 0.1);
  --black: hsla(0, 0%, 0%, 1);
  --black-alpha-80: hsla(0, 0%, 0%, 0.8);
  --black-alpha-15: hsla(0, 0%, 0%, 0.15);

  /**
     * GRADIENT COLOR
     */

  --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%, transparent 66.66% 75%);
  --gradient-1: linear-gradient(to top, hsla(0, 0%, 0%, 0.9), hsla(0, 0%, 0%, 0.7), transparent);

  /**
     * TYPOGRAPHY
     */

  /* font-family */
  --fontFamily-forum: 'Forum', cursive;
  --fontFamily-dm_sans: 'DM Sans', sans-serif;

  /* font-size */
  --fontSize-display-1: calc(1.3rem + 6.7vw);
  --fontSize-headline-1: calc(2rem + 2.5vw);
  --fontSize-headline-2: calc(1.3rem + 2.4vw);
  --fontSize-title-1: calc(1.6rem + 1.2vw);
  --fontSize-title-2: 2.2rem;
  --fontSize-title-3: 2.1rem;
  --fontSize-title-4: calc(1.6rem + 1.2vw);
  --fontSize-body-1: 2.4rem;
  --fontSize-body-2: 1.6rem;
  --fontSize-body-3: 1.8rem;
  --fontSize-body-4: 1.6rem;
  --fontSize-label-1: 1.4rem;
  --fontSize-label-2: 1.2rem;

  /* font-weight */
  --weight-regular: 400;
  --weight-bold: 700;

  /* line-height */
  --lineHeight-1: 1em;
  --lineHeight-2: 1.2em;
  --lineHeight-3: 1.5em;
  --lineHeight-4: 1.6em;
  --lineHeight-5: 1.85em;
  --lineHeight-6: 1.4em;

  /* letter-spacing */
  --letterSpacing-1: 0.15em;
  --letterSpacing-2: 0.4em;
  --letterSpacing-3: 0.2em;
  --letterSpacing-4: 0.3em;
  --letterSpacing-5: 3px;

  /**
     * SPACING
     */

  --section-space: 70px;

  /**
     * SHADOW
     */

  --shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);

  /**
     * BORDER RADIUS
     */

  --radius-24: 24px;
  --radius-circle: 50%;

  /**
     * TRANSITION
     */

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

}



/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--off-white);
}

li {
  list-style: none;
}

a,
img,
data,
span,
input,
button,
select,
ion-icon,
textarea {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--eerie-black-1);


  color: var(--white);
  font-family: var(--fontFamily-dm_sans);
  font-size: var(--fontSize-body-4);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  overflow: hidden;
}

body.loaded {
  overflow: overlay;
}

body.nav-active {
  overflow: hidden;
}

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

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold-crayola);
}





/*-----------------------------------*\
  #TYPOGRAPHY
\*-----------------------------------*/

.display-1,
.headline-1,
.headline-2,
.title-1,
.title-2,
.title-3,
.title-4 {
  color: var(--white);
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.display-1 {
  font-size: var(--fontSize-display-1);
  line-height: var(--lineHeight-1);
}

.headline-1 {
  font-size: var(--fontSize-headline-1);
}

.headline-2 {
  font-size: var(--fontSize-headline-2);
  line-height: var(--lineHeight-6);
}

.title-1 {
  font-size: var(--fontSize-title-1);
}

.title-2 {
  font-size: var(--fontSize-title-2);
}

.title-3 {
  font-size: var(--fontSize-title-3);
}

.title-4 {
  font-size: var(--fontSize-title-4);
}

.body-1 {
  font-size: var(--fontSize-body-1);
  line-height: var(--lineHeight-6);
}

.body-2 {
  font-size: var(--fontSize-body-2);
  line-height: var(--lineHeight-4);
}

.body-3 {
  font-size: var(--fontSize-body-3);
}

.body-4 {
  font-size: var(--fontSize-body-4);
}

.label-1 {
  font-size: var(--fontSize-label-1);
}

.label-2 {
  font-size: var(--fontSize-label-2);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 16px;
}

.separator {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-crayola);
  transform: rotate(45deg);
}

.contact-label {
  font-weight: var(--weight-bold);
}

.contact-number {
  color: var(--gold-crayola);
  max-width: max-content;
  margin-inline: auto;
}

.hover-underline {
  position: relative;
  max-width: max-content;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid var(--gold-crayola);
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);
}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}

.contact-number::after {
  bottom: -5px;
}

.text-center {
  text-align: center;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  position: relative;
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}

.section-subtitle::after {
  content: url('../images/separator.svg');
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
}

.btn {
  position: relative;
  color: var(--gold-crayola);
  font-size: var(--fontSize-label-2);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  border: 2px solid var(--gold-crayola);
  padding: 12px 45px;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: var(--radius-circle);
  background-color: var(--gold-crayola);
  transition: var(--transition-2);
  z-index: -1;
}

.btn .text {
  transition: var(--transition-1);
}

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: var(--smoky-black-1);
}

.btn:is(:hover, :focus-visible)::before {
  bottom: -50%;
}

.btn:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {
  background-color: var(--gold-crayola);
  color: var(--black);
}

.btn-secondary::before {
  background-color: var(--smoky-black-1);
}

.btn-secondary .text-2 {
  color: var(--white);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  z-index: 1;
}

.bg-black-10 {
  background-color: var(--smoky-black-2);
}

.grid-list {
  display: grid;
  gap: 40px;
}

.hover\:shine {
  position: relative;
}

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
  transform: skewX(-0.08turn) translateX(275%);
  transition: var(--transition-3);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  background-color: var(--eerie-black-4);
}

.btn-text {
  color: var(--gold-crayola);
  padding-block-end: 4px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-weight: var(--weight-bold);
  transition: var(--transition-1);
}

.btn-text:is(:hover, :focus-visible) {
  color: var(--white);
}

.shape {
  display: none;
  position: absolute;
  max-width: max-content;
  z-index: -1;
}

.w-100 {
  width: 100%;
}

.move-anim {
  animation: move 5s linear infinite;
}

@keyframes move {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.input-field {
  background-color: var(--eerie-black-2);
  color: var(--white);
  height: 56px;
  padding: 10px 20px;
  border: 1px solid var(--white-alpha-10);
  outline: none;
  transition: border-color var(--transition-2);
}


.input-field.message {
  height: 96px;
}

.input-field::placeholder {
  color: inherit;
}

.input-field:focus {
  border: solid 2px var(--gold-crayola);
  color: #ffffff;
  font-weight: 400;

}

.input-fields.modified {
  border-color: var(--gold-crayola);
  color: #ffffff;
  font-weight: 400;
}


.input-field.double select:focus {
  border-color: var(--gold-crayola);
  color: #ffffff;
  font-weight: 400;


}


.icon-wrapper {
  position: relative;
  margin-block-end: 20px;
}

.icon-wrapper .input-field {
  margin-block-end: 0;
  padding-inline-start: 40px;
  appearance: none;
  cursor: pointer;
}

.icon-wrapper ion-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  --ionicon-stroke-width: 50px;
  pointer-events: none;
}

.icon-wrapper ion-icon:first-child {
  left: 15px;
}

.icon-wrapper ion-icon:last-child {
  right: 10px;
}


/*-----------------------------------*\
  #PRELOAD
\*-----------------------------------*/

.preload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/DOMO Website/1. Home Page/background_grey_wall.jpg');

  z-index: 10;
  display: grid;
  place-content: center;
  justify-items: center;
  transition: var(--transition-2);
}

.preload>* {
  transition: var(--transition-1);
}

.preload.loaded>* {
  opacity: 0;
}

.preload.loaded {
  transition-delay: 250ms;
  transform: translateY(100%);
}



.preload-box {
  font-family: "IBM Plex Serif", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  letter-spacing: 2px;
  line-height: 32px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  border: solid 4px var(--off-white);
  padding-left: 96px;
  padding-right: 96px;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}



/* .circle {
    width: 112px;
    height: 112px;
    border-radius: var(--radius-circle);
    border: 3px solid var(--white);
    border-block-start-color: var(--smoky-black-3);
    margin-block-end: 45px;
    animation: rotate360 1s linear infinite;
  }
  
  @keyframes rotate360 {
    0% { transform: rotate(0); }
    100% { transform: rotate(1turn); }
  }
  
  .preload .text {
    background-image: var(--loading-text-gradient);
    background-size: 500%;
    font-size: calc(2rem + 3vw);
    font-weight: var(--weight-bold);
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 16px;
    padding-inline-start: 16px;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 0.5px var(--eerie-black-3);
    animation: loadingText linear 2s infinite;
  }
  
  @keyframes loadingText {
    0% { background-position: 100%; }
    100% { background-position: 0%; }
  }
   */


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  /* Adjust the color and opacity as needed */
}

.header .container {
  display: flex;
  position: static;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: solid 1px #FAFAFA;
  height: 96px;
  padding: 0;


}

.header .container .left-side,
.header .container .right-side {
  display: flex;
  align-items: center;
  justify-content: center;

}

.box {
  display: flex;
  height: 96px;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

.box:hover {
  color: var(--gold-green);
  border-color: var(--gold-green);
}


.box.normal {
  width: 96px;
}

.box.long {
  width: 192px;
}

.box.right {
  border-right: solid 1px #FAFAFA;

}

.box.left {
  border-left: solid 1px #FAFAFA;

}

.box.left.long.profile {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;

}

.box.right.long.phone {
  width: 189px;
}

.nav-open-btn .line {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin-block: 4px;
  transform-origin: left;
  animation: menuBtn 600ms ease-in-out alternate infinite;
}

@keyframes menuBtn {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0.5);
  }
}

.nav-open-btn .line-2 {
  animation-delay: 200ms;
}

.nav-open-btn .line-3 {
  animation-delay: 400ms;
}

.logo-nav-pic {
  width: auto;
  height: 100px;
}

.logo {
  font-size: 16px;
}












.header .btn {
  display: none;
}



.header.active {
  padding-block: 20px;
  background-color: var(--eerie-black-4);
  border-color: var(--black-alpha-15);
}

.header.hide {
  transform: translateY(-100%);
  transition-delay: 250ms;
}



.nav-open-btn {
  padding-inline-end: 0;
}

.nav-open-btn .line {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin-block: 4px;
  transform-origin: left;
  animation: menuBtn 400ms ease-in-out alternate infinite;
}

@keyframes menuBtn {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0.5);
  }
}

.nav-open-btn .line-2 {
  animation-delay: 150ms;
}

.nav-open-btn .line-3 {
  animation-delay: 300ms;
}

.navbar {
  position: fixed;
  background-image: url('/assets/images/DOMO Website/1. Home Page/background_grey_wall.jpg');
  background-size: cover;
  background-position: center;
  top: 0;
  left: -480px;
  bottom: 0;
  max-width: 480px;
  width: 100%;

  z-index: 2;

}

.navbar.active {

  transform: translateX(480px);



}

.navbar .close-btn {
  color: var(--white);
  border: 1px solid currentColor;
  padding: 0px;
  margin-inline-start: auto;
  margin-right: 24px;
  margin-top: 24px;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;

}



.navbar .close-btn:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.navbar .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-bottom: 24px;
}

.navbar-list {
  display: flex;
  flex-direction: column;
  height: 848px;



}


.navbar-item {
  height: 96px;
  width: 100%;
  border-top: 2px solid var(--off-white);


  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px;
  padding: 0px;




}


.navbar-item.FAQ {
  border-bottom: 2px solid var(--off-white);


}

.navbar-item.end.profile {
  margin-top: 80px
}

.navbar-item.end.language {
  border-bottom: 2px solid var(--off-white);
}

.navbar-item span {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 2px;

}

.navbar-link {
  position: relative;
  font-size: var(--fontSize-label-2);
  text-transform: uppercase;
  padding-block: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}

.navbar-link.BG {
  border-right: 2px solid var(--off-white);
}


.navbar-link::after {
  display: none;
}



.navbar-item:is(:hover, :focus-visible, .active) {
  background-color: rgba(77, 77, 77, 0.3);
  border-color: var(--gold-green);
  border: 2px solid var(--gold-green);


}



.navbar-item:is(:hover, :focus-visible, .active) .span {
  color: var(--gold-green);
}

.navbar-link .separator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: var(--transition-1);
}

.address-link.nav {
  margin-top: 30px;
  align-self: center;
  font-size: 12px;
}

.navbar-link:is(:hover, :focus-visible, .active) .separator {
  opacity: 1;
}

.navbar-title {
  margin-block-end: 15px;
}

.navbar-text {
  margin-block: 10px;
}

.navbar .body-4 {
  color: var(--quick-silver);
}

.sidebar-link {
  transition: var(--transition-1);
}

.sidebar-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.navbar .text-center .separator {
  margin-block: 30px;
  margin-inline: auto;
}

.navbar .contact-label {
  margin-block-end: 10px;
}

.navbar::-webkit-scrollbar-thumb {
  background-color: var(--gold-green);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--black-alpha-80);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
  z-index: 1;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}










/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/
#HERO {
  position: relative;
  /* Set position to relative for the parent container */
}

.hero .container {
  background-size: cover;
  /* Ensures the image covers the container, might crop */
  background-position: center center;
  /* Keeps the image centered, crops from the edges */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  width: 100%;
  height: 100vh;

  display: none;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 0s linear 1s;
}


.hero .container.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  animation: zoomBackground 7s ease forwards;
  /* Trigger zoom animation */
  transition: opacity 1s ease-in-out, visibility 0s linear 0s;
  /* Smooth fade-in */
}

/* Keyframes for zooming the background */
@keyframes zoomBackground {
  from {
    background-size: 100%;
    /* Start at normal size */
  }

  to {
    background-size: 110%;
    /* End at 5% zoom */
  }
}




.vertical-text {
  writing-mode: vertical-rl;
  /* Sets the writing mode to vertical, with text flowing from right to left */
  border: solid 2px var(--off-white);
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 48px;
  width: 84px;
  height: 200px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  line-height: 51px;
  padding: 4px;
  text-shadow: 1px 1px 1px rgba(4D, 4D, 4D, 25);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 25);
}

.hero .container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero .container .content h1 {
  font-family: "IBM Plex Serif", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 80px;
  letter-spacing: 2px;
  text-align: center;
  line-height: 100px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);
  margin-top: 48px;
}

.hero .container .content h3 {
  font-family: "IBM Plex Serif", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 2px;
  text-align: center;
  line-height: 100px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);
  margin-top: -24px;
}

.button-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: solid 1px var(--off-white);
  /* Apply border to the container */
  padding: 0;
  margin: 0;
  position: absolute;
  /* Set position to absolute for the buttons container */
  bottom: 0;
  /* Position the buttons at the bottom of the parent container */
  left: 50%;
  /* Align the buttons horizontally */
  transform: translateX(-50%);
  /* Center the buttons horizontally */
  justify-content: center;
  align-items: center;
}

button.main {
  height: 96px;
  text-transform: uppercase;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--off-white);
  letter-spacing: 2px;
  font-size: 16px;
  border: none;
  /* Remove border from individual buttons */
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);
}

button.main.menu {
  width: calc(100% - 576px);
  /* Adjust width with 288px space from left and right */
  margin-left: 288px;
  /* Add space from left */
  margin-right: 288px;
  /* Add space from right */
  border-left: solid 1px var(--off-white);
  border-right: solid 1px var(--off-white);
  border-bottom: solid 1px var(--off-white);
}

button.main.half {
  width: 50%;
  border: solid 1px var(--off-white);
}

.hero-buttons {
  position: absolute;
  /* Set position to absolute for the buttons container */
  bottom: 0;
  /* Position the buttons at the bottom of the parent container */
  left: 50%;
  /* Align the buttons horizontally */
  transform: translateX(-50%);
  /* Center the buttons horizontally */
  display: flex;
  flex-direction: column;
}

.top-button {
  width: 100%;
}

.bottom-button {
  display: flex;
  width: 100%;
}

button.main:hover {
  background-color: rgba(77, 77, 77, 0.3);
  border-color: var(--gold-green);
  border: 2px solid var(--gold-green);
  /*color: var(--gold-green);*/
  color: var(--off-white);
}



/* Add initial hidden state for elements */
.hero .container .content h1,
.hero .container .content h3,
.hero .container .vertical-text,
.hero .container .button-container .top-button,
.hero .container .button-container .bottom-button {
  opacity: 0;
  transform: translateY(20px);
  /* Slightly offset for a smooth transition */
  animation: fadeInUp 1s ease forwards;
}

/* Keyframes for fade-in and slide-up effect */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    /* Start slightly below */
  }

  to {
    opacity: 1;
    transform: translateY(0);
    /* End at original position */
  }
}

/* Staggered delays */
.hero .container .content h1 {
  animation-delay: 0.4s;
  /* Show first */
}

.hero .container .content h3 {
  animation-delay: 0.8s;
  /* Show second */
}

.hero .container .vertical-text {
  animation-delay: 1.2s;
  /* Show third */
}

.hero .container .button-container .bottom-button {
  animation-delay: 1.6s;
  /* Show fourth */
}

.hero .container .button-container .top-button {
  animation-delay: 2s;
  /* Show last */
}

/* Arrow button base styles */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
  /* Semi-transparent background */
  box-shadow: var(--off-white);
  color: white;
  font-size: 32px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: background-color 0.3s ease;
}

/* Positioning the arrows */
.left-arrow {
  left: 16px;
  /* Distance from the left side */
}

.right-arrow {
  right: 16px;
  /* Distance from the right side */
}

.arrow-icon.right {
  transform: rotate(180deg);
}

/* Hover effect */
.arrow:hover {

  background-color: rgba(77, 77, 77, 0.3);
  border-color: var(--gold-green);
  border: 1px solid var(--gold-green);
  /*color: var(--gold-green);*/
  color: var(--off-white);
}

.arrow:hover .arrow-icon {
  filter: var(--filter-gold);
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  background-image: url('/assets/images/DOMO Website/1. Home Page/background_grey_wall.jpg');
  background-size: cover;
  background-position: center;
  height: auto;
  border-bottom: solid 1px var(--off-white);

}

.about-container {
  height: 100%;
  width: calc(100% - 192px);
  margin-left: 96px;
  margin-right: 96px;
  border-left: solid 1px var(--off-white);
  border-right: solid 1px var(--off-white);
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flowers {
  display: flex;
  flex-direction: row;
  margin-top: 96px;
  gap: 10px;
  overflow: hidden;

}

.flowers img {
  animation: rotateFlowers 10s linear infinite;
}

@keyframes rotateFlowers {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.about-text {
  margin-top: 48px;
  font-family: "IBM Plex Serif", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 2px;
  text-align: center;
  line-height: 50px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);
  width: 864px;

}

.about-image {
  width: 864px;
  margin-top: 96px;
  margin-bottom: 96px;
  margin-left: 96px;
  margin-right: 96px;
}


.image-about.mobile {

  display: none;
}

/*-----------------------------------*\
  #VIRTUAL MENU
\*-----------------------------------*/
.japanese-text {
  font-family: "IBM Plex Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: var(--gold-green);
  letter-spacing: 2px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);
  margin-top: 96px;

}

.virtual-menu {
  font-family: "IBM Plex Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 24px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);

}

.selection {
  margin-top: 24px;
  font-family: "IBM Plex Serif", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);

}

.input-field.menu {
  color: #ffffff;
  font-weight: 300;
  margin-top: 72px;
  width: 632px;
  margin-left: 24px;
  margin-right: 24px;

}

.item {
  background-color: #000000;
  width: 304px;
  height: 560px;
  align-items: end;
  display: none;

}

.main.item {
  background-color: transparent;
  border-top: solid 1px var(--off-white);
  border-bottom: solid 1px var(--off-white);
  margin-top: 440px;
  display: block !important;

}

.carousel {
  margin-top: 24px;
  height: auto;
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 96px;

}

.slider-wrapper {
  margin-top: 0px;
  padding: 0px;
  overflow: hidden;
  width: calc(100%-96px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-left: 48px;
  margin-right: 48px;


}

.carousel-window {
  overflow: hidden;
  width: calc(100%-96px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-left: 48px;
  margin-right: 48px;
}


.carousel-content {
  display: flex;
  width: calc(304px * 4);
  transition: transform 0.5s ease;
  justify-content: space-between;
  align-items: center;
  gap: 24px
}

/* 

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 24px;

  border: none;
  background-color: rgba(60, 60, 60, 0.4);

  
}

.prev {
  left: 10px;
  margin-left: 100px;
  padding: 20px;
}

.next {
  right: 10px;
  margin-right: 100px;

  padding: 20px;
}


.carousel {
  position: relative;
  overflow: hidden; 
  width: 100%; 
  height: 560px; 
}

.carousel-window {
  display: flex;
  width: 100%;
  overflow: hidden; 
}

.carousel-content {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform; 
}

 */



/*-----------------------------------*\
  #DELIVERY BANNER
\*-----------------------------------*/

.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;

}

.delivery-text {
  height: 96px;
  text-transform: uppercase;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);
  margin-top: 24px;

}

button.main.delivery {
  margin-top: 48px;
  border: solid 1px var(--off-white);
  width: 624px;
}


/*-----------------------------------*\
  #RESERVATION
\*-----------------------------------*/


.reservation {
  background-image: url('/assets/images/DOMO Website/1. Home Page/background_grey_wall.jpg');
  background-size: cover;
  background-position: center;
  /* height:1340px; */
  height: 1516px;
  border-bottom: solid 1px var(--off-white);

}

.reservation-box {
  height: 100%;
  width: calc(100% - 192px);
  margin-left: 96px;
  margin-right: 96px;
  border-left: solid 1px var(--off-white);
  border-right: solid 1px var(--off-white);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation-container {
  width: 50%;
  height: 1516px;
  border-right: solid 1px var(--off-white);
  display: flex;
  flex-direction: column;
  text-align: center;

  padding: 0;
  margin: 0;

}

.japanese-text.location {
  margin-top: 96px;
}

.domo-info {
  font-family: "IBM Plex Serif", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  margin-top: 72px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);

}

.domo-info.find {
  margin-top: 0px;
}

.link {
  text-transform: uppercase;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 24px;
  color: var(--off-white);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);

}

.link:hover {
  color: var(--gold-green);
}

.reservation-form {

  height: auto;
  margin-left: 96px;
  margin-right: 96px;
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 96px;
}


.input-field {
  background-color: transparent;
  height: 56px;
  width: 100%;
  border: solid 1px var(--off-white);
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 200;
  font-size: 16px;
  margin-top: 24px;
  color: #e6e6e6;
  background-color: rgba(77, 77, 77, 0.3);
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 10px;

}

input[type="date"]::-webkit-calendar-picker-indicator {
  -webkit-appearance: none;
  /* Removes native styling */
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="white" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right;
  padding-right: 30px;
  /* Makes space for the icon */
  cursor: pointer;
}


.double-field {
  display: flex;
  flex-direction: row;
  gap: 20px;

}

.double-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.input-field.double {
  display: flex;
  flex-direction: row;
  gap: 10px;

}


button.main.reservation {
  border: solid 1px var(--off-white);
  width: 100%;
  margin-top: 48px;
  margin-bottom: 96px;
}



/*-----------------------------------*\
  #LOCATION
\*-----------------------------------*/




.location-container {
  width: 50%;
  height: 1516px;

  display: flex;
  flex-direction: column;
  text-align: center;


}

.address-link {


  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 24px;
  color: var(--off-white);



}

.address-link:hover {
  color: var(--gold-green);
}


.location-form {

  height: auto;
  margin-left: 96px;
  margin-right: 96px;
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 96px;

}

.map {
  margin-top: 20px;
  width: 100%;
  height: 780px;
}

.location-info {
  margin-top: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.link-worktime {

  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 24px;
  color: var(--off-white);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);

}

/*-----------------------------------*\
  #BANNER_CARRUSEL
\*-----------------------------------*/


.banner-carrusel {
  background-image: url('/assets/images/DOMO Website/1. Home Page/photo_carousel_1.jpg');
  background-size: cover;
  background-position: center;
  height: 656px;
  border-bottom: solid 1px var(--off-white);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}


/*-----------------------------------*\
  #PARALLAX
\*-----------------------------------*/


/* Гарантиране, че родителският контейнер не ограничава размерите на детските елементи */
.wrapper-outer {
  overflow: hidden;
  height: 656px;
  /* Примерна височина или променете според вашите нужди */
  border-bottom: solid 1px var(--off-white);
}

.wrapper {
  height: 100%;
  overflow-x: hidden;
  perspective: 1px;
  overflow-y: inherit;
}

.parallax-section {
  position: relative;
  min-height: 100vh;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  transform-style: preserve-3d;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Това прави фона статичен */
  background-repeat: no-repeat;
}

.parallax-section.banner {
  z-index: -1;
  margin-top: -500px;
}

.parallax-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(0, 0, 0);
  color: white;
  /* Примерен цвят на текста */
  z-index: 2;
}

/*-----------------------------------*\
  #NEWSLETTER
\*-----------------------------------*/

.newsletter {
  background-image: url('/assets/images/DOMO Website/1. Home Page/background_grey_wall.jpg');
  background-size: cover;
  background-position: center;
  height: 368px;
  border-bottom: solid 1px var(--off-white);

}

.newsletter-container {

  height: 100%;
  width: calc(100% - 192px);
  margin-left: 96px;
  margin-right: 96px;
  border-left: solid 1px var(--off-white);
  border-right: solid 1px var(--off-white);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;


}

.news-left {
  width: 40%;
  height: 100%;
  padding-left: 160px;
  padding-top: 96px;

}

.news-right {
  width: 60%;
  height: 100%;
  padding-top: 96px;

}

.news-title {
  font-family: "IBM Plex Serif", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  letter-spacing: 2px;
}

.news-text {
  text-transform: uppercase;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 24px;
  margin-bottom: 96px;

  color: var(--off-white);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);

}

.span-underline {
  display: inline;
  /* Ensures the span remains inline */
  color: var(--gold-green);
  text-decoration: underline;
}

button.main.newsletter {
  border: solid 1px var(--off-white);
  margin-top: 24px;
}

.input-field.news {
  margin-top: 0px;

}

.news-form {

  height: auto;
  margin-left: 130px;
  margin-right: 130px;

  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 96px;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-image: url('/assets/images/DOMO Website/1. Home Page/background_grey_wall.jpg');
  background-size: cover;
  background-position: center;
  height: 576px;
  border-bottom: solid 1px var(--off-white);

}

.footer-container {

  height: 100%;
  width: calc(100% - 192px);
  margin-left: 96px;
  margin-right: 96px;
  border-left: solid 1px var(--off-white);
  border-right: solid 1px var(--off-white);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;


}

.footer-wrapper {
  height: 100%;
  width: calc(100% / 3);
  border-right: solid 1px var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.link-footer {

  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 24px;
}

.link-footer:hover {
  color: var(--gold-green);
}





.follow {
  font-family: "IBM Plex Serif", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 2px;
}

.follow-link {
  text-transform: uppercase;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1px;
  margin-top: 24px;
  color: var(--gold-green);
}


.social {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.social-media {
  width: 55px;
  height: 55px;
}

.copyright {
  background-image: url('/assets/images/DOMO Website/1. Home Page/background_grey_wall.jpg');
  background-size: cover;
  background-position: center;
  height: 10vh;
  border-bottom: solid 1px var(--off-white);

}

.copyright-container {

  height: 100%;
  width: calc(100% - 192px);
  margin-left: 96px;
  margin-right: 96px;
  border-left: solid 1px var(--off-white);
  border-right: solid 1px var(--off-white);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;


}

.copy-text {


  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 25);


}

.copy {
  color: var(--gold-green);
  display: inline;
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--white);
  color: black;
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}

/*-----------------------------------*\
  #HOVER EFFECTS
\*-----------------------------------*/

button.main.footer {
  border: solid 1px var(--off-white);
  height: calc(100% / 6);
  width: 100%;
}

button.main.footer:is(:hover, :focus-visible) {
  border-color: var(--gold-green);
  color: var(--gold-green);
}

button.main:is(:hover, :focus-visible) {
  border-color: var(--gold-green);
  color: var(--gold-green);
}




/*-----------------------------------*\
  #MEDIA QUARIES
\*-----------------------------------*/

@media(max-width: 1400px) {






  .input-field.news {
    width: 100%;
  }


}

@media(max-width: 1200px) {

  *,
  *::before,
  *::after {
    overflow-x: hidden;
  }

  /* .box.long{
  width: 280px;
} */
  .box:is(.secondary) {
    display: none;
    width: 0px;
    border-color: transparent;
  }

  .header {
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    /* Adjust the color and opacity as needed */
    overflow: hidden;
    height: 72px;
  }


  .header .container {

    overflow: hidden;
    height: 72px;

  }

  .header .container .left-side {
    width: 66.6%;
    overflow: hidden;


  }

  .header .container .right-side {
    width: 33.3%;
    overflow: hidden;

  }

  .box {
    width: 50%;
  }

  .box.right.normal {
    width: 50%;
  }

  .box.right.long {
    width: 50%;
    border: none;

  }


  .box.left.normal {
    width: 100%;

  }

  .left-side {
    width: 100%;
  }

  .right-side {
    width: 100%;
  }

  .box:hover {
    color: var(--gold-green);
    border-color: var(--gold-green);
  }

  .box.right {
    border-right: solid 1px #FAFAFA;
    padding: 0px;

  }

  .box.left {
    border-left: solid 1px #FAFAFA;
    padding: 0px;
  }





  .headline-1.navbar-title {
    overflow: hidden;
  }


  .nav-open-btn {
    align-items: center;
    justify-content: center;

  }

  .logo-nav-pic {
    width: auto;
    height: 60px;
  }


  /*-----------------------------------*\
  #HERO
\*-----------------------------------*/
  #HERO {
    position: relative;
    /* Set position to relative for the parent container */
  }

  .hero .container {
    background-position: center;

    background-size: cover;
    background-position: 35%;
    animation: none;
    /* Apply the animation */


  }

  @keyframes zoomIn {
    0% {
      background-size: 90% 100%;
      /* Start with full size */
    }

    100% {
      background-size: 110% 100%;
      /* Zoom in by 10% */
    }

  }

  .container .vertical-text {
    font-size: 32px;
    width: 56px;
    height: 144px;
  }

  .hero .container .content h1 {
    margin-top: 32px;
    font-size: 30px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 44px;

  }

  .hero .container .content h3 {

    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 16px;
    line-height: 24px;
  }



  button.main {
    height: 72px;
    font-size: 14px;
    padding: 0;
    margin: 0px;

  }

  button.main.menu {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    font-size: 14px;

  }

  button.main.half {
    width: 50%;
    border: solid 1px var(--off-white);
    height: 72px;
    font-size: 14px;



  }


  /*-----------------------------------*\
  #VIRTUAL MENU
\*-----------------------------------*/
  .japanese-text {
    margin-top: 72px;
    font-size: 24px;
    overflow: hidden;
    align-self: center;

  }

  .virtual-menu {
    margin-top: 16px;
    font-size: 22px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 22px;
    overflow: hidden;
    height: auto;
  }

  .selection {
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 16px;
    overflow: hidden;
    margin-top: 16px;
    height: auto;

  }

  .input-field.menu {
    color: #ffffff;
    font-weight: 300;
    margin-top: 48px;
    width: calc(100% - 48px);

    margin-left: 24px;
    margin-right: 24px;

  }




  /*-----------------------------------*\
  #DELIVERY BANNER
\*-----------------------------------*/


  .wrapper-outer {
    height: 512px;
  }

  .delivery-text {
    height: auto;
    font-size: 14px;
    margin-top: 24px;
    padding-left: 48px;
    padding-right: 48px;
    line-height: 28px;

  }

  button.main.delivery {
    margin-top: 48px;
    width: 300px;
  }

  .parallax-section.banner {
    z-index: -1;

  }


  /*-----------------------------------*\
  #RESERVATION
\*-----------------------------------*/


  .reservation {

    height: auto;
    border-bottom: solid 1px var(--off-white);
    border-top: solid 1px var(--off-white);


  }


  .reservation-box {
    height: 100%;
    height: auto;
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;

    display: flex;
    flex-direction: column;

  }


  .reservation-container {
    width: 100%;
    height: 100%;
    border-right: none;
    border-bottom: solid 1px var(--off-white);
    display: flex;
    flex-direction: column;


  }

  .domo-info {
    font-size: 16px;
    margin-top: 48px;
    line-height: 16px;
    overflow: hidden;
    letter-spacing: 1px;

  }

  .domo-info.find {
    margin-left: 48px;
  }

  .link {
    overflow: hidden;
    margin-top: 16px;
  }


  .reservation-form {

    height: auto;
    width: 100%;
    margin-top: 100px;
    padding: 0;
    margin: 0;
    margin-top: 48px;
    margin-bottom: 72px;

  }


  .input-field {
    width: calc(100% - 96px);
    align-self: center;
    margin-top: 16px;
    align-items: center;

  }




  .double-field {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: calc(100% - 96px);
    margin-left: 48px;
    margin-right: 48px;

  }



  button.main.reservation {

    width: calc(100% - 96px);


    align-self: center;
  }







  /*-----------------------------------*\
  #LOCATION
\*-----------------------------------*/




  .location-container {
    width: 100%;
    height: auto;
    margin-bottom: 72px;
  }

  .address-link {

    margin-top: 16px;

    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
    align-self: center;
    overflow: hidden;
    line-height: 28px;

  }

  .domo-info.address {
    margin-top: 48px;
  }

  .address-link:hover {
    color: var(--gold-green);
  }

  .link-worktime {
    margin-top: 16px;
    font-size: 16px;
    letter-spacing: 1px;
    overflow: hidden;
  }

  .location-form {

    height: auto;
    width: 100%;
    margin-top: 100px;
    padding: 0;
    margin: 0;
    margin-top: 48px;
  }

  .map {
    margin-top: 20px;
    width: calc(100% - 96px);
    align-self: center;
    height: 512px;
    overflow: hidden;
  }

  .location-info {
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /*-----------------------------------*\
  #NEWSLETTER
\*-----------------------------------*/

  .newsletter {
    border-top: solid 1px var(--off-white);
    height: auto;
    border-bottom: solid 1px var(--off-white);
    align-items: center;
    justify-content: center;

  }

  .newsletter-container {


    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;

    flex-direction: column;



  }

  .news-form {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 72px;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .news-left {
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 0px;
    text-align: center;
    overflow: hidden;

  }

  .news-right {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 48px;
    padding: 0;


  }

  .news-title {
    margin-top: 72px;
    font-size: 22px;
    letter-spacing: 2px;
  }

  .news-text {

    font-size: 14px;
    letter-spacing: 1px;
    line-height: 28px;

    height: auto;
    margin-bottom: 0px;
  }

  .input-field.news {
    width: 100%;


  }

  button.main.newsletter {
    border: solid 1px var(--off-white);
    width: 100%;
    align-self: center;
  }

  /*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

  .footer {
    height: auto;
    border-bottom: solid 1px var(--off-white);

  }

  .logo-footer {
    margin-top: 72px;
    font-size: 16px;
    line-height: 16px;
    width: 104px;
  }


  .link-footer.address {
    margin-top: 48px;
    line-height: 28px;

  }

  .link-footer.plan {
    margin-bottom: 72px;

  }

  .link-footer.phone {
    margin-top: 48px;

  }

  .link-footer {
    margin-top: 24px;
    font-size: 16px;
    line-height: 16px;
    overflow: hidden;
  }


  .footer-container {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    flex-direction: column;

  }

  .footer-wrapper.buttons {
    height: 432px;

  }


  .footer-wrapper {
    height: auto;
    width: 100%;

  }

  .follow {
    margin-top: 72px;
    font-size: 16px;
    line-height: 16px;
    overflow: hidden;
  }

  .follow-link {
    margin-top: 16px;
    font-size: 16px;
    line-height: 16px;
    overflow: hidden;


  }

  .social {
    margin-top: 32px;
    margin-bottom: 72px;
    gap: 32px;
  }

  .social-media {
    width: 40px;
    height: 40px;
  }

  .copyright {
    background-image: url('/assets/images/DOMO Website/1. Home Page/background_grey_wall.jpg');
    background-size: cover;
    background-position: center;
    height: auto;
    border-bottom: solid 1px var(--off-white);

  }

  .copyright-container {

    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    text-align: center;
    overflow: hidden;
    height: auto;

  }

  .copy-text {

    margin-top: 24px;
    margin-bottom: 24px;
    padding: 24px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 1px;


  }

}

@media(max-width: 1100px) {

  /*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

  .about {
    background-image: url('/assets/images/DOMO Website/1. Home Page/background_grey_wall.jpg');
    background-size: cover;
    background-position: center;
    height: auto;
    border-bottom: solid 1px var(--off-white);

  }

  .about-container {
    height: auto;
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;

  }

  .flowers {
    margin-top: 72px;
    height: 34px;
    overflow: hidden;
    gap: 0px;


  }

  .about-text {
    padding: 24px;
    margin-top: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 36px;
    height: auto;
    overflow: hidden;
    width: auto;
  }

  .about-image {
    width: 100%;
    /* margin-left: -50px;
  margin-right: -50px; */
    height: auto;
    margin-top: 48px;
    overflow-x: hidden;
    margin-bottom: 72px;

  }

  .image-about {
    padding-left: 72px;
    padding-right: 72px;

    width: 100%;
    height: auto;
    z-index: 1000;
    overflow-x: hidden;
    height: 488px;
    display: block;
  }

  .image-about.mobile {

    display: none;
  }

}

@media(max-width: 1000px) {




  /*-----------------------------------*\
  #VIRTUAL MENU
\*-----------------------------------*/
  .japanese-text {
    margin-top: 72px;
    font-size: 24px;
    overflow: hidden;
    align-self: center;

  }

  .virtual-menu {
    margin-top: 16px;
    font-size: 22px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 22px;
    overflow: hidden;
    height: auto;
  }

  .selection {
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 16px;
    overflow: hidden;
    margin-top: 16px;
    height: auto;

  }

  .input-field.menu {
    color: #ffffff;
    font-weight: 300;
    margin-top: 48px;
    width: calc(100% - 48px);

    margin-left: 24px;
    margin-right: 24px;

  }


  .image-about {
    padding-left: 24px;
    padding-right: 24px;

  }


  /*-----------------------------------*\
  #RESERVATION
\*-----------------------------------*/



  .input-field {
    width: calc(100% - 192px);
    align-self: center;
    margin-top: 16px;
    align-items: center;

  }

  .domo-info.find {
    padding-left: 48px;
  }


  .double-field {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;

  }



  button.main.reservation {

    width: calc(100% - 96px);

    align-self: center;
  }




}


@media(max-width: 850px) {





  /*-----------------------------------*\
  #VIRTUAL MENU
\*-----------------------------------*/
  .japanese-text {
    margin-top: 72px;
    font-size: 24px;
    overflow: hidden;
    align-self: center;

  }

  .virtual-menu {
    margin-top: 16px;
    font-size: 22px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 22px;
    overflow: hidden;
    height: auto;
  }

  .selection {
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 16px;
    overflow: hidden;
    margin-top: 16px;
    height: auto;

  }

  .input-field.menu {
    color: #ffffff;
    font-weight: 300;
    margin-top: 48px;
    width: calc(100% - 48px);

    margin-left: 24px;
    margin-right: 24px;

  }

  .item {
    background-color: #000000;
    width: 304px;
    height: 560px;
    align-items: end;

  }

  .item:not(.first) {
    display: none;
  }


  .main.item {

    margin-top: 400px;
    display: block;
    width: 100%;

  }

  .prev {
    margin-left: 12px;
    z-index: 1000;

  }

  .next {
    z-index: 1000;
    margin-right: 12px;
  }

  .item {
    width: auto;

    margin-left: 24px;
    margin-right: 24px;
    height: 544px;
    flex-shrink: 0;
    /* Prevents flex items from shrinking */
    background-color: #000000;
    /* Background color for visibility */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Required for absolute positioning inside */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

  }

  .input-field.menu {
    color: #ffffff;
    font-weight: 300;
    margin-top: 72px;
    width: 304px;
    margin-left: 24px;
    margin-right: 24px;

  }

  .prev {
    margin-left: calc((100% - 324px) / 2);

    z-index: 1000;

  }

  .next {
    z-index: 1000;
    margin-right: calc((100% - 324px) / 2);
  }

  .item {
    width: 304px;
    align-self: center;


  }


}

@media(max-width: 750px) {



  /*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/



  .image-about {

    display: none;
  }

  .image-about.mobile {

    height: 800px;
    display: block;
  }

  /*-----------------------------------*\
  #MENU
\*-----------------------------------*/







}

@media(max-width: 580px) {



  /*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/



  .image-about {

    display: none;
  }

  .image-about.mobile {

    height: 624px;
    display: block;
  }

  /*-----------------------------------*\
  #RESERVATION
\*-----------------------------------*/




  .input-field {
    width: calc(100% - 48px);
    align-self: center;
    margin-top: 16px;
    align-items: center;

  }




  .double-field {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;

  }

  .domo-info.find {
    padding-left: 0px;
    margin-left: 24px;
  }


  button.main.reservation {

    width: calc(100% - 48px);

    align-self: center;
  }



  /*-----------------------------------*\
  #LOCATION
\*-----------------------------------*/




  .map {
    margin-top: 20px;
    width: calc(100% - 48px);
    align-self: center;
    height: 512px;
    overflow: hidden;
  }



}

@media(max-width: 500px) {

  .navbar-item {
    height: 72px;

  }

  .navbar-item span {

    font-size: 14px;

  }

  /*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/



  .image-about {
    padding-left: 24px;
    padding-right: 24px;

    width: 100%;
    height: auto;
    z-index: 1000;
    overflow-x: hidden;
    height: 488px;
    display: none;
  }

  .image-about.mobile {
    padding-left: 24px;
    padding-right: 24px;

    width: 100%;
    height: auto;
    z-index: 1000;
    overflow-x: hidden;
    height: 488px;
    display: block;
  }


  /*-----------------------------------*\
  #VIRTUAL MENU
\*-----------------------------------*/


  .prev {
    margin-left: 12px;
    z-index: 1000;

  }

  .next {
    z-index: 1000;
    margin-right: 12px;
  }

  .item {
    width: 100%;

    margin-left: 24px;
    margin-right: 24px;
    height: 544px;
    flex-shrink: 0;
    /* Prevents flex items from shrinking */
    background-color: #000000;
    /* Background color for visibility */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Required for absolute positioning inside */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

  }


  /*-----------------------------------*\
  #DELIVERY BANNER
\*-----------------------------------*/


  .banner {


    background-size: center;
    background-repeat: no-repeat;

  }

  .wrapper-outer {
    height: 512px;
  }

  .delivery-text {
    height: auto;
    font-size: 14px;
    margin-top: 24px;
    padding-left: 48px;
    padding-right: 48px;
    line-height: 28px;

  }

  button.main.delivery {
    margin-top: 48px;
    width: 300px;
  }




  /*-----------------------------------*\
  #NEWSLETTER
\*-----------------------------------*/

  .newsletter {
    border-top: solid 1px var(--off-white);
    height: auto;
    border-bottom: solid 1px var(--off-white);
    align-items: center;
    justify-content: center;

  }

  .newsletter-container {


    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;

    flex-direction: column;



  }

  .news-form {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 72px;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .news-left {
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 0px;
    text-align: center;
    overflow: hidden;

  }

  .news-right {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 48px;
    padding: 0;


  }

  .news-title {
    margin-top: 72px;
    font-size: 22px;
    letter-spacing: 2px;
  }

  .news-text {

    font-size: 14px;
    letter-spacing: 1px;
    line-height: 28px;

    height: auto;
    margin-bottom: 0px;
  }

  .input-field.news {
    width: 100%;


  }

  button.main.newsletter {
    border: solid 1px var(--off-white);
    width: 100%;
    align-self: center;
  }

  /*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

  .footer {
    height: auto;
    border-bottom: solid 1px var(--off-white);

  }

  .logo-footer {
    margin-top: 72px;
    font-size: 16px;
    line-height: 16px;
    width: 104px;
  }


  .link-footer.address {
    margin-top: 48px;
    line-height: 28px;

  }

  .link-footer.plan {
    margin-bottom: 72px;

  }

  .link-footer.phone {
    margin-top: 48px;

  }

  .link-footer {
    margin-top: 24px;
    font-size: 16px;
    line-height: 16px;
    overflow: hidden;
  }


  .footer-container {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    flex-direction: column;

  }

  .footer-wrapper.buttons {
    height: 432px;

  }


  .footer-wrapper {
    height: auto;
    width: 100%;

  }

  .follow {
    margin-top: 72px;
    font-size: 16px;
    line-height: 16px;
    overflow: hidden;
  }

  .follow-link {
    margin-top: 16px;
    font-size: 16px;
    line-height: 16px;
    overflow: hidden;


  }

  .social {
    margin-top: 32px;
    margin-bottom: 72px;
    gap: 32px;
  }

  .social-media {
    width: 40px;
    height: 40px;
  }

  .copyright {
    background-image: url('/assets/images/DOMO Website/1. Home Page/background_grey_wall.jpg');
    background-size: cover;
    background-position: center;
    height: auto;
    border-bottom: solid 1px var(--off-white);

  }

  .copyright-container {

    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    text-align: center;
    overflow: hidden;
    height: auto;

  }

  .copy-text {

    margin-top: 24px;
    margin-bottom: 24px;
    padding: 24px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 1px;


  }

}

.domo-closed {
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../images/background_grey_wall.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  font-family: "IBM Plex Serif", serif;
  font-weight: 600;
  font-style: normal;
}

.domo-closed-text {
  text-align: center;
  font-size: 32px;
  line-height: 40px;
}