
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;1,100;1,400&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300&amp;display=swap');


/* Fonts */
:root {
  --font-default: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Cormorant Garamond", sans-serif;
  --font-secondary: "Lato", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #970224;
  --color-secondary: #212529;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
   color: white;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 80px;
}

.section-header h2 {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: Bold;

  letter-spacing: 1px;

  margin: 0;
  padding: 0;
  text-transform: uppercase;

}

.section-header p {
  margin: 0;
   font-family: var(--font-primary);
  font-size: 36px;
  font-weight: Bold;


}

.section-header p span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
 
   margin-top: 90px;
   background: url("../img/inner-banner.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0;
}


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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  color:#fff;

  
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
   color:#fff;
   align-items: center;
  justify-content: center;
}

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

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

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

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  border-bottom: 1px solid #fff;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
 /*  margin-left: 30px; */

/*   border-radius: 50px; */
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(168, 6, 43, 1);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1024px) {
  .navbar {
    padding: 0;
	text-transform: uppercase;
  }

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

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
   padding:4px 10px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:4px 10px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #2a2a2a;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

/*   .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  } */

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
   color: white !important;
	 background: var(--color-primary); 
	padding:4px 10px;
  }

  
  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 30px;
    bottom: -0px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
	z-index:-99;
  } 

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    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: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .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: var(--color-primary);
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

@media (min-width: 1024px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

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

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  min-height: 500px;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

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

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

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

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.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(206, 18, 18, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

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

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

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

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-secondary);
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/slider.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;
}

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

#hero h1 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 76px;
  font-weight: Bold;
  color: #fff;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 18px;
}

#hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: var(--color-primary);
 /*  border: 2px solid #e03a3c; */
}

#hero .btn-get-started:hover {
  background: #fff;
   color: #2c2c2c;
 /*  border-color: #fff; */
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 58px;
  }

  #hero h1 {
    font-size: 28px;
  }

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

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

#hero img {padding:20px 0; width:100%;}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #1f1f24;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}
.footer img  {
 height:100px;
 padding-bottom:10px;
}


.footer .icon {
  margin-right: 15px;
  font-size: 18px;
  line-height: 0;
}

.footer h4 {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
  color: #fff;
   font-family: var(--font-primary);
}

.footer .footer-links {
  margin-bottom: 30px;
   font-size: 16px;
}

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

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

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

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

@media (max-width: 575px) {
	
	.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  padding: 4px 8px;
  margin-left: 00px !important;

/*   border-radius: 50px; */
  transition: 0.3s;
}
	
	.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
 /*  padding: 5px 9px; */
  transition: 0.3s;

}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(168, 6, 43, 1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}
}


/**  Wide Section Wrapper 1 **/
.ws-feature-bx-left {
    background-image: url("../img/menu-home.jpg");
    height: 750px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
     position: relative;
}
.ws-feature-bx-right {
    /* background-image: url("http://quickdevs.com/templates/agroly/images/common/vector-bg-1.jpg"); */
    height: 750px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-top: 80px;
    margin-left: -120px;
}
.ws-feature-bx-right:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
   
}
.feature-bx-right-content {
    margin: 0;
    position: absolute;
    top: 40%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 80%;
    padding-left: 60px;
	padding-right: 60px;
	 background-color:#fff;
	box-shadow: 0.1px 0.1px 40px 1px rgb(0 0 0 / 18%);
	
}


@media (max-width: 768px) 
{
	.ws-feature-bx-left {
    background-image: url("../img/menu-home.jpg");
    height: 850px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
     position: relative;
}
.ws-feature-bx-right {
  
    height: 850px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-top: 80px;
    margin-left: -80px;
}
.ws-feature-bx-right:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
   
}
.feature-bx-right-content {
    margin: 0;
    position: absolute;
    top: 40%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 90%;
    padding-left: 40px;
	padding-right: 40px;
	 background-color:#fff;
	box-shadow: 0.1px 0.1px 40px 1px rgb(0 0 0 / 18%);
	
}
	
}
	
	
	@media (max-width: 575px) 
	{
	.ws-feature-bx-left {
    background-image: url("../img/menu-home.jpg");
    height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
     position: relative;
}

.ws-feature-bx-right {
   
    min-height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-top: 0px;
    margin-left: 0px;
}
.ws-feature-bx-right:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
   
}
.feature-bx-right-content {
    margin: 0;
    position: absolute;
    top: 40%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
   padding: 20px;
	 background-color:#fff;
	box-shadow: 0.1px 0.1px 40px 1px rgb(0 0 0 / 18%);
	
}
}


/**  Wide Section Wrapper 2 **/
.ws-feature-bx2-left {
    background-image: url("../img/menu-home2.jpg");
    height: 750px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
     position: relative;
}
.ws-feature-bx2-right {
   
    height: 750px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-top: 80px;
   /*  margin-left: -120px; */
}
.ws-feature-bx2-right:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
   
}
.feature-bx2-right-content {
    margin: 0;
    position: absolute;
    top: 40%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    padding-left: 60px;
	padding-right: 60px;
	 background-color:#fff;
	box-shadow: 0.1px 0.1px 40px 1px rgb(0 0 0 / 18%);
	 margin-left: 150px;
	
}


@media (max-width: 768px) {
.ws-feature-bx2-left {
    background-image: url("../img/menu-home2.jpg");
    height: 1050px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
     position: relative;
}
.ws-feature-bx2-right {
   
    height: 850px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-top: 80px;
   /*  margin-left: -120px; */
}
.ws-feature-bx2-right:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
   
}
.feature-bx2-right-content {
   /*  margin: 0; */
    position: absolute;
    margin-top: 110px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    padding-left: 40px;
	padding-right: 40px;
	 background-color:#fff;
	box-shadow: 0.1px 0.1px 40px 1px rgb(0 0 0 / 18%);
	 margin-left: 50px;
	
}	
	
}
@media (max-width: 575px) {
	
	.ws-feature-bx2-left {
    background-image: url("../img/menu-home2.jpg");
    height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
     position: relative;
}

.ws-feature-bx2-right {
   
    height: 750px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-top: 0px;
    margin-left: 0px;
}
.ws-feature-bx2-right:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
   
}
.feature-bx2-right-content {
    margin: 0;
    position: absolute;
    top: 40%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
	padding: 20px;
	 background-color:#fff;
	box-shadow: 0.1px 0.1px 40px 1px rgb(0 0 0 / 18%);
	
}

.m1 { display: flex; flex-flow: column; }
    .o2 { order: 1; }
    .o1 { order: 2; }
   
}

}



.layer-box {
    padding: 15px;
    margin: 20px 0px;
}

.layer-box .media .media-body h3 {
    margin-bottom: 0px;
    font-weight: 600;
    color: #333;
}
.layer-box .media .media-body p {
    font-size: 13px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 0px;
}

.wrap-menu {
  display: table;
  width: 100%;
 
}
.wrap-menu .category-item {
  margin: 0 auto;
  text-align: left;
  font-size: 30px;
  font-weight:bold;
  font-family: var(--font-primary);
  color: #212529;
  padding:30px 0;
}
.wrap-menu .category-item .ic-cate {
  display: inline-block;
  width: 235px;
  height: 27px;
}
.wrap-menu .row-menu-wrap {
  margin-bottom: 20px;
}
.wrap-menu .row-menu-wrap .row-menu {
  display: table-row;
}
.wrap-menu .row-menu-wrap .row-menu .item-menu {
  display: table-cell;
  width: 100%;
  font-size: 20px;
  font-style: italic;
  font-weight:500;
 font-family: var(--font-secondary);
  color: var(--color-secondary);
}
.wrap-menu .row-menu-wrap .row-menu .item-prise {
  display: table-cell;
  font-size: 20px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
}
.gold-line {
  display: inline-block;
  width: 100%;
  height: 1px;
  margin-bottom: 8px;
  background-color: rgba(76,75,68,0.49);
}
.item-descr {
  color: #4c4b44;
    font-family: "Lato", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;


}

.btn-get-started {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
 /*  border: 2px solid #e03a3c; */
  border: 1px solid var(--color-primary);
}

.btn-get-started:hover {
  background: #fff;
   color: #2c2c2c;
   border: 1px solid #333;
}

.icons  img{
    height: 24px;
	width:24px;
	
	
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  background: url("../img/testimonial-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
  z-index:-999;
}

/* .testimonials:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */
.testimonials .about-img {
  min-height: 500px;
}

.testimonials h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}



.testimonials .section-header h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: Bold;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
	Color:#fff;
	z-index:999;
}
	
	
.testimonials-box { margin-bottom:100px; margin-top: -120px; }
.testimonials-box h4{ font-size:18px; text-align:center;   font-family: var(--font-primary); font-weight:600;}

.box { background:#fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	padding:30px;
	
	z-index:99;
	height:100%;
	
	}
	
	.box i{ font-size:40px; Color:var(--color-primary);}
	
	.center {
  text-align: center;
 
}

.abt-text { background:#fff; padding:30px;  z-index:999; margin-left:-200px; margin-top:50px; }

.abt-text h4 { font-size:18px; font-family: var(--font-secondary);  color: var(--color-primary); font-style: italic;font-weight:600}

.abt-text h2 { font-size:36px; font-family: var(--font-primary);  color: var(--color-default); font-weight:600 }

@media screen and (max-width: 768px) {
	.abt-text { background:#fff; padding:30px 0 0 0;  z-index:999; margin-left:0px; margin-top:0px; }
	
}

.contact-txt { background:var(--color-primary); padding:70px; margin-left:-200px; margin-top:40px;  color: #fff; min-height:260px; }

.contact-txt h2 { font-size:26px; font-family: var(--font-primary);  color: #fff; font-weight:600 }

/* 
.contact-box { padding-bottom:10px;  }
.contact-box i {Color:#fff; 
  font-size:28px;}
  
  .contact-box span {padding-left:20px;  padding-bottom:10px; margin-top:-10px;} */
  
  
  .contact-box {

  padding-top:20px;
   font-size: 16px;
}

  .contact-box  ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

  .contact-box  ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  
}
  .contact-box  ul li:first-child {
  padding-top: 0;
}

  .contact-box  ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

  .contact-box  ul a:hover {
  color: #fff;
}

  .contact-box  ul i {font-size:30px; padding-right:15px; }
  
  @media screen and (max-width: 768px) {
	  .contact-txt { background:var(--color-primary); padding:50px; margin-left:00px; margin-top:40px;  color: #fff; min-height:260px; }
  }
  
  


.main .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.main .card {
  color: #252a32;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #ffffff;
}
.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .main .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}

.hd { background:var(--color-primary);  }
.hd h4{ font-size:24px; color:#fff; text-align:center;padding:10px;font-family: var(--font-primary);font-weight:600 }

.sidemenu {background:#F3F3F3; margin:0px; padding:0px; box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;  margin-bottom:30px; }

.sidemenu  ul {
  list-style: none;
  padding: 20px 30px;
  margin: 0;
}

  .sidemenu  ul li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  font-weight:600;
   border-bottom: 1px solid #dfdfdf;
  
}
  .sidemenu  ul li:first-child {
  padding-top: 0;
}

  .sidemenu  ul a {
  color: #333;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.sidemenu  ul a:hover {
  color: var(--color-primary);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.side-2 { padding:0 30px 0 30px;}

.mt-50 { margin-top:50px;}

.pb-30 { padding-bottom:30px;}

.hd-top{z-index:9 !important;}

