@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: #cfcfcf;
  }
}

::-moz-selection {
  color: #fff;
  background: #e8ac3f;
}

::selection {
  color: #fff;
  background: #e8ac3f;
}

*:focus {
  outline: 1px #e8ac3f;
}

*:focus-visible {
  outline: 1px #e8ac3f !important;
}

html {
  font-size: 16px;
  line-height: calc(1em + 0.625rem);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Roboto", sans-serif;
  background: #fff;
  color: #131313;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: "Bebas Neue", sans-serif;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  font-weight: 700;
}

h2 {
  font-size: 5rem;
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 3rem;
  }
}

strong {
  font-weight: 700;
}

a {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  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;
  }
}

.primary {
  color: #e8ac3f;
}

.secondary {
  color: #d4d4d4;
}

.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: 2px solid transparent;
}

.btn:focus {
  outline: 1px #e8ac3f;
}

.primary-btn, .contact .map a.way-btn {
  background: -webkit-gradient(linear, left top, right top, from(#e8ac3f), to(#ed8f03));
  background: linear-gradient(to right, #e8ac3f, #ed8f03);
  color: #131313;
  -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;
}

.primary-btn:hover, .contact .map a.way-btn:hover, .primary-btn:focus, .contact .map a.way-btn:focus {
  color: #131313;
  -webkit-transform: translateY(-0.2rem);
          transform: translateY(-0.2rem);
}

.secondary-btn {
  color: #f1f3f6;
  font-weight: bold;
  font-size: 1.1rem;
}

.secondary-btn:hover, .secondary-btn:focus {
  color: #808080;
}

@media (max-width: 575.98px) {
  .secondary-btn {
    display: none;
  }
}

.secondary-btn span {
  color: #e8ac3f;
  padding-left: 0.4rem;
}

@supports ((-webkit-backdrop-filter: blur) or (backdrop-filter: blur)) {
  .bg-blur {
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    backdrop-filter: blur(40px) saturate(180%);
  }
}

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

.brand-name{
  color: #e8ac3f;
  text-align: center;
  font-size: 6.5rem;
}

.online-status {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f0f0f0;
  -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 black;
  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;
}

.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: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr 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;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr;
        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;
  }
}

.navbar {
  position: fixed;
  width: 100%;
  padding: 0.5rem 0;
  z-index: 10;
}

@media (min-width: 992px) {
  .navbar {
    height: 80px;
  }
}

.navbar::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000000;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

@media (min-width: 992px) {
  .navbar::before {
    background: #000000;
    opacity: 0;
  }
}

.navbar .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .navbar-nav .nav-link {
  padding: 0;
  margin-bottom: 1.1rem;
  min-width: 50%;
  text-align: center;
}

@media (min-width: 992px) {
  .navbar .navbar-nav .nav-link {
    margin: 0 0.2rem;
    min-width: unset;
  }
}

.navbar .navbar-nav .nav-link.order {
  min-width: unset;
}

.navbar .navbar-nav .nav-link a {
  position: relative;
  display: block;
  margin: 0.2rem 1rem;
  color: #fff;
  font-size: 1.7rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.07rem;
}

@media (min-width: 992px) {
  .navbar .navbar-nav .nav-link a {
    color: #fff;
    font-size: 1.6rem;
  }
  .navbar .navbar-nav .nav-link a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background: #e8ac3f;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .navbar .navbar-nav .nav-link a:hover::after, .navbar .navbar-nav .nav-link a:focus::after {
    width: 105%;
  }
}

.navbar .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) {
  .navbar .navbar-nav .nav-link.social {
    margin: 0;
    margin-left: 1rem;
  }
}

.navbar .navbar-nav .nav-link.social a {
  display: inline;
  font-size: 2.1rem;
  font-weight: 400;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

@media (min-width: 992px) {
  .navbar .navbar-nav .nav-link.social a {
    margin: 0;
    font-size: 2rem;
  }
  .navbar .navbar-nav .nav-link.social a:nth-of-type(2) {
    margin-left: 10px;
  }
}

.navbar .navbar-nav .nav-link.social a::after {
  display: none;
}

.navbar .navbar-nav .nav-link.social a:hover, .navbar .navbar-nav .nav-link.social a:focus {
  opacity: 0.8;
}

.navbar .brand-logo {
  position: relative;
  width: 50px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 992px) {
  .navbar .brand-logo {
    width: 70px;
    opacity: 1;
    pointer-events: all;
    width: 70px;
  }
}

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

.navbar .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) {
  .navbar.sticky::before {
    opacity: 1;
  }
}

.navbar.sticky .navbar-nav .nav-link a {
  color: #fff;
}

.navbar.sticky .navbar-nav .nav-link.order a {
  background: -webkit-gradient(linear, left top, right top, from(#e8ac3f), to(#ed8f03));
  background: linear-gradient(to right, #e8ac3f, #ed8f03);
  margin: 0;
  padding: 0.2rem 1rem;
  color: #131313;
  border: 2px solid transparent;
}

.navbar.sticky .navbar-nav .nav-link.order a::after {
  display: none;
}

.navbar.sticky .navbar-nav .nav-link.order a:hover, .navbar.sticky .navbar-nav .nav-link.order a:focus {
  background-color: #e39c1b;
}

.navbar.sticky .navbar-nav .nav-link.social a:hover, .navbar.sticky .navbar-nav .nav-link.social a:focus {
  opacity: 0.65;
}

.navbar.sticky .brand-logo {
  pointer-events: all;
  opacity: 1;
}

@media (min-width: 992px) {
  .navbar.sticky .brand-logo {
    top: 5px;
    width: 70px;
  }
}

.navbar .navbar-toggler {
  border: none;
  padding-right: 1.5rem;
  z-index: 1;
}

.navbar .navbar-toggler:hover, .navbar .navbar-toggler:focus, .navbar .navbar-toggler:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header {
  background: url("../images/bg02.jpg") center/cover;
  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;
  text-align: center;
  z-index: 0;
}

.header::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

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

.header .heading {
  font-size: 5.3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2rem;
  font-family: var(--headingFont);
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .header .heading {
    font-size: 3.8rem;
    line-height: 1.2;
  }
}

@media (max-width: 575.98px) {
  .header .heading {
    font-size: 2.7rem;
  }
}

.header .header-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  justify-items: center;
  text-align: left;
  z-index: 5;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

@media (max-width: 575.98px) {
  .header .header-footer {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 1rem;
    grid-gap: 0.5rem;
  }
}

.header .header-footer .block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      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;
}

.header .header-footer .block .icon {
  margin-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
}

.header .header-footer .block .icon.hours {
  width: 2.5rem;
}

.header .header-footer .block .icon.delivery {
  width: 3rem;
}

.header .header-footer .block .icon.telephone {
  width: 2.5rem;
}

@media (max-width: 991.98px) {
  .header .header-footer .block .icon {
    width: 2rem;
  }
}

@media (max-width: 767.98px) {
  .header .header-footer .block .icon {
    display: none;
  }
}

.header .header-footer .block .icon img {
  margin: auto;
  opacity: 0.6;
  fill: #fff;
  -webkit-filter: invert(100);
          filter: invert(100);
}

.header .header-footer .block .content {
  font-weight: 300;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .header .header-footer .block .content {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .header .header-footer .block .content {
    opacity: 0.8;
    text-align: center;
  }
}

.header .header-footer .block .content a {
  font-weight: bold;
  color: #fff;
}

@media (max-width: 575.98px) {
  .header .header-footer .block .online-status {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header .header-footer .block .online-status .online-status-content i {
  display: none;
}

.header .slide {
  background-size: cover;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}

.header .slide.show {
  opacity: 1;
}

.header .main-logo {
  margin: 0 auto 5rem;
  width: 16rem;
  -webkit-filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.5));
}

.header p {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05rem;
  margin-bottom: 3rem;
}

@media (min-width: 576px) {
  .header p {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .header p {
    font-size: 3rem;
  }
}

.about {
  background: #131313;
  color: #f1f3f6;
}

.about h2 {
  font-size: 2.8rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .about h2 {
    font-size: 3rem;
  }
}

.about p {
  font-size: 1.05rem;
  font-weight: 300;
}

@media (min-width: 576px) {
  .about p {
    font-size: 1.1rem;
  }
}

.about a {
  color: #f1f3f6;
  display: inline-block;
  line-height: 1.1;
  border-bottom: 2px dashed #e8ac3f;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.about a:hover {
  color: #e8ac3f;
}

.about img {
  border: 10px #e39c1b outset;
}

.foodlist {
  background: #1a1a1a;
  padding: 0;
}

@media (min-width: 576px) {
  .foodlist {
    overflow: hidden;
  }
}

.foodlist #foodlist__heading {
  padding: 2rem 0;
}

@media (min-width: 576px) {
  .foodlist #foodlist__heading {
    padding: 3rem 0 2.5rem;
  }
}

.foodlist #foodlist__heading h2 {
  margin: 0;
  color: #f1f3f6;
  font-size: 3.3rem;
  text-align: center;
  letter-spacing: 0.1rem;
}

@media (min-width: 576px) {
  .foodlist #foodlist__heading h2 {
    font-size: 5rem;
  }
}

.foodlist #foodlist__heading .foodlist__order {
  padding: 0 0.6rem;
  margin: 0;
  color: #f1f3f6;
  font-size: 1.1rem;
  text-align: center;
}

@media (min-width: 576px) {
  .foodlist #foodlist__heading .foodlist__order {
    font-size: 1.2rem;
  }
}

.foodlist #foodlist__heading .foodlist__order a {
  color: #e8ac3f;
  font-weight: 700;
}

.foodlist #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.foodlist #foodlist__heading .foodlist__order a:hover i {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}

.foodlist .navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 3.4rem;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}

@media (min-width: 576px) {
  .foodlist .navigation {
    position: relative;
    top: 0;
    width: 92%;
  }
}

.foodlist .navigation .progress-container {
  width: 100%;
  background: #fff;
}

@media (min-width: 576px) {
  .foodlist .navigation .progress-container {
    background: transparent;
  }
}

.foodlist .navigation .progress-container .progress-bar {
  height: 3px;
  background: #e39c1b;
  width: 0%;
  min-width: 15px;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}

.foodlist .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(0, 0, 0, 0.96);
  height: auto;
  margin: 0;
  overflow: auto;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  -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 .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 .navigation #foodlist__categories::-webkit-scrollbar {
  display: none;
}

@media (min-width: 576px) {
  .foodlist .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 #181818;
            box-shadow: inset 15px 0 10px -10px #181818;
  }
}

@media (min-width: 576px) {
  .foodlist .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 #181818;
            box-shadow: inset -15px 0 10px -10px #181818;
  }
}

.foodlist .navigation #foodlist__categories .foodlist__categories__item {
  display: block;
  padding: 1rem;
  cursor: pointer;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  border-bottom: 3px solid transparent;
  scroll-snap-align: center;
  color: #f1f3f6;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .foodlist .navigation #foodlist__categories .foodlist__categories__item {
    padding: 1.5rem 2rem;
    font-size: 1rem;
  }
}

.foodlist .navigation #foodlist__categories .foodlist__categories__item:hover, .foodlist .navigation #foodlist__categories .foodlist__categories__item:focus {
  background: #1b1b1b;
}

.foodlist .navigation #foodlist__categories .foodlist__categories__item.selected {
  border-bottom: 3px solid #e8ac3f;
}

.foodlist .arrows {
  position: relative;
  width: 100%;
}

@media (min-width: 576px) {
  .foodlist .arrows {
    position: static;
  }
}

.foodlist .arrows button {
  position: absolute;
  bottom: -5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid #2a2a2a;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
  color: #fff;
}

@media (min-width: 576px) {
  .foodlist .arrows button {
    bottom: unset;
    top: 50%;
  }
}

.foodlist .arrows button:hover {
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  background: #1b1b1b;
}

.foodlist .arrows button.slide-right {
  right: 35%;
}

@media (min-width: 576px) {
  .foodlist .arrows button.slide-right {
    right: -4rem;
  }
}

@media (min-width: 1400px) {
  .foodlist .arrows button.slide-right {
    right: -6rem;
  }
}

.foodlist .arrows button.slide-left {
  left: 35%;
}

@media (min-width: 576px) {
  .foodlist .arrows button.slide-left {
    left: -4rem;
  }
}

@media (min-width: 1400px) {
  .foodlist .arrows button.slide-left {
    left: -6rem;
  }
}

.foodlist #foodlist__content {
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  padding: 6rem 1.12rem 4rem;
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 576px) {
  .foodlist #foodlist__content {
    padding: 2rem 2rem 4rem;
    grid-gap: 1.3rem;
  }
}

@media (min-width: 768px) {
  .foodlist #foodlist__content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .foodlist #foodlist__content {
    padding: 3rem 2rem 5rem;
    grid-gap: 2rem 3rem;
  }
}

@media (min-width: 1400px) {
  .foodlist #foodlist__content {
    grid-gap: 2rem 4rem;
  }
}

.foodlist #foodlist__content h3 {
  position: relative;
  grid-column: span 1;
  -ms-grid-column-align: center;
      justify-self: center;
  margin-bottom: 0.7rem;
  color: #f1f3f6;
  font-size: 1.9rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 576px) {
  .foodlist #foodlist__content h3 {
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .foodlist #foodlist__content h3 {
    grid-column: span 2;
    margin-bottom: 2rem;
    font-size: 2.1rem;
  }
}

.foodlist #foodlist__content h3::before, .foodlist #foodlist__content h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: #e8ac3f;
}

@media (min-width: 576px) {
  .foodlist #foodlist__content h3::before, .foodlist #foodlist__content h3::after {
    width: 3.5rem;
  }
}

.foodlist #foodlist__content h3::before {
  left: -3rem;
}

@media (min-width: 576px) {
  .foodlist #foodlist__content h3::before {
    left: -5rem;
  }
}

.foodlist #foodlist__content h3::after {
  right: -3rem;
}

@media (min-width: 576px) {
  .foodlist #foodlist__content h3::after {
    right: -5rem;
  }
}

.foodlist #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;
  font-size: 1.1rem;
}

.foodlist #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 #foodlist__content .item-list__content {
    padding-right: 1rem;
  }
}

.foodlist #foodlist__content .item-list__content__name {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 0.1rem;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.05rem;
  color: #f1f3f6;
  font-family: "Bebas Neue", sans-serif;
}

.foodlist #foodlist__content .item-list__content__ingredients {
  margin-bottom: 1rem;
  color: #808080;
  font-weight: 300;
  font-size: 1.1rem;
}

@media (min-width: 576px) {
  .foodlist #foodlist__content .item-list__content__ingredients {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
}

.foodlist #foodlist__content .item-list__content__price {
  margin-top: auto;
  color: #131313;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  background: -webkit-gradient(linear, left top, right top, from(#e8ac3f), to(#ed8f03));
  background: linear-gradient(to right, #e8ac3f, #ed8f03);
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  white-space: nowrap;
  padding: 0 0.7rem;
}

.foodlist #foodlist__content .item-list__image {
  margin-bottom: 8px;
}

.foodlist #foodlist__content .item-list__image a {
  height: 100px;
  width: 100px;
  display: block;
}

.foodlist #foodlist__content .item-list__image a img {
  max-width: 100%;
  border-radius: 0.3rem;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.foodlist #loading {
  position: relative;
  text-align: center;
  padding: 40px 0 20px;
  grid-column: span 2;
  font-size: 1.1rem;
}

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

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

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

.contact {
  background: url("../images/bg09.jpg") no-repeat center center fixed;
  background-size: cover;
  overflow: hidden;
}

.contact 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 img.pizza {
    width: 600px;
  }
}

.contact .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 .card h2 {
  margin-bottom: 1.5rem;
  color: #131313;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

@media (min-width: 768px) {
  .contact .card h2 {
    font-size: 2.1rem;
  }
}

.contact .card.info {
  position: relative;
  padding: 25px;
  color: #131313;
}

.contact .card.info p,
.contact .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: #131313;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .contact .card.info p,
  .contact .card.info a {
    font-size: 1.2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.contact .card.info p i,
.contact .card.info a i {
  margin-right: 10px;
}

.contact .card.info p i::before,
.contact .card.info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.4rem;
  color: #e8ac3f;
  text-align: center;
}

.contact .card.info p i.fa-facebook-square::before,
.contact .card.info a i.fa-facebook-square::before {
  font-size: 1.65rem;
}

.contact .card.info a.phone {
  font-weight: 700;
}

.contact .card.info a:hover {
  color: #e8ac3f;
}

.contact .card.info a span {
  line-height: 1.3;
}

.contact .card.business-hours li {
  padding: 0 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #131313;
  font-size: 1.1rem;
  line-height: 2rem;
}

.contact .card.business-hours li span {
  float: right;
}

.contact .card.business-hours li:last-child {
  border-bottom: none;
}

.contact .card.business-hours li.today {
  background: rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

.contact .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 .card.business-hours p.info {
    font-size: 1rem;
  }
}

.contact .card.business-hours p.info i {
  margin: 0.1rem 0.5rem 0 0;
  opacity: 0.8;
  font-size: 1rem;
}

@media (min-width: 576px) {
  .contact .card.business-hours p.info i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
  }
}

.contact .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 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact .map a.way-btn:hover {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.footer {
  background: #000000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer .info {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .info p strong {
  font-size: 1.1rem;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  color: #e8ac3f;
  font-weight: 600;
}

.footer a:hover {
  color: #e39c1b;
}

.arrow-to-top.arrow-01 {
  cursor: pointer;
  pointer-events: none;
  position: fixed;
  text-align: center;
  z-index: 100;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  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: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#e8ac3f), to(#ed8f03));
  background: linear-gradient(to right, #e8ac3f, #ed8f03);
  -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: 0.3s all;
  transition: 0.3s all;
  font-size: 1.2rem;
  display: inline-block;
}

.arrow-to-top.arrow-01 a i {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.arrow-to-top.arrow-01 a:hover {
  -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 {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .arrow-to-top.arrow-01 a:hover i {
    -webkit-transform: none;
            transform: none;
  }
}

.mousey {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 48px;
  border: 2px solid white;
  border-radius: 20px;
  opacity: 0;
  -webkit-animation: mousey 4s ease 3s infinite;
          animation: mousey 4s ease 3s infinite;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

@media (min-width: 768px) {
  .mousey {
    display: block;
  }
}

.mousey .scroller {
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background-color: white;
  -webkit-animation: mousey-scroller 4s ease 3s infinite;
          animation: mousey-scroller 4s ease 3s infinite;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

@-webkit-keyframes mousey {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}

@keyframes mousey {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}

@-webkit-keyframes mousey-scroller {
  0% {
    top: 8px;
  }
  30% {
    top: 8px;
  }
  80% {
    top: 14px;
  }
  90% {
    top: 14px;
  }
}

@keyframes mousey-scroller {
  0% {
    top: 8px;
  }
  30% {
    top: 8px;
  }
  80% {
    top: 14px;
  }
  90% {
    top: 14px;
  }
}

.popup-overlay {
  height: 100%;
  width: 100%;
  margin: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.popup__body {
  height: auto;
  max-height: 80vh;
  width: 100%;
  max-width: 550px;
  margin: 100px auto;
  padding: 45px 10px;
  background: #fff;
  color: #000;
  position: relative;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px #000;
          box-shadow: 0 2px 5px #000;
  z-index: 103;
}

@media (min-width: 768px) {
  .popup__body {
    padding: 35px 35px;
  }
}

.popup__body img {
  display: block;
  max-height: 60vh;
  max-width: 100%;
  margin: auto auto;
  border-radius: 10px;
}

.popup__body p {
  color: #131313;
  font-size: 1.1rem;
  margin: 15px auto 0;
  max-width: 500px;
  font-weight: 600;
  text-align: center;
}

.popup__body a {
  text-decoration: none;
}

.popup__body .close-btn {
  color: #000;
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 30px;
  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;
  }
}

#preloader {
  background: radial-gradient(circle, #414141 0%, #000 100%);
  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;
  }
}

#error-page {
  position: relative;
  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;
  height: 100vh;
  text-align: center;
  background: url("../images/bg02.jpg") center/cover;
  color: #fff;
}

#error-page::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

#error-page h1 {
  letter-spacing: 0.1rem;
  line-height: 1;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0.05rem 0.05rem 0.5rem rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  #error-page h1 {
    font-size: 5rem;
  }
}

@media (min-width: 1200px) {
  #error-page h1 {
    font-size: 6rem;
  }
}

#error-page h2 {
  margin-bottom: 2rem;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

#error-page p {
  font-size: 2rem;
  font-weight: 700;
}

#error-page .primary-btn i, #error-page .contact .map a.way-btn i, .contact .map #error-page a.way-btn i {
  position: relative;
  left: -5px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#error-page .primary-btn:hover, #error-page .contact .map a.way-btn:hover, .contact .map #error-page a.way-btn:hover {
  background-color: #e39c1b;
}

#error-page .primary-btn:hover i, #error-page .contact .map a.way-btn:hover i, .contact .map #error-page a.way-btn:hover i {
  left: -10px;
}
/*# sourceMappingURL=style.css.map */