:root {
  --primary_color: #0b5962;
  --secondary_color: #b22725;
}

body,
html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 23px;
  background: #fff;
}

body.noScroll {
  overflow: hidden;
}

h2 {
  font-size: 50px;
  margin-bottom: 22px;
}
h2 span {
  font-weight: 200;
}

p {
  line-height: 34px;
  margin-bottom: 40px;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.btn {
  font-size: 24px;
}

header {
  background-color: var(--secondary_color);
  height: 150px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  transition: height 0.5s ease;
}
header .logo_wrap img {
  max-width: 170px;
  transition: max-width 0.5s ease;
}
header .btn {
  font-size: 20px;
  transition: font-size 0.5s ease;
}
header .hamburger_btn {
  position: relative;
  float: right;
  height: 27px;
  width: 46px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
header .hamburger_btn:hover {
  opacity: 0.7;
}
header .hamburger_btn.active {
  opacity: 0.2;
}
header .hamburger_btn span {
  background: #fff;
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
  border-radius: 0.2rem;
}
header .hamburger_btn span:nth-of-type(2) {
  top: 11px;
}
header .hamburger_btn span:nth-of-type(3) {
  top: 22px;
}

header.scrolled {
  transition: height 0.5s ease;
  height: 100px;
}
header.scrolled .logo_wrap img {
  max-width: 90px;
  transition: max-width 0.5s ease;
}
header.scrolled .btn {
  font-size: 18px;
  transition: font-size 0.5s ease;
  padding: 6px 20px;
}

.btnFill {
  color: #fff;
  border: 1px solid var(--secondary_color);
  border-radius: 5px;
  padding: 10px 20px;
  background: var(--secondary_color);
}
.btnFill:hover, .btnFill:focus, .btnFill:active {
  background: #fff;
  color: var(--secondary_color);
  border-color: var(--secondary_color);
}

.btn.btnOutline {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px 20px;
}
.btn.btnOutline:hover, .btn.btnOutline:focus {
  background: #fff;
  color: var(--secondary_color);
  border-color: var(--secondary_color);
}

.btn.btnOutline_black {
  color: #000;
  border-color: #000;
}

.btn.btnOutline_brand {
  color: var(--secondary_color);
  border-color: #000;
}

.nav-menu {
  position: fixed;
  background-color: rgba(178, 39, 37, 0.9411764706);
  top: 0;
  right: 0;
  width: 0px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  z-index: 120;
}
.nav-menu.open {
  opacity: 9;
  visibility: visible;
  width: 400px;
}
.nav-menu.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.nav-menu.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.nav-menu.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.nav-menu.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
.nav-menu.open li:nth-of-type(5) {
  animation-delay: 0.6s;
}
.nav-menu.open li:nth-of-type(6) {
  animation-delay: 0.75s;
}
.nav-menu.open li:nth-of-type(7) {
  animation-delay: 0.8s;
}
.nav-menu nav {
  position: relative;
  height: calc(100% - 80px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  text-align: right;
  display: flex;
  justify-content: right;
  align-items: center;
  padding-right: 48px;
}
.nav-menu ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  position: relative;
}
.nav-menu ul li {
  display: block;
  position: relative;
  opacity: 0;
}
.nav-menu ul li.active a:after, .nav-menu ul li.active a:hover:after, .nav-menu ul li.active a:focus:after, .nav-menu ul li.active a:active:after {
  width: 100%;
}
.nav-menu ul li a {
  display: inline-block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.nav-menu ul li a:hover:after, .nav-menu ul li a:focus:after, .nav-menu ul li a:active:after {
  width: 100%;
}
.nav-menu ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 2px;
  background: #fff;
  transition: 0.35s;
}
.nav-menu .navClosebtn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 50px;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  line-height: 30px;
}
.nav-menu .navClosebtn:hover {
  opacity: 9;
}

.page_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 110;
  transition: opacity 5s ease-out;
}

.page_overlay.open {
  display: block;
  transition: opacity 5s ease-out;
}

.pageSpace {
  padding-top: 150px;
  transition: padding-top 0.5s ease;
}

.pageSpace.smallBanner {
  padding-top: 100px;
  transition: padding-top 0.5s ease;
}

.bannerWrap .carousel .carousel-inner .carousel-item img.carousel_bg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 800px;
  min-height: 300px;
}
.bannerWrap .carousel .carousel-inner .carousel-item .carousel-caption {
  max-width: 1186px;
  margin: 0 auto;
  position: absolute;
  bottom: auto;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
}
.bannerWrap .carousel .carousel-inner .carousel-item .carousel-caption img {
  max-width: 100%;
}

.bannerWrap.innBannerWrap .carousel .carousel-inner .carousel-item img.carousel_bg {
  max-height: 400px;
}

.sectionSpace {
  padding: 100px 0;
}

.pattern_right::before {
  right: 0px;
}

.pattern_left::before {
  left: 0px;
}

.aboutSection {
  background: #d2c5b9;
  position: relative;
}
.aboutSection::before {
  content: " ";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  background-image: url("../images/pattern-1.jpg");
  background-repeat: repeat;
  z-index: 1;
  background-attachment: fixed;
}
.aboutSection .about_contant {
  padding-right: 48px;
  text-align: justify;
  position: relative;
  z-index: 10;
}
.aboutSection .about_contant h2 {
  line-height: 40px;
}
.aboutSection .about_contant img {
  max-width: 100%;
}
.aboutSection .about_contant img.title_logo {
  margin-left: -10px;
}
.aboutSection .about_img_holder {
  position: relative;
  z-index: 10;
  padding-left: 48px;
  height: 100%;
  padding-bottom: 40px;
}
.aboutSection .about_img_holder img {
  max-width: 100%;
  width: 100%;
}

.chefSection {
  background: #13494e;
  position: relative;
  color: #FFF;
}
.chefSection::before {
  content: " ";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  background-image: url("../images/pattern-2.jpg");
  background-repeat: repeat;
  background-position: right;
  background-attachment: fixed;
  z-index: 1;
}
.chefSection .chef_img_holder {
  position: relative;
  z-index: 10;
  padding-right: 10px;
  margin-left: -32px;
}
.chefSection .chef_img_holder img {
  max-width: 100%;
}
.chefSection .chef_img_holder.sticky-top {
  position: sticky;
  top: 100px;
}
.chefSection .chef_contant {
  padding-left: 48px;
  text-align: justify;
  position: relative;
  z-index: 10;
}
.chefSection .chef_contant h2 {
  color: #d2c5b9;
}
.chefSection .chef_contant h2 span {
  color: #fff;
}
.chefSection .chef_contant .btn.btnOutline {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px 20px;
}
.chefSection .chef_contant .btn.btnOutline:hover, .chefSection .chef_contant .btn.btnOutline:focus, .chefSection .chef_contant .btn.btnOutline:active {
  background: #fff;
  color: #13494e;
  border-color: #13494e;
}

.menuSection {
  background: #b03e36;
  position: relative;
}
.menuSection::before {
  content: " ";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  background-image: url("../images/pattern-3.jpg");
  background-repeat: repeat;
  z-index: 1;
  background-attachment: fixed;
}
.menuSection .menu_box {
  background: #d2c5b9;
  position: relative;
  z-index: 10;
  padding: 68px 0 68px 68px;
}
.menuSection .menu_box .menu_img_holder {
  padding-left: 10px;
  height: 100%;
}
.menuSection .menu_box .menu_img_holder img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menuSection .menu_box .menu_contant {
  padding-right: 48px;
  text-align: justify;
}
.menuSection .menu_box .menu_contant h2 {
  color: #b22217;
}
.menuSection .menu_box .menu_contant h2 span {
  color: #050505;
}
.menuSection .menu_box .menu_contant .btnHolder {
  padding-top: 40px;
}
.menuSection .menu_box .menu_contant .btnHolder .btn + .btn {
  margin-left: 15px;
}
.menuSection .menu_box .menu_contant .btnHolder button + button {
  margin-left: 15px;
}

.homeLocSection {
  background: #d2c5b9;
  position: relative;
}
.homeLocSection::before {
  content: " ";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  background-image: url("../images/pattern-1.jpg");
  background-repeat: repeat;
  z-index: 1;
  background-attachment: fixed;
}
.homeLocSection .homeLoc_contant {
  padding-right: 48px;
  position: relative;
  z-index: 10;
}
.homeLocSection .homeLoc_contant h2 {
  color: var(--primary_color);
}
.homeLocSection .homeLoc_contant a {
  color: #212121;
  text-decoration: none;
  word-wrap: break-word;
}
.homeLocSection .homeLoc_contant a:hover {
  color: var(--primary_color);
}
.homeLocSection .homeLoc_contant address {
  white-space: pre-line;
}
.homeLocSection .homeLoc_contant .locLogoHolder img {
  max-width: 100%;
}
.homeLocSection .social_media_icons {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  text-align: center;
  padding-top: 100px;
}
.homeLocSection .social_media_icons a {
  margin: 0 5px;
}
.homeLocSection .social_media_icons img {
  max-width: 50px;
}
.homeLocSection .google_maps_wrap {
  padding-left: 48px;
  height: 100%;
  position: relative;
  z-index: 10;
}
.homeLocSection .google-maps {
  position: relative;
  height: 0;
  overflow: hidden;
  box-shadow: 12px 12px 29px -15px rgba(0, 0, 0, 0.23);
  height: 100%;
}
.homeLocSection .google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.homeLocSection .contactForm h4 {
  color: var(--primary_color);
  font-size: 24px;
}
.homeLocSection .contactForm h4 span {
  font-weight: 200;
}
.homeLocSection .contactForm .form-control {
  background: none;
  border-color: #575757;
  font-size: 18px;
}

.inStorySection {
  background: #b03e36;
  position: relative;
}
.inStorySection::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: url("../images/pattern-3.jpg");
  background-repeat: repeat;
  z-index: 1;
  background-attachment: fixed;
}
.inStorySection .inStoryContent {
  position: relative;
  z-index: 10;
  color: #fff;
  background-color: rgba(11, 89, 98, 0.87);
  padding: 68px;
}
.inStorySection .inStoryContent p {
  text-align: justify;
}

.inAboutSection .inAbout_img_holder {
  position: relative;
  z-index: 10;
  padding-left: 48px;
}

.btnIcon {
  width: 30px;
  height: 30px;
}

.img_card_section {
  position: relative;
  background-color: var(--primary_color);
  color: #fff;
}
.img_card_section::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: url("../images/pattern-2.jpg");
  background-repeat: repeat;
  background-position: right;
  background-attachment: fixed;
  z-index: 1;
}
.img_card_section .carousel_content {
  position: relative;
  z-index: 10;
}
.img_card_section .img_block {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #d2c5b9;
}
.img_card_section .img_block img {
  transition: all 0.6s linear 0s;
}
.img_card_section .img_block:hover {
  border-radius: 15px;
}
.img_card_section .img_block:hover img {
  border-radius: 15px;
  transform: scale(1.05);
  transition: all 0.6s linear 0s;
}
.img_card_section .gallery_content {
  position: relative;
  z-index: 10;
}
.img_card_section .gallery_content .img_block {
  margin: 12px 0;
}
.img_card_section .gallery_content img {
  display: block;
  width: 100%;
}

.ratio {
  background-color: transparent !important;
}

footer {
  background-color: var(--secondary_color);
  padding: 22px 0;
}
footer .copyright_info {
  font-size: 17px;
  color: #fff;
}
footer .footer_menu ul {
  list-style-type: none;
  margin: 12px 0 0 0;
  padding: 0;
}
footer .footer_menu ul li {
  display: inline-block;
  font-size: 17px;
  margin-right: 50px;
}
footer .footer_menu ul li.active a:after, footer .footer_menu ul li.active a:hover:after, footer .footer_menu ul li.active a:focus:after, footer .footer_menu ul li.active a:active:after {
  width: 100%;
}
footer .footer_menu ul li a {
  display: inline-block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
footer .footer_menu ul li a:hover:after, footer .footer_menu ul li a:focus:after, footer .footer_menu ul li a:active:after {
  width: 100%;
}
footer .footer_menu ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 2px;
  background: #fff;
  transition: 0.35s;
}
footer .btn.btnOutline {
  font-size: 17px;
  padding: 8px 15px;
}

/* wobble */
@keyframes wobble {
  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);
  }
}
.wobble {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.wobble:hover,
.wobble:focus,
.wobble:active {
  animation-name: wobble;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* wobble */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@media (max-width: 1920px) {
  .bannerWrap .carousel .carousel-inner .carousel-item img.carousel_bg {
    max-height: 600px;
  }
}
@media (max-width: 1600px) {
  .bannerWrap .carousel .carousel-inner .carousel-item img.carousel_bg {
    max-height: 500px;
  }
  .bannerWrap .carousel .carousel-inner .carousel-item .carousel-caption img {
    max-width: 80%;
  }
  p {
    line-height: 38px;
    margin-bottom: 30px;
  }
  .btn {
    font-size: 18px;
  }
  .btnIcon {
    width: 22px;
    height: 22px;
  }
  .aboutSection .about_contant h2 {
    line-height: 64px;
  }
  .aboutSection .about_contant img.title_logo {
    max-width: 280px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1186px;
  }
}
@media (max-width: 1199px) {
  .bannerWrap .carousel .carousel-inner .carousel-item img.carousel_bg {
    max-height: 450px;
  }
  .bannerWrap .carousel .carousel-inner .carousel-item .carousel-caption img {
    max-width: 70%;
  }
  body {
    font-size: 18px;
  }
  h2 {
    font-size: 48px;
    margin-bottom: 22px;
  }
  p {
    line-height: 28px;
    margin-bottom: 30px;
  }
  .aboutSection .about_contant h2 {
    line-height: 48px;
  }
  .aboutSection .about_contant img.title_logo {
    max-width: 220px;
  }
  .aboutSection .about_img_holder img {
    max-height: 500px;
  }
  .chefSection .chef_contant h2 {
    font-size: 48px;
  }
  .chefSection .chef_img_holder {
    margin-left: -25px;
    padding-right: 0;
  }
  .inStorySection .inStoryContent {
    padding: 48px;
  }
}
@media (max-width: 1024px) {
  .nav-menu nav {
    font-size: 18px;
  }
  .nav-menu nav .btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 7px;
  }
}
@media (max-width: 991px) {
  header {
    height: 116px;
  }
  header .logo_wrap img {
    max-width: 140px;
  }
  header .btn.btnOutline {
    padding: 6px 8px;
    font-size: 16px;
  }
  .pageSpace {
    padding-top: 116px;
  }
  .chefSection .chef_img_holder {
    margin-left: -18px;
  }
  footer .copyright_info {
    text-align: center;
    padding-top: 10px;
  }
  .menuSection .menu_box .menu_contant .btnHolder .btn {
    width: 90%;
    margin: 10px 0;
  }
  .menuSection .menu_box .menu_contant .btnHolder .btn + .btn {
    margin-left: 0px;
  }
  .menuSection .menu_box .menu_contant .btnHolder button + button {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  h2 {
    text-align: center;
  }
  h4 {
    text-align: center;
  }
  header .logo_wrap img {
    max-width: 130px;
  }
  header.scrolled {
    height: 70px;
  }
  header.scrolled .logo_wrap img {
    max-width: 80px;
  }
  .pageSpace.smallBanner {
    padding-top: 70px;
  }
  .sectionSpace {
    padding: 40px 0;
  }
  .bannerWrap .carousel .carousel-inner .carousel-item .carousel-caption img {
    max-width: 100%;
  }
  .aboutSection .about_contant {
    padding-right: 0px;
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .aboutSection::before {
    width: 100%;
  }
  .aboutSection .about_img_holder {
    padding-left: 0;
    height: 100%;
    margin-bottom: 30px;
    padding-bottom: 0px;
  }
  .aboutSection .about_img_holder img {
    height: 250px;
  }
  .chefSection .chef_contant {
    padding-left: 0px;
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .chefSection::before {
    width: 100%;
  }
  .chefSection .chef_img_holder {
    margin-left: 0px;
    text-align: center;
  }
  .chefSection .chef_img_holder img {
    max-width: 70%;
  }
  .menuSection::before {
    width: 100%;
  }
  .menuSection .menu_box {
    padding: 30px;
  }
  .menuSection .menu_box .menu_img_holder {
    padding-left: 0;
    margin-bottom: 25px;
  }
  .menuSection .menu_box .menu_img_holder img {
    height: 250px;
  }
  .menuSection .menu_box .menu_contant {
    padding-right: 0px;
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .menuSection .menu_box .menu_contant .btnHolder {
    padding-top: 30px;
  }
  .menuSection .menu_box .menu_contant .btnHolder .btn {
    width: auto;
  }
  .menuSection .menu_box .menu_contant .btnHolder .btn + .btn {
    margin-left: 15px;
  }
  .menuSection .menu_box .menu_contant .btnHolder button + button {
    margin-left: 15px;
  }
  .homeLocSection::before {
    width: 100%;
  }
  .homeLocSection .google_maps_wrap {
    padding-left: 0;
    height: 250px;
    margin-bottom: 30px;
  }
  .homeLocSection .homeLoc_contant {
    padding-right: 0px;
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .homeLocSection .homeLoc_contant .contactForm {
    text-align: left;
    -moz-text-align-last: left;
         text-align-last: left;
  }
  .homeLocSection .social_media_icons {
    padding-top: 60px;
  }
  footer {
    text-align: center;
  }
  footer .footer_menu {
    text-align: center;
  }
  footer .footer_menu ul li {
    margin: 0 25px;
  }
  .inAboutSection .inStoryContent {
    padding: 30px;
  }
  .inAboutSection .inAbout_img_holder {
    padding-left: 0px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  header {
    height: 150px;
  }
  header .hamburger_btn {
    position: absolute;
    top: 50px;
    right: 15px;
    transition: top 0.5s ease;
  }
  .pageSpace {
    padding-top: 150px;
  }
  header.scrolled {
    height: 115px;
  }
  header.scrolled .logo_wrap {
    margin-bottom: 5px;
  }
  header.scrolled .logo_wrap img {
    max-width: 80px;
  }
  header.scrolled .hamburger_btn {
    top: 20px;
    transition: top 0.5s ease;
  }
  .pageSpace.smallBanner {
    padding-top: 115px;
  }
  .nav-menu.open {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .menuSection .menu_box .menu_contant .btnHolder {
    text-align: center;
  }
  .menuSection .menu_box .menu_contant .btnHolder .btn {
    width: 90%;
    margin: 10px 0;
  }
  .menuSection .menu_box .menu_contant .btnHolder .btn + .btn {
    margin-left: 0px;
  }
  .menuSection .menu_box .menu_contant .btnHolder button + button {
    margin-left: 0;
  }
  footer .footer_menu ul li {
    margin: 0 15px;
    display: block;
  }
}/*# sourceMappingURL=style.css.map */