@charset "UTF-8";
:root {
  --primary-HIGHLIGHT: hsl(0, 72%, 36%);
  --primary-h: 0;
  --primary-s: 72%;
  --primary-l: 46%;
  --lighten-percentage: 16%;
  --darken-percentage: 8%;
  --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --primary-dark: hsl(
    var(--primary-h),
    var(--primary-s),
    calc(var(--primary-l) - var(--darken-percentage))
  );
  --primary-light: hsl(
    var(--primary-h),
    var(--primary-s),
    calc(var(--primary-l) + var(--lighten-percentage))
  );
  --secondary-HIGHLIGHT: hsl(0, 0%, 83%);
  --secondary-h: 0;
  --secondary-s: 0%;
  --secondary-l: 83%;
  --secondary: hsl(var(--secondary-h), var(--secondary-s), var(--secondary-l));
  --secondary-dark: hsl(
    var(--secondary-h),
    var(--secondary-s),
    calc(var(--secondary-l) - var(--darken-percentage))
  );
  --secondary-light: hsl(
    var(--secondary-h),
    var(--secondary-s),
    calc(var(--secondary-l) + var(--lighten-percentage))
  );
  --linear-gradient: linear-gradient(
    180deg,
    var(--primary) 5%,
    var(--primary-light) 20%,
    var(--primary-light) 60%,
    var(--primary) 90%
  );
  --dark: #131313;
  --light: #f1f3f6;
  --text-on-dark: #939393;
  --text-on-light: #444;
  --transparent-on-dark: rgba(255, 255, 255, 0.8);
  --white: #ffffff;
  --black: #000000;
  --transition-fast: 0.2s all;
  --transition-medium: 0.3s all;
  --transition-slow: 0.4s all;
  --font-primary: "Inter", sans-serif;
  --font-heading: "Mulish", sans-serif;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-bold: 800;
  --border-radius: 8px;
}

@media (max-width: 576px) {
  ::-webkit-scrollbar {
    height: 9px;
    background-color: #f5f5f5;
  }
  /* Track */
  ::-webkit-scrollbar-track {
    background-color: #f5f5f5;
  }
  /* Handle */
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgb(207, 207, 207);
  }
}
::-moz-selection {
  color: #fff;
  background: var(--primary);
}
::selection {
  color: #fff;
  background: var(--primary);
}

*:focus {
  outline: 1px var(--primary);
}

*:focus-visible {
  outline: 1px var(--primary) !important;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  background: var(--white);
  color: var(--dark);
}

img {
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.hxxl,
.hxl,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  line-height: 1.2;
  margin-bottom: 0.35em;
}

.hxxl {
  font-size: clamp(3.568rem, 12px + 6.125vw, 8rem);
}

.hxl {
  font-size: clamp(3.568rem, 12px + 4.85vw, 6.943rem);
}

h1,
.h1 {
  font-size: clamp(3.188rem, 12px + 4.125vw, 4.313rem);
  font-weight: var(--weight-bold);
}

h2,
.h2 {
  font-size: clamp(2.625rem, 12px + 3vw, 3.375rem);
  font-weight: var(--weight-bold);
}

h3,
.h3 {
  font-size: clamp(1.808rem, 12px + 2.25vw, 2.813rem);
  font-weight: var(--weight-bold);
}

h4,
.h4 {
  font-size: clamp(1.875rem, 12px + 1.5vw, 2.25rem);
}

strong {
  font-weight: var(--weight-bold);
}

a {
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

section,
header {
  position: relative;
  z-index: 0;
}

section {
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 7rem 0;
  }
}

.custom-container {
  position: relative;
  width: clamp(90%, 100% - 12vw, 100% - 12vw);
  max-width: 1200px;
  margin-inline: auto;
}

.primary {
  color: var(--primary);
}

.secondary {
  color: var(--secondary);
}

.btn {
  display: inline-block;
  position: relative;
  padding: 0.8rem 2.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: var(--border-radius);
}
@media (max-width: 575.98px) {
  .btn {
    padding: 0.7rem 1.4rem;
  }
}
.btn:focus {
  outline: 1px var(--primary);
}

.primary-btn, .contact-05 .map a.way-btn, .contact-04 .map a.way-btn, .contact-03 .map a.way-btn, .contact-02 .map a.way-btn, .contact-01 .map a.way-btn {
  background: var(--primary);
  color: var(--white);
  -webkit-box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  -webkit-animation-name: order-btn-move;
          animation-name: order-btn-move;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.primary-btn:hover, .contact-05 .map a.way-btn:hover, .contact-04 .map a.way-btn:hover, .contact-03 .map a.way-btn:hover, .contact-02 .map a.way-btn:hover, .contact-01 .map a.way-btn:hover, .primary-btn:focus, .contact-05 .map a.way-btn:focus, .contact-04 .map a.way-btn:focus, .contact-03 .map a.way-btn:focus, .contact-02 .map a.way-btn:focus, .contact-01 .map a.way-btn:focus {
  color: var(--white);
  background: var(--primary-dark);
}

.secondary-btn {
  color: var(--black);
  background: var(--light);
  font-weight: bold;
  font-size: 1.1rem;
}
.secondary-btn:hover, .secondary-btn:focus {
  color: var(--black);
}

.header-absolute-content {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
@media (max-width: 575.98px) {
  .header-absolute-content {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.online-status {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgb(240, 240, 240);
  -webkit-box-shadow: 0 20px 20px -15px;
          box-shadow: 0 20px 20px -15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.98px) {
  .online-status {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.online-status.dark {
  background: #242424;
}
.online-status.transparent {
  background: transparent;
  text-shadow: 0 0px 10px rgb(0, 0, 0);
  padding: 0;
}
.online-status.transparent.open {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.online-status.closed {
  color: #f76666;
}
.online-status.closed .online-status-bullet {
  display: none;
}
.online-status.open {
  color: #1aa415;
}
.online-status.open .online-status-bullet {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}
.online-status.open .online-status-bullet .online-status-bullet-fill {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background-color: #1aa415;
  -webkit-box-shadow: 0 0 0 4px rgba(16, 128, 65, 0.25);
          box-shadow: 0 0 0 4px rgba(16, 128, 65, 0.25);
  -webkit-animation: flash 2s infinite;
          animation: flash 2s infinite;
}
.online-status .online-status-content {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.online-status .online-status-content i {
  margin-right: 0.5rem;
}

.skeleton-box {
  display: inline-block;
  height: 1em;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  margin: 0;
}
.skeleton-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(190, 190, 190, 0)), color-stop(20%, rgba(190, 190, 190, 0.2)), color-stop(60%, rgba(190, 190, 190, 0.5)), to(rgba(190, 190, 190, 0)));
  background-image: linear-gradient(90deg, rgba(190, 190, 190, 0) 0, rgba(190, 190, 190, 0.2) 20%, rgba(190, 190, 190, 0.5) 60%, rgba(190, 190, 190, 0));
  -webkit-animation: shimmer 2s infinite;
          animation: shimmer 2s infinite;
  content: "";
}

.header-btns {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .header-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    grid-template-columns: auto auto;
    grid-template-rows: 1fr;
    margin: 0;
  }
}

@-webkit-keyframes circle-in-center {
  from {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
  to {
    -webkit-clip-path: circle(125%);
            clip-path: circle(125%);
  }
}

@keyframes circle-in-center {
  from {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
  to {
    -webkit-clip-path: circle(125%);
            clip-path: circle(125%);
  }
}
[transition-style="in:circle:center"] {
  -webkit-animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) circle-in-center both;
          animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) circle-in-center both;
}

@-webkit-keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 1;
  }
}
#preloader {
  background: var(--dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99999;
  overflow: hidden;
  color: #fff;
}
#preloader img.logo {
  width: 80%;
  max-width: 110px;
  margin-bottom: 20px;
}
#preloader p {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
#preloader .jumper {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
#preloader .jumper > div {
  background: #fff;
  border-radius: 100%;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: jumper 3s 0s linear infinite;
          animation: jumper 3s 0s linear infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
          animation-delay: 0.33333s;
}
#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
          animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.header-01 {
  position: fixed;
  width: 100%;
  padding: 0.5rem 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .header-01 {
    height: 80px;
  }
}
.header-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--dark);
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (min-width: 992px) {
  .header-01::before {
    background: var(--dark);
    opacity: 0;
  }
}
.header-01 .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-01 .navbar-nav .nav-link {
  padding: 0;
  margin-bottom: 1.1rem;
  min-width: 50%;
  text-align: center;
}
@media (min-width: 992px) {
  .header-01 .navbar-nav .nav-link {
    margin: 0 0.2rem;
    min-width: unset;
  }
}
.header-01 .navbar-nav .nav-link.order {
  min-width: unset;
}
.header-01 .navbar-nav .nav-link a {
  position: relative;
  display: block;
  margin: 0.2rem 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.06rem;
}
@media (min-width: 992px) {
  .header-01 .navbar-nav .nav-link a {
    color: #fff;
    font-size: 1.2rem;
  }
  .header-01 .navbar-nav .nav-link a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background: var(--primary);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: var(--transition-medium);
    transition: var(--transition-medium);
  }
  .header-01 .navbar-nav .nav-link a:hover::after, .header-01 .navbar-nav .nav-link a:focus::after {
    width: 105%;
  }
}
.header-01 .navbar-nav .nav-link.social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.3rem 0 0.8rem;
}
@media (min-width: 992px) {
  .header-01 .navbar-nav .nav-link.social {
    margin: 0;
    margin-left: 1rem;
  }
}
.header-01 .navbar-nav .nav-link.social a {
  display: inline;
  font-size: 2.1rem;
  font-weight: 400;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (min-width: 992px) {
  .header-01 .navbar-nav .nav-link.social a {
    margin: 0;
    font-size: 2rem;
  }
  .header-01 .navbar-nav .nav-link.social a:nth-of-type(2) {
    margin-left: 10px;
  }
}
.header-01 .navbar-nav .nav-link.social a::after {
  display: none;
}
.header-01 .navbar-nav .nav-link.social a:hover, .header-01 .navbar-nav .nav-link.social a:focus {
  opacity: 0.8;
}
.header-01 .brand-logo {
  position: relative;
  width: 75px;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 992px) {
  .header-01 .brand-logo {
    top: 0;
    width: 120px;
    opacity: 1;
    pointer-events: all;
    top: 0;
    width: 150px;
  }
}
.header-01 .brand-logo img {
  width: 100%;
  -webkit-filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.6));
}
.header-01 .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (min-width: 992px) {
  .header-01.sticky::before {
    opacity: 1;
  }
}
.header-01.sticky .navbar-nav .nav-link a {
  color: #fff;
}
.header-01.sticky .navbar-nav .nav-link.order a {
  background-color: var(--primary);
  margin: 0;
  padding: 0.2rem 1rem;
  color: #fff;
  border-radius: 5px;
}
.header-01.sticky .navbar-nav .nav-link.order a::after {
  display: none;
}
.header-01.sticky .navbar-nav .nav-link.order a:hover, .header-01.sticky .navbar-nav .nav-link.order a:focus {
  background-color: var(--primary-dark);
}
.header-01.sticky .navbar-nav .nav-link.social a:hover, .header-01.sticky .navbar-nav .nav-link.social a:focus {
  opacity: 0.65;
}
.header-01.sticky .brand-logo {
  pointer-events: all;
  opacity: 1;
}
@media (min-width: 992px) {
  .header-01.sticky .brand-logo {
    top: 0;
    width: 120px;
  }
}
.header-01 .navbar-toggler {
  border: none;
  padding-right: 1.5rem;
  z-index: 1;
}
.header-01 .navbar-toggler:hover, .header-01 .navbar-toggler:focus, .header-01 .navbar-toggler:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header-02 {
  position: fixed;
  width: 100%;
  padding: 0.4rem 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .header-02 {
    padding: 0;
    height: 5rem;
  }
}
.header-02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
  background: var(--dark);
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
          box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}
@media (min-width: 992px) {
  .header-02::before {
    background: var(--dark);
    opacity: 0;
  }
}
.header-02 .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-02 .navbar-nav .nav-link {
  position: relative;
  margin-bottom: 1rem;
  min-width: 50%;
  text-align: center;
}
@media (min-width: 992px) {
  .header-02 .navbar-nav .nav-link {
    min-width: unset;
    margin-bottom: unset;
    padding: 0 2.1rem;
  }
  .header-02 .navbar-nav .nav-link:not(.brand-logo):not(:last-child)::after {
    content: "●";
    position: absolute;
    right: -0.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: var(--transition-fast);
    transition: var(--transition-fast);
    color: var(--primary);
    font-size: 1.2rem;
  }
}
.header-02 .navbar-nav .nav-link a {
  position: relative;
  display: block;
  color: var(--light);
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);
}
.header-02 .navbar-nav .nav-link a:hover, .header-02 .navbar-nav .nav-link a:focus {
  opacity: 0.8;
}
@media (min-width: 992px) {
  .header-02 .navbar-nav .nav-link a {
    color: var(--light);
    font-size: 1.3rem;
  }
}
.header-02 .brand-logo {
  width: 80px;
  -webkit-transition: var(--transition-fast);
  transition: var(--transition-fast);
}
@media (min-width: 992px) {
  .header-02 .brand-logo {
    position: relative;
    top: 15px;
    width: 0;
  }
}
.header-02 .brand-logo img {
  width: 100%;
  -webkit-filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.5));
}
.header-02 .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (min-width: 992px) {
  .header-02.sticky::before {
    opacity: 1;
  }
}
.header-02.sticky .navbar-nav .nav-link a {
  color: var(--light);
}
.header-02.sticky .navbar-nav .nav-link:nth-of-type(2)::after {
  opacity: 0;
}
@media (min-width: 992px) {
  .header-02.sticky .brand-logo {
    width: 125px;
  }
}
.header-02 .navbar-toggler {
  border: none;
  z-index: 1;
}
.header-02 .navbar-toggler:hover, .header-02 .navbar-toggler:focus, .header-02 .navbar-toggler:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header-03 {
  position: fixed;
  width: 100%;
  padding: 0.5rem 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .header-03 {
    height: 80px;
  }
}
.header-03::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--dark);
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (min-width: 992px) {
  .header-03::before {
    background: var(--dark);
    opacity: 0;
  }
}
.header-03 .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .header-03 .navbar-nav {
    margin-left: 4rem;
  }
}
.header-03 .navbar-nav .nav-link {
  padding: 0;
  margin-bottom: 1.1rem;
  min-width: 50%;
  text-align: center;
}
@media (min-width: 992px) {
  .header-03 .navbar-nav .nav-link {
    margin: 0 0.2rem;
    min-width: unset;
  }
}
.header-03 .navbar-nav .nav-link.order {
  min-width: unset;
}
.header-03 .navbar-nav .nav-link a {
  position: relative;
  display: block;
  margin: 0.2rem 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.06rem;
}
@media (min-width: 992px) {
  .header-03 .navbar-nav .nav-link a {
    color: #fff;
    font-size: 1.2rem;
  }
  .header-03 .navbar-nav .nav-link a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background: var(--primary);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: var(--transition-medium);
    transition: var(--transition-medium);
  }
  .header-03 .navbar-nav .nav-link a:hover::after, .header-03 .navbar-nav .nav-link a:focus::after {
    width: 105%;
  }
}
.header-03 .navbar-nav .nav-link.social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.3rem 0 0.8rem;
}
@media (min-width: 992px) {
  .header-03 .navbar-nav .nav-link.social {
    margin: 0;
    margin-left: 1rem;
  }
}
.header-03 .navbar-nav .nav-link.social a {
  display: inline;
  font-size: 2.1rem;
  font-weight: 400;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (min-width: 992px) {
  .header-03 .navbar-nav .nav-link.social a {
    margin: 0;
    font-size: 2rem;
  }
  .header-03 .navbar-nav .nav-link.social a:nth-of-type(2) {
    margin-left: 10px;
  }
}
.header-03 .navbar-nav .nav-link.social a::after {
  display: none;
}
.header-03 .navbar-nav .nav-link.social a:hover, .header-03 .navbar-nav .nav-link.social a:focus {
  opacity: 0.8;
}
.header-03 .brand-logo {
  position: relative;
  width: 75px;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 992px) {
  .header-03 .brand-logo {
    top: 0;
    width: 120px;
    opacity: 1;
    pointer-events: all;
    top: 0;
    width: 150px;
  }
}
.header-03 .brand-logo img {
  width: 100%;
  -webkit-filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.6));
}
.header-03 .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.header-03 .order-section {
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (max-width: 991.98px) {
  .header-03 .order-section {
    text-align: center;
    opacity: 1;
    visibility: visible;
    margin-bottom: 1rem;
  }
}
.header-03 .order-section .primary-btn, .header-03 .order-section .contact-05 .map a.way-btn, .contact-05 .map .header-03 .order-section a.way-btn, .header-03 .order-section .contact-04 .map a.way-btn, .contact-04 .map .header-03 .order-section a.way-btn, .header-03 .order-section .contact-03 .map a.way-btn, .contact-03 .map .header-03 .order-section a.way-btn, .header-03 .order-section .contact-02 .map a.way-btn, .contact-02 .map .header-03 .order-section a.way-btn, .header-03 .order-section .contact-01 .map a.way-btn, .contact-01 .map .header-03 .order-section a.way-btn {
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
}
@media (min-width: 992px) {
  .header-03.sticky::before {
    opacity: 1;
  }
}
.header-03.sticky .navbar-nav .nav-link a {
  color: #fff;
}
.header-03.sticky .navbar-nav .nav-link.order a {
  background-color: var(--primary);
  margin: 0;
  padding: 0.2rem 1rem;
  color: #fff;
  border-radius: 5px;
}
.header-03.sticky .navbar-nav .nav-link.order a::after {
  display: none;
}
.header-03.sticky .navbar-nav .nav-link.order a:hover, .header-03.sticky .navbar-nav .nav-link.order a:focus {
  background-color: var(--primary-dark);
}
.header-03.sticky .navbar-nav .nav-link.social a:hover, .header-03.sticky .navbar-nav .nav-link.social a:focus {
  opacity: 0.65;
}
.header-03.sticky .brand-logo {
  pointer-events: all;
  opacity: 1;
}
@media (min-width: 992px) {
  .header-03.sticky .brand-logo {
    top: 0;
    width: 120px;
  }
}
.header-03.sticky .order-section {
  opacity: 1;
  visibility: visible;
}
.header-03 .navbar-toggler {
  border: none;
  padding-right: 1.5rem;
  z-index: 1;
}
.header-03 .navbar-toggler:hover, .header-03 .navbar-toggler:focus, .header-03 .navbar-toggler:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hero-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 96vh;
  height: 100%;
  background: url("../components/heroes/01/images/hero-background.jpg") center/cover;
  text-align: center;
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero-01 {
    padding: 0;
    min-height: 100vh;
  }
}
.hero-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.hero-01 h1 {
  color: var(--light);
}
.hero-01 .logo {
  max-height: 280px;
  width: auto;
  max-width: 80%;
  margin-bottom: 1.5rem;
  -webkit-filter: drop-shadow(0 0 5px rgb(0, 0, 0));
          filter: drop-shadow(0 0 5px rgb(0, 0, 0));
}
@media (min-width: 576px) {
  .hero-01 .logo {
    max-height: 350px;
    max-width: 450px;
    margin-bottom: 2rem;
  }
}
.hero-01 .description {
  width: 90%;
  max-width: 55ch;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (min-width: 576px) {
  .hero-01 .description {
    margin-bottom: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .hero-01 .description {
    font-size: 1.3rem;
  }
}

.hero-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5vh;
  min-height: 96vh;
  background: url("../components/heroes/02/images/hero-background.jpg") center/cover;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-02 {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .hero-02 {
    padding-top: 0vh;
    min-height: 100vh;
  }
}
.hero-02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
@media (min-width: 768px) {
  .hero-02::before {
    background: linear-gradient(130deg, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.2) 100%);
  }
}
.hero-02 .heading {
  color: #fff;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  text-shadow: 0.05rem 0.05rem 0.5rem rgba(0, 0, 0, 0.8);
}
.hero-02 .town {
  margin-bottom: 1.3rem;
  color: #fff;
  font-weight: 400;
  font-family: var(--font-heading);
  letter-spacing: 0.07rem;
  text-shadow: 0.05rem 0.05rem 0.4rem rgba(0, 0, 0, 0.8);
}
.hero-02 .description {
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 2rem;
  color: var(--transparent-on-dark);
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (min-width: 576px) {
  .hero-02 .description {
    max-width: unset;
    margin-bottom: 2.2rem;
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .hero-02 .description {
    font-size: 1.6rem;
  }
}

.hero-03 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 96vh;
  background: url("../components/heroes/03/images/hero-background.jpg") center/contain;
  z-index: 0;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero-03 {
    padding-top: 0vh;
    min-height: 100vh;
  }
}
.hero-03::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-box-shadow: inset 0 -5px 20px -5px rgb(0, 0, 0);
          box-shadow: inset 0 -5px 20px -5px rgb(0, 0, 0);
}
.hero-03 img {
  position: absolute;
  z-index: -1;
}
.hero-03 img.pizza-top {
  display: none;
  width: 500px;
  max-width: 800px;
  top: -70px;
  left: 0;
  -webkit-transform: translateX(-30%) rotate(0) scaleY(-1);
          transform: translateX(-30%) rotate(0) scaleY(-1);
  -webkit-filter: brightness(0.98) drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
          filter: brightness(0.98) drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}
@media (min-width: 576px) {
  .hero-03 img.pizza-top {
    display: block;
  }
}
@media (min-width: 992px) {
  .hero-03 img.pizza-top {
    top: -150px;
    width: 48vw;
  }
}
.hero-03 img.pizza-bottom {
  width: 400px;
  max-width: 900px;
  bottom: 0;
  right: -50px;
  -webkit-transform: translate(20%, 50%);
          transform: translate(20%, 50%);
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}
@media (min-width: 576px) {
  .hero-03 img.pizza-bottom {
    right: 0;
    width: 500px;
  }
}
@media (min-width: 992px) {
  .hero-03 img.pizza-bottom {
    width: 45vw;
  }
}
.hero-03 img.leaves {
  width: 800px;
  bottom: -50px;
  left: -180px;
  -webkit-transform: rotate(335deg);
          transform: rotate(335deg);
}
@media (min-width: 576px) {
  .hero-03 img.leaves {
    width: 1200px;
    left: 20%;
    -webkit-transform: rotate(345deg);
            transform: rotate(345deg);
  }
}
@media (min-width: 992px) {
  .hero-03 img.leaves {
    left: 35%;
  }
}
.hero-03 .heading {
  margin-bottom: 0;
  color: #fff;
  font-family: var(--font-heading);
  text-shadow: 0.05rem 0.05rem 0.5rem rgb(0, 0, 0);
  text-transform: uppercase;
}
.hero-03 .town {
  display: block;
  position: relative;
  margin-bottom: 1.3rem;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  text-shadow: 0.05rem 0.05rem 0.4rem rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}
.hero-03 .town::before, .hero-03 .town::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 0.2rem;
  background: var(--primary);
  -webkit-box-shadow: 0 1px 2px rgb(0, 0, 0);
          box-shadow: 0 1px 2px rgb(0, 0, 0);
}
@media (min-width: 576px) {
  .hero-03 .town::before, .hero-03 .town::after {
    width: 5rem;
    height: 0.3rem;
  }
}
.hero-03 .town::before {
  left: -4rem;
}
@media (min-width: 576px) {
  .hero-03 .town::before {
    left: -6rem;
  }
}
.hero-03 .town::after {
  right: -4rem;
}
@media (min-width: 576px) {
  .hero-03 .town::after {
    right: -6rem;
  }
}
.hero-03 .description {
  width: 90%;
  max-width: 800px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (min-width: 576px) {
  .hero-03 .description {
    width: auto;
    margin-bottom: 2.2rem;
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .hero-03 .description {
    font-size: 1.5rem;
  }
}

.hero-04 .top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 60vh;
  background: url("../components/heroes/04/images/hero-background.jpg") center/cover;
  text-align: center;
  overflow: hidden;
  z-index: 0;
  height: auto;
  padding: 4rem 0 3rem;
}
@media (min-width: 768px) {
  .hero-04 .top {
    height: 66vh;
    padding: unset;
  }
}
@media (min-width: 1400px) {
  .hero-04 .top {
    height: 550px;
  }
}
.hero-04 .top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
  -webkit-box-shadow: inset 0 -5px 20px -5px rgb(0, 0, 0);
          box-shadow: inset 0 -5px 20px -5px rgb(0, 0, 0);
}
.hero-04 .top .logo {
  max-width: 300px;
  margin: 4rem auto 2rem;
  padding: 0 2rem;
  max-height: 280px;
  width: auto;
}
@media (min-width: 768px) {
  .hero-04 .top .logo {
    margin-top: 3.5rem;
    max-width: 400px;
  }
}
.hero-04 .top p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: var(--font-heading);
}
@media (min-width: 576px) {
  .hero-04 .top p {
    font-size: 1.7rem;
  }
}
@media (max-width: 767.98px) {
  .hero-04 .top .header-absolute-content {
    right: unset;
    bottom: unset;
    -webkit-transform: unset;
            transform: unset;
    position: relative;
  }
}
.hero-04 .bottom {
  padding: 1rem 0 6rem;
}
@media (min-width: 576px) {
  .hero-04 .bottom {
    padding-bottom: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hero-04 .bottom p {
  max-width: 80%;
  margin: 0 auto 1rem;
  text-align: center;
  color: var(--dark);
  font-size: 1rem;
}
@media (min-width: 576px) {
  .hero-04 .bottom p {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  .hero-04 .bottom p {
    font-size: 1.4rem;
  }
}
.hero-04 .carousel {
  position: relative;
  padding-bottom: 40px;
}
.hero-04 .carousel .stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 60%;
  background: var(--primary);
  z-index: 0;
}
.hero-04 .carousel .owl-theme .owl-dots {
  position: absolute;
  top: -50px;
  right: 0;
  display: block;
  text-align: center;
  width: 100%;
  height: 30px;
}
.hero-04 .carousel .owl-theme .owl-dots .owl-dot span {
  background: #d4d4d4;
}
.hero-04 .carousel .owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary);
}

.hero-05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  overflow: hidden;
  background-color: var(--dark);
}
.hero-05 .background-wrapper {
  position: relative;
  background: url("../components/heroes/05/images/hero-background.jpg") center/cover;
  margin: 7rem 4rem 4rem;
  border-radius: 0.5rem;
  width: 100%;
  z-index: 0;
}
.hero-05 .background-wrapper::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
@media (max-width: 575.98px) {
  .hero-05 .background-wrapper::after {
    background-color: rgba(0, 0, 0, 0.65);
  }
}
@media (max-width: 991.98px) {
  .hero-05 .background-wrapper {
    margin: 7rem 2rem 2rem;
  }
}
@media (max-width: 767.98px) {
  .hero-05 .background-wrapper {
    margin: 5rem 0;
  }
}
@media (max-width: 575.98px) {
  .hero-05 .background-wrapper {
    text-align: center;
    margin: 5rem 0rem 2rem;
  }
}
.hero-05 .header-content {
  margin: 7rem 0rem;
  max-width: 70ch;
  padding: 2rem;
}
@media (max-width: 575.98px) {
  .hero-05 .header-content {
    margin: 5rem 0;
    padding: 0;
  }
}
.hero-05 .header-content .heading {
  color: var(--light);
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.hero-05 .header-content .heading span {
  color: var(--primary);
}
.hero-05 .header-content .town {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: bolder;
  text-transform: uppercase;
  padding-left: 0.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 575.98px) {
  .hero-05 .header-content .town {
    font-size: 1rem;
    margin: 0 auto;
  }
}
.hero-05 .header-content .description {
  max-width: 50ch;
  color: var(--light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.2rem;
}
@media (max-width: 575.98px) {
  .hero-05 .header-content .description {
    font-size: 1rem;
    -webkit-line-clamp: 3;
  }
}

.hero-06 {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 0;
  background: url("../components/heroes/06/images/hero-background.jpg") center/120%;
  overflow: hidden;
  color: var(--light);
}
@media (max-width: 767.98px) {
  .hero-06 {
    background-size: cover;
  }
}
@media (max-width: 575.98px) {
  .hero-06 {
    height: auto;
    padding: 8rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.hero-06::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  z-index: -1;
}
.hero-06::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#1f1515), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #1f1515 0%, rgba(255, 255, 255, 0) 100%);
  height: 30vh;
  width: 100%;
  z-index: 0;
}
.hero-06 .heading {
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .hero-06 .heading {
    line-height: 1.2;
  }
}
@media (max-width: 575.98px) {
  .hero-06 .heading {
    font-size: 2.7rem;
  }
}
.hero-06 .heading span {
  font-weight: 300;
}
.hero-06 .description {
  width: 55ch;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.85;
}
@media (max-width: 767.98px) {
  .hero-06 .description {
    width: auto;
    font-size: 1rem;
  }
}
.hero-06 .caption {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-weight: 300;
  opacity: 0.7;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  --categoryLineColor: rgba(255, 255, 255, 0.7);
}
.hero-06 .caption::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -3.5rem;
  width: 2rem;
  height: 1px;
  background: var(--categoryLineColor);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 575.98px) {
  .hero-06 .caption::after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .hero-06 .caption {
    margin-bottom: 1rem;
  }
}
.hero-06 .header-images > img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.hero-06 .header-images .pizza {
  width: 40%;
  position: absolute;
  right: -9%;
  bottom: -9%;
  -webkit-filter: drop-shadow(-5px 0 20px rgba(0, 0, 0, 0.6)) brightness(87%);
          filter: drop-shadow(-5px 0 20px rgba(0, 0, 0, 0.6)) brightness(87%);
  z-index: 1;
  opacity: 0;
  -webkit-animation: rotateRight 1.5s forwards;
          animation: rotateRight 1.5s forwards;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
.hero-06 .header-images .pizza:hover {
  -webkit-transform: rotate(10deg) !important;
          transform: rotate(10deg) !important;
}
@media (max-width: 1199.98px) {
  .hero-06 .header-images .pizza {
    width: 54%;
    right: -24%;
  }
}
@media (max-width: 767.98px) {
  .hero-06 .header-images .pizza {
    display: none;
  }
}
.hero-06 .header-images .leaf {
  width: 15%;
  position: absolute;
  bottom: 25vw;
  right: -2%;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  z-index: 1;
  -webkit-filter: drop-shadow(0 0px 4px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 0px 4px rgba(0, 0, 0, 0.3));
  opacity: 0;
  -webkit-animation: fadeIn 1s 1.5s forwards;
          animation: fadeIn 1s 1.5s forwards;
}
@media (max-width: 1199.98px) {
  .hero-06 .header-images .leaf {
    bottom: 36vw;
  }
}
@media (max-width: 767.98px) {
  .hero-06 .header-images .leaf {
    display: none;
  }
}
.hero-06 .header-images .leaf2 {
  width: 12%;
  position: absolute;
  bottom: 3vw;
  right: 22%;
  -webkit-transform: rotate(-176deg);
          transform: rotate(-176deg);
  opacity: 0;
  -webkit-animation: fadeIn 1s 1.1s forwards;
          animation: fadeIn 1s 1.1s forwards;
}
@media (max-width: 767.98px) {
  .hero-06 .header-images .leaf2 {
    display: none;
  }
}
.hero-06 .header-images .leaf3 {
  width: 12%;
  position: absolute;
  top: -5%;
  left: 0;
  z-index: 2;
  -webkit-transform: rotate(111deg);
          transform: rotate(111deg);
  opacity: 0;
  -webkit-animation: fadeIn 1s 1.9s forwards;
          animation: fadeIn 1s 1.9s forwards;
}
.hero-06 .header-images .leaves {
  width: 100%;
  position: absolute;
  bottom: -4%;
  right: -49%;
  z-index: 0;
  opacity: 0;
  -webkit-animation: fadeIn 2s 1.3s forwards;
          animation: fadeIn 2s 1.3s forwards;
}
.hero-06 .header-images .leaves.blur {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: scale(-1.5);
          transform: scale(-1.5);
  bottom: -6%;
  right: -80%;
  opacity: -0.7;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.hero-06 .header-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  text-align: left;
  z-index: 5;
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 575.98px) {
  .hero-06 .header-footer {
    position: relative;
    margin-top: 4rem;
  }
}
.hero-06 .header-footer .footer-grid {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
}
@media (max-width: 575.98px) {
  .hero-06 .header-footer .footer-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    grid-gap: 0.5rem;
    padding: 0 1rem;
  }
}
.hero-06 .header-footer .block {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(255, 255, 255, 0.9);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (max-width: 991.98px) {
  .hero-06 .header-footer .block {
    grid-template-columns: 1fr;
  }
}
.hero-06 .header-footer .block:nth-child(1) {
  justify-self: self-start;
}
@media (max-width: 575.98px) {
  .hero-06 .header-footer .block:nth-child(1) {
    justify-self: center;
  }
}
.hero-06 .header-footer .block:nth-child(2) {
  justify-self: center;
}
.hero-06 .header-footer .block:nth-child(3) {
  justify-self: self-end;
}
@media (max-width: 575.98px) {
  .hero-06 .header-footer .block:nth-child(3) {
    justify-self: center;
  }
}
.hero-06 .header-footer .block .icon {
  margin-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
}
.hero-06 .header-footer .block .icon.hours {
  width: 2.5rem;
}
.hero-06 .header-footer .block .icon.delivery {
  width: 3rem;
}
.hero-06 .header-footer .block .icon.telephone {
  width: 2.5rem;
}
@media (max-width: 991.98px) {
  .hero-06 .header-footer .block .icon {
    display: none;
  }
}
.hero-06 .header-footer .block .icon img {
  margin: auto;
  opacity: 0.6;
  fill: #fff;
  -webkit-filter: invert(100);
          filter: invert(100);
}
.hero-06 .header-footer .block .content {
  font-weight: 300;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .hero-06 .header-footer .block .content {
    font-size: 0.9rem;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .hero-06 .header-footer .block .content {
    opacity: 0.8;
  }
}
.hero-06 .header-footer .block .content a {
  font-weight: bold;
  color: #fff;
}
@media (max-width: 575.98px) {
  .hero-06 .header-footer .block .online-status {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hero-06 .header-footer .block .online-status .online-status-content i {
  display: none;
}

@-webkit-keyframes rotateRight {
  from {
    -webkit-transform: rotate(-360deg) translateX(1200%);
            transform: rotate(-360deg) translateX(1200%);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(0deg) translateX(0);
            transform: rotate(0deg) translateX(0);
    opacity: 1;
  }
}

@keyframes rotateRight {
  from {
    -webkit-transform: rotate(-360deg) translateX(1200%);
            transform: rotate(-360deg) translateX(1200%);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(0deg) translateX(0);
            transform: rotate(0deg) translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-07 {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 0;
  color: var(--light);
}
.hero-07::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
}
.hero-07::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#1f1515), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #1f1515 0%, rgba(255, 255, 255, 0) 100%);
  height: 30vh;
  width: 100%;
  z-index: 0;
}
.hero-07 .heading {
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .hero-07 .heading {
    font-size: 3.8rem;
    line-height: 1.2;
  }
}
@media (max-width: 575.98px) {
  .hero-07 .heading {
    font-size: 2.7rem;
  }
}
.hero-07 .caption {
  font-family: var(--primaryFont);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-weight: 300;
  opacity: 0.7;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  --categoryLineColor: rgba(255, 255, 255, 0.7);
}
.hero-07 .caption::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -3.5rem;
  width: 2rem;
  height: 1px;
  background: var(--categoryLineColor);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hero-07 .caption::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -3.5rem;
  width: 2rem;
  height: 1px;
  background: var(--categoryLineColor);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .hero-07 .caption {
    margin-bottom: 1rem;
  }
}
.hero-07 .description {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 90%;
  max-width: 55ch;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (min-width: 576px) {
  .hero-07 .description {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .hero-07 .description {
    font-size: 1.3rem;
  }
}
.hero-07 .header-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  text-align: left;
  z-index: 5;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media (max-width: 575.98px) {
  .hero-07 .header-footer {
    grid-template-columns: 1fr;
    padding: 1rem;
    grid-gap: 0.5rem;
  }
}
.hero-07 .header-footer .footer-grid {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
}
@media (max-width: 575.98px) {
  .hero-07 .header-footer .footer-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    grid-gap: 0.5rem;
    padding: 0 1rem;
  }
}
.hero-07 .header-footer .block {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(255, 255, 255, 0.9);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (max-width: 991.98px) {
  .hero-07 .header-footer .block {
    grid-template-columns: 1fr;
  }
}
.hero-07 .header-footer .block:nth-child(1) {
  justify-self: self-start;
}
@media (max-width: 575.98px) {
  .hero-07 .header-footer .block:nth-child(1) {
    justify-self: center;
  }
}
.hero-07 .header-footer .block:nth-child(2) {
  justify-self: center;
}
.hero-07 .header-footer .block:nth-child(3) {
  justify-self: self-end;
}
@media (max-width: 575.98px) {
  .hero-07 .header-footer .block:nth-child(3) {
    justify-self: center;
  }
}
.hero-07 .header-footer .block .icon {
  margin-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
}
.hero-07 .header-footer .block .icon.hours {
  width: 2.5rem;
}
.hero-07 .header-footer .block .icon.delivery {
  width: 3rem;
}
.hero-07 .header-footer .block .icon.telephone {
  width: 2.5rem;
}
@media (max-width: 991.98px) {
  .hero-07 .header-footer .block .icon {
    display: none;
  }
}
.hero-07 .header-footer .block .icon img {
  margin: auto;
  opacity: 0.6;
  fill: #fff;
  -webkit-filter: invert(100);
          filter: invert(100);
}
.hero-07 .header-footer .block .content {
  font-weight: 300;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .hero-07 .header-footer .block .content {
    font-size: 0.9rem;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .hero-07 .header-footer .block .content {
    opacity: 0.8;
  }
}
.hero-07 .header-footer .block .content a {
  font-weight: bold;
  color: #fff;
}
@media (max-width: 575.98px) {
  .hero-07 .header-footer .block .online-status {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hero-07 .header-footer .block .online-status .online-status-content i {
  display: none;
}
.hero-07 .slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero-07 .slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -o-object-fit: cover;
     object-fit: cover;
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  16.6666666667% {
    opacity: 1;
  }
  33.3333333333% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  16.6666666667% {
    opacity: 1;
  }
  33.3333333333% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.hero-07 .slideshow img:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.hero-07 .slideshow img:nth-child(2) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.hero-07 .slideshow img:nth-child(3) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

.hero-08 {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .hero-08 {
    text-align: center;
    padding: 6rem 0;
  }
}
.hero-08::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 28, 36, 0.7);
  z-index: -1;
}
.hero-08::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--dark)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, var(--dark) 0%, rgba(255, 255, 255, 0) 100%);
  height: 50vh;
  width: 100%;
  z-index: 0;
}
.hero-08 .slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero-08 .slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: slideShow 24s linear infinite 0s;
          animation: slideShow 24s linear infinite 0s;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-08 .slideshow img:nth-child(1) {
  opacity: 1;
}
.hero-08 .slideshow img:nth-child(2) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.hero-08 .slideshow img:nth-child(3) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}
.hero-08 .slideshow img:nth-child(4) {
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}
.hero-08 h1 {
  display: none;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-08 h1 span {
  font-weight: 300;
  color: var(--primary);
}
.hero-08 .header-logo {
  max-width: 400px;
  margin: 0 auto 3rem;
}
@media (max-width: 575.98px) {
  .hero-08 .header-logo {
    max-width: 100%;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    max-height: 280px;
    width: auto;
  }
}
.hero-08 .description {
  position: relative;
  color: var(--transparent-on-dark);
  line-height: 1.8;
  font-weight: 300;
  max-width: 65ch;
  font-size: 1.3rem;
  text-align: center;
  margin: 0 auto 3rem;
}
@media (max-width: 575.98px) {
  .hero-08 .description {
    font-size: 1rem;
    margin: 0 auto 1rem;
  }
}
@media (max-width: 767.98px) {
  .hero-08 .caption {
    margin-bottom: 1rem;
  }
}
.hero-08 .button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 575.98px) {
  .hero-08 .button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .hero-08 .button-group a {
    width: 100%;
  }
}
.hero-08 .button-group a:nth-child(1) {
  margin-right: 1rem;
}
@media (max-width: 575.98px) {
  .hero-08 .button-group a:nth-child(1) {
    margin-right: unset;
    margin-bottom: 1rem;
  }
}
.hero-08 .header-footer {
  position: absolute;
  bottom: 0;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  z-index: 5;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, rgba(8, 8, 11, 0.75)));
  background: linear-gradient(transparent 0%, rgba(8, 8, 11, 0.75) 90%);
}
@media (max-width: 575.98px) {
  .hero-08 .header-footer {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
  }
}
.hero-08 .header-footer .block {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33%;
          flex: 1 0 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  /*&:not(:nth-child(3)) {
      &::after {
        position: absolute;
        width: 0.3rem;
        height: 0.3rem;
        border-radius: 50%;
        background: #fff;
        content: "";
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.3;
        box-shadow: -0.8rem 0.8rem 0 -0.05rem rgba(255, 255, 255, 0.7),
          0.8rem -0.8rem 0 -0.05rem rgba(255, 255, 255, 0.7);
        @include media-breakpoint-down(md) {
          display: none;
        }
      }
    }*/
}
.hero-08 .header-footer .block .icon {
  margin-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  display: none;
}
.hero-08 .header-footer .block .icon.hours {
  width: 2.5rem;
}
.hero-08 .header-footer .block .icon.delivery {
  width: 3rem;
}
.hero-08 .header-footer .block .icon.telephone {
  width: 2.5rem;
}
@media (max-width: 767.98px) {
  .hero-08 .header-footer .block .icon {
    width: 2rem;
  }
}
@media (max-width: 575.98px) {
  .hero-08 .header-footer .block .icon {
    display: none;
  }
}
.hero-08 .header-footer .block .icon img {
  margin: auto;
  opacity: 0.6;
  fill: #fff;
  -webkit-filter: invert(100);
          filter: invert(100);
}
.hero-08 .header-footer .block .content {
  font-weight: 300;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .hero-08 .header-footer .block .content {
    font-size: 0.8rem;
  }
}
@media (max-width: 575.98px) {
  .hero-08 .header-footer .block .content {
    line-height: 2.1;
    opacity: 0.8;
    text-align: center;
  }
}
.hero-08 .header-footer .block .content a {
  font-weight: bold;
  color: #fff;
}
.hero-08 .header-footer .block #online-status {
  font-weight: bold;
}
.hero-08 .header-footer .block #online-status.closed {
  color: #f76666;
}
.hero-08 .header-footer .block #online-status.open {
  color: #4fbe4f;
}

@keyframes rotateRight {
  from {
    -webkit-transform: rotate(-360deg) translateX(1200%);
            transform: rotate(-360deg) translateX(1200%);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(0deg) translateX(0);
            transform: rotate(0deg) translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* keyframes*/
@-webkit-keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
    -ms-transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -ms-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
    -ms-transformm: scale(1);
  }
}
@keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
    -ms-transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -ms-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
    -ms-transformm: scale(1);
  }
}
.hero-09 {
  background: url("../components/heroes/09/images/background.jpg") center/cover;
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.98px) {
  .hero-09 {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hero-09::after {
  content: "";
  position: absolute;
  right: 0;
  width: 42%;
  height: 100%;
  z-index: -1;
  background-image: url("../components/heroes/09/images/header-image.jpg");
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(40%, rgb(0, 0, 0)));
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%);
          mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(40%, rgb(0, 0, 0)));
          mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%);
  opacity: 0;
  -webkit-transition: 2s all ease-in-out;
  transition: 2s all ease-in-out;
  -webkit-transform: translateX(600px);
          transform: translateX(600px);
}
@media (max-width: 991.98px) {
  .hero-09::after {
    display: none;
  }
}
.hero-09.js-animate::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.hero-09 .ghost-mark {
  position: absolute;
  right: -50px;
  top: 0;
  bottom: 0;
  height: 100vh;
  color: transparent;
  opacity: 0.5;
  line-height: 1;
  font-size: 20vh;
  font-weight: 900;
  font-family: var(--font-heading);
  text-transform: uppercase;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.5);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: -7vh;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 991.98px) {
  .hero-09 .ghost-mark {
    display: none;
  }
}
.hero-09 h1 {
  color: var(--light);
}
.hero-09 .logo {
  width: 200px;
}
.hero-09 p {
  max-width: 55ch;
}
.hero-09 .description {
  color: var(--transparent-on-dark);
  font-size: 1.3rem;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  margin-bottom: 3.5rem;
}
.hero-09 .headline {
  color: var(--light);
  font-size: 1.7rem;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-10 {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 90vh;
  z-index: 2;
  padding: 6.5rem 0;
  background-color: var(--dark);
}
.hero-10::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
  -webkit-clip-path: url(#heroClip);
          clip-path: url(#heroClip);
}
@media (max-width: 767.98px) {
  .hero-10 {
    height: 100vh;
    text-align: center;
  }
}
.hero-10 h1 {
  color: var(--white);
}
.hero-10 .description {
  color: var(--transparent-on-dark);
  max-width: 55ch;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}
.hero-10 .slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  -webkit-clip-path: url(#heroClip);
          clip-path: url(#heroClip);
}
.hero-10 .slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  16.6666666667% {
    opacity: 1;
  }
  33.3333333333% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.hero-10 .slideshow img:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.hero-10 .slideshow img:nth-child(2) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.hero-10 .slideshow img:nth-child(3) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}
.hero-10 svg {
  width: 0;
  height: 0;
}

.hero-11 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  padding: 7rem 0;
  background-attachment: scroll;
  background-position: bottom;
  background-image: url("../components/heroes/11/images/background.jpg");
  background-size: cover;
  overflow: hidden;
}
.hero-11::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.45);
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .hero-11 {
    padding: 8rem 0 4rem;
  }
}
@media (max-width: 767.98px) {
  .hero-11 {
    text-align: center;
  }
}
.hero-11 .header-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-gap: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .hero-11 .header-grid {
    grid-template-columns: 1fr;
  }
}
.hero-11 .header-grid .header-content {
  color: var(--light);
}
.hero-11 .header-grid .header-content .upheading {
  display: inline-block;
  color: var(--light);
  background: hsla(0, 0%, 0%, 0.5);
  font-size: 1.3rem;
  font-weight: 300;
  padding: 0.4rem 2rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  border-radius: 2px;
}
.hero-11 .header-grid .header-content .description {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--transparent-on-dark);
}
@media (max-width: 767.98px) {
  .hero-11 .header-grid .header-content .description {
    font-size: 1.1rem;
  }
}
.hero-11 .header-grid .header-content .btn {
  padding: 0.8rem 2rem;
}
.hero-11 .header-grid .header-content .btn i {
  margin-right: 0.75rem;
  opacity: 0.75;
}
.hero-11 .header-grid .header-content .btn.secondary-btn {
  color: var(--light);
  background: transparent;
  font-weight: bold;
  border: 2px solid transparent;
}
.hero-11 .header-grid .header-content .btn.secondary-btn:hover, .hero-11 .header-grid .header-content .btn.secondary-btn:focus {
  color: var(--light);
  border: 2px solid rgba(241, 243, 246, 0.7);
}
.hero-11 .header-grid .header-image {
  position: relative;
}
@media (max-width: 991.98px) {
  .hero-11 .header-grid .header-image {
    display: none;
  }
}
.hero-11 .header-grid .header-image .main-image {
  position: relative;
  z-index: 1;
  border-radius: 16px 16px 16px 120px;
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.hero-11 .header-grid .header-image .arrow {
  position: absolute;
  width: 215px;
  height: auto;
  left: -9%;
  bottom: -6%;
  z-index: 2;
}
.hero-11 .header-grid .header-image .dots {
  position: absolute;
  width: 480px;
  height: auto;
  left: -8%;
  top: -5%;
  z-index: 0;
}
.hero-11 .header-grid .header-image .basil {
  position: absolute;
  width: 160px;
  height: auto;
  right: -16%;
  bottom: 26%;
  z-index: 2;
}

.hero-12 {
  background: url("../components/heroes/12/images/background.jpg") center/cover;
  position: relative;
  padding: 13rem 0 10rem;
  overflow: hidden;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .hero-12 {
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .hero-12 {
    padding: 6rem 0;
    min-height: 100vh;
  }
}
.hero-12 h1 {
  color: var(--light);
}
.hero-12 p {
  max-width: 100%;
  max-width: 55ch;
}
.hero-12 .description {
  color: var(--transparent-on-dark);
  font-size: 1.3rem;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  margin-bottom: 3.5rem;
}
@media (max-width: 991.98px) {
  .hero-12 .description {
    margin-bottom: 2rem;
    margin-inline: auto;
  }
}
.hero-12 .headline {
  color: var(--light);
  font-weight: 600;
  margin-bottom: 1rem;
  max-width: 18ch;
}
@media (max-width: 991.98px) {
  .hero-12 .headline {
    margin-inline: auto;
  }
}
@media (max-width: 991.98px) {
  .hero-12 .header-btns {
    margin-inline: auto;
  }
}
@media (max-width: 991.98px) {
  .hero-12 .header-images {
    display: none;
  }
}
.hero-12 .header-images > img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.hero-12 .header-images .pizza {
  width: 50%;
  position: absolute;
  right: -6%;
  bottom: -100%;
  -webkit-filter: drop-shadow(-5px 0 20px rgba(0, 0, 0, 0.6)) brightness(87%);
          filter: drop-shadow(-5px 0 20px rgba(0, 0, 0, 0.6)) brightness(87%);
  z-index: 1;
  opacity: 0;
  -webkit-animation: rotateRight 2s forwards;
          animation: rotateRight 2s forwards;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
@media (max-width: 1199.98px) {
  .hero-12 .header-images .pizza {
    right: -11%;
  }
}
@media (max-width: 767.98px) {
  .hero-12 .header-images .pizza {
    display: none;
  }
}
.hero-12 .header-images .leaf {
  width: 11%;
  position: absolute;
  bottom: 9vw;
  top: 20%;
  right: -4%;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  z-index: 1;
  -webkit-filter: drop-shadow(0 0px 4px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 0px 4px rgba(0, 0, 0, 0.3));
  opacity: 0;
  -webkit-animation: fadeIn 1s 2.1s forwards;
          animation: fadeIn 1s 2.1s forwards;
}
@media (max-width: 1199.98px) {
  .hero-12 .header-images .leaf {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .hero-12 .header-images .leaf {
    display: none;
  }
}
.hero-12 .header-images .leaf2 {
  width: 12%;
  position: absolute;
  bottom: -3vw;
  right: 35%;
  -webkit-transform: rotate(-176deg);
          transform: rotate(-176deg);
  opacity: 0;
  -webkit-animation: fadeIn 1s 1.8s forwards;
          animation: fadeIn 1s 1.8s forwards;
}
@media (max-width: 1199.98px) {
  .hero-12 .header-images .leaf2 {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .hero-12 .header-images .leaf2 {
    display: none;
  }
}
.hero-12 .header-images .leaves {
  width: 100%;
  position: absolute;
  bottom: -4%;
  right: -49%;
  z-index: 0;
  opacity: 0;
  -webkit-animation: fadeIn 2s 2.2s forwards;
          animation: fadeIn 2s 2.2s forwards;
}
.hero-12 .header-images .leaves.blur {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: scale(-1.5);
          transform: scale(-1.5);
  bottom: -6%;
  right: -80%;
  opacity: -0.7;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@keyframes rotateRight {
  from {
    -webkit-transform: rotate(-180deg) translateX(1200%);
            transform: rotate(-180deg) translateX(1200%);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(0deg) translateX(0);
            transform: rotate(0deg) translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-13 {
  z-index: 2;
}
.hero-13 .top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 75vh;
  background: url("../components/heroes/13/images/hero-background.jpg") center/cover;
  text-align: center;
  overflow: hidden;
  z-index: 0;
  padding: 0 0 4rem;
}
@media (max-width: 767.98px) {
  .hero-13 .top {
    height: auto;
    padding: 8rem 0 9rem;
  }
}
.hero-13 .top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
  -webkit-box-shadow: inset 0 -5px 20px -5px rgb(0, 0, 0);
          box-shadow: inset 0 -5px 20px -5px rgb(0, 0, 0);
}
.hero-13 .top .logo {
  height: 45%;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .hero-13 .top .logo {
    height: 45%;
  }
}
@media (min-width: 768px) {
  .hero-13 .top .logo {
    margin-top: 3.5rem;
    height: 50%;
  }
}
.hero-13 .top h1 {
  color: var(--light);
}
.hero-13 .top .description {
  color: var(--transparent-on-dark);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.hero-13 .bottom {
  padding: 5rem 0;
  background-color: #fffaf5;
}
@media (max-width: 767.98px) {
  .hero-13 .bottom {
    padding: 1rem 0;
  }
}
.hero-13 .bottom .content-grid {
  position: relative;
  z-index: 1;
  margin: -22vh 0 5vh;
  background: var(--white);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 330px 3fr;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .hero-13 .bottom .content-grid {
    grid-template-columns: 1fr;
    margin: -70px 0 30px;
  }
}
.hero-13 .bottom .content-grid .content {
  padding: 3rem 2rem;
  text-align: center;
}
.hero-13 .bottom .content-grid .content p {
  max-width: 75ch;
  color: var(--text-on-light);
  margin-inline: auto;
}
.hero-13 .bottom .content-grid .content .btn {
  margin-top: 1rem;
}
.hero-13 .bottom .content-grid .image {
  position: relative;
}
@media (max-width: 767.98px) {
  .hero-13 .bottom .content-grid .image:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 767.98px) {
  .hero-13 .bottom .content-grid .image {
    height: 250px;
  }
}
.hero-13 .bottom .content-grid img {
  max-height: 100%;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}

.hero-14 {
  background-color: var(--dark);
  color: var(--light);
  overflow: hidden;
  padding: 11rem 0;
}
@media (max-width: 1199.98px) {
  .hero-14 {
    padding: 8rem 0 0;
  }
}
.hero-14 .hero-content {
  max-width: 55ch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1199.98px) {
  .hero-14 .hero-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-inline: auto;
    margin-bottom: 6rem;
  }
}
.hero-14 .hero-content .caption {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--transparent-on-dark);
  font-weight: 300;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  --categoryLineColor: var(--transparent-on-dark);
}
@media (max-width: 1199.98px) {
  .hero-14 .hero-content .caption {
    margin-inline: auto;
  }
}
.hero-14 .hero-content .caption::after {
  position: relative;
  content: "";
  right: -0.5rem;
  width: 3.5rem;
  height: 1px;
  background: var(--categoryLineColor);
}
@media (max-width: 1199.98px) {
  .hero-14 .hero-content .caption::after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .hero-14 .hero-content .caption {
    margin-bottom: 1rem;
  }
}
.hero-14 .hero-content .description {
  color: var(--text-on-dark);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.hero-14 .slideshow {
  width: 50%;
  max-width: 1100px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1199.98px) {
  .hero-14 .slideshow {
    width: 100%;
    max-width: unset;
    height: 500px;
    position: relative;
    right: unset;
    top: unset;
  }
}
@media (max-width: 575.98px) {
  .hero-14 .slideshow {
    height: 290px;
  }
}
.hero-14 .slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  16.6666666667% {
    opacity: 1;
  }
  33.3333333333% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.hero-14 .slideshow img:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.hero-14 .slideshow img:nth-child(2) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.hero-14 .slideshow img:nth-child(3) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

.hero-15 {
  background: url("../components/heroes/15/images/background.jpg") center/cover;
  color: var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-15 .hero-content {
  padding: 9rem 0 5rem;
  text-align: center;
}
.hero-15 .hero-content .description {
  margin-bottom: 2.5rem;
}
.hero-15 .hero-content .header-btns {
  margin-inline: auto;
}
.hero-15 .hero-carousel {
  width: 100%;
  margin-bottom: 3rem;
}
.hero-15 .hero-carousel .owl-nav button.owl-next,
.hero-15 .hero-carousel .owl-nav button.owl-next,
.hero-15 .hero-carousel button.owl-dot.owl-nav,
.hero-15 .hero-carousel .owl-nav button.owl-prev,
.hero-15 .hero-carousel .owl-nav button.owl-prev,
.hero-15 .hero-carousel button.owl-dot.owl-nav {
  position: absolute;
  top: 45%;
  background-color: transparent !important;
  display: block;
  padding: 0 2rem !important;
  font-size: 6em;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
.hero-15 .hero-carousel .owl-nav button.owl-next:hover,
.hero-15 .hero-carousel .owl-nav button.owl-next:hover,
.hero-15 .hero-carousel button.owl-dot.owl-nav:hover,
.hero-15 .hero-carousel .owl-nav button.owl-prev:hover,
.hero-15 .hero-carousel .owl-nav button.owl-prev:hover,
.hero-15 .hero-carousel button.owl-dot.owl-nav:hover {
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575.98px) {
  .hero-15 .hero-carousel .owl-nav button.owl-next,
  .hero-15 .hero-carousel .owl-nav button.owl-next,
  .hero-15 .hero-carousel button.owl-dot.owl-nav,
  .hero-15 .hero-carousel .owl-nav button.owl-prev,
  .hero-15 .hero-carousel .owl-nav button.owl-prev,
  .hero-15 .hero-carousel button.owl-dot.owl-nav {
    font-size: 3em;
  }
}
.hero-15 .hero-carousel .owl-nav button.owl-next,
.hero-15 .hero-carousel .owl-nav button.owl-next,
.hero-15 .hero-carousel button.owl-dot.owl-nav {
  right: 0;
}
.hero-15 .hero-carousel .owl-nav button.owl-prev,
.hero-15 .hero-carousel .owl-nav button.owl-prev,
.hero-15 .hero-carousel button.owl-dot.owl-nav {
  left: 0;
}
.hero-15 .hero-carousel .owl-dots .owl-dot.active span,
.hero-15 .hero-carousel .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary);
}

.hero-16 {
  background: url("../components/heroes/16/images/background.jpg") center/cover;
  color: var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-16 h1 {
  display: none;
}
.hero-16 .hero-carousel {
  margin: 9rem 0 4rem;
  width: 100%;
  border-radius: var(--border-radius);
}
.hero-16 .hero-carousel .owl-item a img {
  border-radius: var(--border-radius);
}
.hero-16 .hero-carousel .owl-nav button.owl-next,
.hero-16 .hero-carousel .owl-nav button.owl-next,
.hero-16 .hero-carousel button.owl-dot.owl-nav,
.hero-16 .hero-carousel .owl-nav button.owl-prev,
.hero-16 .hero-carousel .owl-nav button.owl-prev,
.hero-16 .hero-carousel button.owl-dot.owl-nav {
  position: absolute;
  top: 45%;
  background-color: transparent !important;
  display: block;
  padding: 0 2rem !important;
  font-size: 6em;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
.hero-16 .hero-carousel .owl-nav button.owl-next:hover,
.hero-16 .hero-carousel .owl-nav button.owl-next:hover,
.hero-16 .hero-carousel button.owl-dot.owl-nav:hover,
.hero-16 .hero-carousel .owl-nav button.owl-prev:hover,
.hero-16 .hero-carousel .owl-nav button.owl-prev:hover,
.hero-16 .hero-carousel button.owl-dot.owl-nav:hover {
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 575.98px) {
  .hero-16 .hero-carousel .owl-nav button.owl-next,
  .hero-16 .hero-carousel .owl-nav button.owl-next,
  .hero-16 .hero-carousel button.owl-dot.owl-nav,
  .hero-16 .hero-carousel .owl-nav button.owl-prev,
  .hero-16 .hero-carousel .owl-nav button.owl-prev,
  .hero-16 .hero-carousel button.owl-dot.owl-nav {
    font-size: 3em;
  }
}
.hero-16 .hero-carousel .owl-nav button.owl-next,
.hero-16 .hero-carousel .owl-nav button.owl-next,
.hero-16 .hero-carousel button.owl-dot.owl-nav {
  right: 0;
}
.hero-16 .hero-carousel .owl-nav button.owl-prev,
.hero-16 .hero-carousel .owl-nav button.owl-prev,
.hero-16 .hero-carousel button.owl-dot.owl-nav {
  left: 0;
}
.hero-16 .hero-carousel .owl-dots .owl-dot.active span,
.hero-16 .hero-carousel .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary);
}

.apps-01 {
  padding: 0;
  background: url("../components/apps/01/images/background.png") 50% 50%/cover;
  color: #fff;
}
@media (max-width: 767.98px) {
  .apps-01 {
    padding: 4rem 0;
  }
}
.apps-01 .apps-grid {
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 4rem;
}
@media (max-width: 767.98px) {
  .apps-01 .apps-grid {
    grid-template-columns: 1fr;
  }
}
.apps-01 .apps-grid .app-content {
  text-align: left;
  max-width: 70ch;
}
@media (max-width: 575.98px) {
  .apps-01 .apps-grid .app-content {
    text-align: center;
  }
}
.apps-01 .apps-grid .app-content h2 {
  margin-bottom: 1.2rem;
}
.apps-01 .apps-grid .app-content p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
@media (min-width: 992px) {
  .apps-01 .apps-grid .app-content p {
    font-size: 1.2rem;
  }
}
.apps-01 .apps-grid .app-content p i {
  color: #000;
  text-shadow: 1px 0 0 #000;
}
.apps-01 .apps-grid .app-content .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 576px) {
  .apps-01 .apps-grid .app-content .btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.apps-01 .apps-grid .app-content .btns a {
  margin: 0 0 0.5rem 0;
  max-width: 12rem;
}
@media (min-width: 576px) {
  .apps-01 .apps-grid .app-content .btns a {
    margin: 0 1rem 0 0;
    max-width: 14rem;
  }
}
.apps-01 .apps-grid .app-content .btns a:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
@media (max-width: 767.98px) {
  .apps-01 .apps-grid .app-image {
    display: none;
  }
}

.apps-02 {
  color: #fff;
  overflow: hidden;
  background: var(--primary);
}
@media (min-width: 576px) {
  .apps-02 {
    background: none;
  }
}
.apps-02::before {
  display: block;
  content: "";
  width: 50vw;
  position: absolute;
  top: 7rem;
  bottom: 7rem;
  right: 0;
  background-color: var(--primary);
  z-index: -1;
}
@media (max-width: 767.98px) {
  .apps-02::before {
    top: 3.75rem;
    bottom: 3.75rem;
  }
}
.apps-02 .box {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media (min-width: 576px) {
  .apps-02 .box {
    background: var(--primary);
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
  }
}
.apps-02 .box .desc {
  padding: 0;
  text-align: center;
}
@media (min-width: 576px) {
  .apps-02 .box .desc {
    padding: 4.8rem 0rem;
    padding-left: 3.5rem;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .apps-02 .box .desc {
    padding-left: 0.5rem;
  }
}
.apps-02 .box .desc h2 {
  margin-bottom: 1.2rem;
}
.apps-02 .box .desc p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
@media (min-width: 576px) {
  .apps-02 .box .desc p {
    font-size: 1.2rem;
  }
}
.apps-02 .box .desc p i {
  color: #000;
  text-shadow: 1px 0 0 #000;
}
.apps-02 .box .desc .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 576px) {
  .apps-02 .box .desc .btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.apps-02 .box .desc .btns a {
  margin: 0 0 0.5rem 0;
  max-width: 12rem;
}
@media (min-width: 576px) {
  .apps-02 .box .desc .btns a {
    margin: 0 1rem 0 0;
    max-width: 14rem;
  }
}
.apps-02 .box .desc .btns a:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.apps-02 .box img.mobile {
  position: absolute;
  bottom: 0px;
  height: 100%;
  display: none;
  right: 0;
}
@media (min-width: 992px) {
  .apps-02 .box img.mobile {
    display: block;
    right: unset;
  }
}

.apps-03 {
  background: var(--primary);
  color: #fff;
}
.apps-03 .apps-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.apps-03 .apps-grid .app-content {
  text-align: center;
}
@media (min-width: 576px) {
  .apps-03 .apps-grid .app-content {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .apps-03 .apps-grid .app-content {
    padding-bottom: 40px;
  }
}
.apps-03 .apps-grid .app-content h2 {
  margin-bottom: 1.2rem;
}
.apps-03 .apps-grid .app-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
@media (min-width: 992px) {
  .apps-03 .apps-grid .app-content p {
    font-size: 1.2rem;
  }
}
.apps-03 .apps-grid .app-content p i {
  color: #000;
}
.apps-03 .apps-grid .app-content .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 576px) {
  .apps-03 .apps-grid .app-content .btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.apps-03 .apps-grid .app-content .btns a {
  margin: 0 0 0.5rem 0;
  max-width: 11rem;
}
@media (min-width: 576px) {
  .apps-03 .apps-grid .app-content .btns a {
    margin: 0 1rem 0 0;
    max-width: 13rem;
  }
}
.apps-03 .apps-grid .app-content .btns a:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.apps-03 .apps-grid .app-image {
  position: relative;
}
.apps-03 .apps-grid .app-image img {
  display: none;
  width: 100%;
  max-width: 350px;
  -webkit-filter: drop-shadow(-8px 18px 30px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(-8px 18px 30px rgba(0, 0, 0, 0.4));
  -webkit-animation-name: float;
          animation-name: float;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
@media (min-width: 768px) {
  .apps-03 .apps-grid .app-image img {
    display: inline-block;
  }
}
.apps-03 .apps-grid .app-image .drop-shadow {
  position: absolute;
  bottom: -10%;
  left: 45%;
  -webkit-transform: translateX(-32%);
          transform: translateX(-32%);
  width: 80%;
  height: 10%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 90%);
  border-radius: 50%;
  -webkit-animation-name: drop-shadow;
          animation-name: drop-shadow;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
@media (min-width: 1400px) {
  .apps-03 .apps-grid .app-image .drop-shadow {
    left: 38%;
  }
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes drop-shadow {
  0% {
    width: 80%;
    opacity: 1;
  }
  50% {
    width: 60%;
    opacity: 0.6;
  }
  100% {
    width: 80%;
    opacity: 1;
  }
}
@keyframes drop-shadow {
  0% {
    width: 80%;
    opacity: 1;
  }
  50% {
    width: 60%;
    opacity: 0.6;
  }
  100% {
    width: 80%;
    opacity: 1;
  }
}
.apps-04 {
  background: url("../components/apps/04/images/background.jpg") center/cover;
  color: #fff;
  position: relative;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .apps-04 {
    overflow: hidden;
  }
}
.apps-04 .apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .apps-04 .apps-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 5rem;
  }
}
.apps-04 .apps-grid .app-screens {
  position: relative;
}
@media (max-width: 991.98px) {
  .apps-04 .apps-grid .app-screens {
    grid-row: 2;
    margin-bottom: 2rem;
  }
}
.apps-04 .apps-grid .app-screens .blob {
  position: absolute;
  width: 732px;
  top: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
}
.apps-04 .apps-grid .app-screens .blob path {
  fill: rgba(184, 184, 184, 0.15);
}
.apps-04 .apps-grid .app-screens .screen-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.apps-04 .apps-grid .app-screens .screen-group img {
  width: 100%;
  -webkit-box-shadow: 25px 0 40px 10px rgba(0, 0, 0, 0.5), 6px 6px 0 #373737;
          box-shadow: 25px 0 40px 10px rgba(0, 0, 0, 0.5), 6px 6px 0 #373737;
  border: 5px solid #262626;
  border-top-width: 18px;
  border-bottom-width: 18px;
  border-radius: 1.2rem;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
.apps-04 .apps-grid .app-screens .screen-group img:nth-child(1) {
  -webkit-transform: rotate3d(1, -1, 1, -14deg);
          transform: rotate3d(1, -1, 1, -14deg);
}
.apps-04 .apps-grid .app-screens .screen-group img:nth-child(1):hover {
  -webkit-transform: rotate3d(1, -1, 1, 5deg);
          transform: rotate3d(1, -1, 1, 5deg);
}
.apps-04 .apps-grid .app-screens .screen-group img:nth-child(2) {
  -webkit-transform: rotate3d(1, -1, 1, 15deg) scale(1.3);
          transform: rotate3d(1, -1, 1, 15deg) scale(1.3);
  z-index: 2;
}
.apps-04 .apps-grid .app-screens .screen-group img:nth-child(2):hover {
  -webkit-transform: rotate3d(1, -1, 1, 10deg) scale(1.45);
          transform: rotate3d(1, -1, 1, 10deg) scale(1.45);
}
.apps-04 .apps-grid .app-screens .screen-group img:nth-child(3) {
  z-index: 0;
  -webkit-transform: rotate3d(1, -1, 1, 35deg);
          transform: rotate3d(1, -1, 1, 35deg);
}
.apps-04 .apps-grid .app-screens .screen-group img:nth-child(3):hover {
  -webkit-transform: rotate3d(1, -1, 1, 20deg);
          transform: rotate3d(1, -1, 1, 20deg);
}
.apps-04 .apps-grid .app-content {
  position: relative;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 45%;
          flex: 1 0 45%;
}
@media (max-width: 991.98px) {
  .apps-04 .apps-grid .app-content {
    width: 100%;
    padding: 1.7rem 1rem;
    border-radius: 1rem;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767.98px) {
  .apps-04 .apps-grid .app-content::after, .apps-04 .apps-grid .app-content::before {
    width: 60px;
    height: 70px;
  }
}
@media (max-width: 575.98px) {
  .apps-04 .apps-grid .app-content::after, .apps-04 .apps-grid .app-content::before {
    display: none;
  }
}
.apps-04 .apps-grid .app-content h2 {
  margin-bottom: 1rem;
  width: 100%;
  max-width: 11ch;
  text-align: right;
  -ms-flex-item-align: end;
      align-self: end;
  color: var(--dark);
}
@media (max-width: 991.98px) {
  .apps-04 .apps-grid .app-content h2 {
    max-width: 100%;
    text-align: center;
  }
}
.apps-04 .apps-grid .app-content h2 span {
  color: var(--primary);
}
.apps-04 .apps-grid .app-content .caption {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--dark);
  font-weight: 300;
  opacity: 0.7;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 575.98px) {
  .apps-04 .apps-grid .app-content .caption {
    -ms-flex-item-align: center;
        align-self: center;
    margin-bottom: 1rem;
  }
}
.apps-04 .apps-grid .app-content p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
}
.apps-04 .apps-grid .app-content p strong {
  color: var(--dark);
  font-weight: bold;
}
.apps-04 .button-group {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-filter: drop-shadow(0 10px 20px rgba(163, 114, 50, 0.2));
          filter: drop-shadow(0 10px 20px rgba(163, 114, 50, 0.2));
}
.apps-04 .button-group a {
  max-width: 13rem;
}
.apps-04 .button-group a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.apps-04 .button-group a:nth-child(1) {
  margin-right: 1.5rem;
}

.apps-05 {
  background: transparent;
  background-image: url("../components/apps/05/images/background.jpg");
  background-size: cover;
  color: #fff;
}
@media (max-width: 767.98px) {
  .apps-05 {
    overflow: hidden;
  }
}
.apps-05 .card {
  position: relative;
  padding: 3rem;
  text-align: center;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background-color: rgba(15, 15, 15, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3rem;
  -webkit-box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 575.98px) {
  .apps-05 .card {
    width: 100%;
    padding: 1.7rem 1rem;
    border-radius: 1rem;
  }
}
.apps-05 .card::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 118px;
  border-radius: 50%;
  left: -1rem;
  top: -3rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(#4d4d4d 33%, transparent 33%);
  background-size: 7px 7px;
  -webkit-filter: drop-shadow(50px 20px 0 rgba(77, 77, 77, 0.5));
          filter: drop-shadow(50px 20px 0 rgba(77, 77, 77, 0.5));
}
.apps-05 .card::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 100px;
  border-radius: 50%;
  right: -1.2rem;
  bottom: -2rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(var(--primary-dark) 33%, transparent 33%);
  background-size: 7px 7px;
  -webkit-filter: drop-shadow(50px -20px 0 rgba(77, 77, 77, 0.5));
          filter: drop-shadow(50px -20px 0 rgba(77, 77, 77, 0.5));
}
@media (max-width: 767.98px) {
  .apps-05 .card::after, .apps-05 .card::before {
    width: 60px;
    height: 70px;
  }
}
@media (max-width: 575.98px) {
  .apps-05 .card::after, .apps-05 .card::before {
    display: none;
  }
}
.apps-05 .card .caption {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
}
.apps-05 .card h2 {
  margin-bottom: 1rem;
}
.apps-05 .card p {
  color: #fff;
  opacity: 0.7;
}
.apps-05 .button-group {
  width: 500px;
  margin: 2rem auto 0;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.apps-05 .button-group a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.apps-05 .button-group a:nth-child(1) {
  margin-right: 1.5rem;
}
.apps-05 .button-group a:nth-child(2) img {
  border: 2px solid black;
  border-radius: 5px;
}
.apps-05 .button-group a img {
  width: 150px;
}

.about-01 {
  background: #fff;
  color: var(--dark);
}
.about-01 .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-gap: 8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .about-01 .about-grid {
    grid-template-columns: 1fr;
    grid-gap: 4rem;
  }
}
.about-01 .about-grid .about-content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 991.98px) {
  .about-01 .about-grid .about-content {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.about-01 .about-grid .about-content p {
  font-size: 1rem;
  max-width: 55ch;
}
@media (min-width: 576px) {
  .about-01 .about-grid .about-content p {
    font-size: 1.1rem;
  }
}
.about-01 .about-grid .about-content a {
  color: var(--dark);
  border-bottom: 2px dashed var(--primary);
}
.about-01 .about-grid .about-image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 991.98px) {
  .about-01 .about-grid .about-image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.about-02 {
  position: relative;
  background: var(--dark);
  color: var(--light);
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-02 {
    text-align: left;
  }
}
.about-02 .about-content {
  max-width: 55ch;
}
.about-02 .about-content h2 {
  text-transform: uppercase;
}
.about-02 .about-content h2 span {
  color: var(--primary);
}
.about-02 .about-content p {
  font-size: 1.05rem;
}
@media (min-width: 576px) {
  .about-02 .about-content p {
    font-size: 1.1rem;
  }
}
.about-02 .about-content p.desc {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  .about-02 .about-content p.desc {
    font-size: 1.3rem;
  }
}
.about-02 .about-content a {
  color: var(--light);
  border-bottom: 2px dashed var(--primary);
}
.about-02 img.clipped {
  display: block;
  max-width: 100%;
  margin: 3rem auto 0;
}
@media (min-width: 576px) {
  .about-02 img.clipped {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .about-02 img.clipped {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    -webkit-clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    max-width: 800px;
    width: 40%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.about-03 {
  color: var(--light);
  background: var(--dark);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .about-03 {
    overflow: hidden;
  }
}
.about-03 .about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .about-03 .about-grid {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}
.about-03 .about-grid .about-content {
  max-width: 55ch;
}
.about-03 .about-grid .about-content h2 {
  margin-bottom: 1rem;
}
.about-03 .about-grid .about-content h2 span {
  color: var(--primary);
}
.about-03 .about-grid .about-content p {
  margin-bottom: 1rem;
  color: var(--light);
  font-size: 1.1rem;
}
.about-03 .about-grid .about-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (max-width: 767.98px) {
  .about-03 .about-grid .about-image-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.about-03 .about-grid .about-image-wrapper img {
  -webkit-box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
.about-03 .about-grid .about-image-wrapper img:nth-child(1) {
  z-index: 0;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.about-03 .about-grid .about-image-wrapper img:nth-child(1):hover {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}
@media (max-width: 991.98px) {
  .about-03 .about-grid .about-image-wrapper img:nth-child(1) {
    -webkit-transform: unset;
            transform: unset;
  }
  .about-03 .about-grid .about-image-wrapper img:nth-child(1):hover {
    -webkit-transform: none;
            transform: none;
  }
}
.about-03 .about-grid .about-image-wrapper img:nth-child(2) {
  margin-left: -8rem;
  width: 250px;
  height: 250px;
  margin-top: 2rem;
  z-index: 1;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
.about-03 .about-grid .about-image-wrapper img:nth-child(2):hover {
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
}
@media (max-width: 991.98px) {
  .about-03 .about-grid .about-image-wrapper img:nth-child(2) {
    display: none;
  }
}

.about-04 {
  color: #fff;
  background-image: url("../components/about/04/images/background.jpg");
}
@media (max-width: 767.98px) {
  .about-04 {
    overflow: hidden;
  }
}
.about-04 .about-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991.98px) {
  .about-04 .about-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-04 .about-grid .about-content {
  position: relative;
  padding: 3rem;
  border-radius: 3rem;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.86);
  -webkit-box-flex: 1;
      -ms-flex: 1 0 52%;
          flex: 1 0 52%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}
@media (max-width: 575.98px) {
  .about-04 .about-grid .about-content {
    width: 100%;
    padding: 1.7rem 1rem;
    border-radius: 1rem;
  }
}
.about-04 .about-grid .about-content::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 100px;
  border-radius: 50%;
  left: -1.2rem;
  top: -2rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(var(--primary-light) 33%, transparent 33%);
  background-size: 7px 7px;
  -webkit-filter: drop-shadow(50px -20px 0 rgba(77, 77, 77, 0.5));
          filter: drop-shadow(50px -20px 0 rgba(77, 77, 77, 0.5));
}
.about-04 .about-grid .about-content::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 100px;
  border-radius: 50%;
  right: -1.2rem;
  bottom: -2rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(var(--primary-light) 33%, transparent 33%);
  background-size: 7px 7px;
  -webkit-filter: drop-shadow(50px -20px 0 rgba(255, 255, 255, 0.4));
          filter: drop-shadow(50px -20px 0 rgba(255, 255, 255, 0.4));
}
@media (max-width: 767.98px) {
  .about-04 .about-grid .about-content::after, .about-04 .about-grid .about-content::before {
    width: 60px;
    height: 70px;
  }
}
@media (max-width: 575.98px) {
  .about-04 .about-grid .about-content::after, .about-04 .about-grid .about-content::before {
    display: none;
  }
}
.about-04 .about-grid .about-content h2 {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primary);
}
.about-04 .about-grid .about-content p {
  color: #0b0b0b;
  width: 55ch;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .about-04 .about-grid .about-content p {
    width: auto;
  }
}
.about-04 .about-grid .about-content p a {
  color: var(--primary);
  font-weight: bold;
  border-bottom: 2px dashed var(--primary);
}
.about-04 .about-grid .about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
  position: relative;
}
.about-04 .about-grid .about-image img {
  height: 100%;
  width: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transform-origin: right;
          transform-origin: right;
  z-index: 0;
  position: relative;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .about-04 .about-grid .about-image img {
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@media (max-width: 575.98px) {
  .about-04 .about-grid .about-image img {
    height: 200px;
    width: 100%;
  }
}
.about-04 .about-grid .about-image img.blur {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  right: 0;
  left: 0;
  bottom: -29px;
  z-index: -1;
  -webkit-filter: blur(25px);
          filter: blur(25px);
}

.about-05 {
  color: var(--light);
  background: var(--dark);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .about-05 {
    overflow: hidden;
  }
}
.about-05 .about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .about-05 .about-grid {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}
.about-05 .about-grid .about-content {
  max-width: 55ch;
}
.about-05 .about-grid .about-content h2 {
  margin-bottom: 1rem;
}
.about-05 .about-grid .about-content p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: var(--weight-light);
}
@media (max-width: 767.98px) {
  .about-05 .about-grid .about-content p {
    font-size: 1rem;
    width: auto;
  }
}
.about-05 .about-grid .about-content p a {
  color: var(--primary);
  font-weight: var(--weight-bold);
}
.about-05 .about-grid .about-image-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
@media (max-width: 767.98px) {
  .about-05 .about-grid .about-image-grid {
    grid-gap: 1rem;
  }
}
.about-05 .about-grid .about-image-grid .image-wrapper {
  position: relative;
}
.about-05 .about-grid .about-image-grid .image-wrapper:nth-child(2) {
  margin-top: 3rem;
}
.about-05 .about-grid .about-image-grid .image-wrapper .main-image {
  aspect-ratio: 0.7/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
}
.about-05 .about-grid .about-image-grid .image-wrapper .dots-in-square,
.about-05 .about-grid .about-image-grid .image-wrapper .dots,
.about-05 .about-grid .about-image-grid .image-wrapper .circle-and-dots {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 767.98px) {
  .about-05 .about-grid .about-image-grid .image-wrapper .dots-in-square,
  .about-05 .about-grid .about-image-grid .image-wrapper .dots,
  .about-05 .about-grid .about-image-grid .image-wrapper .circle-and-dots {
    display: none;
  }
}
.about-05 .about-grid .about-image-grid .image-wrapper .dots-in-square {
  position: absolute;
  left: -15%;
  bottom: -5%;
  width: 43%;
}
.about-05 .about-grid .about-image-grid .image-wrapper .dots {
  position: absolute;
  top: -8%;
  right: -8%;
  width: 14%;
}
.about-05 .about-grid .about-image-grid .image-wrapper .circle-and-dots {
  position: absolute;
  top: -15%;
  right: -15%;
  width: 42%;
}

.foodList-01 {
  padding: 0;
  background: fixed url("../components/foodLists/01/images/background.jpg") 50% 50%/cover;
  color: var(--dark);
}
.foodList-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
@media (min-width: 576px) {
  .foodList-01 {
    padding: 120px 0 100px;
    -webkit-box-shadow: inset 0 0px 20px rgba(0, 0, 0, 0.8);
            box-shadow: inset 0 0px 20px rgba(0, 0, 0, 0.8);
  }
}
.foodList-01 .foodlist__wrapper {
  margin: 0;
  width: 100%;
  background: #fff;
  position: relative;
  -webkit-box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.16);
}
@media (min-width: 576px) {
  .foodList-01 .foodlist__wrapper {
    border-radius: 10px;
    -webkit-box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.55);
            box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.55);
  }
}
.foodList-01 #foodlist__heading {
  background: transparent;
  padding: 1.5rem 0;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__heading {
    padding: 2rem 0;
  }
}
.foodList-01 #foodlist__heading h2 {
  margin: 0;
  text-align: center;
}
.foodList-01 #foodlist__heading .foodlist__order {
  position: relative;
  padding: 0 0.6rem;
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__heading .foodlist__order {
    font-size: 1.2rem;
  }
}
.foodList-01 #foodlist__heading .foodlist__order a {
  color: var(--primary);
  font-weight: bold;
}
.foodList-01 #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
}
.foodList-01 #foodlist__heading .foodlist__order a:hover i {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.foodList-01 #foodlist__categories {
  position: sticky;
  top: var(--scroll-padding);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  overflow-x: scroll;
  padding: 0.6rem 0;
  margin: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2), 0 5px 9px -5px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2), 0 5px 9px -5px rgba(0, 0, 0, 0.3);
}
.foodList-01 #foodlist__categories:hover {
  cursor: -webkit-grab;
  cursor: grab;
}
.foodList-01 #foodlist__categories:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__categories {
    position: relative;
    top: unset;
    background: rgba(0, 0, 0, 0.05);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: unset;
    padding: 1rem 0.5rem;
    -webkit-box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
            box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .foodList-01 #foodlist__categories:hover {
    cursor: default;
  }
  .foodList-01 #foodlist__categories:active {
    cursor: default;
  }
}
.foodList-01 #foodlist__categories .foodlist__categories__item {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.3rem 1rem;
  margin: 0.45rem;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  cursor: pointer;
  font-size: 1.05rem;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__categories .foodlist__categories__item {
    padding: 0.45rem 1.9rem;
  }
}
.foodList-01 #foodlist__categories .foodlist__categories__item:hover, .foodList-01 #foodlist__categories .foodlist__categories__item:focus {
  -webkit-box-shadow: 0 3px 20px rgba(66, 0, 0, 0.25);
          box-shadow: 0 3px 20px rgba(66, 0, 0, 0.25);
}
.foodList-01 #foodlist__categories .foodlist__categories__item.selected {
  background: var(--primary);
  color: #fff;
}
.foodList-01 #foodlist__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  padding: 1.8rem 1.3rem;
  max-width: 1350px;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .foodList-01 #foodlist__content {
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem 3rem;
  }
}
@media (min-width: 1400px) {
  .foodList-01 #foodlist__content {
    grid-gap: 2rem 4rem;
  }
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content {
    padding: 3rem 2rem 3.5rem;
  }
}
@media (min-width: 992px) {
  .foodList-01 #foodlist__content {
    padding: 3rem 3.5rem 4.5rem;
  }
}
.foodList-01 #foodlist__content h3 {
  position: relative;
  grid-column: span 1;
  justify-self: center;
  margin-bottom: 0.7rem;
  font-size: 1.9rem;
  font-weight: var(--weight-regular);
  font-family: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content h3 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .foodList-01 #foodlist__content h3 {
    grid-column: span 2;
    margin-bottom: 2rem;
    font-size: 2.1rem;
  }
}
.foodList-01 #foodlist__content h3::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -4px;
  border-bottom: 4px dotted var(--primary);
  width: 70%;
}
.foodList-01 #foodlist__content .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-bottom: 0.3rem;
  -webkit-animation: itemFade 1s forwards;
          animation: itemFade 1s forwards;
  border-bottom: 1.15px solid rgba(0, 0, 0, 0.1);
}
.foodList-01 #foodlist__content .item-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
  padding-right: 0.5rem;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content .item-list__content {
    padding-right: 1rem;
  }
}
.foodList-01 #foodlist__content .item-list__content__name {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content .item-list__content__name {
    font-size: 1.2rem;
  }
}
.foodList-01 #foodlist__content .item-list__content__ingredients {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content .item-list__content__ingredients {
    font-size: 1rem;
  }
}
.foodList-01 #foodlist__content .item-list__content__allergens {
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
  opacity: 0.6;
  line-height: 1.2;
}
.foodList-01 #foodlist__content .item-list__content__price {
  margin-top: auto;
  color: var(--primary);
  font-size: 1.1rem;
  font-family: var(--font-heading);
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content .item-list__content__price {
    font-size: 1.3rem;
  }
}
.foodList-01 #foodlist__content .item-list__image {
  margin-bottom: 8px;
}
.foodList-01 #foodlist__content .item-list__image a {
  height: 80px;
  width: 80px;
  display: block;
}
.foodList-01 #foodlist__content .item-list__image a img {
  max-width: 100%;
  border-radius: 0.3rem;
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
}
.foodList-01 #loading {
  position: relative;
  text-align: center;
  padding: 40px 0 20px;
  grid-column: span 2;
  font-size: 1.1rem;
}
.foodList-01 #loading:before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  -webkit-animation: spinner 0.6s linear infinite;
          animation: spinner 0.6s linear infinite;
  font-style: italic;
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.foodList-02 {
  background: url("../components/foodLists/02/images/background.jpg");
  padding: 0;
  color: var(--light);
}
.foodList-02 .foodlist__wrapper {
  margin: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  position: relative;
  padding-bottom: 2.5rem;
}
.foodList-02 #foodlist__heading {
  background: none;
  padding: 2rem 0;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__heading {
    padding: 3rem 0;
  }
}
.foodList-02 #foodlist__heading h2 {
  margin: 0;
  text-align: center;
}
.foodList-02 #foodlist__heading .foodlist__order {
  position: relative;
  padding: 0 0.6rem;
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__heading .foodlist__order {
    font-size: 1.2rem;
  }
}
.foodList-02 #foodlist__heading .foodlist__order a {
  color: var(--primary-dark);
  font-weight: bold;
}
.foodList-02 #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
}
.foodList-02 #foodlist__heading .foodlist__order a:hover i {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.foodList-02 #foodlist__categories {
  position: sticky;
  top: var(--scroll-padding);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  overflow-x: scroll;
  padding: 0.6rem 0;
  margin: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2), 0 5px 9px -5px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2), 0 5px 9px -5px rgba(0, 0, 0, 0.3);
}
.foodList-02 #foodlist__categories:hover {
  cursor: -webkit-grab;
  cursor: grab;
}
.foodList-02 #foodlist__categories:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__categories {
    position: relative;
    top: unset;
    background: rgba(0, 0, 0, 0.3);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: unset;
    padding: 1rem 0;
    -webkit-box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
            box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .foodList-02 #foodlist__categories:hover {
    cursor: default;
  }
  .foodList-02 #foodlist__categories:active {
    cursor: default;
  }
}
.foodList-02 #foodlist__categories .foodlist__categories__item {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.3rem 1rem;
  margin: 0.45rem;
  border-radius: 5px;
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__categories .foodlist__categories__item {
    padding: 0.45rem 1.9rem;
  }
}
.foodList-02 #foodlist__categories .foodlist__categories__item:hover, .foodList-02 #foodlist__categories .foodlist__categories__item:focus {
  -webkit-box-shadow: 0 3px 20px rgba(66, 0, 0, 0.25);
          box-shadow: 0 3px 20px rgba(66, 0, 0, 0.25);
}
.foodList-02 #foodlist__categories .foodlist__categories__item.selected {
  background: var(--primary);
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.foodList-02 #foodlist__content {
  position: relative;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr;
  padding: 1.8rem 1.3rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .foodList-02 #foodlist__content {
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    padding: 3rem 2rem 2rem;
  }
}
.foodList-02 #foodlist__content h3 {
  position: relative;
  grid-column: span 1;
  justify-self: center;
  margin-bottom: 0.7rem;
  font-size: 1.9rem;
  font-weight: var(--weight-regular);
  font-family: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .foodList-02 #foodlist__content h3 {
    grid-column: span 2;
    margin-bottom: 2rem;
    font-size: 2.1rem;
  }
}
.foodList-02 #foodlist__content h3::before, .foodList-02 #foodlist__content h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--primary);
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3::before, .foodList-02 #foodlist__content h3::after {
    width: 3.5rem;
  }
}
.foodList-02 #foodlist__content h3::before {
  left: -3rem;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3::before {
    left: -5rem;
  }
}
.foodList-02 #foodlist__content h3::after {
  right: -3rem;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3::after {
    right: -5rem;
  }
}
.foodList-02 #foodlist__content .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-bottom: 0.3rem;
  -webkit-animation: itemFade 1s forwards;
          animation: itemFade 1s forwards;
  border-bottom: 1.15px solid rgba(0, 0, 0, 0.1);
}
.foodList-02 #foodlist__content .item-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
  margin-bottom: 0.2rem;
  padding-right: 0.5rem;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content .item-list__content {
    padding-right: 1rem;
  }
}
.foodList-02 #foodlist__content .item-list__content__name {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content .item-list__content__name {
    font-size: 1.2rem;
  }
}
.foodList-02 #foodlist__content .item-list__content__ingredients {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content .item-list__content__ingredients {
    font-size: 1rem;
  }
}
.foodList-02 #foodlist__content .item-list__content__allergens {
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
  opacity: 0.6;
  line-height: 1.2;
}
.foodList-02 #foodlist__content .item-list__content__price {
  margin-top: auto;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: var(--weight-bold);
  font-family: var(--font-heading);
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content .item-list__content__price {
    font-size: 1.3rem;
  }
}
.foodList-02 #foodlist__content .item-list__image {
  margin-bottom: 8px;
}
.foodList-02 #foodlist__content .item-list__image a {
  height: 80px;
  width: 80px;
  display: block;
}
.foodList-02 #foodlist__content .item-list__image a img {
  max-width: 100%;
  border-radius: 0.3rem;
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
}
.foodList-02 #loading {
  position: relative;
  text-align: center;
  padding: 40px 0 20px;
  grid-column: span 2;
  font-size: 1.1rem;
}
.foodList-02 #loading:before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  -webkit-animation: spinner 0.6s linear infinite;
          animation: spinner 0.6s linear infinite;
  font-style: italic;
}

.foodList-02 {
  background-size: cover;
  background-attachment: fixed;
}
.foodList-02 ::-webkit-scrollbar {
  height: 9px;
  background-color: rgba(0, 0, 0, 0.1);
}
.foodList-02 ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.4);
  background-color: rgba(0, 0, 0, 0.1);
}
.foodList-02 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.3);
}
.foodList-02 #foodlist__heading .foodlist__order a {
  color: var(--primary);
}
.foodList-02 #foodlist__categories {
  background: rgba(0, 0, 0, 0.95);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__categories {
    background: rgba(0, 0, 0, 0.3);
  }
}
.foodList-02 #foodlist__categories .foodlist__categories__item {
  background: rgba(73, 73, 73, 0.8);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.foodList-02 #foodlist__categories .foodlist__categories__item:hover, .foodList-02 #foodlist__categories .foodlist__categories__item:focus {
  background: rgba(82, 82, 82, 0.9);
}
.foodList-02 #foodlist__categories .foodlist__categories__item.selected {
  color: var(--light);
  background: var(--primary);
}
.foodList-02 #foodlist__content .item-list {
  border-bottom: 1.15px solid rgba(230, 230, 230, 0.2);
}

@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.foodList-03 {
  background: none;
  color: var(--dark);
  padding: 0;
}
@media (min-width: 576px) {
  .foodList-03 {
    overflow: hidden;
  }
}
.foodList-03 #foodlist__heading {
  padding: 2rem 0;
}
@media (min-width: 576px) {
  .foodList-03 #foodlist__heading {
    padding: 3rem 0 2.5rem;
  }
}
.foodList-03 #foodlist__heading h2 {
  margin: 0;
  text-align: center;
}
.foodList-03 #foodlist__heading .foodlist__order {
  padding: 0 0.6rem;
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-03 #foodlist__heading .foodlist__order {
    font-size: 1.2rem;
  }
}
.foodList-03 #foodlist__heading .foodlist__order a {
  color: var(--primary);
  font-weight: var(--weight-bold);
}
.foodList-03 #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
.foodList-03 #foodlist__heading .foodlist__order a:hover i {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.foodList-03 .navigation {
  position: sticky;
  top: var(--scroll-padding);
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}
@media (min-width: 576px) {
  .foodList-03 .navigation {
    position: relative;
    top: 0;
    width: 92%;
  }
}
.foodList-03 .navigation .progress-container {
  width: 100%;
  background: #fff;
}
@media (min-width: 576px) {
  .foodList-03 .navigation .progress-container {
    background: transparent;
  }
}
.foodList-03 .navigation .progress-container .progress-bar {
  height: 3px;
  background: var(--primary-dark);
  width: 0%;
  min-width: 15px;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.foodList-03 .navigation #foodlist__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: rgba(252, 252, 252, 0.96);
  height: auto;
  margin: 0;
  overflow: auto;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  -webkit-box-shadow: 0 20px 10px -23px rgba(0, 0, 0, 0.6);
          box-shadow: 0 20px 10px -23px rgba(0, 0, 0, 0.6);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
  scrollbar-width: none;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .foodList-03 .navigation #foodlist__categories {
    -webkit-box-shadow: 0 20px 10px -23px rgba(0, 0, 0, 0.4);
            box-shadow: 0 20px 10px -23px rgba(0, 0, 0, 0.4);
    height: 77px;
  }
}
.foodList-03 .navigation #foodlist__categories::-webkit-scrollbar {
  display: none;
}
@media (min-width: 576px) {
  .foodList-03 .navigation #foodlist__categories::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    width: 15px;
    cursor: default;
    -webkit-box-shadow: inset 15px 0 10px -10px rgb(255, 255, 255);
            box-shadow: inset 15px 0 10px -10px rgb(255, 255, 255);
  }
}
@media (min-width: 576px) {
  .foodList-03 .navigation #foodlist__categories::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    left: unset;
    right: 0;
    width: 15px;
    cursor: default;
    -webkit-box-shadow: inset -15px 0 10px -10px rgb(255, 255, 255);
            box-shadow: inset -15px 0 10px -10px rgb(255, 255, 255);
  }
}
.foodList-03 .navigation #foodlist__categories .foodlist__categories__item {
  display: block;
  padding: 1rem;
  cursor: pointer;
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
  border-bottom: 3px solid transparent;
  scroll-snap-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .foodList-03 .navigation #foodlist__categories .foodlist__categories__item {
    padding: 1.5rem 2rem;
    font-size: 1rem;
  }
}
.foodList-03 .navigation #foodlist__categories .foodlist__categories__item:hover, .foodList-03 .navigation #foodlist__categories .foodlist__categories__item:focus {
  background: rgb(244, 244, 244);
}
.foodList-03 .navigation #foodlist__categories .foodlist__categories__item.selected {
  border-bottom: 3px solid var(--primary);
}
.foodList-03 .arrows {
  position: relative;
  width: 100%;
}
@media (min-width: 576px) {
  .foodList-03 .arrows {
    position: static;
  }
}
.foodList-03 .arrows button {
  position: absolute;
  bottom: -5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 8px;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  background: rgba(252, 252, 252, 0.96);
  border: 1px solid #cacaca;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
  z-index: 1;
  color: var(--dark);
}
@media (min-width: 576px) {
  .foodList-03 .arrows button {
    bottom: unset;
    top: 50%;
  }
}
.foodList-03 .arrows button:hover {
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.foodList-03 .arrows button.slide-right {
  right: 35%;
}
@media (min-width: 576px) {
  .foodList-03 .arrows button.slide-right {
    right: -4rem;
  }
}
@media (min-width: 1400px) {
  .foodList-03 .arrows button.slide-right {
    right: -6rem;
  }
}
.foodList-03 .arrows button.slide-left {
  left: 35%;
}
@media (min-width: 576px) {
  .foodList-03 .arrows button.slide-left {
    left: -4rem;
  }
}
@media (min-width: 1400px) {
  .foodList-03 .arrows button.slide-left {
    left: -6rem;
  }
}
.foodList-03 #foodlist__content {
  position: relative;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr;
  padding: 2rem 1.12rem 4rem;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 576px) {
  .foodList-03 #foodlist__content {
    padding: 2rem 2rem 4rem;
    grid-gap: 1.3rem;
  }
}
@media (min-width: 768px) {
  .foodList-03 #foodlist__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .foodList-03 #foodlist__content {
    padding: 3rem 2rem 5rem;
    grid-gap: 2rem 3rem;
  }
}
@media (min-width: 1400px) {
  .foodList-03 #foodlist__content {
    grid-gap: 2rem 4rem;
  }
}
.foodList-03 #foodlist__content h3 {
  position: relative;
  grid-column: span 1;
  justify-self: center;
  margin-bottom: 0.7rem;
  font-size: 1.9rem;
  font-weight: var(--weight-regular);
  font-family: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-03 #foodlist__content h3 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .foodList-03 #foodlist__content h3 {
    grid-column: span 2;
    margin-bottom: 2rem;
    font-size: 2.1rem;
  }
}
.foodList-03 #foodlist__content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 80px;
  background: var(--primary);
}
.foodList-03 #foodlist__content .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-bottom: 0.3rem;
  -webkit-animation: itemFadeIn 1s forwards;
          animation: itemFadeIn 1s forwards;
  border-bottom: 1.15px solid rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
}
.foodList-03 #foodlist__content .item-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
  margin-bottom: 0.2rem;
  padding-right: 0.5rem;
}
@media (min-width: 576px) {
  .foodList-03 #foodlist__content .item-list__content {
    padding-right: 1rem;
  }
}
.foodList-03 #foodlist__content .item-list__content__name {
  font-weight: 600;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 0.3rem;
  font-size: 1.16rem;
}
.foodList-03 #foodlist__content .item-list__content__ingredients {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
}
@media (min-width: 576px) {
  .foodList-03 #foodlist__content .item-list__content__ingredients {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
}
.foodList-03 #foodlist__content .item-list__content__allergens {
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
  opacity: 0.6;
  line-height: 1.2;
}
.foodList-03 #foodlist__content .item-list__content__price {
  margin-top: auto;
  color: var(--primary-dark);
  font-size: 1.07rem;
  font-weight: var(--weight-bold);
}
.foodList-03 #foodlist__content .item-list__image {
  margin-bottom: 8px;
}
.foodList-03 #foodlist__content .item-list__image a {
  height: 80px;
  width: 80px;
  display: block;
}
.foodList-03 #foodlist__content .item-list__image a img {
  max-width: 100%;
  border-radius: 0.3rem;
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
}
.foodList-03 #loading {
  position: relative;
  text-align: center;
  padding: 40px 0 20px;
  grid-column: span 2;
  font-size: 1.1rem;
}
.foodList-03 #loading:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  -webkit-animation: spinner 0.6s linear infinite;
          animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes itemFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes itemFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.foodList-04 {
  position: relative;
  z-index: 0;
  background: url("../components/foodLists/04/images/background.jpg") no-repeat fixed center/cover;
  color: var(--light);
  /*&::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
  }*/
}
.foodList-04 .foodlist__wrapper {
  margin: 0;
  width: 100%;
  position: relative;
}
@media (max-width: 575.98px) {
  .foodList-04 .custom-container {
    width: 100%;
  }
}
.foodList-04 #foodlist__heading {
  background: transparent;
  padding: 1.5rem 0;
}
@media (min-width: 576px) {
  .foodList-04 #foodlist__heading {
    padding: 2rem 0;
  }
}
.foodList-04 #foodlist__heading .subtitle {
  text-align: center;
}
.foodList-04 #foodlist__heading h2 {
  margin-bottom: 0.5rem;
  text-align: center;
}
.foodList-04 #foodlist__heading .foodlist__order {
  position: relative;
  padding: 0 0.6rem;
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-04 #foodlist__heading .foodlist__order {
    font-size: 1.2rem;
  }
}
.foodList-04 #foodlist__heading .foodlist__order a {
  color: var(--primary);
  font-weight: bold;
}
.foodList-04 #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
.foodList-04 #foodlist__heading .foodlist__order a:hover i {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.foodList-04 #foodlist__categories {
  position: sticky;
  top: var(--scroll-padding);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  overflow-x: scroll;
  padding: 0.6rem 0;
  margin: 0;
  z-index: 1;
  background-color: #17161a;
}
.foodList-04 #foodlist__categories:hover {
  cursor: -webkit-grab;
  cursor: grab;
}
.foodList-04 #foodlist__categories:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
@media (min-width: 576px) {
  .foodList-04 #foodlist__categories {
    background: none;
    position: relative;
    top: unset;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: unset;
    padding: 1rem 0.5rem;
    margin: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .foodList-04 #foodlist__categories:hover {
    cursor: default;
  }
  .foodList-04 #foodlist__categories:active {
    cursor: default;
  }
}
.foodList-04 #foodlist__categories .foodlist__categories__item {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.7rem 1rem;
  margin: 0.45rem;
  border-radius: 50vh;
  background: #101010;
  -webkit-transition: var(--transition-fast);
  transition: var(--transition-fast);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: var(--light);
  font-size: 0.85rem;
}
@media (min-width: 576px) {
  .foodList-04 #foodlist__categories .foodlist__categories__item {
    padding: 0.75rem 1.9rem;
    font-size: 1.05rem;
  }
}
.foodList-04 #foodlist__categories .foodlist__categories__item:hover, .foodList-04 #foodlist__categories .foodlist__categories__item:focus {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media (max-width: 767.98px) {
  .foodList-04 #foodlist__categories .foodlist__categories__item:hover, .foodList-04 #foodlist__categories .foodlist__categories__item:focus {
    -webkit-transform: none;
            transform: none;
  }
}
.foodList-04 #foodlist__categories .foodlist__categories__item.selected {
  background: var(--primary-dark);
  color: #fff;
  -webkit-box-shadow: 0 10px 230px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 230px rgba(0, 0, 0, 0.2);
}
.foodList-04 #foodlist__content {
  position: relative;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 1.8rem 1.3rem;
  max-width: 1350px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .foodList-04 #foodlist__content {
    padding: 0;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.foodList-04 #foodlist__content h3 {
  grid-column: 1/-1;
  text-align: center;
  visibility: hidden;
  line-height: 0.1;
}
.foodList-04 #foodlist__content .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-animation: itemFade 1s forwards;
          animation: itemFade 1s forwards;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
}
@media (max-width: 767.98px) {
  .foodList-04 #foodlist__content .item-list {
    max-width: 360px;
    margin-inline: auto;
  }
}
@media (max-width: 575.98px) {
  .foodList-04 #foodlist__content .item-list {
    border-radius: none;
    border-top: 1px solid #282828;
  }
}
.foodList-04 #foodlist__content .item-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.foodList-04 #foodlist__content .item-list__content__name {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 600;
}
@media (min-width: 576px) {
  .foodList-04 #foodlist__content .item-list__content__name {
    font-size: 1.5rem;
  }
}
.foodList-04 #foodlist__content .item-list__content__ingredients {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
@media (min-width: 576px) {
  .foodList-04 #foodlist__content .item-list__content__ingredients {
    font-size: 1rem;
  }
}
.foodList-04 #foodlist__content .item-list__content__allergens {
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
  opacity: 0.6;
  line-height: 1.2;
}
.foodList-04 #foodlist__content .item-list__content__price {
  margin-top: auto;
  color: var(--primary);
  font-size: 1.1rem;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 576px) {
  .foodList-04 #foodlist__content .item-list__content__price {
    font-size: 1.3rem;
  }
}
.foodList-04 #foodlist__content .item-list__image {
  margin-bottom: 1rem;
}
.foodList-04 #foodlist__content .item-list__image a {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}
.foodList-04 #foodlist__content .item-list__image a img {
  max-width: 100%;
  width: 100%;
  border-radius: 0.3rem;
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
}
.foodList-04 #loading {
  position: relative;
  text-align: center;
  padding: 40px 0 20px;
  grid-column: 1/-1;
  font-size: 1.1rem;
}
.foodList-04 #loading:before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  -webkit-animation: spinner 0.6s linear infinite;
          animation: spinner 0.6s linear infinite;
  font-style: italic;
}

@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.gallery-01 {
  background: url("../components/galleries/01/images/background.jpg");
  padding: 50px 0 40px;
  color: #fff;
}
@media (min-width: 768px) {
  .gallery-01 {
    padding: 60px 0 50px;
  }
}
.gallery-01 h2 {
  display: block;
  margin-bottom: 3rem;
  border-bottom: 4px dotted var(--primary-dark);
  text-align: center;
}
.gallery-01 img {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 3px;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
}
.gallery-01 img:hover {
  -webkit-transform: scale(1.015);
          transform: scale(1.015);
  -webkit-box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.4);
          box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.4);
}

.gallery-02 {
  background: transparent;
  color: var(--dark);
  text-align: center;
}
@media (max-width: 575.98px) {
  .gallery-02 {
    overflow: hidden;
  }
}
.gallery-02 h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}
.gallery-02 h2::before, .gallery-02 h2::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 4rem;
  height: 3px;
  background: var(--primary);
}
.gallery-02 h2::before {
  left: -5rem;
}
.gallery-02 h2::after {
  right: -5rem;
}
.gallery-02 .gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .gallery-02 .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr;
    grid-gap: 1rem;
  }
}
.gallery-02 .gallery-grid .extended {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-gap: 1.5rem;
  grid-column: 1/-1;
}
@media (max-width: 767.98px) {
  .gallery-02 .gallery-grid .extended {
    grid-gap: 1rem;
  }
}
.gallery-02 .gallery-grid .extended a:first-child {
  grid-column: unset;
  grid-row: unset;
}
.gallery-02 .gallery-grid .extended a img {
  aspect-ratio: 1/1;
}
.gallery-02 .gallery-grid a {
  width: 100%;
}
.gallery-02 .gallery-grid a:hover {
  -webkit-transform: scale(1.015);
          transform: scale(1.015);
}
.gallery-02 .gallery-grid a:first-child {
  grid-column: span 1;
  grid-row: span 2;
}
@media (max-width: 767.98px) {
  .gallery-02 .gallery-grid a:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.gallery-02 .gallery-grid a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 5px;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery-03 {
  background: transparent;
  padding: 40px 0;
  color: var(--dark);
}
@media (min-width: 768px) {
  .gallery-03 {
    padding: 60px;
  }
}
.gallery-03 h2 {
  display: inline-block;
  padding-left: 2rem;
  margin-bottom: 3rem;
  border-left: 5px solid var(--primary);
}
.gallery-03 img {
  width: 100%;
  margin-bottom: 30px;
  -webkit-transition: var(--transition-fast);
  transition: var(--transition-fast);
  -webkit-box-shadow: 0 5px 12px rgba(77, 39, 0, 0.3);
          box-shadow: 0 5px 12px rgba(77, 39, 0, 0.3);
}
.gallery-03 img:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 30px rgba(77, 39, 0, 0.4);
          box-shadow: 0 5px 30px rgba(77, 39, 0, 0.4);
}

.gallery-04 {
  text-align: center;
  position: relative;
  z-index: 0;
  background: url("../components/galleries/04/images/background.jpg") fixed center/cover;
}
.gallery-04::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: var(--dark);
  opacity: 0.6;
  z-index: -1;
}
.gallery-04 h2 {
  color: #fff;
  margin-bottom: 3rem;
}
.gallery-04 h2 span {
  color: var(--primary);
}
.gallery-04 .caption {
  font-family: var(--primaryFont);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: #fff;
  font-weight: 300;
  opacity: 0.7;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 575.98px) {
  .gallery-04 .caption {
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
  }
}
.gallery-04 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
}
@media (max-width: 991.98px) {
  .gallery-04 .gallery-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .gallery-04 .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.gallery-04 .gallery-grid a {
  aspect-ratio: 1/1;
}
.gallery-04 .gallery-grid a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.gallery-04 .gallery-grid a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
}

.deliveryMap-01 {
  position: relative;
  background: url("../components/deliveryMaps/01/images/background.jpg");
  overflow: hidden;
  color: var(--light);
}
.deliveryMap-01 .delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .deliveryMap-01 .delivery-grid {
    grid-template-columns: 1fr;
  }
}
.deliveryMap-01 .delivery-grid .delivery-content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 991.98px) {
  .deliveryMap-01 .delivery-grid .delivery-content {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.deliveryMap-01 .delivery-grid .delivery-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .deliveryMap-01 .delivery-grid .delivery-content h2 {
    font-size: 3.2rem;
  }
}
.deliveryMap-01 .delivery-grid .delivery-content p {
  font-size: 1rem;
}
@media (min-width: 576px) {
  .deliveryMap-01 .delivery-grid .delivery-content p {
    font-size: 1.1rem;
  }
}
.deliveryMap-01 .delivery-grid .delivery-content p:last-of-type {
  margin-bottom: 1.6rem;
}
.deliveryMap-01 .delivery-grid .delivery-content p.zone span {
  color: var(--white);
  font-weight: var(--weight-bold);
}
@media (min-width: 576px) {
  .deliveryMap-01 .delivery-grid .delivery-content p.zone {
    font-size: 1.2rem;
  }
}
.deliveryMap-01 .delivery-grid .delivery-map {
  text-align: center;
}
.deliveryMap-01 .delivery-grid .delivery-map a {
  color: var(--light);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
.deliveryMap-01 .delivery-grid .delivery-map a:hover {
  opacity: 0.8;
}
.deliveryMap-01 .delivery-grid .delivery-map a:hover p {
  opacity: 0.8;
}
.deliveryMap-01 .delivery-grid .delivery-map a img {
  padding-bottom: 5px;
}
.deliveryMap-01 .delivery-grid .delivery-map a p {
  margin-bottom: 0;
  font-size: 1.1rem;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}

.deliveryMap-02 {
  position: relative;
  background: url("../components/deliveryMaps/02/images/background.jpg");
  overflow: hidden;
  color: #fff;
  border-top: 7px dashed rgba(255, 255, 255, 0.15);
}
.deliveryMap-02 h2 {
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 992px) {
  .deliveryMap-02 h2 {
    margin-bottom: 3.5rem;
  }
}
.deliveryMap-02 .zone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 1.5rem;
}
.deliveryMap-02 .zone i {
  margin-right: 1.2rem;
  font-size: 2rem;
  color: var(--primary);
}
@media (min-width: 576px) {
  .deliveryMap-02 .zone i {
    font-size: 2.6rem;
  }
}
.deliveryMap-02 .zone p {
  font-size: 1rem;
}
.deliveryMap-02 .zone p .towns {
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  color: var(--white);
}
@media (min-width: 576px) {
  .deliveryMap-02 .zone p {
    font-size: 1.2rem;
  }
}

.deliveryMap-03 {
  background: var(--light);
  overflow: hidden;
  color: var(--dark);
}
.deliveryMap-03 h2 {
  text-align: center;
  font-size: 3.5rem;
}
@media (min-width: 768px) {
  .deliveryMap-03 h2 {
    font-size: 4rem;
  }
}
.deliveryMap-03 .zone p {
  text-align: center;
  font-size: 1.1rem;
}
.deliveryMap-03 .zone p.towns {
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  font-weight: var(--weight-bold);
}
.deliveryMap-03 .zone p.towns span {
  font-weight: var(--weight-regular);
}
@media (min-width: 768px) {
  .deliveryMap-03 .zone p {
    font-size: 1.2rem;
  }
  .deliveryMap-03 .zone p.towns {
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
  }
}
.deliveryMap-03 p.info {
  text-align: center;
  font-size: 1.1rem;
  font-weight: var(--weight-regular);
}
.deliveryMap-03 p.info i {
  font-size: 1rem;
}

.contact-01 {
  background: url("../components/contacts/01/images/background.jpg") center/cover;
  overflow: hidden;
}
.contact-01 img.pizza {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  width: 400px;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}
@media (min-width: 576px) {
  .contact-01 img.pizza {
    width: 600px;
  }
}
.contact-01 .card {
  background: #fff;
  padding: 25px;
  position: relative;
  text-align: left;
  border-radius: 5px;
  height: 100%;
  -webkit-box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
}
.contact-01 .card h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-weight: var(--weight-bold);
  text-align: center;
  text-transform: uppercase;
}
.contact-01 .card.info {
  position: relative;
  padding: 25px;
  color: var(--dark);
}
.contact-01 .card.info p,
.contact-01 .card.info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row, nowrap;
          flex-flow: row, nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .contact-01 .card.info p,
  .contact-01 .card.info a {
    font-size: 1.2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact-01 .card.info p i,
.contact-01 .card.info a i {
  margin-right: 10px;
}
.contact-01 .card.info p i::before,
.contact-01 .card.info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.4rem;
  color: var(--primary);
  text-align: center;
}
.contact-01 .card.info p i.fa-facebook-square::before,
.contact-01 .card.info a i.fa-facebook-square::before {
  font-size: 1.65rem;
}
.contact-01 .card.info a.phone {
  font-weight: var(--weight-bold);
}
.contact-01 .card.info a:hover {
  color: var(--primary);
}
.contact-01 .card.info a span {
  line-height: 1.3;
  border-bottom: 2px dashed var(--primary);
}
.contact-01 .card.business-hours li {
  padding: 0 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 2rem;
}
.contact-01 .card.business-hours li span {
  float: right;
}
.contact-01 .card.business-hours li:last-child {
  border-bottom: none;
}
.contact-01 .card.business-hours li.today {
  background: rgba(0, 0, 0, 0.1);
  font-weight: var(--weight-bold);
}
.contact-01 .card.business-hours p.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 0.5rem;
  margin: 0;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .contact-01 .card.business-hours p.info {
    font-size: 1rem;
  }
}
.contact-01 .card.business-hours p.info i {
  margin: 0.1rem 0.5rem 0 0;
  opacity: 0.8;
  font-size: 1rem;
}
@media (min-width: 576px) {
  .contact-01 .card.business-hours p.info i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
  }
}
.contact-01 .map {
  position: relative;
  height: 100%;
  min-height: 300px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
}
.contact-01 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact-02 {
  background: url("../components/contacts/02/images/background.jpg") 50% 50%/cover scroll;
  overflow: hidden;
}
@media (min-width: 576px) {
  .contact-02 {
    background-attachment: fixed;
    -webkit-box-shadow: inset 0 0px 20px rgba(0, 0, 0, 0.5);
            box-shadow: inset 0 0px 20px rgba(0, 0, 0, 0.5);
  }
}
.contact-02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.contact-02 img.pizza {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  width: 400px;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}
@media (min-width: 576px) {
  .contact-02 img.pizza {
    width: 600px;
  }
}
.contact-02 .card {
  background: #fff;
  padding: 25px;
  position: relative;
  text-align: left;
  border-radius: 5px;
  height: 100%;
  -webkit-box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
}
.contact-02 .card h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--dark);
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-02 .card h2 {
    font-size: 3.2rem;
  }
}
.contact-02 .card.info {
  position: relative;
  color: var(--dark);
  padding: 25px;
}
.contact-02 .card.info p,
.contact-02 .card.info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row, nowrap;
          flex-flow: row, nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--dark);
}
@media (min-width: 768px) {
  .contact-02 .card.info p,
  .contact-02 .card.info a {
    font-size: 1.3rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact-02 .card.info p i,
.contact-02 .card.info a i {
  margin-right: 12px;
}
.contact-02 .card.info p i::before,
.contact-02 .card.info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.6rem;
  color: var(--primary);
  text-align: center;
}
.contact-02 .card.info p i.fa-facebook-square::before,
.contact-02 .card.info a i.fa-facebook-square::before {
  font-size: 1.8rem;
}
.contact-02 .card.info a span {
  line-height: 1.3;
  border-bottom: 2px dashed rgba(var(--primary), 1);
}
.contact-02 .card.info a:hover {
  color: var(--primary);
}
.contact-02 .map {
  position: relative;
  height: 100%;
  min-height: 300px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
}
.contact-02 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact-03 {
  background: url("../components/contacts/03/images/background.jpg") 50% 50%/cover scroll;
  -webkit-box-shadow: inset 0px 0px 15px 4px rgba(0, 0, 0, 0.6);
          box-shadow: inset 0px 0px 15px 4px rgba(0, 0, 0, 0.6);
}
@media (min-width: 992px) {
  .contact-03 {
    background-attachment: fixed;
  }
}
.contact-03::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.contact-03 .card {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
  text-align: left;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .contact-03 .card {
    margin-bottom: 0px;
  }
}
.contact-03 .card h2 {
  color: var(--dark);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-03 .card.info {
  position: relative;
  color: var(--dark);
  padding: 25px;
}
@media (min-width: 768px) {
  .contact-03 .card.info {
    margin-bottom: 30px;
  }
}
.contact-03 .card.info p,
.contact-03 .card.info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row, nowrap;
          flex-flow: row, nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--dark);
}
@media (min-width: 768px) {
  .contact-03 .card.info p,
  .contact-03 .card.info a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact-03 .card.info p i,
.contact-03 .card.info a i {
  margin-right: 10px;
}
.contact-03 .card.info p i::before,
.contact-03 .card.info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.4rem;
  color: var(--primary);
  text-align: center;
}
.contact-03 .card.info p i.fa-facebook-square::before,
.contact-03 .card.info a i.fa-facebook-square::before {
  font-size: 1.65rem;
}
.contact-03 .card.info p i.fa-instagram::before,
.contact-03 .card.info a i.fa-instagram::before {
  font-size: 1.65rem;
}
.contact-03 .card.info a.phone {
  font-weight: var(--weight-bold);
}
.contact-03 .card.info a:hover {
  color: var(--primary-dark);
}
.contact-03 .card.info a span {
  display: inline-block;
  line-height: 1.2;
  border-bottom: 2px dashed var(--primary-dark);
}
.contact-03 .card.business-hours li {
  padding: 0 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 1.8rem;
}
.contact-03 .card.business-hours li span {
  float: right;
}
.contact-03 .card.business-hours li:last-child {
  border-bottom: none;
}
.contact-03 .card.business-hours li.today {
  font-weight: var(--weight-bold);
  background: rgba(0, 0, 0, 0.1);
}
.contact-03 .card.business-hours p.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 0.5rem;
  margin: 0;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .contact-03 .card.business-hours p.info {
    font-size: 1rem;
  }
}
.contact-03 .card.business-hours p.info i {
  opacity: 0.8;
  font-size: 1rem;
  margin: 0.1rem 0.5rem 0 0;
}
@media (min-width: 576px) {
  .contact-03 .card.business-hours p.info i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
  }
}
.contact-03 .map {
  position: relative;
  padding: 0;
  height: 100%;
  min-height: 300px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}
.contact-03 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1rem;
}
@media (min-width: 768px) {
  .contact-03 .map a.way-btn {
    font-size: 1.1rem;
    padding: 0.5rem 1.8rem;
  }
}

.contact-04 {
  position: relative;
  background-color: var(--primary);
  background-image: url("../components/contacts/04/images/crisscross.png");
  z-index: 0;
  overflow: hidden;
  -webkit-box-shadow: inset 0px 4px 20px -4px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0px 4px 20px -4px rgba(0, 0, 0, 0.5);
}
.contact-04 .card {
  background: #fff;
  padding: 25px 25px 40px;
  position: relative;
  text-align: left;
  border-radius: 5px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .contact-04 .card {
    padding: 25px 35px;
  }
}
.contact-04 .card h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  text-transform: uppercase;
  text-align: center;
}
.contact-04 .card.info {
  position: relative;
  color: var(--dark);
}
.contact-04 .card.info p,
.contact-04 .card.info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row, nowrap;
          flex-flow: row, nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--dark);
}
@media (min-width: 768px) {
  .contact-04 .card.info p,
  .contact-04 .card.info a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact-04 .card.info p i,
.contact-04 .card.info a i {
  margin-right: 10px;
}
.contact-04 .card.info p i::before,
.contact-04 .card.info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.4rem;
  color: var(--primary);
  text-align: center;
}
@media (min-width: 768px) {
  .contact-04 .card.info p i,
  .contact-04 .card.info a i {
    font-size: 1.5rem;
    margin-right: 0.6rem;
  }
}
.contact-04 .card.info a {
  font-weight: var(--weight-bold);
}
.contact-04 .card.info a:hover {
  color: var(--primary);
}
.contact-04 .card.info .social {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row, nowrap;
          flex-flow: row, nowrap;
}
@media (min-width: 992px) {
  .contact-04 .card.info .social {
    bottom: 25px;
    right: 25px;
  }
}
.contact-04 .card.info .social a {
  margin-bottom: 0;
  margin-right: 17px;
}
@media (min-width: 992px) {
  .contact-04 .card.info .social a {
    margin-right: 12px;
  }
}
.contact-04 .card.info .social a i {
  margin: 0;
}
.contact-04 .card.info .social a i::before {
  display: inline-block;
  width: 2rem;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  color: var(--primary);
  font-size: 2.3rem;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 992px) {
  .contact-04 .card.info .social a i::before {
    font-size: 2.2rem;
  }
}
.contact-04 .card.info .social a i:hover::before {
  color: var(--primary-dark);
}
.contact-04 .card.business-hours li {
  padding: 0 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 1.8rem;
}
.contact-04 .card.business-hours li span {
  float: right;
}
.contact-04 .card.business-hours li:last-child {
  border-bottom: none;
}
.contact-04 .card.business-hours li.today {
  font-weight: var(--weight-bold);
  background: rgba(0, 0, 0, 0.1);
}
.contact-04 .card.business-hours p.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 0.5rem;
  margin: 0;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .contact-04 .card.business-hours p.info {
    font-size: 1rem;
  }
}
.contact-04 .card.business-hours p.info i {
  opacity: 0.8;
  font-size: 1rem;
  margin: 0.1rem 0.5rem 0 0;
}
@media (min-width: 576px) {
  .contact-04 .card.business-hours p.info i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
  }
}
.contact-04 .map {
  position: relative;
  padding: 0;
  min-height: 250px;
  border-radius: 5px;
  overflow: hidden;
}
.contact-04 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.contact-04 .pizza {
  position: absolute;
  bottom: -300px;
  right: -20%;
  max-width: 620px;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
  -webkit-animation-name: pizza-contact-rotate;
          animation-name: pizza-contact-rotate;
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media (min-width: 992px) {
  .contact-04 .pizza {
    right: -180px;
    max-width: 820px;
  }
}

@-webkit-keyframes pizza-contact-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes pizza-contact-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.contact-05 {
  position: relative;
  background: url("../components/contacts/05/images/background.jpg") 50% 50%/cover;
}
.contact-05::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}
.contact-05 h2 {
  margin-bottom: 3rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .contact-05 h2 {
    margin-bottom: 2.5rem;
  }
}
.contact-05 .card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2.8rem 1rem 1.5rem;
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 5px;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
  text-align: left;
  max-width: 280px;
}
.contact-05 .card i {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: grid;
  place-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-dark);
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.7);
          box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.3rem;
}
.contact-05 .card p,
.contact-05 .card a {
  text-align: center;
  margin: 0;
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: var(--weight-regular);
}
@media (min-width: 576px) {
  .contact-05 .card p,
  .contact-05 .card a {
    font-size: 1.1rem;
  }
}
.contact-05 .card a:hover {
  color: var(--primary-dark);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}
.contact-05 .map {
  position: relative;
  padding: 0;
  height: 100%;
  min-height: 300px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}
.contact-05 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact-06 {
  background: url("../components/contacts/06/images/background.jpg") center/cover;
  position: relative;
  z-index: 0;
  color: rgb(255, 255, 255);
}
@media (max-width: 767.98px) {
  .contact-06 {
    overflow: hidden;
  }
}
.contact-06::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
}
.contact-06 .card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767.98px) {
  .contact-06 .card-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-06 .card-container .card-content {
  position: relative;
  text-align: center;
  backdrop-filter: blur(16px) saturate(171%);
  -webkit-backdrop-filter: blur(16px) saturate(171%);
  background-color: rgba(17, 25, 40, 0.52);
  border-radius: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  z-index: 1;
  -webkit-box-shadow: 0 40px 30px -24px rgba(24, 24, 24, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 40px 30px -24px rgba(24, 24, 24, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
  -webkit-box-flex: 1;
      -ms-flex: 1 0 40%;
          flex: 1 0 40%;
}
@media (max-width: 575.98px) {
  .contact-06 .card-container .card-content {
    width: 100%;
    padding: 1.7rem 1rem;
    border-radius: 1rem;
  }
}
.contact-06 .card-container .card-content::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 100px;
  border-radius: 50%;
  left: -1.2rem;
  top: -2rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(var(--primary-dark) 33%, transparent 33%);
  background-size: 7px 7px;
  -webkit-filter: drop-shadow(50px -20px 0 rgba(156, 156, 156, 0.5));
          filter: drop-shadow(50px -20px 0 rgba(156, 156, 156, 0.5));
}
.contact-06 .card-container .card-content::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 100px;
  border-radius: 50%;
  right: -1.2rem;
  bottom: -2rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(var(--primary-dark) 33%, transparent 33%);
  background-size: 7px 7px;
  -webkit-filter: drop-shadow(50px -20px 0 rgba(0, 0, 0, 0.4));
          filter: drop-shadow(50px -20px 0 rgba(0, 0, 0, 0.4));
}
@media (max-width: 767.98px) {
  .contact-06 .card-container .card-content::after, .contact-06 .card-container .card-content::before {
    width: 60px;
    height: 70px;
  }
}
@media (max-width: 575.98px) {
  .contact-06 .card-container .card-content::after, .contact-06 .card-container .card-content::before {
    display: none;
  }
}
.contact-06 .card-container .card-iframe {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 52%;
          flex: 1 0 52%;
  margin-left: -5rem;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .contact-06 .card-container .card-iframe {
    margin-left: 0;
  }
}
.contact-06 .card-container .card-iframe iframe {
  height: 100%;
  width: 100%;
  z-index: 0;
  position: relative;
  border-radius: 20px;
  margin-top: 4rem;
  -webkit-box-shadow: 0 40px 30px -24px rgba(24, 24, 24, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 40px 30px -24px rgba(24, 24, 24, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767.98px) {
  .contact-06 .card-container .card-iframe iframe {
    width: 100vw;
    height: 400px;
    margin-top: -3rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }
}
@media (max-width: 575.98px) {
  .contact-06 .card-container .card-iframe iframe {
    height: 250px;
  }
}
.contact-06 .caption {
  font-family: var(--primaryFont);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: #fff;
  font-weight: 300;
  opacity: 0.7;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  --categoryLineColor: rgba(255, 255, 255, 0.3);
}
.contact-06 .caption::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -3.5rem;
  width: 2rem;
  height: 1px;
  background: var(--categoryLineColor);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-06 .caption::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -3.5rem;
  width: 2rem;
  height: 1px;
  background: var(--categoryLineColor);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-06 a {
  color: #fff;
}
.contact-06 ul {
  list-style: none;
  text-align: left;
}
.contact-06 ul li {
  line-height: 1.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.contact-06 ul li:not(:nth-last-child(1)) {
  margin-bottom: 1rem;
}
.contact-06 ul li i {
  margin-right: 1rem;
  width: 2rem;
  font-size: 1.5rem;
  line-height: 1.7;
  position: relative;
  top: 4px;
  color: var(--primary-light);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-07 {
  margin: 0;
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  z-index: 1;
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  background: var(--dark);
}
.contact-07::before {
  width: 100%;
  height: 50%;
  bottom: -26%;
  opacity: 0.7;
  -webkit-transform: scale(1.5) rotate(10deg);
          transform: scale(1.5) rotate(10deg);
  left: -18%;
  background-image: url("../components/contacts/07/images/leaves.png");
  background-size: contain;
}
.contact-07::after {
  width: 20vw;
  height: 18vw;
  bottom: -15%;
  background-repeat: no-repeat;
  left: -4%;
  background-image: url("../components/contacts/07/images/sushi.png");
  background-size: contain;
  -webkit-filter: drop-shadow(2px 5px 20px rgb(0, 0, 1));
          filter: drop-shadow(2px 5px 20px rgb(0, 0, 1));
}
.contact-07::before, .contact-07::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.contact-07 .grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5rem;
}
@media (max-width: 767.98px) {
  .contact-07 .grid-container {
    grid-template-columns: 1fr;
    grid-gap: 3rem;
  }
}
.contact-07 .grid-container .contact-content h2 {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .contact-07 .grid-container .contact-content h2 {
    width: auto;
  }
}
.contact-07 .grid-container .contact-content h2 span {
  color: var(--primary);
}
.contact-07 .grid-container .contact-content p {
  margin-bottom: 1rem;
}
.contact-07 .grid-container .contact-content a {
  color: var(--light);
}
.contact-07 .grid-container .contact-content a:hover {
  color: var(--primary);
}
.contact-07 .grid-container .contact-content .social a {
  margin-right: 10px;
  color: #fff;
}
.contact-07 .grid-container .contact-content .social i {
  font-size: 2rem;
}
.contact-07 .grid-container .contact-content__info ul {
  margin: 0;
  list-style: none;
}
.contact-07 .grid-container .contact-content__info ul li {
  margin-bottom: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #8f8f8f;
}
.contact-07 .grid-container .contact-content__info ul li i {
  margin-right: 1rem;
  width: 1.2rem;
  color: #fff;
}
@media (max-width: 767.98px) {
  .contact-07 .grid-container .contact-map iframe {
    height: 200px;
  }
}

.footer-01 {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.footer-01 .info {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #292929;
}
.footer-01 .info p strong {
  font-size: 1.1rem;
}
.footer-01 p {
  margin-bottom: 0;
}
.footer-01 a {
  color: var(--light);
  border-bottom: 2px dashed var(--primary);
  font-weight: 600;
}

.footer-02 {
  padding: 5rem 0 0;
  background-color: var(--dark);
  color: var(--text-on-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 767.98px) {
  .footer-02 {
    text-align: center;
  }
}
.footer-02 .caption {
  color: #d2d2d2;
  font-weight: bolder;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  display: block;
}
.footer-02 .caption::after, .footer-02 .caption::before {
  display: none;
}
@media (max-width: 767.98px) {
  .footer-02 .caption {
    margin: 2rem 0 1rem;
  }
}
.footer-02 a {
  color: var(--light);
}
.footer-02 a:hover {
  color: var(--text-on-dark);
}
.footer-02 img {
  width: 120px;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .footer-02 img {
    margin: 0 auto;
  }
}
.footer-02 .footer__copyright {
  padding: 3rem 0;
  margin-top: 3rem;
  text-align: center;
  border-top: 1px solid #292929;
}
.footer-02 .social {
  font-size: 1.5rem;
  margin-top: 3.6rem;
}
@media (max-width: 767.98px) {
  .footer-02 .social {
    margin-top: 2rem;
  }
}
.footer-02 .social a:nth-child(1) {
  margin-right: 0.5rem;
}

.footer-03 {
  padding: 5rem 0 0;
  color: var(--text-on-dark);
  background-color: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 767.98px) {
  .footer-03 {
    text-align: center;
  }
}
.footer-03 .logo-footer {
  margin-bottom: 1.5rem;
}
.footer-03 .caption {
  font-weight: bolder;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  display: block;
  color: #d2d2d2;
}
.footer-03 .caption::after, .footer-03 .caption::before {
  display: none;
}
@media (max-width: 767.98px) {
  .footer-03 .caption {
    margin: 2rem 0 1rem;
  }
}
.footer-03 a {
  color: var(--light);
  text-decoration: underline;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.footer-03 a:hover {
  color: var(--text-on-dark);
}
.footer-03 img {
  width: 120px;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .footer-03 img {
    margin: 0 auto;
  }
}
.footer-03 iframe {
  border-radius: 10px;
}
.footer-03 .business-hours .today {
  color: var(--primary);
  font-weight: bold;
}
.footer-03 .tel-link {
  text-decoration: none;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-03 .tel-link:hover,
.footer-03 .tel-link :focus {
  color: var(--primary-dark);
}
.footer-03 .footer__copyright {
  padding: 3rem 0;
  margin-top: 3rem;
  text-align: center;
  border-top: 1px solid #292929;
}
.footer-03 .social {
  font-size: 1.5rem;
  margin-top: 2rem;
}
.footer-03 .social .caption {
  margin-bottom: 1rem;
}
.footer-03 .social a:nth-child(2) {
  margin-right: 0.5rem;
}
.footer-03 .social a i {
  font-size: 2rem;
}

.arrow-to-top.arrow-01 {
  cursor: pointer;
  pointer-events: none;
  position: fixed;
  text-align: center;
  z-index: 100;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  right: 40px;
  bottom: 10px;
  opacity: 0;
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01 {
    right: 0;
  }
}
.arrow-to-top.arrow-01.show {
  opacity: 1;
  pointer-events: all;
  bottom: 40px;
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01.show {
    bottom: 20px;
  }
}
.arrow-to-top.arrow-01 a {
  text-decoration: none;
  padding: 5px 12px;
  color: var(--white);
  background: var(--primary);
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  border-radius: 8px;
  font-size: 1.2rem;
  display: inline-block;
}
.arrow-to-top.arrow-01 a i {
  -webkit-transition: var(--transition-fast);
  transition: var(--transition-fast);
}
.arrow-to-top.arrow-01 a:hover {
  background: var(--primary-dark);
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}
.arrow-to-top.arrow-01 a:hover i {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01 a:hover {
    background: var(--primary);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .arrow-to-top.arrow-01 a:hover i {
    -webkit-transform: none;
            transform: none;
  }
}

.popup {
  z-index: 1000;
  height: 100%;
  width: 100%;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  padding: 30px;
  display: none;
}
.popup.only-image .popup__body {
  padding: 0;
  background-color: transparent;
  overflow: unset;
}
.popup.only-image .close-btn {
  background-color: var(--light);
  color: var(--dark);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  top: -15px;
  right: -15px;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.popup__body {
  height: auto;
  width: auto;
  max-height: 90%;
  background: #fff;
  color: #000;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 2rem;
  overflow: auto;
}
@media (max-width: 575.98px) {
  .popup__body {
    width: 90%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.popup__body img {
  display: block;
  max-height: 60vh;
  max-width: 100%;
  margin: auto auto;
}
.popup__body p {
  color: var(--dark);
  max-width: 500px;
  text-align: center;
  margin-inline: auto;
}
.popup__body a {
  text-decoration: none;
}
.popup__body .close-btn {
  color: var(--dark);
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
}

#popover {
  position: fixed;
  bottom: 0.5rem;
  left: 0.5rem;
  z-index: 150;
  max-width: 35vw;
  padding: 0.75rem 1rem;
  background-color: rgba(241, 243, 246, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767.98px) {
  #popover {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  #popover {
    right: 0.5rem;
  }
}
#popover.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#popover .popover-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#popover .popover-header .popover-heading {
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-right: 2rem;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
}
@media (max-width: 575.98px) {
  #popover .popover-header .popover-heading {
    font-size: 1rem;
  }
}
#popover .popover-close-button {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 2.75rem;
  font-size: 1.1rem;
  cursor: pointer;
}
#popover .popover-content {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  #popover .popover-content {
    font-size: 0.875rem;
  }
}/*# sourceMappingURL=style.css.map */