/**
* Template Name: Delicious - v4.7.1
* Template URL: https://bootstrapmade.com/delicious-free-restaurant-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
}

a {
  text-decoration: none;
  color: #ff5a3c;
}

a:hover {
  color: #ffc56e;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  /* font-family: "Satisfy", sans-serif; */
  /* font-family: 'Josefin Sans', sans-serif; */
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 37px;
  z-index: 996;
  background: #333;/*#e8c78d*/
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #e8c78d;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  z-index: 996;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 7px;
}
#topbar.topbar-transparent {
  background: white;
}
#topbar.topbar-scrolled {
  top: -50px;
}
#topbar i {
  color: #e8c78d;
  line-height: 0;
}
#topbar i span {
  color: #333;
  font-style: normal;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  top: 50px;
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.85);
}
#header.header-transparent {
  background: white;
  border-top: 1px solid #e7e7e7;
  min-height: 140px;
}
#header.header-scrolled {
  top: 0;
  background: rgb(255 255 255);
border-bottom: 1px solid #ddd;}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  padding-top: 10px;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  /* max-height: 40px; */
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/

.loc {
    
    padding: 6px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    min-width: 150px;
	text-align:left;
}
.book-a-table-btn {
  background: #e8c78d;
  color: #fff;
  border-radius: 5px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
  border: 1px solid #e8c78d;
  }
.book-a-table-btn:hover {
  background: #fd604400;
  color: #e8c78d;
  /* border: 1px solid #e8c78d; */
  }
@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0px 30px 20px;
  font-size: 14px;
  font-weight: 500;
  color: black;
  /* white-space: nowrap; */
  transition: 0.3s;
  letter-spacing: 0.5px;
  /* font-family: 'Josefin Sans', sans-serif; */
  }
.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: #e8c78d;
  font-weight: 500;
  }
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  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;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #433f39;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #e8c78d;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .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(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 9px 20px;
  font-size: 15px;
  color: #433f39;
  font-weight: 600;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #e8c78d;
}
.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: #e8c78d;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}
#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  /* background-color: rgb(12 11 10 / 37%); */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: -400px;
  right: 0;
}
#hero .carousel-content {
  /* text-align: center; */
  padding-top: 85px;
  }
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  text-align: left;
}
#hero h2 span {
  color: #ffffff;
  font-size: 58px;
  line-height: 69px;
  font-weight: 500;
  font-family: 'Josefin Sans', sans-serif;
  }
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgb(43 38 32);
  /* border-radius: 50px; */
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: -13%;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 15px 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #e8c78d;
}
#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #e8c78d;
  color: #fff;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 100%;
    font-size: 23px;
    font-family: 'Josefin Sans', sans-serif;
    }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  color: #5f5950;
}
.section-title h2 span {
  color: #e8c78d;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.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: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #f2f6f7;
}
.about .content {
  padding: 0 80px;
}
.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}
.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.about .content p {
  font-size: 15px;
  color: #848484;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li + li {
  margin-top: 15px;
}
.about .content ul li {
  position: relative;
  padding-left: 26px;
}
.about .content ul i {
  font-size: 20px;
  color: #e8c78d;
  position: absolute;
  left: 0;
  top: 2px;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#e8c78d 50%, rgba(255, 176, 59, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .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);
}
.about .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(255, 176, 59, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #e8c78d;
  transform: scale(20);
}
.about .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 (max-width: 1024px) {
  .about .content, .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }
  .about .accordion-list {
    padding-bottom: 30px;
  }
}

@-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;
  }
}
/*--------------------------------------------------------------
# Whu Us
--------------------------------------------------------------*/




.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 100%;
}
.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffcf88;
}
.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #6c665c;
}
.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.why-us .box:hover {
  background: #e8c78d;
  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;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border: 2px solid #e8c78d;
  border-radius: 50px;
}
.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: #fff;
  background: #e8c78d;
}
.menu #menu-flters li:last-child {
  margin-right: 0;
}
.menu .menu-content {
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #dad8d4;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.menu .menu-content a {
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: #ff9b08;
}
.menu .menu-content span {
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}
.menu .menu-ingredients {
  font-style: italic;
  font-size: 14px;
  font-family: "Comic Neue", sans-serif;
  color: #948c81;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}
.specials .nav-tabs {
  border: 0;
}
.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}
.specials .nav-link:hover {
  color: #e8c78d;
}
.specials .nav-link.active {
  color: #e8c78d;
  border-color: #e8c78d;
}
.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: #433f39;
}
.specials .details p {
  color: #777777;
}
.specials .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
  .specials .nav-link.active {
    color: #fff;
    background: #e8c78d;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}
.events::before {
  content: "";
  background-color: rgba(12, 11, 10, 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: #e8c78d;
}
.events .event-item .price {
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}
.events .event-item .price span {
  border-bottom: 2px solid #e8c78d;
}
.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: #e8c78d;
}
.events .event-item p:last-child {
  margin-bottom: 0;
}
.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e8c78d;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}
.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;
  background: #fff;
  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 #18d26e;
  border-top-color: #eee;
  -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;
}
.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: #e8c78d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.book-a-table .php-email-form button[type=submit]:hover {
  background: #ffa012;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  padding-bottom: 0;
}
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs {
  background: url("../img/slider-2.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}
.chefs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0 0 0 / 68%);
  z-index: 9;
}
.chefs .container {
  position: relative;
  z-index: 10;
}
.chefs .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.chefs .member .pic {
  overflow: hidden;
}
.chefs .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #433f39;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.chefs .member h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 20px;
  color: #343434;
  position: relative;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.chefs .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 1px;
  /* background: #ff5a3c; */
  bottom: 0;
  left: calc(50% - 25px);
}
.chefs .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.chefs .member .social {
  margin-top: 15px;
}
.chefs .member .social a {
  transition: color 0.3s;
  color: #7a7368;
}
.chefs .member .social a:hover {
  color: #e8c78d;
}
.chefs .member .social i {
  font-size: 16px;
  margin: 0 2px;
}
@media (max-width: 992px) {
  .chefs .member {
    margin-bottom: 110px;
  }
}
@media (min-width: 1024px) {
  .chefs {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(12, 11, 10, 0.7);
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
  font-family: "Comic Neue", sans-serif;
}
.testimonials .testimonial-item .stars {
  color: #e8c78d;
  margin-bottom: 10px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  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 auto 15px auto;
  color: #eee;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e8c78d;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 50px 35px;
}
.contact .info {
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #ffffff;
  float: left;
  width: 44px;
  height: 44px;
  background: #ff5a3c;
  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: 600;
  margin-bottom: 5px;
  color: #433f39;
  font-family: "Poppins", sans-serif;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 16px;
  color: #5a5958;
margin-top: 12px;line-height: 23px;}
.contact .info:hover i {
  background: #ff5a3c;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 5px;
}
.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;
  background: #fff;
  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 #18d26e;
  border-top-color: #eee;
  -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: 16px;
}
.contact .php-email-form input {
  height: 45px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #e8c78d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #ffa012;
}
@-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 {
  background: #35322d;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}
#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #e8c78d;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 25px 0;
}
#footer .social-links {
  margin: 2px 0 0px 0;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #46423b;
  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 .social-links a:hover {
  background: #E8C78D;
}
#footer .copyright {
  margin: 0 0 5px 0;
}
#footer .credits {
  font-size: 13px;
}

img{width: 100%;}


.ltn__feature-item-3 {
    padding: 25px 22px 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 2px solid;
    border-color: #f4faff;
    margin-bottom: 20px;
    position: relative;
}

.ltn__feature-item-3::before {
    position: absolute;
    content: "";
    left: -2px;
    top: 50%;
    width: 4px;
    height: 0%;
    background-color: var(--ltn__secondary-color);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ltn__feature-item-3 .ltn__feature-icon {
    margin: 0px 20px 0 0;
    font-size: 50px;
    color: #ff5a3c;
    line-height: 1.5;
}

.ltn__feature-item-3 .ltn__feature-icon {
    margin: 0px 20px 0 0;
    font-size: 50px;
    color: #ff5a3c;
    line-height: 1.5;
}

.ltn__feature-item-3 .ltn__feature-icon {
    margin: 0px 13px 0 0;
    font-size: 25px;
    color: #ff5a3c;
    line-height: 1.5;
position: relative;top: -5px;}

i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
    font-family: flaticon !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.flaticon-house-4:before {
    content: "\f12e";
}

.ltn__feature-item-3 {
    padding: 10px 13px 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 1px solid;
    border-color: #e7e7e7;
    margin-bottom: 10px;
    position: relative;
width: 47%;float: left;margin-right: 1%;background: white;}

.ltn__feature-item-3:hover {
    -webkit-box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
    box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
}

.ltn__feature-item-3:hover::before {
    height: 80%;
    opacity: 1;
    visibility: visible;
}
.ltn__feature-item-3::before {
    position: absolute;
    content: "";
    left: -2px;
    top: 50%;
    width: 4px;
    height: 0%;
    background-color: #ff5a3c;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


.ltn__about-us-area h4{font-size: 17px;line-height: 24px !important;}


.section-title_2{font-size: 34px;margin-bottom: 25px;color: #1c1c1c;font-weight: 600;}


.call-to-action-inner-6 .btn-wrapper {
    margin-top: 0;
}
.btn-wrapper {
    display: block;
    margin-top: 30px;
}

.btn:last-child {
    margin-right: 0;
}
.btn-white {
    background-color: var(--white);
    color: var(--ltn__primary-color);
    -webkit-box-shadow: var(--ltn__box-shadow-3);
    box-shadow: var(--ltn__box-shadow-3);
}
.btn {
    border-radius: 0;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--ltn__heading-font);
    padding: 17px 40px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 1;
    margin-right: 15px;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}



/*---------------  start Btn layout 11    -----------------*/

.btn11 .dt-sc-button {
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    letter-spacing: 1.2px;
    margin: 0px 0px 0px;
    outline: none;
    position: relative;
    z-index: 1;
    font-weight: 400;
    font-size: 16px;
    padding: 14px 25px;
    color: #ffffff !important;
    background-color: #ff5a3c;
}

.btn11 .dt-sc-button:hover {
 background-color: #ff5a3c;
}

.btn11 .dt-sc-button.default:hover:before {
    right: 6px;
    top: 6px;
}
.btn11 .dt-sc-button.default:hover:before, .btn11 .dt-sc-button.default:hover:after {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}

.btn11 .dt-sc-button.default:hover:after {
    bottom: 6px;
    left: 6px;
}
.btn11 .dt-sc-button.default:hover:before, .btn11 .dt-sc-button.default:hover:after {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}
.btn11 .dt-sc-button.default:before {
    border-width: 0 0 2px 2px;
    bottom: -4px;
    left: -4px;
    right: 100%;
    top: 100%;
    border-color: #ff5a3c !important;
}
.btn11 .dt-sc-button.default:after {
    border-width: 2px 2px 0 0;
    bottom: 100%;
    left: 100%;
    right: -4px;
    top: -4px;
    border-color: #ff5a3c !important;
}
.btn11 .dt-sc-button.default:before, .btn11 .dt-sc-button.default:after {
    content: "";
    border-color: inherit;
    border-style: solid;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    visibility: hidden;
    -webkit-border-radius: inherit;
    border-radius: inherit;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
/*---------------  end Btn layout 11    -----------------*/



/*---------------  start Btn layout 11    -----------------*/

.btn12 .dt-sc-button {
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    letter-spacing: 1.2px;
    margin: 0px 0px 0px;
    outline: none;
    position: relative;
    z-index: 1;
    font-weight: 400;
    font-size: 16px;
    padding: 7px 20px;
    color: #ffffff !important;
    background-color: #e8c78d;
    border: none;
}

.btn12 .dt-sc-button:hover {
 background-color: #f1d29c;
  color: #e8c78d;
  /* border: 1px solid #e8c78d; */
}

.btn12 .dt-sc-button.default:hover:before {
    right: 6px;
    top: 6px;
}
.btn12 .dt-sc-button.default:hover:before, .btn12 .dt-sc-button.default:hover:after {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}

.btn12 .dt-sc-button.default:hover:after {
    bottom: 6px;
    left: 6px;
}
.btn12 .dt-sc-button.default:hover:before, .btn12 .dt-sc-button.default:hover:after {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}
.btn12 .dt-sc-button.default:before {
    /* border-width: 0 0 2px 2px; */
    /* bottom: -4px; */
    /* left: -4px; */
    /* right: 100%; */
    /* top: 100%; */
    /* border-color: #ff5a3c !important; */
}
.btn12 .dt-sc-button.default:after {
    /* border-width: 2px 2px 0 0; */
    /* bottom: 100%; */
    /* left: 100%; */
    /* right: -4px; */
    /* top: -4px; */
    /* border-color: #ff5a3c !important; */
}
.btn12 .dt-sc-button.default:before, .btn12 .dt-sc-button.default:after {
    /* content: ""; */
    /* border-color: inherit; */
    /* border-style: solid; */
    /* opacity: 0; */
    filter: alpha(opacity=0);
    /* position: absolute; */
    /* visibility: hidden; */
    /* -webkit-border-radius: inherit; */
    /* border-radius: inherit; */
    /* -webkit-transition: all 0.3s ease 0s; */
    /* transition: all 0.3s ease 0s; */
}
/*---------------  end Btn layout 11    -----------------*/







.time-table {
	width: 100%;
	margin: 0px 0 0px;
	border: 1px solid #dcdcdc;
	float: left;
}
.time-table th {
	background: #e8c78d;
	color: #fff;
	padding: 12px;
	border: 1px solid #fff;
	/* font-family: 'Poppins', sans-serif; */
	font-size: 17px;
	font-weight: 500;
}
.time-table td {
	border: 1px solid #e1e7e9;
	padding: 6px 20px;
	color: #3a3737;
	font-size: 17px;
	font-weight: 500;
}
.time-table tr:nth-child(even) {
	background: #e7c79178;
}


.time-table tr:nth-child(odd) {
	background: #fff;
}

.Price{}
.Price .section-title_2 {font-size: 36px;
    margin-bottom: 5px;
    color: #1c1c1c;
    font-weight: 600;}
.Price h4{font-size: 20px;
    line-height: 27px !important;}
	
	
	
#header.header-scrolled a{

color: black;}




#header.header-scrolled .navbar .active{color: #e8c78d;}


/*---------------  start  layout 219  -----------------*/


.layout-219 .contactUs-address h4 {
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 35px;
}
.layout-219 .contactUs-address {
  padding-left: 38px;
}
.layout-219 .contactUs-address>p {
  margin:-7px 0 30px 0;
}
.layout-219 .contactUs-address .single_address .icon .ficon:before {
  color:#e3e3e3;
  line-height: 60px;
  font-size: 37px;
}
.layout-219 .contactUs-address .single_address h6 {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.layout-219 .contactUs-address .single_address span {
  font-weight: 300;
}
.layout-219 .contactUs-address .single_address {
  margin-bottom: 35px;
}
.layout-219 .contactUs-address .single_address .text {
  padding-left: 26px;
  margin-top: 10px;
}
.layout-219 .contact-us-page {
  margin-bottom: 145px;
}

.layout-219 .any-question-wrapper {
  padding-right: 25px;
}
.layout-219 .any-question-wrapper h4 {
  font-size: 36px;
  line-height: 45px;
}
.layout-219 .any-question-wrapper>span {
  font-size: 20px;
  font-weight: 300;
  display: block;
  margin: 25px 0 35px 0;
}
.layout-219 .any-question-wrapper p b {
  font-weight: 500;
  color:#25292f;
}
.layout-219 .any-question-wrapper p a {
  font-weight: 500;
}
.layout-219 .any-question-wrapper p span {
  font-weight: normal;
  color:#292929;
}
.layout-219 .any-question-wrapper p {
  margin-bottom: 20px;
}
.layout-219 .contact-us-form h4 {
  font-size: 20px;
  line-height: 39px;
  margin-bottom: 20px;
text-align: center;padding: 10px 0px;}
.layout-219 .contact-us-form form {
  background: #f5f5f5;
  border:1px solid #f2f2f2;
  padding: 35px 35px 25px 35px;
  margin-bottom: 20px;
  text-align: center;
  }
.layout-219 .contact-us-form form .row {
  margin-left: -8px;
  margin-right: -8px;
}
.layout-219 .contact-us-form form .row [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}
.layout-219 .contact-us-form form input,
.layout-219 .contact-us-form form textarea {
  width: 100%;
  max-width: 100%;
  font-size: 16px;
  font-weight: 300;
  padding: 0 15px 0 25px;
  background: #fff;
  margin-bottom: 15px;
  border: 1px solid #0000001f;
}
.layout-219 .contact-us-form form input {
  height: 55px;
}
.layout-219 .contact-us-form form textarea {
  min-height: 146px;
  padding: 25px 15px 15px 25px;
}
.layout-219 .contact-us-form form input:focus,
.layout-219 .contact-us-form form textarea:focus {
  border-color:#fac800;
}
.layout-219 .contact-us-form form button {
  /* width: 112px; */
  line-height: 38px;
  font-weight: 500;
  font-size: 17px;
  color:#fff;
  border: 1px solid #e8c78d;
  padding: 0px 20px;
  }

.layout-219 .contact-us-form form input:focus, .layout-219 .contact-us-form form textarea:focus {
    border-color: #fac800;
}
.layout-219 .contact-us-form form input {
    height: 45px;
}
.layout-219 .p-color-bg{
	    background: #e8c78d;
}
/*---------------  end  layout 219 -----------------*/

.modal-header {
    display: block !important;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.box-1{background: #ff5a3c !important;padding: 20px 0px;}

.box-1 h4 {color: white !important;font-size: 21px !important;padding: 0px 0 0 25px !important;}


.box-1 p {color: white !important;padding: 0px 0 0 25px !important;}

.Contact .section-title_2{font-size: 36px;
    margin-bottom: 5px;
    color: #1c1c1c;
    font-weight: 600;}
.Contact h4{}


.ltn__category-item-5 {
    border: none;
    -webkit-box-shadow: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
    box-shadow: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
    border-radius: 10px;
    margin-bottom: 50px;
background: white !important;}
.ltn__category-item {
    margin-top: 2px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 1px solid var(--border-color-7);
    background-color: var(--white);
}

.ltn__category-item-5 a {
    padding: 40px 30px 35px;
    display: block;
    position: relative;
}

.ltn__category-item-5.text-center .category-icon {
    margin-left: auto;
    margin-right: auto;
}
.ltn__category-item-5 a .category-icon {
    width: 100px;
    height: 100px;
    line-height: 115px;
    font-size: 45px;
    border-radius: 100%;
    background-color: var(--section-bg-5);
    color: var(--ltn__secondary-color);
    text-align: center;
    margin-bottom: 20px;
}
.ltn__category-item-5 a span {
    display: block;
}
a i {
    padding: 0 2px;
}

.ltn__category-item-5 a .category-title {
    font-size: 21px;
    font-weight: 500;
    font-family: var(--ltn__heading-font);
    color: #464646;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-bottom: 10px;
}
.ltn__category-item-5 a span {
    display: block;
}

.ltn__category-item-5.text-center .category-btn {
    margin-left: auto;
    margin-right: auto;
}
.ltn__category-item-5 a .category-btn {
    width: 45px;
    height: 45px;
    line-height: 50px;
    background-color: #fff;
    display: block;
    border-radius: 100%;
    text-align: center;
    font-size: 18px;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #f6f6f6;
    position: absolute;
    bottom: -20px;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.ltn__category-item-5 a .category-icon {
    width: 100px;
    height: 100px;
    line-height: 101px;
    font-size: 45px;
    border-radius: 20%;
    background-color: #fff2f0;
    color: #ff5a3c;
    text-align: center;
    margin-bottom: 20px;
}

.ltn__category-item-5:hover {
    -webkit-box-shadow: 0 5px 20px 0 rgb(23 44 82 / 10%);
    box-shadow: 0 5px 20px 0 rgb(23 44 82 / 10%);
    background-color: #ff5a3c !important;
    color: #fff;
}
.ltn__category-item:hover {
    -webkit-box-shadow: 0 5px 20px 0 rgb(23 44 82 / 10%);
    box-shadow: 0 5px 20px 0 rgb(23 44 82 / 10%);
}

.ltn__category-item-5:hover .category-title {
    color: #fff !important;
}


.Amenities img {
    width: fit-content;
}


@media (max-width: 767px) {
	
.box-5 {
    clear: both;
    background: #ff5a3c;
    padding: 20px !important;
    width: 100% !important;
    color: white;
}
.box-5 h6 span {
    font-size: 27px !important;
    font-weight: 600;
    color: black;
}	
	
	
.mdisplay{
	display:none !important;
}

#hero h2 span {
    color: #ffffff;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
}
.section-title_2 {
    font-size: 25px;
    margin-bottom: 25px;
    color: #1c1c1c;
    font-weight: 600;
}
.about-us-img-wrap {    margin-top: 30px;margin-bottom: 30px;}


.ltn__feature-item-3 {
    padding: 10px 13px 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 1px solid;
    border-color: #e7e7e7;
    margin-bottom: 10px;
    position: relative;
    width: 100% !important;
    float: left;
    margin-right: 0% !important;
    background: white;
}

.contact .info i {
    font-size: 20px;
    color: #ffffff;
    float: left;
    width: 44px;
    height: 44px;
    background: #ff5a3c;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    display: none;
}
.contact .info h4 {
    padding: 0 0 0 0px !important;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #433f39;
    font-family: "Poppins", sans-serif;
}

.contact .info p {
    padding: 0 0 0 0px !important;
    margin-bottom: 0;
    font-size: 16px;
    color: #5a5958;
    margin-top: 12px;
    line-height: 23px;
    margin-bottom: 25px;
}

.layout-219 .contact-us-form form {
    background: #f5f5f500;
    border: 1px solid #f2f2f200;
    padding: 0px !important;
    margin-bottom: 20px;
}

.modal-body {
    position: relative;
    padding: 15px !important;
}

.Price .section-title_2 {
    font-size: 25px;
    margin-bottom: 5px;
    color: #1c1c1c;
    font-weight: 600;
}
.Contact .section-title_2 {
    font-size: 25px;
    margin-bottom: 5px;
    color: #1c1c1c;
    font-weight: 600;
}



.time-table {
    width: 100%;
    margin: 20px 0 30px;
    border: 1px solid #dcdcdc;
    float: left;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
	    border-collapse: collapse;
}
.layout-219 .contact-us-form h4 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 20px;
    text-align: center;
    padding: 10px 25px;
}
}


.whatsappWidget-1 {
    height: 3.7em;
    width: 3.7em;
    border-radius: 50%;
    z-index: 16;
    color: #fff;
    text-align: center;
    display: table;
    z-index: 100;
    transition-property: top;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
}
.widgetPosition-Bottom-Right-1 {
    position: fixed;
    bottom: 20%;/*suresh*/
    right: 8px;
}


.layout-219 .contact-us-form h4 span {

color: #e8c78d;
}

.modal-footer {
    display: block;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
    background: #e8c78d;
    text-align: center;
}

.modal-footer a{color: aliceblue;font-size: 17px;}


.box-5{clear: both;background: #ff5a3c;padding: 40px;width: 55%;color: white;}

.box-5 h4{font-size: 30px;}

.box-5 h5{font-size: 20px;color: black;}

.box-5 h6{font-size: 23px;}

.box-5 h6 span{font-size: 33px;font-weight: 600;color: black;}

/* ------------------------------------
    05. About Section CSS
---------------------------------------*/
.rs-about.style1 .about-img {
  position: relative;
}
.rs-about.style1 .about-img .working-experiance {
  position: absolute;
  width: 200px;
  max-width: 200px;
  bottom: 0;
  left: 2px;
  z-index: 1;
  padding: 50px 30px 30px 30px;
  background-color: #BB0B0B;
  border-radius: 0px 0px 0px 15px;
}
.rs-about.style1 .about-img .working-experiance .count-year .sub-text {
  font-size: 73px;
  font-weight: 800;
  color: #ffffff;
}
.rs-about.style1 .about-img .working-experiance .title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.rs-about.style2 {
  position: relative;
}
.rs-about.style2 .rs-animation .animate-style {
  position: absolute;
  right: 21%;
  bottom: 19%;
}
.rs-about.style2 .rs-animation .animate-style img {
  width: 130px;
}
.rs-about.style3 .accordion {
  border-width: 12px;
}
.rs-about.style3 .accordion .card {
  margin-bottom: 3px;
  border: none;
}
.rs-about.style3 .accordion .card:last-child {
  margin-bottom: 0;
}
.rs-about.style3 .accordion .card .card-header {
  padding: 0 !important;
  border: none;
  background: #fff;
  padding: 16px 2px 16px 2px !important;
}
.rs-about.style3 .accordion .card .card-header .card-link {
  color: #1273EB;
  font-weight: 700;
}
.rs-about.style3 .accordion .card .card-body {
  background: #f9f9f9;
  font-weight: 400;
  color: #454545;
  padding: 17px 65px 40px 22px !important;
  border: none;
}
.rs-about.style3 .accordion .card .card-header .card-link {
  position: relative;
  padding-left: 44px !important;
}
.rs-about.style3 .accordion .card .card-header .card-link:after {
  content: "\f078";
  font-family: FontAwesome;
  position: absolute;
  left: 20px;
  color: #0082f1;
  font-size: 15px;
  font-weight: 200;
  top: 50%;
  transform: translateY(-50%);
}
.rs-about.style3 .accordion .card .card-header .card-link.collapsed.card-link {
  color: #0a0a0a !important;
}
.rs-about.style3 .accordion .card .card-header .card-link.collapsed:after {
  content: "\f054";
  font-family: FontAwesome;
  color: #454545;
}
.rs-about.style3 .about-content {
  position: relative;
  z-index: 111;
}
.rs-about.style3 .about-content .rs-animations .spinner {
  position: absolute;
  bottom: 0;
  z-index: -11;
}
.rs-about.style3 .about-content .rs-animations .spinner.dot {
  top: -45px;
  left: -40px;
}
.rs-about.style3 .about-content .rs-animations .spinner.ball {
  bottom: -66px;
  left: -73px;
}
.rs-about.style4 .about-img {
  position: relative;
  z-index: 11;
}
.rs-about.style4 .about-img .animations {
  position: absolute;
  bottom: 0;
  z-index: -11;
}
.rs-about.style4 .about-img .animations.one {
  left: 16%;
  bottom: -77px;
}
.rs-about.style4 .about-img .animations.two {
  left: 26%;
  top: -6%;
}
.rs-about.style5 .left-side {
  position: relative;
}
.rs-about.style5 .left-side img {
  border-radius: 0 50px 0 0;
}
.rs-about.style5 .left-side .skill-tag {
  position: absolute;
  content: '';
  right: -50px;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translateY(-50%);
  border: 5px solid #ffffff;
  font-size: 16px;
  padding: 46px 20px;
  line-height: 24px;
  border-radius: 100%;
  text-align: center;
  background: #043d72;
  color: #ffffff;
  font-weight: 600;
}
.rs-about.style5 .left-side .skill-tag span {
  font-size: 30px;
  font-weight: 700;
}
.rs-about.style5 .left-side .left-pattern {
  position: absolute;
  content: '';
  left: -170px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.rs-about.style5 .services li {
  font-weight: 500;
  color: #454545;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  display: inline-block;
}
.rs-about.style5 .services li i {
  margin-right: 10px;
}
.rs-about.style5 .services li i:before {
  color: #043d72;
  font-size: 16px;
  font-weight: 700;
}
.rs-about.style5 .services li:last-child {
  margin-bottom: 0;
}
.rs-about.style5 .services li:hover {
  padding-left: 5px;
}
.rs-about.style5 .pattern-img .left-pattern {
  position: absolute;
  content: '';
  top: 20px;
  right: 0;
  z-index: -1;
}

/* ------------------------------------
    34. Animation Part CSS
---------------------------------------*/
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.move-y {
  animation: move-y 2s alternate infinite;
  -webkit-animation: move-y 2s alternate infinite;
}
@keyframes move-y {
  0% {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 10px, 0);
    -webkit-transform: translate3d(0, 10px, 0);
  }
}
.scale {
  animation: scale 2s alternate infinite;
}
@-webkit-keyframes scale {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.dance2 {
  -webkit-animation: dance2 4s alternate infinite;
}
@keyframes dance2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(15px, -15px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -15px, 15px);
  }
}
.up-down {
  animation: up-down 7s alternate infinite;
  -webkit-animation: up-down 7s alternate infinite;
}
@keyframes up-down {
  0% {
    transform: translateY(20px);
    -webkit-transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}
@-webkit-keyframes up-down {
  0% {
    transform: translateY(30px);
    -webkit-transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}
.spine {
  animation: spine 8s linear infinite;
}
@keyframes spine {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spine {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
.horizontal {
  animation-name: horizontal;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.horizontal.new-style {
  animation-duration: 15s;
}
@keyframes horizontal {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0);
  }
}
.vertical {
  animation-name: vertical;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.vertical.new-style {
  animation-duration: 15s;
}
@keyframes vertical {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeinup {
  animation-duration: 2s;
  animation-name: fadeInUp;
}
.fadeinup.new {
  animation-duration: 3s;
}
@keyframes fadeinup {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeinright {
  animation-duration: 3s;
  animation-name: fadeInRight;
}
@keyframes fadeinup {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.rotate_Y {
  animation: mymove 5s infinite;
}
@keyframes mymove {
  0% {
    transform: rotateY(-50deg);
  }
  100% {
    transform: rotateY(50deg);
  }
}
.rs-services.style6 .services-box-area .services-item:hover .dance_hover,
.rs-services.style4 .services-item:hover .dance_hover,
.rs-iconbox-area .box-inner .box-item:hover .dance_hover {
  animation-name: dance_hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
@keyframes dance_hover {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Draw Line Animation */
@keyframes start-draw {
  to {
    height: 95%;
  }
}
/* Infinite Rotation Animation */
@keyframes rotate-anim {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
/*Pulse Border Animation*/
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}


.sec-title3 .title {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    color: #0a0a0a;
    margin: 0;
}
.pb-25 {
    padding-bottom: 25px;
}
ul {
  list-style-image: url('../img/bullet.png');
}
.bullet {
  list-style-image: url('../img/bullet2.png');
}
.sec-title3 {
  position: relative;
}
.sec-title3 .sub-title {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fd4a36;
  display: block;
  margin: 0 0 10px;
}
.sec-title3 .sub-title.paste-color {
  color: #4caf50;
}
.sec-title3 .sub-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  color: #e8c78d;
  margin: 0 0 10px;
  display: block;
  position: relative;
  padding-left: 107px;
  font-family: 'Josefin Sans', sans-serif;
}
.sec-title3 .sub-text:before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  height: 4px;
  width: 12px;
  border-radius: 2px;
  background-color: #e8c78d;
  transition: all .3s ease;
  z-index: 0;
}
.sec-title3 .sub-text:after {
  content: "";
  position: absolute;
  border: 0;
  height: 4px;
  width: 55px;
  z-index: 1;
  margin-left: 0;
  left: 24px;
  top: 12px;
  border-radius: 2px;
  background-color: #e8c78d;
  transition: all .3s ease;
  z-index: 0;
}
.sec-title3 .title {
  font-size: 34px;
  font-weight: 600;
  line-height: 46px;
  color: #0a0a0a;
  margin: 0;
}
.sec-title3 .heading-border-line {
  position: relative;
}
.sec-title3 .heading-border-line:before {
  content: "";
  width: 12px;
  height: 4px;
  background: #2d3194;
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: -35px;
  transform: translateX(-50%);
  border-radius: 2px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 1;
}
.sec-title3 .heading-border-line:after {
  content: "";
  width: 65px;
  height: 4px;
  background: #fd4a36;
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 50%;
  margin-left: -20px;
  border-radius: 2px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 0;
}
.sec-title3 .heading-border-line.left-style {
  position: relative;
  margin-left: 44px;
}
.sec-title3 .heading-border-line.left-style:before {
  left: 0;
}
.sec-title3 .heading-border-line.left-style:after {
  left: 0;
}
.sec-title3:hover .sub-text:before {
  width: 65px;
  background: #e8c78d;
}
.sec-title3:hover .sub-text:after {
  margin-left: 46px;
  width: 12px;
  background: #e8c78d;
}
.sec-title3:hover .heading-border-line {
  position: relative;
}
.sec-title3:hover .heading-border-line:before {
  margin-left: -5px;
  width: 65px;
  background: #fd4a36;
}
.sec-title3:hover .heading-border-line:after {
  width: 12px;
  margin-left: 35px;
  background: #fd4a36;
}

p {
    margin-top: 0;
    margin-bottom: 10px !important;
    text-align: justify;
}

.p50{
    padding: 60px 0px;
}

.box_1{
    font-weight: 600;
    background: #f1f1f1;
    padding: 3px 20px 7px;
}

.p60{
    padding: 60px 0px;
    background: #f3f3f3;
}

.pb-20{padding-bottom: 10px;}

.pt21{
    margin-top: 50px!important;
}



.img5{
    border: 9px solid #fff;
    -webkit-box-shadow: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
    box-shadow: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
}



/*------------------------ start  Layout 44----------------*/

.bt-icon-4 {
    /* float: left; */
    margin: 15px 30px 0 0;
}

 .bt-icon-4 {
    -wekbit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border: 1px dashed #b5b5b5;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.bt-icon-4:before {
    -wekbit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px dashed #b5b5b5;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.bt-icon-4 i, .bt-icon-4 img {
    -wekbit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 46px;
    color: #3cc951;
    max-width: 56px;
    max-height: 56px;
    z-index: 9;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.bt-icon-4:after {
    -wekbit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: #ffffff;
    z-index: 3;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 5px 0 35px rgba(0,0,0,0.15);
    -ms-box-shadow: 5px 0 35px rgba(0,0,0,0.15);
    box-shadow: 5px 0 35px rgba(0,0,0,0.15);
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}


.bt-item-4:hover .bt-icon-4 {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.bt-item-4:hover .bt-icon-4:before {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.bt-item-4:hover .bt-icon-4:after {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.bt-content-4 .bt-title-4 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    color: #232323;
    margin-bottom: 0;
    /* padding-top: 47px; */
    font-weight: 600;
    /* background: #f1f1f1; */
    /* min-height: 130px; */
    /* border: 1px solid #e3e3e3; */
}
.bt-content-4 .bt-term-4 {
    font-size: 14px;
    line-height: 26px;
    margin-top: 8px;
}
.bt-content-4 .bt-term-4 a {

    color: #FF9800;
}
.bt-content-4 .bt-excerpt-4 {
    margin-top: 8px;
}
.bt-content-4 .bt-readmore-4 {
    display: inline-block;
    font-size: 14px;
    color: #3cc951;
    margin-top: 8px;
}



.bt-item-4:hover .bt-icon-4 i, .bt-item-4:hover .bt-icon-4 img {
    font-size: 32px;
    max-width: 36px;
    max-height: 36px;
}

.bt-item-4 .bt-icon-4 i, .bt-item-4 .bt-icon-4 img {
    -wekbit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 55px;
    color: #49c9e6;
    max-width: 50px;
    /* max-height: 50px; */
    z-index: 9;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}



@media screen and (max-width: 767px) {
.bt-icon-4 {
    float: none;
    margin: 15px 30px 0 0;
}
}

.bt-content-4{
    /* background: whitesmoke; */
    /* clear: both; */
}
.bt-item-4{
    text-align: center;
    margin-bottom: 40px;
}
/*------------------------ End  Layout 44----------------*/

.box_10{}
.box_10 .col-md-3{
    width: 20%;
}

.pb-35 {
    padding-bottom: 35px;
}


/* -----------------------------------------------------layout-5 Start------------------------------------------------------  */

.layout-5{}

.layout-5  {
    position: relative;
    padding: 60px 0px 60px;
    background: #f7f7f7;
}

.layout-5  .info-column {
    position: relative;
    margin-bottom: 0;
}

.layout-5  .info-column .infobox {
    position: relative;
    padding: 35px 35px 35px;
    background: #e8c78d;
    -webkit-box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.20);
    -ms-box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.20);
    z-index: 11;
}

.layout-5  .info-column .infobox .title-box {
    position: relative;
}

.layout-5  .info-column .infobox .title-box h3 {
    position: relative;
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3em;
    margin-bottom: 20px;
}

.layout-5  .info-column .infobox .title-box .title-text {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 8px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.80);
}

.layout-5  .info-column .infobox .social-links {
    position: relative;
}

.layout-5  .info-column .infobox .social-links li {
    position: relative;
    margin-right: 4px;
    margin-bottom: 5px;
    display: inline-block;
}

.layout-5  .info-column .infobox .social-links li a {
    position: relative;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 2px;
    display: inline-block;
    text-align: center;
    line-height: 43px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 1px solid rgba(255, 255, 255, 0.30);
}

.layout-5  .info-column .infobox .social-links li a:hover {
    color: #e8c78d;
    border-color: #ffffff;
    background-color: #ffffff;
}


/* Contact Info List */

.layout-5 .all-contact-list {
    position: relative;
    padding: 0;
    list-style: none;
}

.layout-5 .all-contact-list li {
    position: relative;
    margin-bottom: 20px;
    font-size: 17px;
    min-height: 50px;
    line-height: 1.8em;
    padding-left: 50px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
}

.layout-5 .all-contact-list li strong {
    font-weight: 500;
    font-size: 19px;
    display: block;
}

.layout-5 .all-contact-list li .fa {
    position: absolute;
    left: 0px;
    top: 8px;
    font-size: 26px;
    line-height: 1em;
}

.layout-5  .form-column {
    position: relative;
}

.layout-5  .form-column .inner-column {
    position: relative;
    padding-left: 60px;
}

.layout-5  .form-column .inner-column .row {
    margin: 0px -11px;
}

.layout-5  .form-column .inner-column .contact-form .form-group {
    padding: 0px 10px;
}


/* Contact Form */

.layout-5 .contact-form {
    position: relative;
    margin-bottom: 29px;
}

.layout-5 .contact-form .form-group {
    position: relative;
    margin-bottom: 22px;
}

.layout-5 .contact-form .form-group input[type="text"],
.layout-5 .contact-form .form-group input[type="number"],
.layout-5 .contact-form .form-group input[type="password"],
.layout-5 .contact-form .form-group input[type="tel"],
.layout-5 .contact-form .form-group input[type="email"],
.layout-5 .contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    color: #333333;
    line-height: 26px;
    padding: 9px 28px;
    height: 55px;
    font-size: 16px;
    border-radius: 2px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.layout-5 .contact-form .form-group input[type="text"]:focus,
.layout-5 .contact-form .form-group input[type="password"]:focus,
.layout-5 .contact-form .form-group input[type="tel"]:focus,
.layout-5 .contact-form .form-group input[type="email"]:focus,
.layout-5 .contact-form .form-group select:focus,
.layout-5 .contact-form .form-group textarea:focus {
    border-color: #FF3A46;
}

.layout-5 .contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 26px;
    padding: 10px 28px;
    color: #111111;
    height: 150px;
    /* font-size: 14px; */
    resize: none;
    border-radius: 2px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.layout-5 .contact-form input.error,
.layout-5 .contact-form select.error,
.layout-5 .contact-form textarea.error {
    border-color: #ff0000 !important;
}

.layout-5 .contact-form label.error {
    display: block;
    line-height: 24px;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: uppercase;
    font-size: 12px;
    color: #ff0000;
    font-weight: 500;
}

.layout-5 .google-map-area {
    position: relative;
    display: block;
    margin-top: -200px;
    margin-bottom: 100px;
}

.layout-5 #google-map {
    height: 400px;
    width: 100%;
}

.layout-5  .main-title-box {
    margin-bottom: 0px;
    margin-top: 20px;
}

.layout-5 .theme-button {
    background: #FF3A46;
    border: 0;
    color: #fff;
    padding: 5px 15px;
    font-size: 18px;
    border: 2px solid #FF3A46;
    border-radius: 20px;
    transition: all .5s ease;
    cursor: pointer;
    display: inline-block;
}

.layout-5  .info-column {
    position: relative;
    margin-bottom: 0;
    padding: 0px 15px;
}

.layout-5 .contact-form .form-group {
    position: relative;
    margin-bottom: 12px;
    padding: 0px 15px;
}

.layout-5 .small-title {
    font-size: 20px;
    text-transform: capitalize;
    color: #e8c78d;
    margin-bottom: 5px;
    margin-top: 0px;
    font-weight: 600;
}

.layout-5 .big-title {
    letter-spacing: 0px;
    padding-bottom: 13px;
    position: relative;
    color: #1c1c1c;
    line-height: 49px;
    font-size: 36px;
    /* text-transform: capitalize; */
    font-weight: 500;
}
.layout-5 ul{}
/* -----------------------------------------------------layout-5 End------------------------------------------------------  */

.contact-us-form{
    text-align: center;
}
.contact-us-form img{
    width: fit-content;
}

.ab{
    margin-top: 55px;
    padding-left: 30px !important;
}
.clients{}

.white{color: white !important;}

input:focus-visible {
    outline: white;
    border: 1px solid #e5e5e5 !important;
}

textarea:focus-visible {
    outline: white;
    border: 1px solid #e5e5e5 !important;
}



@media (max-width: 767px) {
	
.mdisplay{
	display:none !important;
}
.box_10 .col-md-3 {
    width: 50%;
}

.ab {
    margin-top: 25px;
    padding-left: 15px !important;
}

#header.header-scrolled .mobile-nav-toggle {
    /* top: 0; */
    /* background: rgb(255 255 255); */
    /* border-bottom: 1px solid #ddd; */
    color: black;
}


}

.Associates{}
.Associates img{
    border: 1px solid #e5e5e5;
    padding: 5px;
}


.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #e8c78d !important;
}
.owl-theme .owl-dots .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    margin: 25px 7px 0px !important;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}


/*------------------------ start  Layout 46----------------*/


.layout-45 .box22{
	
	
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	
-webkit-transition: all 0.3s;
	
transition: all 0.3s;
}


.layout-45 .box22:hover{
	
-webkit-transform: translateY(-10px);
	
-ms-transform: translateY(-10px);
	
transform: translateY(-10px);
	
box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
	
}
	
.layout-45 .c-content-feature-2 {
    padding: 25px 10px 25px 15px;
    margin-bottom: 20px;
    background: #e8c78d;
    text-align: center; 
    min-height: 130px;
    border-radius: 10px;
}
.layout-45 .box22 h3{display: inline-block !important;font-size: 18px;margin-bottom: 0px;display: block;line-height: 26px;color: white;margin-top: 0px;}
	/*.c-icon-wrapper{display:inline-block;}*/
	
	
	
.layout-45 .c-icon-wrapper {
    /* display: inline-block; */
    /* text-align: center; */
}
	
	
	
	.layout-45 .c-icon-wrapper img {
    /* display: block; */
    width: fit-content;
    margin-right: 10px;
}
	
	
	
	.layout-45{
    padding: 60px 0px;
   
}
	
	
/*------------------------ End  Layout 46----------------*/

/* --------------------------------------social_4 start---------------------------------- */

.social_4{}

.social_4 .social-link__block a {
	    color: #fff;
	    display: inline-block;
	    width: 35px;
	    height: 35px;
	    line-height: 35px;
	    text-align: center;
	    margin-top: 2px;
	    position: relative;
	    z-index: 2;
	    /* padding-bottom: 9px; */
}
.social_4 .social-link__block a:hover {
	    color: #fff !important;

}
.social_4 .social-link__block a.facebook  {
    background-color: #3a6bb1;
}
.social_4 .social-link__block a.twitter  {
    background-color: #0ec8f5;
}
.social_4 .social-link__block a.google-plus  {
    background-color: #f2623b;
}
.social_4 .social-link__block a.linkedin  {
    background-color: #0094d3;
}
.social_4 .social-link__block a:after{
	    content: '';
    position: absolute;
    background-color: #364c61;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scaleY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.social_4 .social-link__block a:hover:after	{
    opacity: 1;
     transform: scaleY(1);
	  color: #ff9956;
}

.social_4 i {
    color: #ffffff !important;
    line-height: 0;
}
.social_4{}
.t20{
    padding-top: 7px;
}
/* --------------------------------------social_4 End---------------------------------- */
.rera_1{
    margin-top: 30px;
    text-align: center;
    /* background: white; */
}
.rera{
    font-size: 25px;
    /* padding-top: 10px; */
    font-weight: 400;
    color: #ffffff;
    background: #e8c78d;
    padding: 5px 50px;
    /* font-family: 'Josefin Sans', sans-serif; */
}

.qr{}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 15px !important;
    height: 15px !important;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #ffffff !important;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

.carousel-indicators .active {
    /* width: 12px; */
    /* height: 12px; */
    /* margin: 0; */
    background-color: #fff; opacity:1% !important;
}



@media (max-width: 767px) {
	
.mdisplay{
	display:none !important;
}

.rera {
    font-size: 25px;
    /* padding-top: 10px; */
    font-weight: 400;
    color: #ffffff;
    line-height: 30px;
    background: #e8c78d;
    padding: 0px;
    font-family: 'Josefin Sans', sans-serif;
}

.rera_1 {
    margin-top: 0px;
    text-align: center;
    background: #e8c78d;
    padding: 15px;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0px !important;
    right: 0;
}
#hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 155px !important;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 155px !important;
}

#hero .carousel-item {
    width: 100%;
    height: 300px!important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#hero {
    width: 100%;
    height: 455px !important;
    background-color: rgba(39, 37, 34, 0.8);
    overflow: hidden;
    padding: 0;
}
#hero .carousel-content {
    /* text-align: center; */
    padding-top: 15px;
}

.bi-x{
    color: white;
}
.sec-title3 .title {
    font-size: 25px;
    font-weight: 600;
    line-height: 36px;
    color: #0a0a0a;
    margin: 0;
}

.time-table td {
    border: 1px solid #e1e7e9;
    padding: 6px 20px;
    color: #3a3737;
    font-size: 17px;
    font-weight: 500;
    min-width: 150px;
}

}


@media (max-width: 767px) {
	
.mdisplay{
	display:none !important;
}

}


@media (min-width: 768px) {
.mdisplay-big{
	    display: none !important;
}

}

.box_2 {
    font-weight: 600;
    background: #ffffff;
    padding: 5px 12px 5px;
}

.p55{
    margin-top: 0px;
    background: white;
    padding: 70px 50px !important;
    border: 1px solid #dfdfdf;
}

.p56{
    margin-top: 0px;
    background: white;
    padding: 33px 35px !important;
    border: 1px solid #dfdfdf;
}



@media only screen and (min-width: 1200px) and (max-width: 1399px) {
#hero {
    width: 100%;
    height: 1000px;
    background-color: rgba(39, 37, 34, 0.8);
    overflow: hidden;
    padding: 0;
}
#hero .carousel-item {
  width: 100%;
  height: 1000px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 70px;
}
}


@media only screen and (min-width: 1400px) and (max-width: 2000px) {

#hero {
    width: 100%;
    height: 1000px;
    background-color: rgba(39, 37, 34, 0.8);
    overflow: hidden;
    padding: 0;
}
#hero .carousel-item {
  width: 100%;
  height: 1000px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 140px;
}
}


.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
    display: none !important;
}

.r1{
    text-align: center;
}

.fs1{font-family: 'Noto Sans', sans-serif;}

.om{font-family: 'Noto Sans', sans-serif;font-size: 42px;line-height: 50px;position: relative;top: 5px;} 


.om1{font-family: 'Noto Sans', sans-serif;font-size: 22px;/* line-height: 50px; */position: relative;top: 3px;} 

.om2{font-family: 'Noto Sans', sans-serif;font-size: 24px;/* line-height: 50px; */position: relative;top: 3px;} 