:root {
  --primary-HIGHLIGHT: hsl(16, 100%, 50%);
  --primary-h: 16;
  --primary-s: 100%;
  --primary-l: 50%;
  --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: "League Spartan", 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);
  text-transform: uppercase;
  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-02 .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-02 .map a.way-btn:hover, .primary-btn:focus, .contact-02 .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-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: 80px;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (min-width: 992px) {
  .header-03 .brand-logo {
    top: 0;
    width: 150px;
    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-02 .map a.way-btn, .contact-02 .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: 150px;
  }
}
.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.6);
  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;
  }
}

.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;
  }
}

.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;
  }
}

.foodList-01 {
  padding: 0;
  background: fixed url("../components/foodLists/01/images/background.jpg") 50% 50%/cover;
  color: var(--light);
}
.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: #212121;
  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: #212121;
  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(0, 0, 0, 0.5);
  -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.5);
    -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: #454545;
  -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;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content .item-list__content__ingredients {
    font-size: 1.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;
  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;
  }
}
.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);
}

.contact-02 {
  background: url("../components/contacts/02/images/background.jpg") 50% 50%/cover scroll;
  background-position: top;
  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%);
}

.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;
}

.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 */