@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500&display=swap');

:root {
  --theme: #000;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: auto;
}

a {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #585858;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}

p {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #585858;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 500;
}

ul li,
ol li {
  list-style: none;
  font-family: 'Playfair Display', serif;
}

.responsive {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-item-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn {
  font-family: 'Playfair Display', serif;
  background-color: #aada96;
  border-color: #aada96;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 10px 15px;
  font-weight: 500;
  -webkit-transition: all .2s ease-in-out 0s;
  transition: all .2s ease-in-out 0s;
}

.btn:hover {
  background-color: #000;
  border-color: #000;
}

.col-5 {
  width: 5%;
}

.col-10 {
  width: 10%;
}

.col-20 {
  width: 20%;
}

.col-30 {
  width: 30%;
}

.col-40 {
  width: 40%;
}

.col-50 {
  width: 50%;
}

.col-60 {
  width: 60%;
}

.col-70 {
  width: 70%;
}

.col-80 {
  width: 80%;
}

.col-90 {
  width: 90%;
}

.col-100 {
  width: 100%;
}


.hide {
  display: none;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/*loader*/
/* The Loader */
.top {
  position: relative;
  top: 693px;
  width: 100%;
  transform: translateY(80%);
  bottom: 0;
  background: #fff;
  height: 100%;
  display: block;
  overflow: hidden;
}

#loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
   background: #fff;
  overflow: hidden;
}

#loader img{
  -webkit-animation: spin 1.7s linear;
  animation: spin 1.7s linear;
}
#loader {
  display: block;
  position: relative;
  top: 50%;
  width: 400px;
  height: auto;
  margin: 0 auto;
  transform: translateY(-50%);
  z-index: 11;
  overflow: hidden;
}

.bg-load {
  background: url(../images/logo-red.png)no-repeat;
  background-position: center;
  background-size: 300px;
  display: block;
  content: "";
  width: 100%;
  height: 100px;
  -webkit-animation: spin 3.2s linear;
  animation: spin 3.2s linear;
  transform: translateX(0);
  opacity: 1;
}

@keyframes spin {
  From {    
    transform: translateX(-100%);       
  }

  To {    
    transform: translateX(0);    
  }

}

#loader-wrapper .loader-section {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.loaded #loader-wrapper .loader-section {
  transform: translatey(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
}

.theme_bg {
  background: #fff url(../img/logo.png)no-repeat;
  background-position: center;
  background-size: 200px;
}

.theme_bg {
  position: inherit;
}

.theme_bg {
  height: 100vh;
  width: 100%;
  transition: 0.5s;
  z-index: 11;
}

.overall_banner_sec {
  position: relative;
}

/*end*/

/*header*/
header {
  position: fixed;
  display: block;
  content: "";
  top: 0;
  width: 100%;
  padding: 10px 0;
  background: #fff;
  z-index: 9;
}
header.active {
  position: fixed;
  display: block;
  content: "";
  top: 0;
  width: 100%;
  padding:10px 0;
  background: #fff;
  z-index: 9;
  box-shadow: 5px 1px 20px #ddd;
}

header.active .logo{
	width: 20%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
header.active .menu-main{
	width: 80%;
	text-align: right;
}
header.active .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header.active .logo > a{
	width: 125px;
}
.banner ul li.active{
	height: calc(100vh - 45px) !important;
}
.default-top.active{
	padding-top: 45px !important;
}

.header-part {
  width: 100%;
  position: relative;
  z-index: 999;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}

.take_menu{
	background:var(--theme);
	padding:5px 10px !important;
	margin-left:10px !important;
}
.take_menu a{
	color:#fff !important;
	color: #fff !important;
	padding: 2px 0 !important;
	font-size: 14px !important;
}

.header-bottom {
  width: 100%;
  position: relative;
}

.drop-nav-arrow {
  display: none;
}

.menu-main {
  width: 100%;
  text-align: center;
}

.menu-main ul,
.menu-main li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.menu-main li {
  display: inline-block;
  width: auto;
  font-size: 15px;
  margin-right: 15px;
  position: relative;
}

.menu-main li a {
  display: block;
  position: relative;
  padding: 8px 0;
  color: var(--theme);
}

.menu-main li.has-child .drop-nav {
  min-width: 200px;
  position: absolute;
  left: 0px;
  top: 100%;
  color: #372727;
  background: var(--theme);
  z-index: 99;
  padding: 25px 0px 25px 0px;
  font-size: 15px;
  font-weight: normal;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  display: none;
  margin-top: 34px;
}

.menu-main ul>li:hover>.drop-nav {
  display: block;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(147, 109, 29, 0.3);
  -moz-box-shadow: 0px 3px 5px 0px rgba(147, 109, 29, 0.3);
  -ms--webkit-box-shadow: 0px 3px 5px 0px rgba(147, 109, 29, 0.3);
  -o--webkit-box-shadow: 0px 3px 5px 0px rgba(147, 109, 29, 0.3);
  box-shadow: 0px 3px 5px 0px rgba(147, 109, 29, 0.3);
}

.menu-main li .drop-nav li {
  margin: 0px;
  width: auto;
  display: block;
  float: none;
  /* padding-left: 28px; */
}

.menu-main li.has-child .drop-nav li a {
  padding-bottom: 10px;
  padding-left: 24px;
  padding-top: 0px;
}

.menu-main li .drop-nav li a {
  color: var(--theme);
}

.menu-main li.mega-menu {
  position: static;
}

.menu-main li.mega-menu .drop-nav {
  min-width: 200px;
  background: #ffffff;
  padding: 40px;
  width: 90%;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 100%;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  color: #9e9eab;
  z-index: 99;
  display: none;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(147, 109, 29, 0.3);
  -moz-box-shadow: 0px 3px 5px 0px rgba(147, 109, 29, 0.3);
  -ms--webkit-box-shadow: 0px 3px 5px 0px rgba(147, 109, 29, 0.3);
  -o--webkit-box-shadow: 0px 3px 5px 0px rgba(147, 109, 29, 0.3);
  box-shadow: 0px 3px 5px 0px rgba(147, 109, 29, 0.3);
  margin: 15px auto;
}

.menu-main li.mega-menu .drop-nav li {
  padding-left: 0px;
}

.menu-main li.mega-menu .drop-nav {
  color: #9e9eab;
}

.drop-mega-part {
  display: inline-block;
  width: 100%;
}

.drop-mega-part {
  font-size: 15px;
  font-weight: normal;
}

.mega-title {
  color: #20202f;
  font-size: 18px;
  display: block;
  margin-bottom: 25px;
}

.menu-main li.mega-menu .drop-nav li a {
  padding-top: 0px;
}

.menu-main li.mega-menu .drop-nav li a {
  padding-bottom: 0px;
  /* padding-left: 24px; */
  margin-bottom: 12px;
  color: #9e9eab;
}

.mega-preview {
  position: relative;
  z-index: 1;
}

.mega-position {
  float: right;
  margin-right: -40px;
  margin-bottom: -40px;
  position: relative;
  bottom: 0;
  margin-top: -100px;
}

.mega-position img {
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
}

.logo {
  width: 100%;
  text-align: center;
}

.logo>a {
  position: relative;
  width: 180px;
  left: 0;
  right: 0;
  z-index: 30;
}

.menu-main ul>li.mega-menu:hover>a::before {
  position: absolute;
  border-bottom: 12px dashed #ffffff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  position: absolute;
  top: 55px;
  left: 50%;
  content: "";
  display: inline-block;
  margin-left: -6px;
}

.menu-main li.mega-menu .drop-nav::after {
  content: "";
  height: 50px;
  left: 0;
  position: absolute;
  top: -34px;
  width: 100%;
}

/*.menu-main ul > li.has-child:hover > a::after {*/
/*  position: absolute;*/
/*  border-bottom: 12px dashed var(--theme);*/
/*  border-left: 12px solid transparent;*/
/*  border-right: 12px solid transparent;*/
/*  position: absolute;*/
/*  top: 78px;*/
/*  left: 50%;*/
/*  content: "";*/
/*  display: inline-block;*/
/*  margin-left: -6px;*/
/*}*/

.mobilemenu {
  position: absolute;
  display: block;
  content: "";
  top: 10px;
  left:16px;
}

.mobilemenu .menubar {
  content: "";
  width: 30px;
  height: 30px;
  margin: 0 auto;
  display: block;
  text-align: center;
  cursor: pointer;
  right: 0;
  z-index: 999;
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
}

.mobilemenu .menubar span {
  position: relative;
  cursor: pointer;
  background-color: #000;
  border-radius: 50px;
  width: 30px;
  height: 3px;
  display: block;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}



.mobilemenu .menubar span:nth-child(1) {
  top: 0;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.mobilemenu .menubar span:nth-child(2) {
  top: 6px;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.mobilemenu .menubar span:nth-child(3) {
  top: 13px;
  -webkit-transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.mobilemenu .menubarclick span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 13px;
  background-color: #000;
}



.mobilemenu .menubarclick span:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color:#000;
}

.mobilemenu .menubarclick span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
  background-color: #000;
}






/*banner*/
.default-top {
  padding-top: 102px;
   transition: all 0.5s ease 0s;
}

.banner {
   position: fixed;
  content: "";
  display: block;
  width: 100%;
  /* height: calc(100vh - 102px);/ */
  overflow: hidden;
}

.banner ul li {
  position: relative;
  display: block;
  width: 100%;
  height: calc(100vh - 102px);
   transition: all 0.5s ease 0s;
}

.banner ul li img {
  transform: scale(1);
  transition: all 6000ms linear;
  object-position: top;
}

.banner ul li .findyou {
  position: absolute;
  display: block;
  content: "";
  top: 60%;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
  left: 0;
  width: 50%;
  z-index: 11;
  right: 0;
  margin: 0 auto;
  text-align: center;
}


.banner ul li .findyou h2 {
  font-size: 46px;
  color: #fff;
  font-weight: 600;
  line-height: 50px;
  text-transform: uppercase;
  text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
}

.banner ul li .findyou h2 span {
  color: var(--theme);
  text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
}

.banner ul li .findyou p {
  font-size: 18px;
  color: #e7e7e7;
  padding-top: 5px;
}



.banner ul li .findyou a {
  margin-top: 10px;
}

/* .banner ul li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #00000069;
  opacity: 0.65;
} */

#banner.owl-carousel .owl-nav.disabled+.owl-dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  content: "";
  right: 70px;
  bottom: 10px;
  z-index: 111;
  border-radius: 50px;
  background-color: var(--theme);
  margin: 0;
  padding: 3px 0;
}

/* #banner.owl-carousel .owl-dots .owl-dot.active span,
#banner.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--theme);
} */

#banner.owl-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 7px;
  background: #fff;
  display: block;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

#banner .owl-nav {
  margin-top: 0;
}

#banner .owl-nav .owl-prev,
#banner .owl-nav .owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  color: #fff;
  line-height: 50px;
  text-align: center;
  font-size: 60px;
  margin-left: 2px;
  display: inline-block;
  border-radius: 50px;
  z-index: 555;
  top: 50%;
  background: transparent;
}

#banner .owl-nav .owl-prev {
  left: 0;
}

#banner .owl-nav .owl-next {
  right: 0;
}

#banner .owl-nav .owl-prev,
#banner .owl-nav .owl-next,
#banner .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*end*/

/*go_down*/
.go-down {
  position: relative;
  margin-top: -53px;
  z-index: 2;
  text-align: center;
}

.go-down .go-down-img {
  cursor: pointer;
  -webkit-animation: go-up-down 2.5s infinite 0s;
  -moz-animation: go-up-down 2.5s infinite 0s;
  -o-animation: go-up-down 2.5s infinite 0s;
  animation: go-up-down 2.5s infinite 0s;
}

@keyframes go-up-down {
  0% {
    -webkit-transform: translateY(-70px);
    -moz-transform: translateY(-70px);
    -ms-transform: translateY(-70px);
    -o-transform: translateY(-70px);
    transform: translateY(-70px);
    opacity: 0.1;
  }

  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

/*end*/
/*miraabout*/
.mira-about {
  padding: 50px 0;
  background-color: #f5f5f5;
}

.about-se {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.abou-img {
  width: 50%;
  height: 500px;
}

.about-content {
  width: 50%;
  width: 50%;
  max-width: 400px;
  margin: 0 auto;
  text-align: right;
}

.about-content h1 {
  font-size: 28px;
  font-family: 'Playfair Display', serif !important;
  text-transform: uppercase;
  color: #444;
  padding-bottom: 10px;
}

.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 30px;
  padding-bottom: 16px;
}

.about-content a {
  color: #fff;
  font-size: 15px;
}

/*end*/

/*mira-menu*/
.mira-menu {
  padding: 50px 0;
  background-color: #fff;

}

.mira-menu ul li {
  width: calc(50% - 20px);
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  display: block;
}

.mira-menu ul li .menu-img {
  height: 350px;
  overflow: hidden;
}
/*.mira-menu ul li .menu-img img{*/
/*	object-position: top;*/
/*}*/
.mira-menu ul li .menu_text {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 10px 0;
  position: relative;
  top: -38px;
}

.mira-menu ul li .menu_text h1 {
  font-size: 24px;
  color: #333;
  padding-bottom: 10px;
}

.mira-menu ul li .menu_text a {
  font-size: 14px;
  color: var(--theme);
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 2px solid var(--theme);
}

/*end*/

/*menu page*/
.menu-bg {
  position: relative;
  display: block;
  content: "";
}

.menu-bg h1 {
	
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  color: #fff;
  font-family: 'Playfair Display', serif !important;
  z-index: 1;
  top: 50%;
  text-align: center;
  text-transform: uppercase;
  font-size: 50px;
  transform: translateY(-50%);
}

#menu_bg li {
  height: 400px;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#menu_bg li img {
  transition: all .5s ease;
  -webkit-animation: slideshow_img 80s infinite;
  animation: slideshow_img 80s infinite;
}

@keyframes slideshow_img {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.2);
  }

  40% {
    transform: scale(1.5);
  }

  60% {
    transform: scale(1.8);
  }

  80% {
    transform: scale(1.9);
  }

  100% {
    transform: scale(2);
  }
}

@-webkit-keyframes slideshow_img {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.2);
  }

  40% {
    transform: scale(1.5);
  }

  60% {
    transform: scale(1.8);
  }

  80% {
    transform: scale(1.9);
  }

  100% {
    transform: scale(2);
  }
}

/*end*/

/*gallery*/
.menu_type {
  margin: 50px 0;
  width: 100%;
  display: block;
  overflow: hidden;
}

.menu_type .tabs {
  width: 100%;
  display: block;
}

.menu_type .tabs .tabs-nav {
  width: 100%;
  margin: 25px auto;
  padding: 10px 15px;
  justify-content: center;
  background: #fafafa;
  /* overflow-x: scroll;
  flex-wrap: nowrap;
  white-space: nowrap; */
}

.menu_type .tabs .tabs-nav li:not(:last-child) {
  margin-right: 15px;
  margin-bottom: 15px;
}

.menu_type .tabs .tabs-nav a {
  font-size: 14px;
  color: var(--theme);
  font-weight: 500;
  text-transform: uppercase;
}


.menu_type .tab-active a {
  border-bottom: 1px solid var(--theme);
  color: var(--theme);
}

.menu_type .tabs-stage {
  position: relative;
}

.menu_type .tabs-stage .menu-list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 15px;
  border-bottom: 1px dotted #555;
  margin-bottom: 55px;
}

.menu_type .tabs-stage .menu-list li {
  margin-bottom: 5px;
  padding: 10px 0;
}

.menu_type .tabs-stage .menu-list li:not(:last-child) {
  border-bottom: 1px dotted #555;
}

.menu_type .tabs-stage h1 {
  text-align: center;
  font-size: 26px;
  color: var(--theme);
  text-transform: uppercase;
}

.menu_type .tabs-stage h2 {
  text-align: center;
  font-size: 20px;
  color: #444;
  padding: 5px 0;
}

.menu_type .tabs-stage h3 {
  padding: 15px 0;
  text-align: center;
  font-size: 20px;
  color: var(--theme);
  text-transform: uppercase;
}

.menu_type .tabs-stage .aller {
  text-align: center;
  font-size: 14px;
  color: #555;
  font-weight: 500;
  padding-bottom: 10px;
}

.menu-list li p:first-child {
  width: calc(20% - 5px);
  color: var(--theme);
}

.menu-list li p:nth-child(2) {
  width: calc(70% - 5px);
  color: var(--theme);
  font-size: 16px;
  /* text-transform: uppercase; */
}

.menu-list li p:nth-child(3) {
  width: calc(10% - 5px);
  color: var(--theme);
}

/*end*/

/*Gallery*/
.mira-gallery {
  padding: 50px 0;
  background: #e6e6e6;
}

.mira-gallery h1 {
  text-transform: uppercase;
  font-size: 28px;
  color: var(--theme);
  padding-bottom: 25px;
  text-align: center;
}

.mira-galler-list {
  width: calc(33.3% - 3px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.gallery {
  position: relative;
  z-index: 4;
}

.gallery .gallery_item {
  padding-bottom: 5px;
  text-align: left;
}

.gallery .gallery_item a {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery .gallery_item img {
  width: 100%;
  height: auto;
  border: none;
  padding: 0;
  margin-bottom: 0;
	border-radius: 0;
}

/*end*/
.mira_story {
    padding: 40px 0;
    background: #e6e6e6;
}

.mira_story h1 {
    text-transform: uppercase;
    font-size: 28px;
    color: var(--theme);
    padding-bottom: 40px;
    text-align: center;
}
.about-story {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    align-items: center;
}
.img-story {
    width: 50%;
    height: 500px;
}
.about-content-story{
	width: 50%;
	max-width: 400px;
	padding: 10px 0;
	margin: 0 auto;
	text-align: right;
}
.about-content-story h1 {
    text-transform: uppercase;
    font-size: 28px;
    color: var(--theme);
    font-family: 'Playfair Display', serif;
    padding-bottom: 25px;
    text-align: right;
}
.about-content-story p {
    font-size: 15px;
    color: #555;
    line-height: 30px;
    padding-bottom: 16px;
}

/*fooder*/
.FooderSec {
  position: relative;
  width: 100%;
  height: auto;
  background-position: center;
  background-size: cover;
  display: block;
  padding: 20px 0;
  background: #f8f8f8
}

.AddrsCont {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  display: -webkit-flex;
 
}

.copyright {
  padding-top: 10px;
  text-align: center;
}

.copyright li p a {
  color: #e7272d;
}


.AddrsCont li:not(:last-child) {
  border-right: 1px solid #ddd;
}


.AddrsCont li p,
.AddrsCont li p a {
  color: var(--theme);
  padding: 0 5px;
  font-size: 14px;
  transition: all 0.25s linear 0s;
}

.AddrsCont li p a:hover {
  color: var(--theme);
  padding-left: 5px;
}

.AddrsCont li p span {
  display: inline-block;
  padding-right: 10px;
  color: var(--theme);

}
.opentable{
	position: absolute;
	display: block;
	content: "";
	width: 250px;
	z-index: 99;
	right: 0;
	bottom: 131px;
	height: auto;
}
/*end*/
