@font-face {
  font-family: mainFont;
  src: url("../fonts/DTPhudu-Medium.otf");
}

@font-face {
  font-family: regularFont;
  src: url("../fonts/DTPhudu-Regular.otf");
}

@font-face {
  font-family: lightFont;
  src: url("../fonts/DTPhudu-Light.otf");
}

@font-face {
  font-family: boldFont;
  src: url("../fonts/DTPhudu-Bold.otf");
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "mainFont", sans-serif;
  background: #0c0b09;
  color: #fff;
}

a {
  color: #cda45e;
  text-decoration: none;
}

a:hover {
  color: #e8a049;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "mainFont", serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ffffff url("../img/preloader.gif") no-repeat center;
}

/*#preloader:before {*/
/*  content: "";*/
/*  position: fixed;*/
/*  top: calc(50% - 30px);*/
/*  left: calc(50% - 30px);*/
/*  border: 6px solid #1a1814;*/
/*  border-top-color: #cda45e;*/
/*  border-bottom-color: #cda45e;*/
/*  border-radius: 50%;*/
/*  width: 60px;*/
/*  height: 60px;*/
/*  -webkit-animation: animate-preloader 1s linear infinite;*/
/*  animation: animate-preloader 1s linear infinite;*/
/*}*/

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid #cda45e;
}

.back-to-top i {
  font-size: 28px;
  color: #cda45e;
  line-height: 0;
}

.back-to-top:hover {
  background: #cda45e;
  color: #1a1814;
}

.back-to-top:hover i {
  color: #444444;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  background: #0000008a;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #e8a049;
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cda45e;
}

#topbar .languages ul a {
  color: white;
}

#topbar .languages ul li+li {
  padding-left: 10px;
}

#topbar .languages ul li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(12, 11, 9, 0.6);
  border-bottom: 1px solid rgba(12, 11, 9, 0.6);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #37332a;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 75px;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  border: 2px solid #cda45e;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.book-a-table-btn:hover {
  background: #cda45e;
  color: #fff;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
  font-family: regularFont;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
}
.nav-link.btn {
  border: solid 2px white;
  border-radius: 0;
  text-align: center;
  margin-left: 30px;
  padding: 14px 40px;
  font-family: boldFont;
}
.nav-link.btn:hover{
  background-color: #e8a049;
  color: white!important;
  border-color: #e8a049;
}


.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e8a049;
}

.navbar li>a.disabled {
  pointer-events: none;
  color: #8d8d8d;
  display: none!important;
}

.dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
  list-style-type: none;
}

.dropdown ul li {
  min-width: 200px;
  list-style-type: none;
}

.dropdown ul a {
  padding: 10px 20px;
  color: #444444;
  display: block;
}

.dropdown ul a i {
  font-size: 12px;
}

.dropdown ul a:hover,
.dropdown ul .active:hover,
.dropdown ul li:hover>a {
  color: #cda45e;
}

.dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .dropdown .dropdown ul {
    left: -90%;
  }

  .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  border-radius: 0;
  background-color: #ffffffba;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #cda45e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #cda45e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.bold {
  font-family: boldFont, serif!important;
}
.orange {
    color: #FF592C!important;
}
.lightF {
  font-family: lightFont, serif!important;
}

.regularF {
  font-family: regularFont, serif!important;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: white;
  position: relative;
  padding: 0;
}
#hero .container:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0.55;
  background: rgb(121 121 121);
}
#hero.half {
  height: 50vh;
  background-image: url("../img/sliders/slide_1-min.jpg");
}
#hero.career {
  height: 50vh;
  background-image: url(../img/career.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

#hero .main-title,
#hero .sub-title{
  z-index: 1;
}
#hero .row > .main-title {
  font-size: xxx-large;
}
.break {
  width: 100%;
  height: 45px;
  background-color: white;
}
.break.hero {
  background-image: url("../img/svg/hero-pattern.svg");
}
.break.about-br {
  background-image: url("../img/svg/about-pattern.svg");
}
.break.menu-br {
  background-image: url("../img/svg/hero-pattern.svg");
}

.break.main-br {
  background-image: url("../img/svg/menu-pattern.svg");
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 110px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #cda45e;
}

#hero h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
}

#hero .btns {
  margin-top: 30px;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid #cda45e;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: #cda45e;
  color: #fff;
}

#hero .btn-book {
  margin-left: 15px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #cda45e;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: auto;
  }

  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #1a1814;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #cda45e;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  margin-top: 110px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  position: relative;
  padding: 180px 0;
  background: white;
  color: black;
  text-align: center;
}
.about .row {
  max-width: 75%;
  justify-content: center;
  align-items: center;
  align-self: center;
  margin: -20px auto auto;
}
.about .break-line {
  height: 1px;
  background-color: #1e7c7c;
  margin: 20px;
  max-width: 75%;
}
.about .row .left-door,
.about .row .right-door{
  position: absolute;
  display: block;
  top: auto;
  background-color: white;
  z-index: 99;
  height: 80%;
  width: 50vw;
  background-repeat: no-repeat;
}
.about .row .left-door {
  background-image: url("../img/svg/Door left.svg");
  background-position: right;
}
.about .row .right-door {
  background-image: url("../img/svg/Door Right.svg");
  background-position: left;
}

.about .title {
  font-family: boldFont, serif;
  color: #1e7c7c;
  font-size: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.about .title .small,
.about .title img{
  font-size: 3rem;
  margin-top: -5%;
}
.about .title.v2 {
  color: #eb4a18;
  font-size: 1.8em;
}
.about .sub-title {
  font-family: lightFont, serif;
}
.about .description {
  font-family: "PT", serif;
  text-align: justify;
  text-align-last: center;
}
.about .description.v2 {
  font-size: 24px;
}

.about .about-img {
  position: relative;
  transition: 0.5s;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid #cda45e;
  border-top: 5px solid #cda45e;
  transition: 0.5s;
}

.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid #cda45e;
  border-bottom: 5px solid #cda45e;
  transition: 0.5s;
}

.about .about-img:hover {
  transform: scale(1.03);
}

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
}
.why-us .menu-item {
  margin: 0;
  padding: 0;
}

.why-us .menu-item.penrith .menu-box {
  background-image: url("../img/menu-1.jpeg");
  background-size: cover;
}
.why-us .menu-item.strathfield .menu-box {
  background-image: url("../img/menu-2.jpeg");
  background-size: cover;
}

.why-us .menu-item.campbelltown .menu-box {
  background-image: url("https://the-savoury-dining.squarespace.com/s/2022-11-09.jpeg");
  background-size: cover;
}

.why-us .menu-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 610px;
}

.why-us .menu-box * {
  z-index: 1;
}

.why-us .menu-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(31,125,125);
  background: linear-gradient(90deg, rgba(31,125,125,1) 35%, rgba(255,255,255,0.041075805322128844) 100%);
  opacity: 0.55;
}

.strathfield .menu-box:before {
  background: rgb(66,34,35);
  background: linear-gradient(90deg, rgba(66,34,35,1) 35%, rgba(255,255,255,0.041075805322128844) 100%);
}

.why-us .menu-box:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.penrith .menu-box:after {
  background: radial-gradient(farthest-side,#1e7c7c 103%,#967a1f00 112%) 0 0/ 6px 6px;
  -webkit-mask: linear-gradient(to right,#8b8b8b7a,transparent);
  mask: linear-gradient(to right,#fff,transparent);
}

.strathfield .menu-box:after {
  background: radial-gradient(farthest-side,#422223 103%,#967a1f00 112%) 0 0/ 6px 6px;
  -webkit-mask: linear-gradient(to right,#8b8b8b7a,transparent);
  mask: linear-gradient(to right,#fff,transparent);
}

.campbelltown .menu-box:after {
  background: radial-gradient(farthest-side, rgba(123, 255, 108, 0.25) 103%,#422223 112%) 0 0/ 6px 6px;
  -webkit-mask: linear-gradient(to right,#8b8b8b7a,transparent);
  mask: linear-gradient(to right,#fff,transparent);
}

.why-us .menu-box .row {
  width: 60%;
  min-width: 270px;
  max-width: 300px;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.why-us .menu-box .book-at {
  font-family: "PT", serif;
  font-size: 22px;
  margin-bottom: -10px;
}

.why-us .menu-box h4 {
  font-size: 3rem;
  font-family: "boldFont", serif;
  margin-bottom: 30px;
}

.why-us .menu-box .address{
  font-family: "lightFont", serif;
  font-size: 1.5rem;
}

.about .container .row > a {
  color: #e74d1a;
  padding: 10px 20px;
  background-color: white;
  border: solid #e74d1a;
  font-family: "boldFont", serif;
}

.about .container .row > a:hover {
  background-color: #e74d1a;
  color: white;
  cursor: pointer;
}
.see-more-btn {
    margin-top: 10px;
    font-family: "mainFont", sans-serif;
    color: white!important;
    font-weight: normal;
    font-size: large;
}

.see-more-btn,
.why-us .menu-box .row > a,
.why-us .menu-box .row > li{
  padding: 10px 20px;
  background-color: #e74c1a80;
  color: white;
  border: solid 1px #e74c1a;
  max-width: 130px;
  transition: 0.3s;
  white-space: nowrap;
  list-style-type: none;
}

a.menu-dropdown {
  color: white;
  cursor: pointer;
  background: transparent!important;
}

.why-us .menu-box .row ul {
  list-style-type: none;
  text-align: left;
}

.see-more-btn:hover,
.why-us .menu-box .row > a:hover,
.why-us .menu-box .row > li:hover{
  background-color: #e74c1a;
  cursor: pointer;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #cda45e;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #cda45e;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# TA Section
--------------------------------------------------------------*/
.instagram {
  min-height: 27.5vw;
  padding: 0;
  background: white;
}
.take-away {
  min-height: 460px;
  background-color: white;
  padding-bottom: 10px;
}
.take-away.about-p {
  min-height: 200px;
}
.take-away .container {
  padding-bottom: 100px;
}
.take-away.about-p .container {
  padding-bottom: 30px;
}
.ta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 25px;
}
.ta-box img {
  width: 95%;
}
.ta-box .title {
  font-family: "boldFont", serif;
  color: #1f7d7d;
  font-size: 1.4em;
  margin-top: 25px;
  margin-bottom: 0;
}
.ta-box .detail {
  font-family: "PT", serif;
  color: black;
  max-width: 80%;
  min-height: 100px;
}
.ta-box .dropdown {
  padding: 10px 20px;
  background-color: white;
  border: solid #e74d1a;
  color: #e74d1a;
  font-family: "boldFont", serif;
  list-style-type: none;
}

.ta-box .dropdown > a{
  color: #e74d1a;
}

.ta-box .dropdown:hover {
  background-color: #e74d1a;
  color: white;
  cursor: pointer;
}

.ta-box .dropdown:hover > a {
  color: white
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  border-right: 2px solid #cda45e;
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: #cda45e;
}

.specials .nav-link.active {
  color: #1a1814;
  background: #cda45e;
  border-color: #cda45e;
}

.specials .nav-link:hover {
  border-color: #cda45e;
}

.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.specials .details p {
  color: #aaaaaa;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: #fff;
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #cda45e;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #cda45e;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br+br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cda45e;
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: #cda45e;
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type=submit] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #d3af71;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: white;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #d3af71;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs,
.story {
  background-color: #f4f4f4;
  padding: 15px;
}
.chefs .chef {
  padding: 30px 15px 30px 30px;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
}
.chefs .chef:last-child {
  padding: 30px 30px 30px 15px;
}
.chefs .chef img,
.story img{
  width: 100%;
}
.chefs .chef .title,
.story .title,
.take-away .main-title,
.instagram .title{
  font-family: 'boldFont', serif;
  font-size: xxx-large;
  color: #20787c;
  text-align: center;
}
.all-you-can-eat .main-title {
    max-width: 370px;
    margin: auto;
    padding-bottom: 10px;
    border-bottom: solid 3px #FF592C;
}
.all-you-can-eat .sub-title-ctn .main-desc {
    max-width: 100px;
    margin: auto;
    background: white;
    margin-top: -20px;
    font-size: x-large;
}

.all-you-can-eat .sub-title-ctn .detail {
    max-width: 50vw;
    color: black;
    margin: auto;
    text-align: center;
    font-family: 'Source Serif Pro';
    padding-bottom: 30px;
    min-width: 300px;
}
.all-you-can-eat .all-you-can-eat-frame {
    background-image: url(https://mekong-proxy-worker.an-d41.workers.dev/wp-content/jscdn/assets/img/all-you-can-eat-frame.png);
    min-height: 33vw;
    background-size: contain;
    background-position: center;
    margin: auto;
    background-repeat: no-repeat;
}
ul.house-rule {
    margin-left: -35px;
}
ul.house-rule li {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 54px;
    color: #000000;
    border-bottom: dashed 1px #3D3D3D;
    list-style-image: url('https://mekong-proxy-worker.an-d41.workers.dev/wp-content/jscdn/assets/img/bullet.png');
}

.chefs .chef .description,
.story .description,
.take-away .main-desc{
  color: black;
  font-family: "PT", serif;
  font-size: 18px;
  text-align: justify;
  text-align-last: center;
}
.ayce {
    padding: 0!important;
}
.ayce .chefs-ctn .left {
    justify-content: center;
}
.ayce .chefs-ctn .left .title{
    max-width: 360px;
    text-align: left;
    min-width: 300px;
    width: 50%;
}

.ayce .chefs-ctn .right {
    padding: 0!important;
    
} 
.ayce .chefs-ctn .right img {
    max-height: 50vw;
    object-fit: cover;
    min-height: 330px;
}

.ayce .chefs-ctn .left .cta-btn {
    padding: 10px 20px;
    background-color: #e74c1a;
    color: white;
    border: solid 1px #e74c1a;
    max-width: 130px;
    transition: 0.3s;
    white-space: nowrap;
    list-style-type: none;
    text-align: center;
}

.ayce .chefs-ctn .left .cta-btn:hover {
    background-color: #e74c1a94!important;
}

.take-away .main-desc {
  margin-top: -15px;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: #cda45e;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #bab3a6;
}

.contact .info .open-hours,
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cda45e;
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #a49b89;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #cda45e;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #d3af71;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  color: #fff;
  min-height: 550px;
  font-size: 14px;
  background-image: url("../img/footer.jpeg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#footer:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(31,125,125);
  background: linear-gradient(180deg, rgb(11 20 20) 75%, rgb(0 0 0 / 4%) 100%);
  opacity: 0.8;
}

#footer * {
  z-index: 1;
}

.footer-item h4 {
  font-size: x-large;
}

.footer-item .row {
  font-family: "PR", serif;
  font-size: 14px;
}

.footer-item .row.phone {
  margin-top: 50px;
}
.footer-item .see-more {
  margin-top: 15px;
}
.footer-item .see-more a {
  color: #e8a049!important;
  text-decoration: underline;
}

.footer-item .see-more a:hover {
  color: #e74d1a!important;
}

.footer-item .row.social-links a i{
  font-size: 30px;
  margin-right: 15px;
  color: white;
}

.footer-item .row.social-links a:hover i{
  color: #ff592b;
}

#footer .footer-top {
  background: transparent;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
  color: #fff;
}

/*#footer .footer-top .social-links a {*/
/*  font-size: 18px;*/
/*  display: inline-block;*/
/*  background: #28251f;*/
/*  color: #fff;*/
/*  line-height: 1;*/
/*  padding: 8px 0;*/
/*  margin-right: 4px;*/
/*  border-radius: 50%;*/
/*  text-align: center;*/
/*  width: 36px;*/
/*  height: 36px;*/
/*  transition: 0.3s;*/
/*}*/

/*#footer .footer-top .social-links a:hover {*/
/*  background: #cda45e;*/
/*  color: #fff;*/
/*  text-decoration: none;*/
/*}*/

#footer .footer-top h4 {
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #cda45e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #cda45e;
}

#footer .footer-top .footer-newsletter form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 135px;
  width: 90%;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form input{
  background: transparent;
  border: none;
  border-bottom: solid 2px white;
  outline: none;
  color: white;
  border-radius: 0;
  font-family: "PT", serif;
}

#footer .footer-top .footer-newsletter form .subscribe-btn {
  padding: 10px 20px;
  background-color: #e74c1a80;
  color: white;
  border: solid 1px #e74c1a;
  max-width: 130px;
  transition: 0.3s;
  white-space: nowrap;
  text-align: center;
}
#footer .footer-top .footer-newsletter form .subscribe-btn.disabled {
  cursor: not-allowed;
  background-color: rgba(76, 75, 75, 0.5);
  border: solid 1px rgba(76, 75, 75, 0.5);
  pointer-events: none!important;
}

#footer .footer-top .footer-newsletter form .subscribe-btn:hover {
  background-color: #e74c1a;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #d3af71;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.show-on-mb {
  display: none;
}
.logo-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -25px;
  white-space: nowrap;
}
.logo-text img {
  height: 4rem;
}


@media screen and (max-width: 768px) {
  #about {
    padding: 100px 0 35px 0;
  }
  .about .title{
    font-size: 8vw;
  }
  .about .title.v2 {
    font-size: 6vw;
  }
  .about .title .small,
  .about .title img{
    font-size: 1.5rem;
    margin-top: 10px;
  }
  .logo-text {
    margin-top: -15px;
  }
  .logo-text img {
    height: 8vw;
  }
  .about .sub-title {
    width: 80%;
  }
  .about .row .left-door, .about .row .right-door {
    top: 90px;
    height: 200px;
  }
  .about .row .left-door.v2, .about .row .right-door.v2 {
    top: 80px;
  }
  .about .description.v2 {
    font-size: var(--bs-body-font-size);
  }
  .about .break-line {
    max-width: 100%;
  }
  .why-us .menu-box .row a {
    max-width: 115px;
  }
  .hide-on-mb {
    display: none!important;
  }
  .show-on-mb {
    display: block!important;
  }

  #footer .footer-top .row .footer-item {
    padding: 20px 50px
  }
  #footer .footer-top .row .footer-item.working-hour .row >* {
    width: 50%;
  }
  #footer .footer-top .row .footer-item.working-hour .row .full {
    width: 100%;
  }
  .why-us .menu-box h4 {
    font-size: 10vw;
    margin-bottom: 15px;
  }
  .why-us .menu-box .address {
    font-size: 4vw;
  }
  .nav-link.btn {
    margin-left: 0;
    border: none;
    padding: 10px 20px;
    font-family: "regularFont", serif;
    font-weight: normal;
  }
  .instagram {
    min-height: 107vw;
  }
  #hero .row > .main-title {
    font-size: 10vw;
  }
  #hero .sub-title {
    font-size: 3vw;
    top: 50vh;
  }
  #hero .ism-button {
    display: none;
  }
  .story .title {
    font-size: 9vw;
  }
  .take-away.about-p .main-title {
    font-size: 8vw;
  }
  .take-away .main-desc {
    margin-top: 0;
  }
}
.menu-demo {
  padding: 100px 0 0 0!important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Catalog sample */
/* Turn.js Stylesheet */
.no-selection {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ui-flipbook .page {
  background-color: white;
}
.ui-flipbook .cover {
  background-color: white;
}
.ui-flipbook .page-wrapper {
  -webkit-perspective: 2000px;
  -moz-perspective: 2000px;
  -ms-perspective: 2000px;
  perspective: 2000px;
}
.ui-slider {
  width: 500px;
  height: 44px;
  cursor: default;
  display: inline-block;
  vertical-align: center;
  cursor: pointer;
}
.ui-slider .bar {
  width: 500px;
  height: 6px;
  background-color: #999;
  margin-top: 19px;
  float: left;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.ui-slider .progress {
  position: relative;
  height: 6px;
}
.ui-slider .progress-width {
  margin-left: 5px;
  width: 490px;
  height: 6px;
  -webkit-transition: all 100ms;
  -moz-transition: all 100ms;
  -o-transition: all 100ms;
  -ms-transition: all 100ms;
  transition: all 100ms;
}
.ui-slider .handler {
  float: left;
  height: 6px;
  width: 10px;
  background-color: black;
  position: absolute;
  top: 0;
  right: -5px;
  opacity: 0.5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 100ms;
  -moz-transition: all 100ms;
  -o-transition: all 100ms;
  -ms-transition: all 100ms;
  transition: all 100ms;
}
.ui-slider.changing {
  cursor: none;
}
.ui-slider.changing .handler {
  width: 50px;
  right: -25px;
  opacity: 0.8;
}
@media screen and (min-width: 400px) and (max-width: 600px) {
  .ui-slider,
  .ui-slider .bar {
    width: 300px;
  }
  .ui-slider .progress-width {
    width: 290px;
  }
}
@media screen and (max-width: 400px) {
  .ui-slider,
  .ui-slider .bar {
    width: 100px;
  }
  .ui-slider .progress-width {
    width: 90px;
  }
}
.ui-region {
  position: absolute;
  overflow: hidden;
  z-index: 1;
  background-color: rgba(0, 102, 255, 0.15);
  border-radius: 5px;
  cursor: pointer;
}
.ui-region-hover {
  background-color: rgba(0, 102, 255, 0.3);
}
.ui-region-press {
  background-color: rgba(0, 102, 255, 0.5);
}
.ui-region-tooltip {
  font-size: 13px !important;
}
.ui-miniatures-slider {
  text-align: center;
  height: 180px;
  opacity: 0;
  z-index: 100;
  -webkit-transition: opacity 200ms;
  -moz-transition: opacity 200ms;
  -o-transition: opacity 200ms;
  -ms-transition: opacity 200ms;
  transition: opacity 200ms;
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  transition-delay: 100ms;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ui-miniatures-slider .container {
  margin-top: 25px;
  position: relative;
  height: 100px;
}
.ui-miniatures-slider .ui-page {
  background-color: white;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}
.ui-miniatures-slider .page-img {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  margin: 4px;
  background-color: white;
}
.ui-miniatures-slider .left-page .page-img {
  width: calc(96%);
  margin-right: 0;
}
.ui-miniatures-slider .right-page .page-img {
  width: calc(96%);
  margin-left: 0;
}
.ui-miniatures-slider .focused-page {
  background-color: #B30000;
}
.ui-miniatures-slider .animated-page {
  -webkit-transition: -webkit-transform ease-in-out 200ms;
  -moz-transition: -moz-transform ease-in-out 200ms;
  -ms-transition: -ms-transform ease-in-out 200ms;
  -o-transition: -o-transform ease-in-out 200ms;
  transition: transform ease-in-out 200ms;
}
.ui-miniatures-slider .page-number {
  font: lighter 10px arial;
  color: #000;
  text-shadow: 0 0 2px white;
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
}
.show-miniatures .ui-miniatures-slider {
  opacity: 1;
}
.show-miniatures .show-miniatures #controls .ui-icon {
  color: #ccc;
}
.show-miniatures .show-miniatures #controls .ui-icon:hover {
  color: #eee;
}
.ui-tooltip {
  position: absolute;
  float: left;
  background: rgba(33, 33, 33, 0.8);
  padding: 5px 10px;
  font: 10px arial;
  color: white;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 1000;
  opacity: 0;
  cursor: default;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: opacity 0.1s;
  -moz-transition: opacity 0.1s;
  -o-transition: opacity 0.1s;
  -ms-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
.ui-tooltip-visible {
  opacity: 1;
}
.ui-tooltip-top:before {
  bottom: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(33, 33, 33, 0.8);
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
}
.ui-tooltip-bottom:before {
  top: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(33, 33, 33, 0.8);
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
}
.ui-tooltip-left:before {
  right: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid rgba(33, 33, 33, 0.8);
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  margin-top: -4px;
}
.ui-tooltip-right:before {
  left: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid rgba(33, 33, 33, 0.8);
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  margin-top: -4px;
}
.ui-menu {
  position: absolute;
  z-index: 102;
  background-color: #ccc;
  opacity: 0;
  width: 200px;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s;
  border-radius: 5px;
}
.ui-menu .ui-menu-item {
  height: 34px;
  border-bottom: 1px solid #bbb;
  cursor: pointer;
}
.ui-menu .ui-menu-item:last-child {
  border-bottom: none;
}
.ui-menu .ui-menu-item-hover {
  background-color: #c0c0c0;
}
.ui-menu .ui-menu-item-hover:first-child {
  border-radius: 5px 5px 0 0;
}
.ui-menu .ui-menu-item-hover:last-child {
  border-radius: 0 0 5px 5px;
}
.ui-menu .ui-menu-item-desc {
  font: lighter 14px arial;
  padding: 0 20px;
  line-height: 34px;
}
.ui-menu .ui-selected-item .ui-menu-item-desc {
  font-weight: bold;
}
.ui-menu-visible {
  opacity: 1;
}
.catalog-app {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #dcdcdc;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .catalog-app {
    height: calc(100% - 20px);
  }
}
#viewer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #cacaca;
  padding: 10px;
}
#miniatures {
  position: absolute;
  bottom: 54px;
  left: 0;
  width: 100%;
  height: 126px;
  background-color: rgba(220, 220, 220, 0.9);
}
.touch-device.display-single .ui-arrow-next-page,
.touch-device.display-single .ui-arrow-previous-page {
  display: none;
}
.ui-arrow-next-page,
.ui-arrow-previous-page {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  top: calc(50% - 30px);
  right: -55px;
  z-index: 10;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABABAMAAABYR2ztAAAAIVBMVEX///////////////////////////////////////////9/gMdvAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAAAuUAAALlARv+XnsAAABYSURBVEjH7dYxDoAwDEPR5Ab1/S8LVEgsyL8SG3XWWK/dnKpnumA0/L4lAOSJE/DEtXfEBBxxBwYFBH8IEWJbggL4RIAAPwFWC+VDqXEtYrFyNWO5v58HB4q9HAkl7KTYAAAAAElFTkSuQmCC);
  background-size: 64px 64px;
  background-position: 0 0;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
  background-repeat: no-repeat;
}
.ui-arrow-previous-page {
  right: auto;
  left: -55px;
  transform: rotate(180deg);
}
.ui-arrow-control-hover {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 0.7;
}
.ui-arrow-control-tap {
  opacity: 1;
}
.first-page .ui-arrow-previous-page {
  opacity: 0;
}
.last-page .ui-arrow-next-page {
  opacity: 0;
}
.ui-spinner {
  background-image: url(../../../catalog/assets/img/loader@2x.gif);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100% 100%;
  margin-left: -12px;
  margin-top: -12px;
}
.first-page .ui-arrow-next-page {
  -webkit-animation: next-page 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation: next-page 1s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -o-animation: next-page 1s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
  -ms-animation: next-page 1s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;
  animation: next-page 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes next-page /* Safari and Chrome */ {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(6px);
    -moz-transform: translateX(6px);
    -o-transform: translateX(6px);
    -ms-transform: translateX(6px);
    transform: translateX(6px);
  }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes next-page /* Safari and Chrome */ {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(6px);
    -moz-transform: translateX(6px);
    -o-transform: translateX(6px);
    -ms-transform: translateX(6px);
    transform: translateX(6px);
  }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}
#controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54px;
  text-align: center;
  z-index: 101;
}
#controls .all {
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background-color: rgba(220, 220, 220, 0.9);
  line-height: 54px;
}
#controls .ui-options {
  position: absolute;
  top: 5px;
  right: 0;
  height: 44px;
}
#controls #page-slider {
  margin-top: 5px;
}
#controls .ui-icon {
  width: 44px;
  height: 44px;
  display: inline-block;
  color: #555;
  cursor: pointer;
  -webkit-transition: color 0.1s;
  -moz-transition: color 0.1s;
  -o-transition: color 0.1s;
  -ms-transition: color 0.1s;
  transition: color 0.1s;
}
#controls .ui-ui-icon-on {
  background-color: #666;
  color: white !important;
  text-shadow: 0 0 2px #333;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
#controls .ui-icon:hover {
  color: #333;
}
#controls .ui-icon .fa {
  float: left;
  line-height: 44px;
  width: 44px;
}
#controls #ui-icon-zoom {
  position: relative;
  z-index: 101;
}
#controls #ui-icon-expand-options {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 24px;
  background-color: rgba(220, 220, 220, 0.9);
  border-radius: 5px;
  width: 44px;
  height: 44px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.hide-controls #controls {
  display: none;
}
.hide-controls #viewer {
  height: 100%;
}
@media screen and (max-width: 1000px) {
  #controls #page-slider {
    position: relative;
    z-index: 2;
  }
  #controls .ui-options {
    right: 5px;
  }
  #controls .ui-options .ui-icon {
    -webkit-transition: all 0.2s cubic-bezier(0.515, 0.01, 0.225, 1.345);
    -moz-transition: all 0.2s cubic-bezier(0.515, 0.01, 0.225, 1.345);
    -o-transition: all 0.2s cubic-bezier(0.515, 0.01, 0.225, 1.345);
    -ms-transition: all 0.2s cubic-bezier(0.515, 0.01, 0.225, 1.345);
    transition: all 0.2s cubic-bezier(0.515, 0.01, 0.225, 1.345);
  }
  #controls .ui-options #ui-icon-toggle {
    display: inline-block !important;
    font-size: 24px;
  }
  #controls .ui-options .ui-icon:nth-child(1),
  #controls .ui-options .ui-icon:nth-child(2),
  #controls .ui-options .ui-icon:nth-child(3),
  #controls .ui-options .ui-icon:nth-child(4),
  #controls .ui-options .ui-icon:nth-child(5) {
    opacity: 0;
    pointer-events: none;
  }
  #controls #ui-icon-expand-options {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    pointer-events: auto;
  }
  #controls .ui-slider {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
  }
  #controls.extend-ui-options {
    /*#ui-icon-expand-options{
      display: none;
    }*/
  }
  #controls.extend-ui-options #page-slider {
    -webkit-transform: translate3d(-250px, 0px, 0px);
    -moz-transform: translate3d(-250px, 0px, 0px);
    -o-transform: translate3d(-250px, 0px, 0px);
    -ms-transform: translate3d(-250px, 0px, 0px);
    transform: translate3d(-250px, 0px, 0px);
  }
  #controls.extend-ui-options .ui-icon:nth-child(1),
  #controls.extend-ui-options .ui-icon:nth-child(2),
  #controls.extend-ui-options .ui-icon:nth-child(3),
  #controls.extend-ui-options .ui-icon:nth-child(4),
  #controls.extend-ui-options .ui-icon:nth-child(5) {
    pointer-events: auto;
    opacity: 1;
  }
  #controls.extend-ui-options #ui-icon-toggle {
    color: #999;
    -webkit-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
    -o-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
  }
}
#controls.hidden-controls .all {
  opacity: 0;
  pointer-events: none;
}
#controls.hidden-controls #ui-icon-expand-options {
  opacity: 1;
  pointer-events: auto;
}
.zoom-slider .ui-slider:hover .handler,
.horizontal-zoom-slider .ui-slider:hover .handler {
  opacity: 0.8;
}
html:-webkit-full-screen #controls #ui-icon-full-screen .fa:before {
  content: "\f066";
}
html:full-screen #controls #ui-icon-full-screen .fa:before {
  content: "\f066";
}
.zoom-slider {
  position: absolute;
  z-index: 100;
  width: 44px;
  height: 150px;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.1s, opacity 0.2s;
  -moz-transition: -moz-transform 0.1s, opacity 0.2s;
  -ms-transition: -ms-transform 0.1s, opacity 0.2s;
  -o-transition: -o-transform 0.1s, opacity 0.2s;
  transition: transform 0.1s, opacity 0.2s;
  top: 0;
  left: -100px;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.zoom-slider .ui-slider {
  width: 44px;
  height: 90px;
  cursor: default;
  display: inline-block;
  vertical-align: center;
  cursor: pointer;
  opacity: 1;
}
.zoom-slider .bg {
  width: 44px;
  height: 150px;
  border-radius: 10px;
  background-color: #ccc;
}
.zoom-slider .ui-slider .bar {
  width: 6px;
  height: 90px;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 19px;
  margin-left: 19px;
  float: left;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.zoom-slider .ui-slider .progress {
  position: relative;
  width: 6px;
}
.zoom-slider .ui-slider .progress-width {
  margin-top: 3px;
  margin-left: 0;
  width: 6px;
  height: 84px;
  -webkit-transition: all 100ms;
  -moz-transition: all 100ms;
  -o-transition: all 100ms;
  -ms-transition: all 100ms;
  transition: all 100ms;
}
.zoom-slider .ui-slider .handler {
  float: left;
  height: 6px;
  width: 6px;
  background-color: white;
  position: absolute;
  top: auto;
  right: auto;
  left: 0;
  bottom: -3px;
  opacity: 0.8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 100ms;
  -moz-transition: all 100ms;
  -o-transition: all 100ms;
  -ms-transition: all 100ms;
  transition: all 100ms;
}
.zoom-slider.show-zoom-slider {
  opacity: 1;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
#controls .ui-options #ui-icon-toggle {
  display: none;
}
.ui-share-box {
  position: fixed;
  top: 0;
  left: -10000px;
  width: 100%;
  height: 100%;
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.ui-share-box .ui-share-options {
  font-size: 40px;
  overflow: auto;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 80px;
  text-align: center;
}
.ui-share-box .ui-share-options .ui-icon {
  width: 60px;
  height: 60px;
  display: inline-block;
  cursor: pointer;
}
.ui-share-box .ui-share-options .ui-icon i {
  margin: 10px;
  color: #ccc;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  -ms-transition: all 0.1s;
  transition: all 0.1s;
}
.ui-share-box .ui-share-options .has-hint i {
  color: white;
  text-shadow: 0 0 10px white;
}
.ui-share-box .close-mark {
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  background-image: url(../../../catalog/assets/img/arrows@2x.png);
  background-size: 60px 120px;
  background-position: 0 60px;
  cursor: pointer;
  opacity: 0.8;
}
.ui-share-box .close-mark:hover {
  opacity: 1;
}
.ui-share-box.show-ui-share-box {
  left: 0px;
  opacity: 1;
}
@media screen and (max-width: 400px) {
  .ui-share-box .ui-share-options {
    font-size: 30px !important;
  }
  .ui-share-box .ui-share-options .ui-icon {
    width: 50px !important;
    height: 50px !important;
  }
  .ui-share-box .ui-share-options {
    height: 50px !important;
  }
}

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

#contact-us {
    background: #a6a6a4;
    padding: 25px 0% 50px;
}

#contact-us .button {
  background-color: #e74c1a80;
  color: white;
  border: solid 1px #e74c1a;
}

#contact-us .button:hover {
  background-color: #e74d1a;
  color: white;
  cursor: pointer;
}

.address a {
  color: white;
  cursor: pointer;
}
.address a:hover {
  color: #e8a049;
  text-decoration: none;
}

#take-away .detail {
  white-space: break-spaces;
}

.job-description {
  text-align: left !important;
  text-align-last: left!important;
  background: #f5deb34f;
  padding: 15px;
}

.job-title {
  color: black;
  font-size: x-large;
  text-align: center;
}

.footer-top img {
    max-width: 350px!important;
    margin: auto;
}