
/**
 * MIT licensed Salim Akhayad - 2025
 */





/*-----------------------------------*\
  #CUSTOM VARIABLES
\*-----------------------------------*/

:root {

  /**
   * COLORS
   */

  --gold-crayola: hsl(38, 61%, 73%);
  --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;

  /**
   * OTHER
   */
   --primary: #0676ed;
  --background: #222b45;
  --warning: #f2a600;
  --success: #12c99b;
  --error: #e41749;
  --dark: #151a30;
}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
data,
span,
input,
button,
select,
ion-icon,
textarea { 
  display: block;
    color: var(--gold-crayola);
    text-shadow: 0.2px 0.1px;
    -webkit-transform: translate(0%, 5%);
}
img{
  display: block;
  margin: auto;
}
textarea .ordernow { display: block; color:black; }
a {
  color: white;
  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: black;
  font-family: var(--fontFamily-dm_sans);
  font-size: var(--fontSize-body-4);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  /* overflow: hidden; */
  /* height: 200vh; */
  margin-top: 450px;
}

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: 135;
  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; }

.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 {
    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;
  cursor: pointer;
}

.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: black; }

.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;
}

.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);
  margin-block-end: 20px;
  outline: none;
  transition: border-color var(--transition-2);
}

.input-field::placeholder { color: inherit; }

.input-field:focus { border-color: var(--gold-crayola); }

.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-color: var(--gold-crayola);
  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%);
}

.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%; }
}





/*-----------------------------------*\
  #TOPBAR
\*-----------------------------------*/

.topbar { display: none; }





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

/* .header .btn { display: none; } */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: var(--eerie-black-4); */
  padding-block: 60px;
  z-index: 4;
  /* border-block-end: 1px solid transparent; */
  transition: var(--transition-1);
  background: linear-gradient(#000000, transparent);
}

.header.active {
  /* padding-block: 20px; */
  background: linear-gradient(var(--eerie-black-4), transparent 90%);
  border-color: var(--black-alpha-15);
}

.header.hide {
  transform: translateY(-100%);
  transition-delay: 250ms;
}

.header .container {
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.nav-open-btn {
  padding: 12px;
  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; }

.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 .slider-btn { display: none; }

.hero {
  /* position: relative;
  padding-block: 120px;
  min-height: 100vh;
  overflow: hidden; */
  z-index: 1;
}
.grid-list2 { display:grid;grid-template-columns: 1fr 1fr; }
.hero .slider-item {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -95%);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  padding-block-end: 150px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-3);
  z-index: 1;
}

.hero .slider-item.active {
  opacity: 1;
  visibility: visible;
  height: 80%;
  color: white;
}

.hero .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.hero .slider-item.active .slider-bg {
  animation: smoothScale 7s linear forwards;
}

@keyframes smoothScale {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero .section-subtitle::after { margin-block: 14px 20px; }

.hero-text { margin-block: 10px 40px; }

.hero .btn { margin-inline: auto; }

.hero-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  background-color: var(--gold-crayola);
  width: 110px;
  height: 110px;
  padding: 12px;
  transform: scale(0.6);
}

.hero-btn img {
  margin-inline: auto;
  margin-block-end: 6px;
}

.hero-btn .span {
  color: var(--black);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-1);
  line-height: var(--lineHeight-3);
}

.hero-btn::after {
  inset: 0;
  border: 1px solid var(--gold-crayola);
  animation: rotate360 15s linear infinite;
}

.slider-reveal {
  transform: translateY(30px);
  opacity: 0;
}

.hero .slider-item.active .slider-reveal {
  animation: sliderReveal 1s ease forwards;
}

@keyframes sliderReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero .slider-item.active .section-subtitle { animation-delay: 500ms; }

.hero .slider-item.active .hero-title { animation-delay: 1000ms; }

.hero .slider-item.active .hero-text { animation-delay: 1.5s; padding-top: 5%;}

.hero .slider-item.active .btn { animation-delay: 2s; }





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service .section-title { margin-block-end: 66px; }

.service .section-text { margin-block-end: 40px; }

.service-card { overflow: hidden; }

.service-card .has-before {
  padding-block: 30px;
  margin-block-end: 26px;
  z-index: 1;
}

.service-card .has-before::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 100%;
    background-position: center;
  background-size: cover;
  background-repeat: repeat;
  transition: var(--transition-2);
  transition-delay: 0;
  z-index: -1;
  will-change: transform;
}

.service-card:is(:hover, :focus-within) .has-before::before {
  transform: rotateY(0.5turn) translateX(50%);
  transition-delay: 300ms;
}

.service-card .card-banner { transition: var(--transition-2); }

.service-card:is(:hover, :focus-within) .card-banner { transform: scale(1.05); }

.service .card-title { margin-block-end: 12px; }





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .section-text { margin-block: 15px 30px; }

.about .btn {
  margin-inline: auto;
  margin-block-start: 26px;
}

.about .container {
  display: grid;
  gap: 120px;
}

.about-banner {
  position: relative;
  margin-block-end: 120px;
}

.about-banner > .w-100 { padding-inline-start: 50px; }

.about .abs-img { position: absolute; }

.about .abs-img::before { z-index: -1; }

.about .abs-img-1 {
  bottom: -120px;
  left: 0;
  width: 150px;
  padding-block: 50px;
}

.about .abs-img-2 {
  top: -65px;
  right: 0;
  overflow: hidden;
}

.about .abs-img-1::before {
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
    background-repeat: repeat;
}

.about .abs-img-2::before {
  inset: 0;
    background-repeat: no-repeat;
  background-size: contain;
  animation: rotate360 15s linear infinite;
}





/*-----------------------------------*\
  #SPECIAL DISH
\*-----------------------------------*/

.special-dish-content { padding-block: 70px; }

.special-dish .abs-img {
  margin-inline: auto;
  margin-block-end: 12px;
}

.special-dish .section-text { margin-block: 16px 40px; }

.special-dish-content .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-block-end: 40px;
}

.special-dish-content .del {
  text-decoration: none;
  color: var(--davys-grey);
}

.special-dish-content .span { color: var(--gold-crayola); }

.special-dish .btn { margin-inline: auto; }





/*-----------------------------------*\
  #MENU
\*-----------------------------------*/

.menu .section-title { margin-block-end: 40px; }

.menu .grid-list { margin-block-end: 50px; }

.menu-card {

}

/*.hover\:card .card-banner { background-color: var(--gold-crayola); }*/

.hover\:card .card-banner .img-cover { transition: var(--transition-2); }

.hover\:card:is(:hover, :focus-within) .card-banner .img-cover {
  opacity: 0.8;
/*  transform: scale(1.05);*/
}

.menu-card .card-banner {
  flex-shrink: 0;
/*  border-radius: var(--radius-24);*/
}

.menu-card .card-title { transition: var(--transition-1); }

.menu-card .card-title:is(:hover, :focus-visible) { color: var(--gold-crayola); }

.menu-card .badge {
  background-color: var(--gold-crayola);
  color: var(--eerie-black-1);
  font-family: var(--fontFamily-forum);
  max-width: max-content;
  line-height: var(--lineHeight-6);
  text-transform: uppercase;
  padding-inline: 10px;
  margin-block-start: 10px;
}

.menu-card .span {
  color: var(--gold-crayola);
  margin-block: 10px;
}

.menu-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-4);
}

.menu-text .span {
  display: inline-block;
  color: var(--gold-crayola);
}

.menu .btn {
  margin-inline: auto;
  margin-block-start: 26px;
}

.menu .shape {
  display: block;
  width: 70%;
}

.menu .shape-2 {
  top: 0;
  left: 0;
}

.menu .shape-3 {
  bottom: 0;
  right: 0;
}


h1.display-2
{
  font-size:80px;
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
}


/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

p.text-center
{
  color:white;
}
.testi {
  padding-block-end: 340px;
  position: static;
}

.testi .quote {
  font-size: 7rem;
  font-family: var(--fontFamily-forum);
  line-height: 0.7em;
}

.testi .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block: 40px 50px;
}

.testi .separator { animation: rotate360 15s linear infinite; }

.profile .img {
  margin-inline: auto;
  border-radius: var(--radius-circle);
  margin-block-end: 15px;
}

.testi .profile-name {
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
}





/*-----------------------------------*\
  #RESERVATION
\*-----------------------------------*/



.form-text { margin-block-end: 40px; }

.form-text .link {
  display: inline;
  color: var(--gold-crayola);
}


.input-field[type="date"] {
  text-transform: uppercase;
  padding-inline-end: 10px;
}

.input-field[type="date"]::-webkit-calendar-picker-indicator { opacity: 0; }

textarea.input-field {
  resize: none;
  height: 140px;
  padding-block: 20px;
  line-height: var(--lineHeight-1);
}








/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/

.features .section-title { margin-block-end: 40px; }

.feature-card { padding: 30px 20px 40px; }

.feature-item:nth-child(2n+1) .feature-card { background-color: var(--eerie-black-3); }

.feature-item:nth-child(2n) .feature-card { background-color: var(--smoky-black-3); }

.feature-card .card-icon {
  max-width: max-content;
  margin-inline: auto;
  transition: var(--transition-2);
}

.feature-card:hover .card-icon { transform: scale(-1) rotate(180deg); }

.feature-card .card-title { margin-block: 20px; }

.feature-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-6);
}





/*-----------------------------------*\
  #EVENT
\*-----------------------------------*/

.event .section-title { margin-block-end: 40px; }

.event-card {
  position: relative;
  overflow: hidden;
}

.event-card .card-content {
  background-image: var(--gradient-1);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 35px 35px 25px;
}

.event-card .publish-date {
  position: absolute;
  top: 30px;
  left: 25px;
  padding: 5px 10px;
  color: var(--gold-crayola);
  background-color: var(--black);
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-1);
  line-height: 14px;
}

.event-card .card-subtitle {
  color: var(--gold-crayola);
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 5px;
}

.event-card .card-banner .img-cover { transition: var(--transition-2); }

.event-card:is(:hover, :focus-within) .img-cover { transform: scale(1.05); }

.event .btn {
  margin-inline: auto;
  margin-block-start: 40px;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top { margin-block-end: 70px; }

.footer-brand {
  position: relative;
  padding: 50px 40px;
    background-position: center top;
  background-repeat: repeat;
}

.footer-brand::before,
.footer-brand::after {
  top: 0;
  width: 15px;
  height: 100%;
}

.footer-brand::before { left: 0; }

.footer-brand::after { right: 0; }

.footer-brand .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 40px;
}

.footer-brand :is(.body-4, .label-1) {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.footer-brand .contact-link {
  margin-block: 6px;
  transition: var(--transition-1);
}

.footer-brand .contact-link:is(:hover, :focus-visible) { color: var(--gold-crayola); }

.footer-brand .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block: 40px 25px;
}

.footer-brand .separator { animation: rotate360 15s linear infinite; }

.footer-brand .label-1 { margin-block-end: 30px; }

.footer-brand .label-1 .span {
  display: inline;
  color: var(--white);
}

.footer-brand .icon-wrapper .input-field { cursor: text; }

.footer-brand .btn { min-width: 100%; }

.footer-list {
  display: grid;
  gap: 20px;
}

.footer-link {
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-4);
  margin-inline: auto;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) { color: var(--gold-crayola); }

.copyright {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.copyright .link {
  display: inline;
  color: var(--gold-crayola);
  text-decoration: underline;
}



  a:not([href]):not([tabindex])
  {
    color:white !important;
  }

   a:not([href]):not([tabindex]):hover
  {
    color:black !important;
  }

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--eerie-black-1);
  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: var(--gold-crayola);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}



/* .parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  }
  
.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 1 / 3 / 2 / 4; } */


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/


 @media (min-width: 1400px) and (max-width:3600px) {
  .hero .slider-bg{
    top: -55;
  }
  section#about{
    margin-top: 15%;
  }
}
@media (min-width: 575px) {
  :root {

    /**
     * typography
     */

    --fontSize-body-2: 2rem;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .about) .section-text {
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-number { --fontSize-body-1: 3rem; }



  /**
   * TOPBAR
   */

  .topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 10px;
    border-block-end: 1px solid var(--white-alpha-20);
    z-index: 4;
    transition: var(--transition-1);
  }

  .topbar:has(~ .header.active) { transform: translateY(-100%); }

  .topbar-item:not(.link),
  .topbar .separator { display: none; }

  .topbar .container,
  .topbar-item {
    display: flex;
    align-items: center;
  }

  .topbar .container {
    justify-content: center;
    gap: 30px;
  }

  .topbar-item { gap: 6px; }

  .topbar-item ion-icon { --ionicon-stroke-width: 60px; }

  .topbar-item .span { font-size: var(--fontSize-label-1); }

  .topbar .link { transition: var(--transition-1); }

  .topbar .link:is(:hover, :focus-visible) { color: var(--gold-crayola); }



  /**
   * HEADER
   */

  /* .header { top: 51px; } */

  .header.active { top: 0; }

  .header .btn {
    display: block;
    /* margin-inline-start: auto; */
  }



  /**
   * HERO
   */

  .hero-btn { transform: scale(0.7); }



  /**
   * SERVICE
   */

  .service .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about .container { gap: 80px; }

  .about-banner > .w-100 { padding-inline-start: 90px; }

  .about .abs-img-1 { width: 285px; }

  .about .contact-number { --fontSize-body-1: 2.4rem; }



  /**
   * MENU
   */

  .menu-card .title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }

  .menu-card .badge { margin-block-start: 0; }

  .menu-card .span {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
  }

  .menu-card .span::before {
    content: "";
    height: 6px;
    flex-grow: 1;
    border-block: 1px solid var(--white-alpha-20);
  }



  /**
   * EVENT
   */

  .event .container {
    max-width: 420px;
    margin-inline: auto;
  }


  /**
   * FOOTER
   */

  .footer-brand > * {
    max-width: 460px;
    margin-inline: auto;
  }

  .footer .input-wrapper { position: relative; }

  .footer .input-field {
    margin-block-end: 0;
    padding-inline-end: 205px;
  }

  .footer-brand .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: max-content;
  }

}



/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .grid-list { grid-template-columns: 1fr 1fr 1fr; }
  .grid-list2 { display:grid;grid-template-columns: 1fr 1fr; }
  :is(.service, .event) .container { max-width: 820px; }

  :is(.service, .event) .grid-list li:last-child {
    /* grid-column: 1 / 3; */
    /* width: calc(50% - 20px); */
    margin-inline: auto;
  }



  /**
   * HEADER
   */




  /**
   * HERO
   */

  .hero .slider-btn {
    display: grid;
    position: absolute;
    z-index: 1;
    color: var(--gold-crayola);
    font-size: 2.4rem;
    border: 1px solid var(--gold-crayola);
    width: 45px;
    height: 45px;
    place-items: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-1);
  }

  .hero .slider-btn ion-icon { transform: rotate(-45deg); }

  /* .hero .slider-btn.prev { } */

  .hero .slider-btn.next { right: 30px; }

  .hero .slider-btn:is(:hover, :focus-visible) {
    background-color: var(--gold-crayola);
    color: var(--black);
  }
  /**
   * RESERVATION
   */
  .reservation .input-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
  .reservation .input-wrapper:nth-child(4) {
    grid-template-columns: repeat(3, 1fr);
  }
  /**
   * FOOTER
   */
  .footer-brand { grid-column: 1 / 3; }
}
/**
 * responsive for larger than 992px screen
 */
@media (min-width: 750px) and (max-width:1200px) {

  /**
   * CUSTOM PROPERTY
   */


  :root {

    /**
     * spacing
     */

    --section-space: 100px;
    margin-top: 10%;
    /* margin-left: 15%; */

  }
  @media (min-width: 750px) and (max-width:1200px) {

    @media (width:820px) and (height:1180px)
    {
      .nav ul {
      top: 60% !important;
      left: 10% !important;
      }
    }
    @media (min-width:1024px) and (max-height:1366px)
    {
      .nav ul {
        top: 55%;
        left: 10%;
      }
    }

  }
  @media (min-width: 767px) and (max-width:1025px) {
    .nav ul {
      top: 50% !important;
      left: 0% !important;
    }
  }

  section#about
  {
    margin-top: 30% !important;
  }
  div.Intro{
    margin-top: -15% !important;
  }
  figure img.w-100{
    width: 600px;
  }

  section div.container{
    padding-left: 0%;
  }
  /**
   * REUSED STYLE
   */

  :is(.service, .event) .container { max-width: unset; }

  :is(.service, .event) .grid-list { grid-template-columns: repeat(1, 1fr); }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: auto;
    width: 100%;
  }



  /**
   * TOPBAR
   */

  .topbar-item:not(.link) { display: flex; }

  .topbar .item-2 { margin-inline-end: auto; }



  /**
   * SERVICE
   */

  .service .shape { display: block; }

  .service .shape-1 {
    bottom: 0;
    left: 0;
  }

  .service .shape-2 {
    top: 0;
    right: 0;
  }



  /**
   * ABOUT
   */

  .about .container {
        grid-template-columns: 0.7fr 1fr;
        gap: 30px;
        padding-bottom: 5%;
        margin-top: -190%;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .special-dish-content { padding-inline: 50px 25px; }

  .special-dish-content .container { position: relative; }

  .special-dish .section-subtitle::after,
  .special-dish .btn { margin-inline: 0; }

  .special-dish-content .wrapper { justify-content: flex-start; }

  .special-dish .abs-img {
    position: absolute;
    top: 10px;
    left: -40px;
    animation: move 5s linear infinite;
  }



  /**
   * MENU
   */

  .menu .grid-list {
    position: relative;
    column-gap: 90px;
  }

  .menu .grid-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    border-inline-start: 1px solid var(--white-alpha-20);
  }



  /**
   * TESTIMONIALS
   */

  .testi-text {
    max-width: 910px;
    margin-inline: auto;
  }



  /**
   * RESERVATION
   */




  /**
   * FOOTER
   */

  .footer .grid-list {
    grid-template-columns: 0.45fr 1fr 0.45fr;
    align-items: center;
  }

  .footer-brand {
    grid-column: auto;
    order: 1;
    padding-block: 100px;
  }

  .footer-list:last-child { order: 0; }

}

/** Nest Hub**/
/* @media (width: 1024px) and (height:600px)
{
  .header.active {
    padding-top: 5% !important;
  }
  
  section#about
  {
    margin-left: -100px;
    margin-top: 110% !important;
  }

} */
.menu-icon:checked ~ .nav
  {
    top: 25% !important;
    right: 70% !important;;
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh !important;
}
@media (min-width: 360px) and (max-height:1350px)
{
  /* a.btn-secondary
  {
    margin-top: 50px;
  } */
}
/* 
@media (width: 412px) and (height:915px)
{
  a.btn-secondary
  {
    margin-top: 50px;
  }
} */
/**  Desktop 1920 x 1080ox**/
@media (width: 1920px) and (height:1080px)
{
  .nav {
    left: -170%;
  
  }
}
/** Galaxy S20 Ultra**/
@media (width: 412px) and (height:915px)
{
  figure.about-banner img{
    width: 100% !important;
  }
  .section {
    margin-top: -220%;
 } 
  .nav ul li a {
    font-size: 5.5vh !important;
  }

  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  top:23px;
  }
  header .container
  {
    margin-left: 125px;
    /* margin-top: -15%; */
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 25% !important;
    /* margin-right: 16% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  div.slick-list.draggable {
    margin-left: -55px !important;
  }
  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -295px !important;
  }
  main#main 
  {
    margin-top: 85% !important;
  }

  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a.logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 75% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size: 3.5vh !important;
}
.nav ul{
  left: 50px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    /* margin-left: -10%; */
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-left: -100px;
    margin-top: 410% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }

}
/** Galaxy S8+**/
@media (width: 360px) and (height:740px)
{
  .nav ul li a {
    font-size: 4.5vh !important;
}
  footer.mobile div.container{
    margin-top: 0% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 50%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
       top: 15%;
 
  }



  .btn.btn-secondary.home
  {
    position: fixed;
    margin-top: 35%;
    margin-left: 10%;
  }
  header.header {
    position: sticky;
    margin-top: -150px;
  }
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .section
  {
    /* /*margin-top: -140%;*/ */
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a.logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 75% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }

}
/** IPhone 14 Pro Max **/
@media (width: 430px) and (height:932px)
{
  
  /* .nav ul li a {
    font-size: 4.5vh !important;
} */
  footer.mobile div.container{
    margin-top: 0% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 50%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
       top: 15%;
  
  }


  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }

  .section
  {
    /*margin-top: -140%;*/
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    /* top: 10% !important; */
  }
  .grid-list2{
    display: block;
    /* margin-top: 140% !important; */
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }

}

/**  Pixel */
@media (width: 412px) and (height:915px)
{
  
  .nav ul li a {
    font-size: 4.5vh !important;
}
  footer.mobile div.container{
    margin-top: 0% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 50%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
     top: 15%;

  }



  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .section
  {
    margin-top: -5% !important;
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }
figure .about-banner{
  width:70%;
}
.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
    margin-left: 15px !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }

}
/**  IPhone XR**/
@media (width: 414px) and (height:896px)
{
   .nav ul li a {
    font-size: 4.5vh !important;
}
  footer.mobile div.container{
    margin-top: 0% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 50%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
      top: 15%;
    /*right: 13%;*/
  }



  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .section
  {
    /*margin-top: -140%;*/
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }

  }
/**  IPhone 12 Pro**/
@media (width: 390px) and (height:844px)
{
   .nav ul li a {
    font-size: 4.5vh !important;
}
  footer.mobile div.container{
    margin-top: 0% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 50%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
      top: 15%;
    /*right: 13%;*/
  }

  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .section
  {
    /*margin-top: -140%;*/
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }
}
/**  IPhone XR**/
@media (width: 414px) and (height:896px)
{
   .nav ul li a {
    font-size: 4.5vh !important;
}
  footer.mobile div.container{
    margin-top: 0% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 50%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
      top: 15%;
    /*right: 13%;*/
  }



  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .section
  {
    /*margin-top: -140%;*/
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }

}
/**  Galaxy ZFold**/
@media (width: 344px) and (height:882px)
{
   .nav ul li a {
    font-size: 4.5vh !important;
}
  footer.mobile div.container{
    margin-top: 0% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 50%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
      top: 15%;
    /*right: 13%;*/
  }
  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .section
  {
    /*margin-top: -140%;*/
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }
}
/**  IPhone XR**/
@media (width: 414px) and (height:896px)
{
   
  .nav ul li a {
    font-size: 4.5vh !important;
}
  footer.mobile div.container{
    margin-top: 0% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 50%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
     top: 15%;
    /*right: 13%;*/
  }
  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .section
  {
    /*margin-top: -140%;*/
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }

}

/** Asus Zenbook Fold**/
@media (width: 853px) and (height:1280px)
{
  .nav ul li a {
    font-size:4.5vh !important;
  }
  section#about
  {
    margin-left: -100px;
    margin-top: 219% !important;
  }

  div.container
  {
    padding-left: 0% !important;
  }
  div.intro{
    margin-top: -90%;
    padding-left: 50%;
  }
  a#Logo
  {
    position: absolute;
    right: 30%;
    top: 5%;
  }
}
/** Asus Zenbook**/
@media (width: 344px) and (height:882px)
{
  div.slick-list.draggable {
    margin-left: -80px !important;
}
  section#about
  {
    margin-left: -100px;
    margin-top: 219% !important;
  }

  div.container
  {
    padding-left: 0% !important;
  }
  div.intro{
    margin-top: -90%;
    padding-left: 50%;
  }
  a#Logo
  {
    position: absolute;
    right: 30%;
    top: 5%;
  }
}
/** Desktop **/
@media (min-width:1920px) and (min-height:1080px)
{
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label 
  {
    top: 43px;
  }
  .header.home
  {
    margin-left: -30%;
  }
  div.container label{
    left:550px;
  }

  .header .btn {
    margin-top: -35px;
}
  header a.btn-secondary
  {
    margin-right: 10%;
    top: 15%;
    /*right: 13%;*/
  }
  
    .header.active
    {
      background: linear-gradient(var(--eerie-black-4), transparent 200%);
    }

}
/** IPHONE 14 - 15 - 16 - Samsung S8+ **/
@media (min-width: 360px) and (max-height:950px)
{
 
  .nav ul li a {
    font-size: 4.5vh !important;
}
  footer.mobile div.container{
    /* margin-top: 150% !important; */
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 50%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
     top: 15%;
    /*right: 13%;*/
  }
  
  .btn.btn-secondary.home
  {
    position: absolute;
    margin-top: 0px!important;
    margin-left: 0px!important;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }

  section.reservation
  {
   margin-left: 20%;
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    /* top: 50%; */
  }
  .grid-list2{
    display: block;
    /* margin-top: 250%; */
    margin-top:10% !important;
    margin-left: 20%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top:435% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  /* main#main
  {
    margin-top: 85% !important;
  } */
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }

}
/**  IPhone XR**/
@media (width: 414px) and (height:896px)
{
   .nav ul li a {
    font-size: 4.5vh !important;
}
  footer.mobile div.container{
    margin-top: 0% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 50%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
      top: 15%;
    /*right: 13%;*/
  }

  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .section
  {
    /*margin-top: -140%;*/
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }


}
/**  IPhone XR**/
@media (width: 414px) and (height:896px)
{
   .nav ul li a {
    font-size: 4.5vh !important;
}
  footer.mobile div.container{
    margin-top: 0% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 10%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
      top: 15%;
    /*right: 13%;*/
  }
  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .section
  {
    /*margin-top: -140%;*/
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }

}
/** Galazy Z fold**/
@media (width: 344px) and (height:882px)
{
  div .draggable{
    margin-left: -50px !important;
  }
  .nav
  {
    top: 13px !important;
    right: 460px !important;
  }
  .nav ul li a {
    font-size: 4.5vh !important;
}
  footer.mobile div.container{
    margin-top: 0% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }
  .section {
    margin-top: 50%;
}

  .slide.slick-current {
    margin-left: 25px !important;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
    position: absolute;
        top: 15%;
    /*right: 13%;*/
  }
  .btn.btn-secondary.home
  {
    position: fixed;
    margin-top: 35%;
    margin-left: 10%;
  }
  header.header {
    position: sticky;
    margin-top: -150px;
  }
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .section
  {
    /*margin-top: -140%;*/
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a.logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 180% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }

}

@media (width: 540px) and (height:720px)
{
  section#about
  {
    margin-top: 260% !important;
  }

}

/** Surface Duo**/
@media (width: 540px) and (height:720px)
{
 nav.nav {
    width: 0.1px;
 }
  /* nav.nav{
    background: rgba(0,0,0,0.0);
  } */

   .nav ul li a {
    font-size: 4.5vh !important;
  }
  footer div.container{
    margin-top: 10% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }

  .slide.slick-current {
    margin-left: 25px !important;
}
.about .container{
  margin-top: 0px;;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
      top: 15%;
 
  }
  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  /* h3 .card-title
  {
    margin-left: 19%;
  } */
  section#about
  {
    margin-top: 130% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }
  .nav{
    top: 10px !important;
    right: 720px !important;
  }
  h3 .card-title
  {
    margin-left: 19%;
  }
 
}

/** Surface Pro 7**/
@media (width: 912px) and (height:1368px)
{
 nav.nav {
    width: 0.1px;
 }
  /* nav.nav{
    background: rgba(0,0,0,0.0);
  } */

   .nav ul li a {
    font-size: 4.5vh !important;
  }
  footer div.container{
    margin-top: 10% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }

  .slide.slick-current {
    margin-left: 25px !important;
}
.about .container{
  margin-top: 0px;;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
      top: 15%;
 
  }
  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
    
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  /* h3 .card-title
  {
    margin-left: 19%;
  } */
  section#about
  {
    margin-top: 130% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }
  .nav{
    top: 10px !important;
    right: 720px !important;
  }
  h3 .card-title
  {
    margin-left: 19%;
  }
 
 
}
/** IPad Pro **/
@media (width: 1024px) and (height:1366px)
{
  
.menu-icon:checked + label, .menu-icon:not(:checked) + label{
  left: 1px !important;
}

  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
        top: 43px !important;
        left: 0px !important;
    }
      nav.nav {
               right: 915px !important;
    }

   .nav ul li a {
    font-size: 4.5vh !important;
  }
  footer div.container{
    margin-top: 10% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }

  .slide.slick-current {
    margin-left: 25px !important;
}
.about .container{
  margin-top: 0px;;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
      top: 15%;

  }

  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 110% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }
  .nav{
    top: 10px !important;
    right: 720px !important;
  }
}
/** IPad Air **/
@media (width: 820px) and (height:1180px)
{
 
.menu-icon:checked + label, .menu-icon:not(:checked) + label{
  left: 1px !important;
}

  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
        top: 43px !important;
        left: 0px !important;
    }
      nav.nav {
        right: 715px !important;
    }

   .nav ul li a {
    font-size: 4.5vh !important;
  }
  footer div.container{
    margin-top: 10% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }

  .slide.slick-current {
    margin-left: 25px !important;
}
.about .container{
  margin-top: 0px;;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
      top: 15%;

  }
  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 110% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }
  .nav{
    top: 10px !important;
    right: 720px !important;
  }
  
}

/** IPad Mini **/
@media (width: 768px) and (height:1024px)
{
.menu-icon:checked + label, .menu-icon:not(:checked) + label{
  left: 1px !important;
}

  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
        top: 43px !important;
        left: 0px !important;
    }
  nav.nav{
    right: 665px !important;
  } 

   .nav ul li a {
    font-size: 4.5vh !important;
  }
  footer div.container{
    margin-top: 10% !important;
  }
  .prev.slick-arrow
  {
    visibility: hidden !important;
  }

  .slide.slick-current {
    margin-left: 25px !important;
}
.about .container{
  margin-top: 0px;;
}
/* .slide img{
  margin-left: 27px !important;
} */
  a.btn-secondary{
      top: 15%;

  }
  .btn.btn-secondary.home
  {
    position: absolute;
    /* margin-top: 10%;
    margin-left: 5%; */
  }
  /* header.header {
    position: sticky;
    margin-top: -150px;
  } */
  header .container {
    margin-left: 125px;
    margin-top: -25px;
}
  .display-2
  {
    font-size: 40px !important;
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 43px!important; 
    left: 50px !important;
  }
  header .container
  {
    margin-left: 125px;
    margin-top: -15%;
  }
  a#locations
  {
    position: absolute;
    right: 1%;
    top: 50%;
  }
  .grid-list2{
    display: block;
    margin-top: 420%;
    margin-left: 10%;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-template-rows: repeat(5, 1fr)!important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }

.grid-list2:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.feature-item:nth-child(2){  grid-area: 2 / 1 / 3 / 2; }
.feature-item:nth-child(3){ grid-area: 3 / 1 / 4 / 2; }
.feature-item:nth-child(4){ grid-area: 4 / 1 / 5 / 2; }
  
  .nav ul {
    left: 75px !important;
    top:60%;
  }
  
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    position: fixed;
    left: 63px;
  }
  div.holder{
    margin-left: 0% !important;
    /* margin-right: 10% !important; */
  }

  .slider .slick-slide {
    margin-left: 15px !important;
}

  .prev, .next {
    left: 1%;
    right: 39%;
  }
  button.next.slick-arrow {
        right: -205px !important;
  }
  main#main 
  {
    margin-top: 40% !important;
  }
  main#mainBowls
  {
    margin-top:0% !important;
  }
  main#main
  {
    margin-top: 85% !important;
  }
  main#main .section div .container
  {
    padding-top:30% !important;
  }

  div.text-center > p
  {
    display: none !important;
  }
  a#logo
  {
    display: none !important;
  }
  .menu-icon:checked ~ .nav
  {
    top: 35% !important;
    right: 70% !important;
    transform: translate(53%, -45%);
  }

 .menu-icon:checked + label, .menu-icon:not(:checked) + label {
  right: 559px !important;
 } 
 .nav ul li a {
  font-size:6.5vh;
}
.nav ul{
  left: -120px;
}
div.input-wrapper
{
  margin-left: 10%;
}
  a#Logo
  {
    right: 25% !important;
  }

  .feature-item
  {
     grid-area: 1 / 1 / 6 / 2; 
  }
  header.header
  {
    height: 25%;
  }
  /* section.section{
    margin-top: 620%; 
  }*/
  section#about
  {
    margin-top: 110% !important;
  }
 a.logo
  {
  
        position: absolute  !important;
        right: 50%!important;
        top: 100%!important;
   }
   .twocols.reverse .slider .prev {
    left: -5%;
  }
  .nav{
    top: 10px !important;
    right: 720px !important;
  }
}


/* 
@media (min-width: 330px) and (max-width:1400px)
{
  section div.container{
    padding-left: 30% !important;
  }
  body#top
  {
    margin-top: -210px !important;
  }
  img.img-cover
  {
    width: 150% !important;
  }
  h1.display-2
  {
    margin-bottom: 15px;
    margin-top: 355px;
    font-size: 35px;
    font-style: normal;
  }
  #about
  {
    margin-top:185%;
  }
  body#top
  {
    margin-left: 25%;
  }
  img#logoWhitehand
  {
    background-image: "logo_whitehand_bowl.png" ;
  }
  ul.grid-list
  {
   margin-left: -25% !important;
  }
  ul li div figure > a > img.img-cover
  {
    width: 200px !important;
  }
  a#logoWhitehand
  {
    width: 100% !important;
  }
  a#Logo
  {
    position: absolute;
    right: 50%;
    top: 0%;
  }
  div.intro
  {
    top: 78%;
    margin-top: 15%;
    margin-left: 15%;
  }
 h2.headline-1
 {
  font-size: 1.3em;
  font-weight: bold;
 }
 p.section-text
 {
  font-size: 1.1em;
  width: 88%;

 }
  a#locations
  {
    position: absolute;
    right: 50%;
    top: 5%;
  }
  section#about
  {
    margin-left: -100px;
    margin-top: 390% !important;

  }
  footer.footer{
    background-image: none !important; 
  }
  div.footer-top
  {
    position: absolute;
    left: -110px;
  }
  ul.footer-list
  {
    padding-top: 10%;
    margin-top: -150;
  }
} */

/**
 * responsive for larger than 1200px screen
 */
@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-title-2: 2.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container,
  :is(.service, .event) .container {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * TOPBAR
   */

  .topbar .container { max-width: unset; }

  .topbar .separator { display: block; }


  .header .btn { margin-top: -15px;}  */

  /**
   * HERO
   */

  .hero { height: 680px; }

  .hero-btn {
    bottom: 50px;
    right: 50px;
    transform: scale(1);
  }



  /**
   * SERVICE
   */

  .service .grid-list { gap: 0px; }

  .service .grid-list li:nth-child(2n+1) { transform: translateY(-160px); }

  .service .section-text { margin-block-end: 75px; }



  /**
   * ABOUT
   */

  /* .about { padding-block: 170px 100px; } */



  /**
   * SPECIAL DISH
   */

  .special-dish-content {
    padding: 225px 120px;
    padding-inline-end: 0;
  }

  .special-dish-content .container {
    max-width: 460px;
    margin-inline: 0;
  }



  /**
   * MENU
   */

  .menu .grid-list {
    gap: 55px 200px;
    margin-block-end: 55px;
  }



  /**
   * TESTIMONIALS
   */






  /**
   * FEATURES
   */



}
/**
 * responsive for larger than 1400px screen
 */
@media (min-width: 1400px) {

  /**
   * HEADER
   */




  /**
   * ABOUT
   */

  .about-content { padding-inline-end: 90px; }

  .about .shape {
    display: block;
    top: 46%;
    left: 0;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish {
    overflow: visible;
    position: relative;
  }

  .special-dish .shape {
    display: block;
    right: 0;
    z-index: 1;
  }

  .special-dish .shape-1 { top: 45%; }

  .special-dish .shape-2 {
    bottom: 0;
    transform: translateY(50%);
    width: max-content;
  }



  /**
   * FEATURES
   */

  .features { overflow: visible; }

  .features .shape { display: block; }

  .features .shape-1 {
    top: -100px;
    right: 0;
  }

  .features .shape-2 {
    bottom: 80px;
    left: 0;
  }

}
/* 
@media only screen and (max-width: 1200px) {

}

main#main 
{
  margin-top: 45%;
  margin-left: -245px !important;
}
div.text-center
{
  visibility: hidden;
}
button.next.slick-arrow 
{
  right: -275px !important;
}
.prev, .next {
  left: 1%;
}
} */

/*Mobile responsiveness*/
/* @media only screen and (max-width: 721px) {
  img#logoWhitehand
  {
    background-image: "logo_whitehand_bowl.png" ;
  }
  img#Logo
  {
    width: 350px;
    height: 125px;
  }

  p.menu-text
  {
    margin-left: -10%;
  }
  img.w-100
  {
    height: 150px;
  }
  .hero-title
  {
    font-size: var(--fontSize-headline-1);
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
  }
  .img-cover
  {
    height: auto !important;
  }
  .testi
  {
    margin-top: auto !important;
    width: 100% !important;
    height: auto !important; 
  }
  figure.card-banner
  {
    --height: 150;
    width:100%;
    display: flex;
    justify-content: center;
  }

  div.title-wrapper
  {
    text-align: center;
  }

  div.menu-card .badge 
  {
    font-size: 1.5rem;
  }
  div.menu-card .badge
  {
    background-color: var(--gold-crayola);
    color: var(--eerie-black-1);
    font-family: var(--fontFamily-forum);
    max-width: 100%;
    line-height: var(--lineHeight-6);
    text-transform: uppercase;
    padding-inline: 10px;
    margin-block-start: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .img-cover{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .footer-brand .logo{
    margin-left: -50px;
  }
} */


/*Alert Styling*/
.demo-preview {
  padding-top: 20px;
  padding-bottom: 10px;
  width: 70%;
  margin: auto;
  text-align: center;
}

.alert {
  padding: .7143rem 1.071rem;
  margin-bottom: 1.429rem;
  border-radius: 2px;
  border: 1px solid transparent;
  color: #FFF
}

.alert.alert-square {
  border-radius: 0
}

.alert .close {
  position: relative
}

.alert.alert-dismissable,
.alert.alert-dismissible {
  padding-right: 2.5rem
}

.alert.alert-dismissable .close,
.alert.alert-dismissible .close {
  top: -2px;
  right: -20px;
  color: inherit
}

.alert.alert-primary {
  background-color: #2196F3;
  border-color: #2196F3
}

.alert.alert-secondary {
  background-color: #323a45;
  border-color: #323a45
}

.alert.alert-success {
  background-color: #64DD17;
  border-color: #64DD17
}

.alert.alert-info {
  background-color: #29B6F6;
  border-color: #29B6F6
}

.alert.alert-warning {
  background-color: #FFD600;
  border-color: #FFD600
}

.alert.alert-danger {
  background-color: #ef1c1c;
  border-color: #EF5350
}

/*Styles CSS*/



@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.section-center{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
}
.menu-icon[type="checkbox"]:checked,
.menu-icon[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
}
.menu-icon:checked + label,
.menu-icon:not(:checked) + label{
  position: fixed;
  top: 63px;
  right: 75px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
}
.menu-icon:checked + label:before,
.menu-icon:not(:checked) + label:before{
  position: absolute;
  content: '';
  display: block;
  width: 30px;
  height: 20px;
  z-index: 20;
  top: 0;
  left: 0;
  border-top: 2px solid #ececee;
  border-bottom: 2px solid #ececee;
  transition: border-width 100ms 1500ms ease, 
              top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms ease,
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after,
.menu-icon:not(:checked) + label:after{
  position: absolute;
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  z-index: 20;
  top: 10px;
  right: 4px;
  background-color: var(--gold-crayola);
  margin-top: -1px;
  transition: width 100ms 1750ms ease, 
              right 100ms 1750ms ease,
              margin-top 100ms ease, 
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:before{
  top: 10px;
  transform: rotate(45deg);
  height: 2px;
  background-color: var(--gold-crayola);
  border-width: 0;
  transition: border-width 100ms 340ms ease, 
              top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms 500ms ease,
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after{
  width: 30px;
  margin-top: 0;
  right: 0;
  transform: rotate(-45deg);
  transition: width 100ms ease,
              right 100ms ease,  
              margin-top 100ms 500ms ease, 
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav{
  position: fixed;
  top: 33px;
  right: 530px;
  display: block;
  width: 80px;
  height: 80px;
  padding: 0;
  margin: 0;
  z-index: 9;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 rgba(0,0,0,0.3);
  background-color: black;
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 1100ms ease,
              width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
              height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

.menu-icon:checked ~ .nav {
  animation-play-state: paused;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 200%;
  height: 200%;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 700ms ease,
              width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
              height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
  list-style: none;
}
.nav ul li{
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 10px 0;
  text-align: center;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 250ms linear;
}
.nav ul li:nth-child(1){
  transition-delay: 200ms;
}
.nav ul li:nth-child(2){
  transition-delay: 150ms;
}
.nav ul li:nth-child(3){
  transition-delay: 100ms;
}
.nav ul li:nth-child(4){
  transition-delay: 50ms;
}
.nav ul li a{
  font-family: 'Montserrat', sans-serif;
  font-size: 6.5vh;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 800;
  display: inline-block;
  position: relative;
  color: #ececee;
  transition: all 250ms linear;
}
.nav ul li a:hover{
  text-decoration: none;
  color: #ffeba7;
}
.nav ul li a:after{
  display: block;
  position: absolute;
  top: 50%;
  content: '';
  height: 2vh;
  margin-top: -1vh;
  width: 0;
  left: 0;
  opacity: 0.8;
  transition: width 250ms linear;
}
.nav ul li a:hover:after{
  width: 100%;
}


.menu-icon:checked ~ .nav  ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease,
              transform 250ms ease;
}
.menu-icon:checked ~ .nav ul li:nth-child(1){
  transition-delay: 1400ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(2){
  transition-delay: 1480ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(3){
  transition-delay: 1560ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(4){
  transition-delay: 1640ms;
}




/* 
@media screen and (max-width: 991px) {
  .menu-icon:checked + label,
  .menu-icon:not(:checked) + label{
    right: 55px;
  }
  .nav ul li a{
    font-size: 6.5vh;
  }
  a.btn-secondary
  {
    position: fixed;
    right: 10px !important;
  }
  a.logo
  {
    position: fixed;
    right: 250px !important;
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label 
  {
    top: 28px;
    left: 50px;

  }
  .nav{
    top: 55px;
    left: 25px;
  }
  
.prev 
{
  left:22% !important;
}
div.holder
{
  margin-left: 50px;
}
header{
  height: 15%;
}

} */









