/* A */
/* B */
/* Flexible Box Layout */
/* Font Properties */
/* Multi-column Layout Properties */
/* Outline Properties */
/* Text Properties */
/* Transform Properties */
/* Transitions Properties */
/* Visual formatting Properties */
/* border */
/* border-side */
/* gradient */
body {
  font-family: "Lato", sans-serif;
  font-size: 14px;
}
@media (min-width: 567px) {
  body {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 15.5px;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 16.5px;
  }
}
@media (min-width: 1600px) {
  body {
    font-size: 17px;
  }
}

h1 {
  font-size: 230%;
}

h2 {
  font-size: 200%;
}

h3 {
  font-size: 170%;
}

h4 {
  font-size: 140%;
}

h5 {
  font-size: 125%;
}

h6 {
  font-size: 110%;
}

p {
  font-weight: 400;
}

a {
  text-decoration: none;
  color: rgba(18, 17, 13, 0.7);
}
a:hover {
  text-decoration: none;
  color: #12110d;
}

.font-family-courgette, .pageNotFound-content, .login-container .login-inner-container .logo-container .logo-text-1,
.login-container .login-inner-container .logo-container .logo-text-2, .page-title-container .page-title-inner .title-content h1, .footer-content, .footer-logo, .title-container .title-secondary, .slider-section .carousel .carousel-caption h5, .brand-text {
  font-family: "Courgette", cursive;
}

.font-family-lato {
  font-family: "Lato", sans-serif;
}

.header-section {
  background: rgba(18, 17, 13, 0);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10000;
}

.sticky-nav .header-section {
  background: white;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.35s linear;
  -moz-transition: all 0.35s linear;
  -ms-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  transition: all 0.35s linear;
}

.brand-container {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 60px;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
@media (min-width: 992px) {
  .brand-logo img {
    height: 80px;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
  }
}

.sticky-nav .brand-logo img {
  height: 50px;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
@media (min-width: 992px) {
  .sticky-nav .brand-logo img {
    height: 60px;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
  }
}

.brand-text {
  margin-top: 0.35rem;
  margin-left: 0.75rem;
  color: white;
  display: none;
}
@media (min-width: 992px) {
  .brand-text {
    display: block;
  }
}
.brand-text h1 {
  line-height: 2rem;
}

.navbar-toggler {
  outline: none;
  -webkit-border: none;
  -moz-border: none;
  -ms-border: none;
  -o-border: none;
  border: none;
}
.navbar-toggler.active, .navbar-toggler:active, .navbar-toggler.focus, .navbar-toggler:focus {
  outline: none;
}
.navbar-toggler .toggler-text {
  display: none;
  font-size: 40%;
  font-weight: 800;
  color: #D56B51;
}
.navbar-toggler.show-navbar {
  position: absolute;
  z-index: 1000;
  right: 0rem;
}
.navbar-toggler.show-navbar .toggler-text {
  display: block;
}

@media (max-width: 991px) {
  .navbar-container {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
  }
  .navbar-container.show-navbar {
    display: block;
  }
}
@media (min-width: 992px) {
  .navbar-container {
    display: flex;
    justify-content: flex-end;
    position: unset;
    background: transparent;
  }
}
@media (max-width: 991px) {
  .navbar-container .navbar-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #f7cf3a;
    width: 20rem;
    padding: 1rem 2rem;
    -webkit-border-radius: 0.35rem;
    -moz-border-radius: 0.35rem;
    -ms-border-radius: 0.35rem;
    -o-border-radius: 0.35rem;
    border-radius: 0.35rem;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 992px) {
  .navbar-container .navbar-nav .nav-item .nav-link {
    color: white;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
  }
}
.navbar-container .overlay-image {
  position: absolute;
  background: transparent;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.navbar-container .overlay-image .overlay-inner {
  position: relative;
  background: transparent;
  width: 100%;
  height: 100%;
}
.navbar-container .overlay-image img {
  position: absolute;
}
.navbar-container .overlay-image .img1 {
  width: 180px;
  bottom: 1rem;
}
.navbar-container .overlay-image .img2 {
  width: 180px;
  bottom: 1rem;
  right: 0;
}
@media (min-width: 992px) {
  .navbar-container .overlay-image {
    display: none;
  }
}

.sticky-nav .navbar {
  padding: 0;
}
@media (min-width: 992px) {
  .sticky-nav .navbar .nav-item .nav-link {
    color: #12110d;
  }
}

.dropdown-menu {
  border-color: #f9db6b;
  background: #f7cf3a;
}
@media (min-width: 992px) {
  .dropdown-menu {
    margin-top: 1.5rem;
  }
}
.dropdown-menu .dropdown-item {
  position: relative;
  padding: 0.45rem 2rem 0.45rem 2.35rem;
}
.dropdown-menu .dropdown-item:hover {
  background: #fbe79c;
}
.dropdown-menu .dropdown-item.focus, .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active {
  background: #f9db6b;
  color: #12110d;
}
.dropdown-menu .dropdown-item::before {
  content: url(../image/restaurant-icon.jpg);
  font-size: 13px;
  position: absolute;
  left: 0.7rem;
  top: 0.6rem;
}

@media (min-width: 992px) {
  .sticky-nav .dropdown-menu {
    margin-top: 1.2rem;
  }
}

.slider-section .carousel {
  height: 100vh;
}
.slider-section .carousel .carousel-inner {
  height: 100vh;
}
.slider-section .carousel .carousel-inner .carousel-item {
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .slider-section .carousel .carousel-inner .carousel-item img {
    height: 100vh;
  }
}
@media (min-width: 1200px) {
  .slider-section .carousel .carousel-inner .carousel-item img {
    height: auto;
    width: 100%;
  }
}
.slider-section .carousel .carousel-indicators {
  align-items: center;
  flex-direction: column;
  top: 0;
  bottom: 0;
  left: unset;
  right: 1.5rem;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin: unset;
  list-style: none;
}
.slider-section .carousel .carousel-indicators li {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.35rem 0;
  border: none;
  -webkit-background-clip: unset;
  -moz-background-clip: unset;
  -ms-background-clip: unset;
  -o-background-clip: unset;
  background-clip: unset;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.7);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-section .carousel .carousel-indicators li::before {
  content: "";
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  border-radius: 2rem;
  background: white;
}
.slider-section .carousel .carousel-caption {
  bottom: unset;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider-section .carousel .carousel-caption h5 {
  font-size: 400%;
}
.slider-section .carousel .carousel-caption p {
  font-size: 100%;
}
.slider-section .carousal-overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(18, 17, 13, 0.4);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.slider-section .carousal-overlay .carousal-overlay-inner {
  width: 100%;
  height: 100vh;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.slider-section .carousal-overlay .overlay-inner-items {
  width: calc(33.3% - 2px);
  height: 25vh;
  float: left;
  margin: 1px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  border-radius: 0.5rem;
}

.go-down-btn {
  display: block;
  background: transparent;
  height: 3rem;
  width: 1.75rem;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-border: 2px solid #ffffff;
  -moz-border: 2px solid #ffffff;
  -ms-border: 2px solid #ffffff;
  -o-border: 2px solid #ffffff;
  border: 2px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.go-down-btn::before {
  content: "";
  position: absolute;
  height: 0.75rem;
  width: 4px;
  background: #ffffff;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  border-radius: 1rem;
  animation: goDownBtn 2s linear 2s infinite;
  animation: name duration timing-function delay iteration-count direction fill-mode;
}
@keyframes goDownBtn {
  0% {
    margin: -6px 0 0 0;
  }
  25% {
    margin: 6px 0 0 0;
  }
  50% {
    margin: -6px 0 0 0;
  }
  100% {
    margin: -6px 0 0 0;
  }
}

/* Section Setting */
.section-p-top {
  padding-top: 4rem;
}
@media (min-width: 576px) {
  .section-p-top {
    padding-top: 5.5rem;
  }
}
@media (min-width: 768px) {
  .section-p-top {
    padding-top: 7rem;
  }
}
@media (min-width: 992px) {
  .section-p-top {
    padding-top: 8rem;
  }
}

.section-p-bottom {
  padding-bottom: 4rem;
}
@media (min-width: 576px) {
  .section-p-bottom {
    padding-bottom: 5.5rem;
  }
}
@media (min-width: 768px) {
  .section-p-bottom {
    padding-bottom: 7rem;
  }
}
@media (min-width: 992px) {
  .section-p-bottom {
    padding-bottom: 8rem;
  }
}

.section-m-top {
  margin-top: 4rem;
}
@media (min-width: 576px) {
  .section-m-top {
    margin-top: 5.5rem;
  }
}
@media (min-width: 768px) {
  .section-m-top {
    margin-top: 7rem;
  }
}
@media (min-width: 992px) {
  .section-m-top {
    margin-top: 8rem;
  }
}

.section-m-bottom {
  margin-bottom: 4rem;
}
@media (min-width: 576px) {
  .section-m-bottom {
    margin-bottom: 5.5rem;
  }
}
@media (min-width: 768px) {
  .section-m-bottom {
    margin-bottom: 7rem;
  }
}
@media (min-width: 992px) {
  .section-m-bottom {
    margin-bottom: 8rem;
  }
}

.section-p-top-by2 {
  padding-top: 2rem;
}
@media (min-width: 576px) {
  .section-p-top-by2 {
    padding-top: 2.5rem;
  }
}
@media (min-width: 768px) {
  .section-p-top-by2 {
    padding-top: 3.25rem;
  }
}
@media (min-width: 992px) {
  .section-p-top-by2 {
    padding-top: 4rem;
  }
}

.section-p-bottom-by2 {
  padding-bottom: 2rem;
}
@media (min-width: 576px) {
  .section-p-bottom-by2 {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 768px) {
  .section-p-bottom-by2 {
    padding-bottom: 3.25rem;
  }
}
@media (min-width: 992px) {
  .section-p-bottom-by2 {
    padding-bottom: 4rem;
  }
}

.section-m-top-by2 {
  margin-top: 2rem;
}
@media (min-width: 576px) {
  .section-m-top-by2 {
    margin-top: 2.5rem;
  }
}
@media (min-width: 768px) {
  .section-m-top-by2 {
    margin-top: 3.25rem;
  }
}
@media (min-width: 992px) {
  .section-m-top-by2 {
    margin-top: 4rem;
  }
}

.section-m-bottom-by2 {
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .section-m-bottom-by2 {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 768px) {
  .section-m-bottom-by2 {
    margin-bottom: 3.25rem;
  }
}
@media (min-width: 992px) {
  .section-m-bottom-by2 {
    margin-bottom: 4rem;
  }
}

/* End Section Setting */
/* Title Setting */
.title-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.title-container .title-secondary {
  margin: 0;
  color: #f7cf3a;
}
.title-container .title {
  font-weight: 800;
}

/* End Title Setting */
.section-index-01 {
  background-image: url(../image/bell-pepper.jpg);
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media (min-width: 567px) {
  .section-index-01 {
    background-size: 50%;
  }
}
@media (min-width: 768px) {
  .section-index-01 {
    background-size: 45%;
  }
}
@media (min-width: 992px) {
  .section-index-01 {
    background-size: 40%;
  }
}
@media (min-width: 1200px) {
  .section-index-01 {
    background-size: 27%;
  }
}

section {
  width: 100%;
  height: auto;
}

.section-index-02 {
  position: relative;
}
@media (min-width: 992px) {
  .section-index-02 {
    background-image: url(../image/tomato-small.jpg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: right bottom;
  }
}
.section-index-02::after {
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  filter: opacity(0.2);
  background-image: url(../image/brooke-lark.jpg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left top;
}

/* Box */
.box {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-border-radius: 0.35rem;
  -moz-border-radius: 0.35rem;
  -ms-border-radius: 0.35rem;
  -o-border-radius: 0.35rem;
  border-radius: 0.35rem;
}
.box.box-transparent {
  background: transparent;
}
.box.box-80-percent {
  width: 80%;
  margin: 0 auto;
}
.box .box-img {
  width: 90%;
}
.box .box-body {
  padding: 1rem;
}
.box .box-title {
  font-weight: 700;
}

/* End Box */
.menu-container-inner {
  margin-top: 19rem;
}
@media (min-width: 576px) {
  .menu-container-inner {
    margin-top: 22rem;
  }
}
@media (min-width: 768px) {
  .menu-container-inner {
    margin-top: 25rem;
  }
}
@media (min-width: 992px) {
  .menu-container-inner {
    margin-top: 0;
  }
}

.menu-items {
  width: 100%;
  height: 5.25rem;
  padding: 0.7rem;
  margin-bottom: 2rem;
  background: #f7f4f4;
  display: flex;
  overflow: hidden;
  -webkit-border-radius: 10rem;
  -moz-border-radius: 10rem;
  -ms-border-radius: 10rem;
  -o-border-radius: 10rem;
  border-radius: 10rem;
}
.menu-items .menu-items-img {
  width: 5.25rem;
  background: #12110d;
  overflow: hidden;
  -webkit-border-radius: 10rem;
  -moz-border-radius: 10rem;
  -ms-border-radius: 10rem;
  -o-border-radius: 10rem;
  border-radius: 10rem;
}
@media (min-width: 576px) {
  .menu-items .menu-items-img {
    width: 6rem;
  }
}
@media (min-width: 768px) {
  .menu-items .menu-items-img {
    width: 7rem;
  }
}
@media (min-width: 992px) {
  .menu-items .menu-items-img {
    width: 9.8rem;
  }
}
.menu-items .menu-items-img img {
  width: 100%;
}
.menu-items .menu-items-content {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}
.menu-items .menu-items-content h3 {
  font-size: 100%;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}
.menu-items .menu-items-content p {
  margin: 0;
  font-size: 90%;
}
.menu-items .menu-items-price {
  margin-left: auto;
  text-align: right;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-items .menu-items-price h5 {
  font-weight: 600;
  font-size: 100%;
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: transparent;
  z-index: -1;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .menu-overlay {
    justify-content: unset;
  }
}
.menu-overlay .menu-overlay-inner {
  background: transparent;
  width: 700px;
  height: 480px;
  position: relative;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
  margin-top: -4.5rem;
}
@media (min-width: 576px) {
  .menu-overlay .menu-overlay-inner {
    width: 700px;
    height: 480px;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    margin-top: -3rem;
  }
}
@media (min-width: 768px) {
  .menu-overlay .menu-overlay-inner {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    margin: -1rem auto 0 auto;
  }
}
@media (min-width: 992px) {
  .menu-overlay .menu-overlay-inner {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    margin-left: -3rem;
  }
}
@media (min-width: 1200px) {
  .menu-overlay .menu-overlay-inner {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    margin-left: 5rem;
  }
}
.menu-overlay .menu-overlay-inner .menu-overlay-image {
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
}
.menu-overlay .menu-overlay-inner .menu-overlay-image.menu-overlay-image-1 {
  max-width: 30rem;
  right: 0;
}
.menu-overlay .menu-overlay-inner .menu-overlay-image.menu-overlay-image-2 {
  max-width: 18rem;
  left: 5rem;
  top: 1rem;
}
.menu-overlay .menu-overlay-inner .menu-overlay-image.menu-overlay-image-3 {
  max-width: 12rem;
  left: 0rem;
  bottom: 4rem;
}
.menu-overlay .menu-overlay-inner .menu-overlay-image.menu-overlay-image-4 {
  max-width: 8rem;
  left: 9rem;
  bottom: 4rem;
}
.menu-overlay .menu-overlay-inner .menu-overlay-image.menu-overlay-image-5 {
  background: #cb3711;
  color: #f7cf3a;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  bottom: 9rem;
  left: 14rem;
}
.menu-overlay .menu-overlay-inner .menu-overlay-image img {
  width: 100%;
}

footer.footer {
  background-image: url(../image/footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: 30% 70%;
  background-size: 100%;
}
@media (min-width: 576px) {
  footer.footer {
    background-position: 30% 40%;
    background-size: 80%;
  }
}
@media (min-width: 768px) {
  footer.footer {
    background-position: 30% 40%;
    background-size: auto;
  }
}
@media (min-width: 992px) {
  footer.footer {
    background-position: 30% 40%;
    background-size: auto;
  }
}

/*  */
.mr-materialize {
  background: transparent;
  height: 4.575rem;
  display: flex;
  position: relative;
}
.mr-materialize label {
  font-size: 16px;
  position: absolute;
  top: 38px;
  left: 20px;
  color: #888163;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  z-index: -1;
}
.mr-materialize.active label {
  font-size: 14px;
  font-weight: 700;
  left: 0;
  top: 0;
  color: #12110d;
}
.mr-materialize input.form-control {
  margin-top: auto;
  background-color: transparent;
  height: unset;
  padding: 0.5rem 0.75rem;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.mr-materialize input.form-control:active, .mr-materialize input.form-control:focus {
  background-color: white;
}

.form-control {
  border-radius: 1rem !important;
}

.bottom-footer .footer-image-container {
  display: flex;
  padding: 0 2rem;
}
.bottom-footer .footer-image-container .footer-image-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
}
.bottom-footer .footer-image-container .footer-image-inner img {
  max-width: 100%;
}
.arrow-line {
  width: 100%;
  height: 1px;
  background-color: #eceae5;
  /* &::before {
        content: '';
        position: absolute; 
        top: -5px;
        left: 10px;
        border-left: 5px solid transparent;
        border-top: 5px solid transparent;
        border-right: 10px solid lighten( $black, 85);
        border-bottom: 5px solid transparent;
        background:transparent;  
    }

    &::after {
        content: '';
        position: absolute; 
        top: -5px;
        right: 10px;
        border-right: 5px solid transparent;
        border-top: 5px solid transparent;
        border-left: 10px solid lighten( $black, 85);
        border-bottom: 5px solid transparent;
        background:transparent;  
    } */
}

.footer-logo {
  display: flex;
  justify-content: center;
}
.footer-logo .footer-logo-content {
  margin-left: 0.5rem;
}
.footer-logo .footer-logo-content > h1,
.footer-logo .footer-logo-content > h4 {
  margin: 0;
}
.footer-logo .footer-logo-content > h4 {
  font-size: 15px;
}

.footer-content {
  font-size: 95%;
  margin: 1rem 0 0 0;
  text-align: center;
}

.copyright-inner {
  padding: 1.2rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .copyright-inner {
    flex-direction: row;
  }
}
.copyright-inner .cc-content {
  font-size: 85%;
  font-weight: 600;
  width: 100%;
}
@media (min-width: 992px) {
  .copyright-inner .cc-content {
    width: 50%;
  }
}
.copyright-inner .cc-content.copyright {
  text-align: center;
}
.copyright-inner .cc-content.developedBy {
  text-align: center;
}
@media (min-width: 992px) {
  .copyright-inner .cc-content.copyright {
    text-align: left;
  }
  .copyright-inner .cc-content.developedBy {
    text-align: right;
  }
}

/*  */
/* About Page */
.page-title-container {
  height: 14rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 567px) {
  .page-title-container {
    height: 16rem;
  }
}
@media (min-width: 768px) {
  .page-title-container {
    height: 18rem;
  }
}
@media (min-width: 992px) {
  .page-title-container {
    height: 22rem;
  }
}
@media (min-width: 1200px) {
  .page-title-container {
    height: 25rem;
  }
}
.page-title-container .page-title-inner {
  position: absolute;
  background: transparent;
  bottom: 1.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 567px) {
  .page-title-container .page-title-inner {
    bottom: 2.3rem;
  }
}
@media (min-width: 768px) {
  .page-title-container .page-title-inner {
    bottom: 2.8rem;
  }
}
@media (min-width: 992px) {
  .page-title-container .page-title-inner {
    bottom: 3.1rem;
  }
}
@media (min-width: 1200px) {
  .page-title-container .page-title-inner {
    bottom: 3.5rem;
  }
}
.page-title-container .page-title-inner .title-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #cb3711;
  color: #f7cf3a;
  font-size: 140%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  -o-border-radius: 5rem;
  border-radius: 5rem;
  margin-right: 1rem;
}
@media (min-width: 567px) {
  .page-title-container .page-title-inner .title-icon {
    width: 3.8rem;
    height: 3.8rem;
    font-size: 160%;
  }
}
@media (min-width: 768px) {
  .page-title-container .page-title-inner .title-icon {
    width: 4rem;
    height: 4rem;
    font-size: 180%;
  }
}
@media (min-width: 992px) {
  .page-title-container .page-title-inner .title-icon {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 200%;
  }
}
@media (min-width: 1200px) {
  .page-title-container .page-title-inner .title-icon {
    width: 5rem;
    height: 5rem;
    font-size: 220%;
  }
}
.page-title-container .page-title-inner .title-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-title-container .page-title-inner .title-content h1 {
  margin: 0;
  color: #f7cf3a;
}
.page-title-container .page-title-inner .title-content h6 {
  margin: 0;
  font-weight: 400;
  color: white;
  display: none;
}
@media (min-width: 567px) {
  .page-title-container .page-title-inner .title-content h6 {
    display: none;
  }
}
@media (min-width: 768px) {
  .page-title-container .page-title-inner .title-content h6 {
    display: block;
  }
}
@media (min-width: 992px) {
  .page-title-container .page-title-inner .title-content h6 {
    display: block;
  }
}
@media (min-width: 1200px) {
  .page-title-container .page-title-inner .title-content h6 {
    display: block;
  }
}

.section-abo-1 {
  background-image: url(../image/cinnamon.jpg);
  background-repeat: no-repeat;
  background-position: left bottom;
}

.about_image {
  display: none;
}
@media (min-width: 992px) {
  .about_image {
    display: inherit;
  }
}

.best-exp-img-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  height: 100%;
  width: 100%;
}
.best-exp-img-cont .best-exp-img-cont-inner {
  display: flex;
  background: transparent;
  position: relative;
  width: 100%;
  justify-content: flex-end;
  height: calc(100% - 2rem);
}
.best-exp-img-cont .best-exp-img-cont-inner .img-cont {
  overflow: hidden;
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.best-exp-img-cont .best-exp-img-cont-inner .img-cont img {
  width: 100%;
}
.best-exp-img-cont .best-exp-img-cont-inner .img-cont.img-cont-1 {
  width: 18rem;
  height: 18rem;
  right: 8rem;
}
.best-exp-img-cont .best-exp-img-cont-inner .img-cont.img-cont-2 {
  width: 10rem;
  height: 10rem;
}
.best-exp-img-cont .best-exp-img-cont-inner .img-cont.img-cont-3 {
  width: 13rem;
  height: 13rem;
  bottom: 0rem;
}
.best-exp-img-cont .best-exp-img-cont-inner .img-cont.img-cont-4 {
  width: 4rem;
  height: 4rem;
  right: 10rem;
  bottom: 0rem;
}

.fixed-carousal {
  background-color: rgba(247, 207, 58, 0.7);
  padding: 4rem;
  text-align: center;
  overflow: hidden;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  border-radius: 3rem;
  position: relative;
}
.fixed-carousal h2 {
  font-weight: 800;
}
.fixed-carousal h6 {
  margin: 0;
}
.fixed-carousal .overlay-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../image/slider-2.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.section-abo-2 {
  background-image: url(../image/cucumber.jpg), url(../image/boiled-egg-creamy-delicious.jpg);
  background-repeat: no-repeat, no-repeat;
  background-size: 100px, 120px;
  background-position: top left, bottom right;
}
@media (min-width: 567px) {
  .section-abo-2 {
    background-size: 140px, 120px;
  }
}
@media (min-width: 768px) {
  .section-abo-2 {
    background-size: 180px, 120px;
  }
}
@media (min-width: 992px) {
  .section-abo-2 {
    background-size: 200px, 130px;
  }
}
@media (min-width: 1200px) {
  .section-abo-2 {
    background-size: 300px, 150px;
  }
}

.spe-best {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}
.spe-best .img-cont img {
  height: 5rem;
}
.spe-best h4 {
  font-weight: 600;
  margin: 1rem 0;
}

.section-team {
  background-image: url(../image/footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
}

.team-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  background: transparent;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  -ms-border-radius: 0.75rem;
  -o-border-radius: 0.75rem;
  border-radius: 0.75rem;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.team-header {
  overflow: hidden;
  height: 18rem;
  width: 18rem;
  -webkit-border-radius: 20rem;
  -moz-border-radius: 20rem;
  -ms-border-radius: 20rem;
  -o-border-radius: 20rem;
  border-radius: 20rem;
  position: relative;
  display: flex;
  align-items: center;
}
.team-header .team-social-media {
  position: absolute;
  right: -5rem;
  background: #f7cf3a;
  display: flex;
  align-items: center;
  padding: 0.75rem;
  width: 4rem;
  -webkit-border-radius: 0.35rem 0 0 0.35rem;
  -moz-border-radius: 0.35rem 0 0 0.35rem;
  -ms-border-radius: 0.35rem 0 0 0.35rem;
  -o-border-radius: 0.35rem 0 0 0.35rem;
  border-radius: 0.35rem 0 0 0.35rem;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.team-header .team-social-media ul {
  margin: 0;
}
.team-header .team-social-media ul li a {
  font-size: 1.5rem;
  color: #12110d;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.team-header .team-social-media ul li a:hover {
  color: rgba(18, 17, 13, 0.7);
}

.team-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.team-body .team-icon {
  background: #f7cf3a;
  color: #cb3711;
  width: 4rem;
  height: 4rem;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -2.35rem;
  margin-bottom: 1rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
  border-radius: 4rem;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.team-container:hover {
  background: rgba(247, 207, 58, 0.15);
}
.team-container:hover .team-social-media {
  right: 0;
}
.team-container:hover .team-icon {
  background: #cb3711;
  color: #f7cf3a;
}

/* About Page */
.login-container {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.login-container .login-inner-container {
  position: absolute;
  background: transparent;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  background: white;
  padding: 1rem 1.5rem;
  width: 18rem;
  -webkit-border-radius: 0.35rem;
  -moz-border-radius: 0.35rem;
  -ms-border-radius: 0.35rem;
  -o-border-radius: 0.35rem;
  border-radius: 0.35rem;
}
@media (min-width: 576px) {
  .login-container .login-inner-container {
    width: 22rem;
  }
}
.login-container .login-inner-container .login-form-content {
  width: 11rem;
  background: #12110d;
  padding: 0.75rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: -2.5rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  color: white;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  border-radius: 3rem;
}
.login-container .login-inner-container .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 1;
  margin: 1.5rem 0 0.5rem 0;
}
.login-container .login-inner-container .logo-container img {
  flex-shrink: 1;
}
.login-container .login-inner-container .logo-container .logo-content {
  margin-left: 0.5rem;
}
.login-container .login-inner-container .logo-container .logo-text-1,
.login-container .login-inner-container .logo-container .logo-text-2 {
  margin: 0;
}
.login-container .login-inner-container .logo-container .logo-text-2 {
  font-size: 100%;
}
.login-container .login-inner-container .login-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.login-container .login-inner-container .login-form .form-group {
  width: 100%;
}
.login-container .login-inner-container .login-form button {
  width: 8rem;
}
.login-container .login-inner-container .forget-pass-container {
  display: flex;
  font-size: 90%;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
}
.login-container .login-inner-container .forget-pass-container label input {
  margin-right: 0.25rem;
}
.login-container .login-inner-container .forget-pass-container a {
  color: #12110d;
  font-weight: 700;
}
.login-container .login-inner-container .login-signup-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 0.75rem;
}
.login-container .login-inner-container .login-signup-container p {
  margin-bottom: 0.25rem;
}
.login-container .login-inner-container .login-signup-container a {
  color: #12110d;
  font-weight: 700;
  font-size: 90%;
}

.pageNotFound-container {
  width: 100%;
  height: 100vh;
  background: url(../image/slider-2.jpg);
  background-size: cover;
}

.pageNotFound-inner-container {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
}

.pageNotFound-main-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pageNotFound-main-container .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageNotFound-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 14rem;
  height: 8rem;
  overflow: hidden;
}
.pageNotFound-content span {
  font-size: 7rem;
}
.pageNotFound-content img {
  width: 5rem;
}
@media (min-width: 768px) {
  .pageNotFound-content {
    width: 19rem;
  }
  .pageNotFound-content span {
    font-size: 9rem;
  }
  .pageNotFound-content img {
    width: 6.5rem;
  }
}

.pageNotFound-main-container .content {
  margin: 0.5rem 0 2rem 0;
  text-align: center;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
  padding: 2rem;
  background-color: #f3f3f3;
  border-radius: 1rem;
}

.address h1 {
  font-family: "Courgette", cursive;
}
.address p {
  line-height: 2rem;
}

.map-section {
  overflow: hidden;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  border-radius: 1rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .map-section {
    margin-top: 0;
  }
}

#map {
  height: 25rem;
}

.contact_form_container {
  position: relative;
}

.loader_container {
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
}
.loader_container .loader_inner_container {
  background-color: #cb3711;
  border-radius: 5px;
  padding: 10px;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #f7cf3a;
  /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.add_icon_wrap {
  min-width: 2rem;
  max-width: 2rem;
  height: 2rem;
  display: flex;
  background-color: #cb3711;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 3px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.address_p {
  display: flex;
}
.address_p span {
  display: flex;
}

/*# sourceMappingURL=style.css.map */
