@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

@font-face {
    font-family: 'Mervale Script';
    src: url('../fonts/MervaleScript-Regular.eot');
    src: url('../fonts/MervaleScript-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MervaleScript-Regular.woff2') format('woff2'),
        url('../fonts/MervaleScript-Regular.woff') format('woff'),
        url('../fonts/MervaleScript-Regular.ttf') format('truetype'),
        url('../fonts/MervaleScript-Regular.svg#MervaleScript-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
 font-family: 'Open Sans', sans-serif;
  color: #000;
}

a {
  text-decoration: none;
  color: #E6C25F;
}

a:hover {
  color: #e6c25f;
  text-decoration: none;
}
h3{
   font-family: 'Open Sans', sans-serif;
}
h1,
h2,
h4,
h5,
h6 {
font-family: 'Mervale Script';
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #E6C25F;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #000000;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffc064;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  top: 0px;
  height: 124px;
  z-index: 997;
  transition: all 0.5s;
  padding: 0px 0;
  /* background: rgba(26, 24, 22, 0.85); */
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  background: rgba(26, 24, 22, 0.85);
  height: 85px;
  padding: 7px 0px;
}
#header.header-scrolled .logo img {
    max-height: 70px;
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 93px;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  background: #E6C25F;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}

.book-a-table-btn:hover {
  background: #ffa012;
  color: #fff;
}

@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;
  border: 1px solid #E6C25F;
  border-radius: 27px;
}

.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: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: capitalize;
  border: 1px solid transparent;
}

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

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  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: 600;
  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: #E6C25F;
}

.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: 10px 20px;
  font-size: 15px;
  color: #433f39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #E6C25F;
}

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

.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: rgba(12, 11, 10, 0.5);
  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: 30%;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

#hero h2 span {
  color: #E6C25F;
}

#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: 13px;
  line-height: 0;
  width: auto;
  height: auto;
  transition: 0.3s;
  color: rgb(230 194 95);
  letter-spacing: 3px;
  transform: rotate(90deg);
  font-weight: 600;
  opacity: 1;
  position: relative;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgb(255 176 59);
  color: rgb(255 255 255);
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: none;
  background-image: linear-gradient(to right, #dcb455 , #9c4d02);
  color: #000;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: #E6C25F;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  position: relative;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 600;
  color: #000000;
}

.section-title h3 span {
  color: #E6C25F;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 400;
}

@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: #ffffff;
  position: relative;
  margin: 0px 0px;
}

.about .content {
  padding: 0 50px;
}

.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
  border-bottom: 1px solid #e6c25f;
  padding-bottom: 8px;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  font-size: 17px;
  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: #E6C25F;
  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;
  z-index: 9;
  overflow: hidden;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#E6C25F 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 #E6C25F;
  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: #E6C25F;
  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 #E6C25F;
  border-radius: 50px;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
  color: #fff;
  background: #E6C25F;
}

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

.specials .nav-link.active {
  color: #E6C25F;
  border-color: #E6C25F;
}

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

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
 background-size: cover !important;
 position: relative;
 display: table;
 width: 100%;
}

.hero-container::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 {
  }
}

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

.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 #E6C25F;
}

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

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

/*--------------------------------------------------------------
# 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: #E6C25F;
  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/chefs-bg.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: rgba(255, 255, 255, 0.8);
  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: 16px;
  color: #6c665c;
  position: relative;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.chefs .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #ffcf88;
  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: #E6C25F;
}

.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: 50px 0px 50px;
  background-position: center center;
  background: #F6F6F6;
  position: relative;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
  padding: 31px 5px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
  box-shadow: 0px 6px 6px #dddddd;
  position: relative;
  z-index: 99;
  padding: 33px;
  border-radius: 25px;
}
.testimonials .swiper-slide-active .testimonial-item{
background-color:#E6C25F;
}
.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: 17px;
  font-weight: 600;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 12px;
  color: #000;
  margin: 0 0 15px 0;
  font-family: 'Open Sans';
}

.testimonials .testimonial-item .stars {
  color: #000000;
  margin-bottom: 10px;
  display: flex;
  gap: 5px;
  font-size: 13px;
  justify-content: center;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #000;
  font-size: 28px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  margin: 0 auto 15px auto;
  color: #000;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(114 114 114 / 50%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #E6C25F;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 100%;
    overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
  }
  .testimonials .testimonial-item:hover p {
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
    white-space: normal;
}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  color: #fff;
  font-size: 13px;
  text-align: left;
  padding: 55px 0 13px;
}

#footer h3 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding: 0;
  margin: 0 0 3px 0;
}

#footer p {
  padding: 0;
  margin: 0 0 10px 0;
}

#footer .social-links {
  margin: 0 0 25px 0;
}

#footer .social-links a {
  font-size: 21px;
  display: inline-block;
  color: #e6c25f;
  line-height: 1;
  padding: 3px 0;
  margin-right: 9px;
  border-radius: 50%;
  text-align: center;
  /* width: 25px; */
  height: 25px;
  transition: 0.3s;
  vertical-align: top;
}

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

#footer .copyright {
  margin: 7px 0px;
}

#footer .credits {
  font-size: 13px;
}

/*start css*/
html, body{
  height:100%;
  font-size: 15px;
}
.pop_logo img {
    width: 100%;
}
.backblack {
    background-image:url(../img/backpack.png);
    height: 100%;
    padding: 0px;
    background-size: cover;
    background-repeat: no-repeat;
}
.image_rote {
  perspective: 1000px;
  position: relative;  
}

.image_rote img {
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
      width: 100%;
}

.image_rote:hover img {
  transform: rotateY(10deg) rotateX(10deg) scale(1.01);
}
.afters:before {
    -webkit-animation: moveTopBottom 3s infinite ease-in-out;
    animation: moveTopBottom 3s infinite ease-in-out;
}
@-webkit-keyframes moveTopBottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.8;
  }
  25% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.8;
  }
}

@keyframes moveTopBottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.8;
  }
  25% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.8;
  }
}
.readmore{
    background: #e6c25f;
    color: #ffffff;
    padding: 8px 16px;
    display: table;
    margin: 0 0px;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}
.clickhere{
  background: #E6C25F;
  color: #000;
  padding: 7px 19px;
  display: table;
  margin: 0 auto;
  border-radius: 28px;
  text-transform: capitalize;
  font-weight: 600;
  position: absolute;
  bottom: 30%;
  right: 0;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.pop_logo {
    text-align: center;
    margin-top: -62px;
    position: relative;
    z-index: 99;
}
.first_xd h2{
  text-align: center;
  padding-top: 0px;
  color: #E6C25F;
  font-size: 40px;
  margin: 0px;
  position: absolute;
  bottom: 37px;
  z-index: 999;
  text-align: center;
  left: 0;
  right: 0;
}
.clickhere:hover{
  color: #000000;
  background: #fff;
}
.carousel-content h1{color: #e0ba5a;font-family: 'Open Sans', sans-serif;font-weight: 700;}
.afters:before{
  content: '';
  position: absolute;
  left: 6%;
  right: 0;
  bottom: 13%;
  background: #E6C25F;
  width: 80px;
  height: 80px;
  z-index: 9;
  border: 10px solid #fff;
}
.line{
  background: #e6c25f;
  width: 25%;
  height: 2px;
  display: table;
  margin-bottom: 14px;
}
.events table{

}
.events table td{
 background-color: #000;
 margin: 0px 0px;
 border: none;
 color: #fff;
 padding: 0px 16px;
 vertical-align: middle;
}
.events table tr{
  margin: 7px 0px;
  display: table;
  width: 100%;
  color: #fff;
}
.selbuton{
  background: #e6c25f;
  display: table;
  width: auto;
  margin: 0 auto;
  padding: 13px 40px;
  font-weight: 700;
  border: none;
  color: #000;
  border-radius: 5px;
}
.selbuton a{
   color: #000;   
}
.events .table-striped>tbody>tr:nth-of-type(odd)>*{
color: #fff;
}
.events table td button{
  background-image: linear-gradient(to right, #dcb455 , #9c4d02);
  padding: 10px 20px;
  border:none;
  width: 100%;
}
h4.normal {
    font-family: 'Open Sans', sans-serif;
    color: #b9b9b9;
    padding-top: 12px;
    font-size: 14px;
}
.pdn{
  padding: 0px;
}
.mt-30{
  margin-top: 30px;
}
.telows{
  color:#d9af51;
}
.footerlink ul{padding: 20px 0px;list-style: none;text-align: center;margin: 0px;}
.footerlink ul li{
  display: inline-block;
  margin: 13px 35px;
  text-align: center;
}
.footerlink ul li a{
  display: inline-block;
  color: #fff;
  padding: 4px 0px;
  font-weight: 400;
  font-size: 13px;
  transition:all 0.3s ease-in-out;
}

.footerlink ul li a:hover{
  color: #e6c25f;
}
.bsicon i{
  font-size: 17px;
  vertical-align: middle;
  color: #e6c25f;
}
.testimonials .swiper-button-prev {
    left: 0px;
    right: auto;
    background-image: linear-gradient(to right, #dcb455 , #9c4d02);
    color: #000;
    padding: 5px 16px;
    width: 42px;
    top: 92%;
}
.testimonials .swiper-button-next{
   background-image: linear-gradient(to right, #dcb455 , #9c4d02);
   color: #000;
   padding: 5px 16px;
   width: 42px;
   right: auto;
   left: 45px;
   top: 92%;
}
.swiper-button-prev:after, .swiper-button-next:after{
  font-size: 14px;
}
.events table td img{
  margin-right: 5px;
}
.absolevodeo{position: absolute;top: 12%;}.absolevodeo h3{
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}.absolevodeo p{
  color: #fff;
}
@media (max-width:767px){
  .absolevodeo p br{
    display: none;
  }
  .absolevodeo p {
    color: #fff;
    font-size: 12px;
}
  .absolevodeo {
    top: 7%;
}
  .absolevodeo h3 {
    font-size: 14px;
    margin-bottom: 0px;
}
  .navbar-mobile ul{
    height:auto;
  }
  .swiper-button-next {
    right: 0;
    left: auto;
    top: 92%;
}
  .swiper-button-prev {
    left: auto;
    right: 57px;
  }
  .about {
    margin: 0px 0px;
    padding-bottom: 0px;
   padding-top: 25px;
}
  .afters:before{
    display: none;
  }
  #hero, #hero .carousel-item {
    width: 100%;
    height:50vh;
  }
  .events {
    background-size: cover;
    position: relative;
    height: 790px;
}
.aboutslider {
  margin-bottom: 30px;
}
  .testimonials .testimonials-carousel, .testimonials .testimonials-slider {
    overflow: hidden;
    margin-left: 0;
}
  #footer{
    background-size:cover;
  }
  .events .table-striped>tbody>tr td {

}
.tableblock{
  /*width: 800px;*/
  overflow-x: auto;
  display: block;
}
.tableblock table{
  overflow-x: auto;
  display: block;
}
.overflowtable{
    /*width: 100%;display: block;overflow-x: auto;*/
    
}
}
.backorde{
  padding: 14px 0px;
}
.aboutslider .swiper-button-next {
    background: #000;
    color: #ffffff;
    padding: 14px 14px;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    right: 20px;
    top: 50%;

}
.aboutslider .swiper-button-prev {
    background: #000;
    color: #ffffff;
    padding: 14px 14px;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    left: 0px;
    top: 50%;
}
.aboutslider .swiper-pagination{
display: none;
}
.aboutslider {
 /* visibility: hidden;*/
}
.swiper-slide-active .fade_up {
  visibility: visible;
  -ms-animation: fadeUp 2s; /* Internet Explorer*/
  animation: fadeUp 2s; 
}
.swiper-slide-active .fade_from_left {
  visibility: visible;
  -ms-animation: fadeFromLeft 1s; /* Internet Explorer*/
  animation: fadeFromLeft 1s; 
}
.aboutslider .swiper-slide{
  opacity: 0;
}
.aboutslider .swiper-slide.swiper-slide-active{
  opacity: 1;
}
.swiper-slide-active .fade_from_right {
  visibility: visible;
  -ms-animation: fadeFromRight 1s; /* Internet Explorer*/
  animation: fadeFromRight 1s; 
}


@keyframes fadeUp {
  0% {
    filter: alpha(opacity=0);
    opacity: .1;
    transform: translateY(100px);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeFromLeft {
  0% {
    filter: alpha(opacity=0);
    opacity: .1;
    transform: translateX(-100%);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeFromRight {
  0% {
    filter: alpha(opacity=0);
    opacity: .1;
    transform: translateX(100%);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translateX(0);
  }
}
.submits{
  background: #E6C25F;
    margin-left: 5px;
}
.innerpages{
  padding:200px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
}
.innertitle {
    text-align: center;
}
.innertitle h3{
 color: #e0ba5a;
 font-weight: 700;
 margin-bottom: 25px;
}.innertitle p{color: #fff;}

.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: auto;
    padding: 0px 50px;
}

.gallery-container h1 {
    text-align: center;
    margin-top: 50px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}

.tz-gallery {
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 7px;
}
.tz-gallery .lightbox{
  position: relative;
  height: 400px;
  display: block;
  border-radius: 24px;
  overflow: hidden;
}
.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '\e140';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: rgb(0 0 0 / 69%);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}
.mianpop {
    height: 100%;
    display: table;
    width: 100%;
    overflow: hidden;
}
.contact-section .img {
  width: 100%;
  background-position: top center; }

.contact-section .contact-info p a {
  color: #000000;
  display: block;
  }

.contact-section .contact-form {
  width: 100%; }
  @media (max-width: 767.98px) {
    .contact-section .contact-form .btn-primary {
      display: block;
      width: 100%; } }

.contact-section .box {
  width: 100%;
  margin-bottom: 26px;
  }
  .contact-section .box h3 {
    font-size: 20px; }
  .contact-section .box .icon {
    margin-top: 0px;
    margin-right: 8px;
    }
    .contact-section .box .icon span {
      color: #000000;
      }
.block-9 .form-control {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px;
    border: none;
    border-bottom: 2px solid #dfdfdf;
    border-radius: 0px;
    padding: 10px 0px;
}
.form-control {
    height: 52px !important;
    background: #fff !important;
    color: #000000 !important;
    font-size: 18px;
    border-radius: 5px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.form-group {
    margin-bottom: 1rem;
}
.contactbtn{background: #E6C25F;border: none;border-radius: 35px;padding: 10px 20px;color: #000;box-shadow: 0px 0px 9px #bfbaba;}
.contact-section .box p{
  margin-bottom: 0px;
  color: #000000;
}
.contactbtn:hover{
 background: #000; 
}
.contact-form textarea{
  height:150px !important;
}
.donote {
    background: #d9af51;
    padding: 6px 30px;
    font-weight: 700;
    border-radius: 9px;
    border: none;
}
.donote:hover{
background: #ffffff;
}
.sevral img{
  width:100%;
}
.textp {
    padding: 25px 0px;
}
.content_fond{

}
.content_fond h3{
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
}
.padding50{
  padding-top: 50px;
}
.tz-gallery.foundgal .row > div {
    padding: 0px;
}
.pt-10{
  padding-top: 10px !important;
}
@media (max-width:767px){
  #hero .carousel-container{
    top: 0;
  }
  .youtube .absolevodeo{
    display: none;
  }
  section.photos {
    padding: 20px 0px;
}
  .container.gallery-container {
    padding: 0px 20px;
}
  .donote {
    background: #d9af51;
    padding: 4px 15px;
  }
  .first_xd h2 {
    font-size: 28px;
}
  .content_fond {
    padding-top: 20px;
}
  .padding50 {
    padding-top: 15px;
}
  .section-title h3 {
    font-size: 25px;
}
  .contact-section .contact-form {
    width: 100%;
    padding: 0px !important;
    margin-bottom: 25px;
}
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a{
    border:none;
  }
  #header.header-transparent{
    position: relative;
    background: rgb(64 62 62);
   padding-bottom: 7px;
  }
  .innerpages {
    padding: 40px 0px;
  }
  }
  @media (max-width:1024px) and (min-width:768px){
    .absolevodeo {
    display: none;
  }
    .content_fond {
    padding-top: 30px;
}
    .about {
    margin: 0px 0px;
}
    .events {
    background-size: cover !important;
    position: relative;
    height: 1050px;
}
    .afters:before{
      display: none;
    }
    #hero .carousel-item, #hero {
    width: 100%;
    height: 80vh;
  }
    .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a{
      border:none;
    }
  }
  .navbar .dropdown ul a{
    border:none;
  }
   .navbar .dropdown ul a:hover{
    background-color:#000;
  }
  span.Lines {
    height: 2px;
    background: #E6C25F;
    width: 120px;
    display: block;
    margin-bottom: 36px;
} 
.bothgalery .tz-gallery .lightbox{
height: auto;
}
.pop_logo.poplogo2 {
    padding-top: 33%;
}
.poplogo2 img{
  width: 47%;
  margin: 0 auto;
  display: table;
}
.shadowset{
  background-image:url(../img/shadow.png);
 bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
    height: 25%;
    background-repeat: no-repeat;
    background-size: cover;
}
.poplogo2 {
    position: relative;
    z-index: 99;
    padding-top: 30%;
}
.first_xd {
    position: relative;
}
.lefttop ul{gap: 25px;margin: 9px 0px 0px;}.lefttop ul li{
  list-style: none;
}.lefttop ul li a{
  font-size: 14px;
  color: #fff;
}.lefttop ul li a:hover{
  
}
.righttop{

  }.righttop ul{margin: 9px 0px 0px;}.righttop a{
  padding: 0px 9px;
  font-size: 20px;
}.righttop a:hover{
  
}
#hero .carousel-control-prev:after{content:'';height: 65px;width: 1px;background: #e6c25f;position: absolute;top: 50.5%;left: 48%;}
#hero .carousel-control-next:before{
  content:'';
  height: 65px;
  width: 1px;
  background: #e6c25f;
  position: absolute;
  bottom: 51%;
  right: 48%;
}
#hero .carousel-control-next-icon{margin-top: 55px;}
#hero .carousel-control-prev-icon{
  margin-bottom: 55px;
}
#header.header-scrolled .topbar{
  display: none;
}
.about .content h3 span{
  color:#e6c25f;
}
.about .video-box:after{
  content:'';
  background-color:#fff;
  transform: rotate(45deg);
  width: 115px;
  height: 108px;
  position: absolute;
  right: -57px;
  top: -55px;
}
.gitar_dc{
  position: absolute;
  right: 0;
  bottom:20%;
  width: 12%;
}
.gitar_dc img{
  width: 100%;
}
.videofel iframe{
   border-radius:10px;
   overflow: hidden;  
}
.youtube {
    display: table;
    width: 100%;
}
.quote-2 {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0px 2px 6px #b7b0b0;
    padding: 9px;
    text-align: center;
    display: table;
    margin: -58px auto 10px;
}
.testimonials .swiper-slide-active .testimonial-item .quote-2 {
      background-color: #E6C25F;
}
.yellow{
  color:#E6C25F;
}
.bsicon {
    display: flex;
    gap: 4px;
    position: relative;
}
.befores:before{
  position: absolute;
  content:'';
  border: 1px dashed;
  border-color: #4d4b4b;
  width: 54%;
  left: -57%;
  bottom: 63%;
}
.content_news {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 11px 11px 28px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.dates {
    font-size: 11px;
    font-weight: 700;
}
.content_news h4{
  font-family: 'Open Sans', sans-serif;
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
}
.content_news p{font-size: 13px;font-weight: 500;margin-bottom: 15px;}
.tableblock{
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid #E6C25F;
}
.blackbtn{
  background-color:#000000;
  border-radius:30px;
  color:#E6C25F;
  border: 1px solid #000;
  padding: 9px 25px;
  margin: 0 auto;
  display: table;
  transition: all 0.3s ease-in-out;
}
.overflow-news {
    padding-bottom: 138px;
    height: 392px;
}
.blackbtn:hover{
background-color:#fff;
color: #000;
  }
  .overflow-news img{
    transition: all 0.3s ease-in-out;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: table;
  }
    .overflow-news:hover img{
      transform: scale(1.03);
    }
    .readmore:hover{
      background-color: #000;
    }
    .brdcom_inr{

      }
    .brdcom_inr h2{
      font-family: 'Open Sans', sans-serif;
      color: #fff;
    }
    .brdcom_inr span{
      color: #E6C25F;
    }
       .bredcoms{
        display: flex;
        justify-content: center;
       }
    .bredcoms li{display: inline-block;color: #fff;font-size: 12px;} .bredcoms ul{
      
    } .bredcoms li a{
      
    } .bredcoms span{
      padding: 0px 7px;
    }
    .content_fond{

    }
    .pr-3{
      padding-right: 30px;
    }.pl-3{
      padding-left: 30px;
    }
    .content_fond h3 span{
          color: #E6C25F; 
    }
    .biotab{justify-content: center;margin-bottom: 30px;} .biotab li{
      margin: 0px 20px;
    } .biotab li a{
      padding: 7px 6px;
      display: block;
      color: #000;
      font-weight: 600;
      border-bottom: 2px solid transparent;
    } .biotab li a.active{
      color: #e6c25f;
      border-bottom: 2px solid #e6c25f;
    }
    #testimn_page .testimonial-item{
    background: #F2F2F2;
    transition: all 0.3s ease-in-out;
    }
    #testimn_page .testimonial-item:hover{
    background-color: #E6C25F;
    margin-top: -3px;
    }
    .donatenow:hover{
      background-color:#fff;
    }
    .donatenow{
    background: #e6c25f;
    color: #000;
    padding:12px 26px;
    display: table;
    margin: 30px auto 0px;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}
.contact-info {
    background: #E6C25F;
    padding: 36px;
    border-radius: 12px;
}
.dempers h4{
  font-family: 'Open Sans', sans-serif;
  }.folowscontact h5{
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.folowscontact{
  padding-top: 100px;
}
.folowscontact a{
  color:#000;
  font-size: 18px;
  margin-right: 5px;
}
.block-9 {
    box-shadow: 0px 0px 15px #ddd;
    border-radius: 20px;
        padding: 6px 0px;
}
.circles{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
}
.gold{
  color: #e6c25f;
}
.fondation_first{
  padding:50px 0px;
}
.fondation_first img{
  width:auto;
}
.sevral{
  padding:0px 50px;
}
.imaserc img{
  width:auto;
  background-color:#fff;
  border-radius:10px;
  height: 58px;
}
.fondation_first.bg-light {
    background-color: #E6E6E4 !important;
}
.applicationrow .row {
    background-color: #fff;
    margin: 30px 0px;
}
.applicationrow .row:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width:767px){
    .content_fond.pl-3 {
    padding-left: 0px;
}
    .biotab li {
    margin: 0px 10px;
}
    .fondation_first img {
    width: 100%;
}
    .shadowset {
    height: 9%;
}
    .tz-gallery .lightbox {
           height: 220px;
        border-radius: 8px;
}
    .pop_logo img {
    width: 45%;
}
    .pop_logo {
    margin-top: 50px;
}
    .poplogo2 {
    display: none;
}
    .section-title img {
    width: 100%;
}
  .about .content p {
    font-size: 13px;
  }
  .about .content h3 {
    font-size: 24px;
}
  .lefttop ul li a {
    font-size: 12px;
  }
  #header .logo img{
    max-height: 70px;
}
  #hero p {
    font-size: 13px;
  }
  .righttop ul {
   text-align: center;
}
  .lefttop ul {
    justify-content: center;
}
  #header{
    height:auto;
  }
}

.lefttop ul li img {
    width: 15px;
}
.readmore{margin-top:10px;}