
:root {
  --font-default: "Open Sans", 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: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #F38121;
  --color-secondary: #37373f;
}

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

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

a {
  color: var(--color-primary);
  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;
  scroll-margin-top: 90px;
  overflow: clip;
}

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

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

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  font-family: var(--font-default);
}

@media screen and (max-width: 767px) {
  .section-header p {
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    font-family: var(--font-default);
  }
}

@media screen and (max-width: 475px) {
  .section-header p {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    font-family: var(--font-default);
  }
}

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 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: #676775;
  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%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

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

@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;
  position: fixed;
}

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

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

.header .logo img {
  max-height: 40px;
  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: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 10px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

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

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

  .navbar li {
    position: relative;
  }

  /* .dropdown-nav {
    cursor: pointer;
    color: #7f7f90;
  } */

  /* .dropdown-nav ul li a:focus {
    color: #000000;
  } */

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

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    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: #000;
  }

  .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: 1280px) {

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

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .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 img {
  width: -webkit-fill-available;
}

@media (max-width: 767px) {
  .about .about-img img {
    width: inherit;
  }
}

.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: 70px;
  height: 70px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(54% - 47px);
  top: calc(54% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 18, 18, 0.7);
  top: -23%;
  left: -21%;
  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: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px 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: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

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

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 30px;
  background: var(--color-primary);
  color: #fff;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.why-us .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/stats-bg.jpg") center center;
  background-size: cover;
  padding: 70px 0;
}

.stats-counter-date-count {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/stats-bg.jpg") center center;
  background-size: cover;
  padding: 200px 0;
}

@media (min-width: 1365px) {
  .stats-counter,
  .stats-counter-date-count {
    background-attachment: fixed;
  }
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# 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 0px;
  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);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f05656;
  font-size: 26px;
  line-height: 0;
}

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

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}

.events .event-item .price {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

@media (min-width: 1200px) {
  .events .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

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

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d7;
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.4);
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Press Coverage Section
--------------------------------------------------------------*/
.press-coverage .coverage-box {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.press-coverage .coverage-box .coverage-img {
  position: relative;
  overflow: hidden;
}

/* .press-coverage .coverage-box .coverage-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
} */

/* .press-coverage .coverage-box .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
} */

/* .press-coverage .coverage-box .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
} */

/* .press-coverage .coverage-box .social a:hover {
  color: rgba(55, 55, 63, 0.9);
} */

/* .press-coverage .coverage-box .social i {
  font-size: 18px;
} */

.press-coverage .coverage-box .member-info {
  padding: 25px 15px 20px 15px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.press-coverage .coverage-box .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.press-coverage .coverage-box .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.press-coverage .coverage-box .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.member-info a {
  color: var(--color-primary);
}

.member-info a:hover {
  color: rgba(206, 18, 18, 0.8);
}

.press-coverage .coverage-box:hover {
  transform: scale(1.03);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: rgba(55, 55, 63, 0.04);
}

.book-a-table .php-email-form {
  padding: 40px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.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 #059652;
  border-top-color: #fff;
  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;
  border-radius: 0;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.book-a-table .php-email-form input {
  padding: 12px 15px;
}

.book-a-table .php-email-form textarea {
  padding: 12px 15px;
}

.book-a-table .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 60px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

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

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  /* .gallery .swiper-slide-active {
    border: 6px solid var(--color-primary);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  } */
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-size: cover;
  position: relative;
  min-height: 772px;
  padding: 160px 0 60px 0;
}

.hero h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}

.hero h2 span {
  color: var(--color-primary);
}

.hero p {
  color: #4f4f5a;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero .btn-book-a-table {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 8px 28px rgba(206, 18, 18, 0.2);
}

.hero .btn-book-a-table:hover {
  background: rgba(206, 18, 18, 0.8);
  box-shadow: 0 8px 28px rgba(206, 18, 18, 0.45);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
  color: rgba(206, 18, 18, 0.8);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Date Count
--------------------------------------------------------------*/
#countdown{
	width: 720px;
	height: 160px;
	text-align: center;
	background: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc); 
	background-image:    -moz-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc);
	background-image:     -ms-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc);
	background-image:      -o-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc);
	border: 1px solid #000000;
	border-radius: 5px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
	margin: auto;
	padding: 24px 0;
	position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
}

#countdown:before{
	content:"";
	width: 8px;
	height: 65px;
	background: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc); 
	background-image:    -moz-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc);
	background-image:     -ms-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc);
	background-image:      -o-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc);
	border: 1px solid #111;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	display: block;
	position: absolute;
	top: 48px; left: -10px;
}

#countdown:after{
	content:"";
	width: 8px;
	height: 65px;
	background: #ffffff;
	background-image: -webkit-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc); 
	background-image:    -moz-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc);
	background-image:     -ms-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc);
	background-image:      -o-linear-gradient(top, #ffea97, #fdea9d, #ffeeaa, #fff2bc);
	border: 1px solid #111;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	display: block;
	position: absolute;
	top: 48px; right: -10px;
}

/* #countdown #tiles{
	position: relative;
	z-index: 1;
} */

#countdown #tiles > span{
	width: 92px;
	max-width: 92px;
	font: bold 48px 'Droid Sans', Arial, sans-serif;
	text-align: center;
	color: #111;
	background-color: #ddd;
	background: linear-gradient(116deg, #f7de13, #f7d013, #f7d013, #f7b313, #f7b113, #f7a613, #f28919, #f27d19, #eb431d, #eb241d);
	border-top: 1px solid #fff;
	border-radius: 3px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
	margin: 0 7px;
	padding: 18px 0;
	display: inline-block;
	position: relative;
}

#countdown #tiles > span:before{
	content:"";
	width: 100%;
	height: 13px;
	background: #000000;
	display: block;
	padding: 0 3px;
	position: absolute;
	top: 41%; left: -3px;
	z-index: -1;
}

/* #countdown #tiles > span:after{
	content:"";
	width: 100%;
	height: 1px;
	background: #eee;
	border-top: 1px solid #333;
	display: block;
	position: absolute;
	top: 48%; left: 0;
} */

#countdown .labels{
	width: 100%;
	height: 25px;
	text-align: center;
	position: absolute;
	bottom: 8px;
}

#countdown .labels li{
	width: 102px;
	font: bold 15px 'Droid Sans', Arial, sans-serif;
	color: #f47321;
	text-shadow: 1px 1px 0px #000;
	text-align: center;
	text-transform: uppercase;
	display: inline-block;
}

@media (max-width: 992px) {
  #countdown {
    width: 320px;
	  height: 160px;
    padding: 40px 0;
  }

  #countdown #tiles > span{
    width: 52px;
    max-width: 52px;
    font: bold 28px 'Droid Sans', Arial, sans-serif;
    text-align: center;
    color: #111;
    background: linear-gradient(116deg, #f7de13, #f7d013, #f7d013, #f7b313, #f7b113, #f7a613, #f28919, #f27d19, #eb431d, #eb241d);
    border-top: 1px solid #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
    margin: 0 7px;
    padding: 18px 0;
    display: inline-block;
    position: relative;
  }

  #countdown .labels li{
    width: 60px;
    font: bold 12px 'Droid Sans', Arial, sans-serif;
    color: #f47321;
    text-shadow: 1px 1px 0px #000;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
  }
  
}


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

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

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

.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;
} */


/* Home */
.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-view {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.video-box {
  margin: 0 5px 0 5px;
  width: 300px;
}

@media screen and (max-width: 1520px) {
  .video-box {
    margin: 0 5px 0 5px;
    width: 250px;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.hero-content-box {
  margin-top: -160px;
}

.hero-content h1{
  font-size: 4rem;
  font-weight: 800;
  line-height: 50px;
  --angle: 0deg;
  background: conic-gradient(from var(--angle), #f38121, #ea2726, #f38121);
  background-clip: text;
  color: transparent;
  animation: rotar 2s linear infinite;
}

.other-page-title {
  height: 25%;
}

@keyframes rotar{
  
  from{
    --angle:0deg;
  }
  
  to{
    --angle:360deg;
  }
}

.hero-content p span{
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.hero-content p {
  font-size: 2rem;
  color: #f0f0f0;
}

.hero-content .slogan span{
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0px;
  margin-top: 0px;
}

.hero-content .other-pages {
  font-size: 1.5rem;
  color: #f0f0f0;
  margin-top: 50px;
}

.hero-btn {
  margin-top: 50px;
}

@media screen and (max-width: 1199px) {
  .hero-content h1{
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 40px;
  }

  .other-page-title {
    height: 15%;
  }

  .hero-content .slogan span{
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 3.3px;
    margin-top: 0px;
  }

  .hero-content p {
    font-size: 1.45rem;
    color: #f0f0f0;
    margin-top: 25px;
  }

  .hero-content p span{
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 1.2px;
  }

  .hero-content .other-pages {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-top: 50px;
  }
}

@media screen and (max-width: 991px) {
  .hero-content h1{
    font-size: 3rem;
    font-weight: 800;
    line-height: 45px;
  }

  .other-page-title {
    height: 30%;
  }

  .hero-content .slogan span{
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
  }

  .hero-content p {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-top: 25px;
  }

  .hero-content .other-pages {
    font-size: 1rem;
    color: #f0f0f0;
    margin-top: 50px;
  }

  .hero-content p span{
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1.2px;
  }

  .c-place {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .hero-content-box {
    margin-top: -120px;
  }

  .hero-content h1{
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 40px;
  }

  .other-page-title {
    height: 32%;
  }

  .hero-content .slogan span{
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-top: 25px;
  }

  .hero-content .other-pages {
    font-size: 0.9rem;
    color: #f0f0f0;
    margin-top: 50px;
  }

  .hero-content p span{
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1.2px;
  }
}

@media screen and (max-width: 475px) {
  .hero-content-box {
    margin-top: -250px;
  }

  .hero-content h1{
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 40px;
  }

  .other-page-title {
    height: 30%;
  }

  .hero-content .slogan span{
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: normal;
  }

  .hero-content p {
    font-size: 0.9rem;
    color: #f0f0f0;
    margin-top: 25px;
  }

  .hero-content .other-pages {
    font-size: 0.8rem;
    color: #f0f0f0;
    margin-top: 50px;
  }

  .hero-content p span{
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.2px;
  }
}

.arrows-area {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .arrows-area {
    display: flex;
    justify-content: center;
    margin-top: 0px;
  }
}

.arrows {
  width: 60px;
  height: 72px;
  left: 50%;
  margin-left: -30px;
  bottom: 20px;
}

.arrows path.a1 {
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
}

.arrows path.a2 {
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
}

.arrows path.a3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

.arrows path {
  stroke: var(--color-primary);
  fill: transparent;
  stroke-width: 5px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite;
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

/* @media (max-width: 575px) {
  .about .play-btn {
    width: 34px;
    height: 34px;
    left: calc(82% - 47px);
    top: calc(90% - 47px);
  }

  .about .play-btn:before {
    width: 42px;
    height: 42px;
  }

  .about .play-btn:after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid #fff;
  }
} */

.fa-4x {
  font-size: 4em;
  color: white;
}

.co-event {
  display: flex;
  justify-content: space-between;
}

.box {
  position: relative;
  width: 250px;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(53, 46, 46);
  transition: 0.5s;
  margin: 10px 10px 10px 10px;
}

.img-box h5 {
  color: white;
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
}

.box:hover {
  height: 415px;
}

.box .img-box {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.box .img-box img {
  max-width: 100%;
  opacity: 1;
  transition: 0.5s;
}

.box:hover .img-box img {
  opacity: 1;
}

.box::before {
  content: '';
  position: absolute;
  background-color: white;
  top: -2px;
  bottom: -2px;
  right: -2px;
  left: -2px;
  z-index: -1;
}

.box::after {
  content: '';
  position: absolute;
  background-color: white;
  top: -2px;
  bottom: -2px;
  right: -2px;
  left: -2px;
  z-index: -2;
  /* filter: blur(10px); */
}

/* .box::before,
.box::after {
  background: linear-gradient(235deg, #F38121, #f7e112, #ec2520);
} */

.box .content {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  background-color: #010615;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 150px;
  color: white;
  opacity: 0;
  transition: 0.5s;
}

.box .content p {
  line-height: 15px;
  padding: 10px;
  margin-bottom: 0;
  overflow: hidden;
}

.box .content a {
  color: var(--color-primary);
}

.box .content a:hover {
  color: #ec2520;
}

.box:hover .content {
  opacity: 1;
}

@media (max-width: 1279px) {
  .box {
    position: relative;
    width: 250px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(53, 46, 46);
    transition: 0.5s;
    margin: 10px 10px 10px 10px;
  }
  
  .img-box h5 {
    color: white;
    text-align: center;
    margin-top: 10px;
    font-size: 0.7rem;
  }
  
  .box:hover {
    height: 380px;
  }
  
  .box::before {
    content: '';
    position: absolute;
    background-color: white;
    top: -2px;
    bottom: -2px;
    right: -2px;
    left: -2px;
    z-index: -1;
  }
  
  .box::after {
    content: '';
    position: absolute;
    background-color: white;
    top: -2px;
    bottom: -2px;
    right: -2px;
    left: -2px;
    z-index: -2;
    /* filter: blur(10px); */
  }
  
  /* .box::before,
  .box::after {
    background: linear-gradient(235deg, #F38121, #f7e112, #ec2520);
  } */
  
  .box .content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    background-color: #010615;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 180px;
    color: white;
    opacity: 0;
    transition: 0.5s;
  }
  
  .box .content p {
    line-height: 15px;
    padding: 10px;
    margin-bottom: 0;
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .co-event {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }  

  .box {
    position: relative;
    width: 220px;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(53, 46, 46);
    transition: 0.5s;
    margin: 10px 10px 10px 10px;
  }
  
  .img-box h5 {
    color: white;
    text-align: center;
    margin-top: 10px;
    font-size: 0.8rem;
  }
  
  .box:hover {
    height: 380px;
  }
  
  .box::before {
    content: '';
    position: absolute;
    background-color: white;
    top: -2px;
    bottom: -2px;
    right: -2px;
    left: -2px;
    z-index: -1;
  }
  
  .box::after {
    content: '';
    position: absolute;
    background-color: white;
    top: -2px;
    bottom: -2px;
    right: -2px;
    left: -2px;
    z-index: -2;
    /* filter: blur(10px); */
  }
  
  /* .box::before,
  .box::after {
    background: linear-gradient(235deg, #F38121, #f7e112, #ec2520);
  } */
  
  .box .content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    background-color: #010615;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 160px;
    color: white;
    opacity: 0;
    transition: 0.5s;
  }
  
  .box .content p {
    line-height: 15px;
    padding: 10px;
    margin-bottom: 0;
  }
}

/* Home event */


figure.snip0016 {
  font-family: "Raleway", Arial, sans-serif;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 360px;
  max-height: 275px;
  width: 100%;
  background: #000000;
  text-align: left;
}
figure.snip0016 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip0016 img {
  max-width: 100%;
  opacity: 1;
  width: 100%;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
figure.snip0016 figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 3em;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.front-title {
  position: absolute;
  text-align: left;
  margin-top: 20px;
  min-height: 100px;
  width: 100%;
  background-color: #00000061;
  padding: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.6s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.front-title h4{
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.6s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 6s;
}
figure.snip0016 figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 100%;
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  content: "";
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.6s;
  min-height: 230px;
}
figure.snip0016 h2,
figure.snip0016 p {
  margin: 0 0 5px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s,
    -o-transform 0.35s, transform 0.35s;
}
figure.snip0016 h2 {
  word-spacing: -0.15em;
  font-weight: 300;
  text-transform: uppercase;
  -webkit-transform: translate3d(30%, 0%, 0);
  transform: translate3d(30%, 0%, 0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
figure.snip0016 h2 span {
  font-weight: 800;
}
figure.snip0016 p, figure.snip0016 a {
  font-weight: 200;
  -webkit-transform: translate3d(0%, 30%, 0);
  transform: translate3d(0%, 30%, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
figure.snip0016 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  color: var(--color-primary);
}
figure.snip0016 a:hover {
  color: #ec2520;
}
figure.snip0016:hover img {
  opacity: 0.3;
}
figure.snip0016:hover figcaption h2 {
  opacity: 1;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.4s;
  transition-delay: 1.2s;
}
figure.snip0016:hover figcaption p {
  opacity: 0.9;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 1.3s;
  line-height: normal;
}
figure.snip0016:hover figcaption::before {
  background: rgba(255, 255, 255, 0);
  left: 30px;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 1s;
}
figure.snip0016:hover .front-title{
  opacity: 0;
}


/* End Home event */

/* Sponsors */
.sponsors-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.sponsors-box {
  margin: 15px;
}

/* Footer */

.footer-top a,
.footer-top a:hover,
.footer-top a:focus,
.footer-top a:active {
    text-decoration: none;
    outline: none;
}

.footer-top a,
.footer-top a:active,
.footer-top a:focus {
    color: var(--color-secondary);
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

.footer-top a:hover {
  color: var(--color-primary);
}

.terms-privacy li {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-secondary);
}

.responsive-size ul {
  list-style: none;
  padding-left: 0;
}

.footer-top img {
max-width: 100%;
height: auto;
}

.footer-section {
/* background-color: #f1e5b3; */
position: relative;
overflow: hidden;
z-index: 9;
}

/* .footer-section:before {
content: '';
position: absolute;
top: -146%;
left: -18%;
width: 44%;
height: 257%;
transform: rotate(54deg);
background-color: #ffefa8;
-webkit-transform: rotate(54deg);
-moz-transform: rotate(54deg);
-ms-transform: rotate(54deg);
-o-transform: rotate(54deg);
z-index: -10;
}

.footer-section:after {
position: absolute;
content: '';
background-color: #ffefa8;
top: -24%;
right: 4%;
width: 26%;
height: 264%;
transform: rotate(44deg);
-webkit-transform: rotate(44deg);
-moz-transform: rotate(44deg);
-ms-transform: rotate(44deg);
-o-transform: rotate(44deg);
z-index: -10;
} */

.footer-top {
padding-top: 96px;
padding-bottom: 50px;
}

.footer-top p,
.company-footer-contact-list li {
color: var(--color-secondary);
}

.company-footer-contact-list {
margin-top: 10px;
}

.company-footer-contact-list li {
display: flex;
display: -webkit-flex;
align-items: baseline;
}

.company-footer-contact-list li+li {
margin-top: 5px;
}

.company-footer-contact-list li i {
margin-right: 10px;
font-size: 20px;
display: inline-block;
color: var(--color-secondary);
}

.footer-top .site-logo {
margin-bottom: 25px;
display: block;
max-width: 170px;
}

.widget-title {
text-transform: capitalize;
}

.footer-top .widget-title {
color: var(--color-secondary);
margin-bottom: 40px;
}

.courses-link-list li+li {
margin-top: 10px;
}

.courses-link-list li a {
color: var(--color-secondary);
text-transform: capitalize;
font-family: var(--para-font);
font-weight: 400;
}

.courses-link-list li a:hover {
color: var(--color-primary);
}

.courses-link-list li i {
margin-right: 5px;
}

.footer-top .small-post-title a {
font-family: var(--para-font);
color: var(--color-secondary);
font-weight: 400;
}

.small-post-item .post-date {
color: var(--color-primary);
margin-bottom: 3px;
font-family: var(--para-font);
font-weight: 400;
}

.small-post-list li+li {
margin-top: 30px;
}

.news-letter-form {
margin-top: 15px;
}

.news-letter-form input {
width: 100%;
padding: 12px 25px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border: none;
}

.news-letter-form input[type="submit"] {
width: auto;
border: none;
background-color: var(--color-primary);
padding: 9px 30px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
color: var(--color-secondary);
margin-top: 10px;
}

.footer-bottom {
padding: 13px 0;
border-top: 1px solid rgba(255, 255, 255, 0.149);
}

.copy-right-text {
color: var(--color-secondary);
}

.copy-right-text a {
color: var(--color-primary);
}

.terms-privacy li+li {
margin-left: 30px;
}

.terms-privacy li a {
color: var(--color-primary);
position: relative;
}

/* .terms-privacy li a:after {
position: absolute;
content: '-';
color: #ffffff;
display: inline-block;
top: 0;
right: -18px;
} */
.terms-privacy li+li a:after {
display: none;
}

@media (max-width: 991px) {
  .responsive-size {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .responsive-size {
    width: 100%;
  }
}

/* End footer */

  /* Fixed Btn
--------------------------------*/
/* for desktop */
.fix-btn {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1;
  top: 100px; /* adjust as needed */
  right: 20px; /* adjust as needed */
  transition-delay: 2s;
}

.fixed-btn-1 {
  width: 150px;
  height: 35px;
  border-radius: 10px;
  background: linear-gradient(270deg, #f7de13, #f7d013, #f7d013, #f7b313, #f7b113, #f7a613, #f28919, #f27d19, #eb431d, #eb241d);
  padding: 8px;
  margin: 3px;
  text-align: center;
  font-size: smaller;
  font-weight: 600;
  transition: all 1s;
}

.fixed-btn-2 {
  width: 250px;
  height: 35px;
  border-radius: 10px;
  background: linear-gradient(270deg, #f7de13, #f7d013, #f7d013, #f7b313, #f7b113, #f7a613, #f28919, #f27d19, #eb431d, #eb241d);
  padding: 8px;
  margin: 3px;
  font-size: smaller;
  transition: all 1s;
}

.fixed-btn-3 {
  width: 250px;
  height: 35px;
  border-radius: 10px;
  background: linear-gradient(270deg, #f7de13, #f7d013, #f7d013, #f7b313, #f7b113, #f7a613, #f28919, #f27d19, #eb431d, #eb241d);
  padding: 8px;
  margin: 3px;
  font-size: smaller;
  transition: all 1s;
}

.fixed-btn-1 a,
.fixed-btn-2 a,
.fixed-btn-3 a {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}

.fixed-btn-1:hover,
.fixed-btn-2:hover,
.fixed-btn-3:hover {
  background: linear-gradient(270deg, #000000, #000000, #000000, #000000, #000000, #000000, #000000, #000000, #000000, #000000);
  padding: 8px;
  transform: scale(1.1);
}

/* .fixed-btn-2 {
  text-shadow: none;
  background: -webkit-linear-gradient(-45deg, rgba(230, 4, 4, 0.6) 25%, transparent 25%, transparent 50%, rgba(230, 4, 4, 0.6) 50%, rgba(230, 4, 4, 0.6) 75%, transparent 75%, transparent), -webkit-linear-gradient(top, #f92828, #e60404);
  background: -moz-linear-gradient(-45deg, rgba(230, 4, 4, 0.6) 25%, transparent 25%, transparent 50%, rgba(230, 4, 4, 0.6) 50%, rgba(230, 4, 4, 0.6) 75%, transparent 75%, transparent), -moz-linear-gradient(top, #f92828, #e60404);
  background: -ms-linear-gradient(-45deg, rgba(230, 4, 4, 0.6) 25%, transparent 25%, transparent 50%, rgba(230, 4, 4, 0.6) 50%, rgba(230, 4, 4, 0.6) 75%, transparent 75%, transparent), -ms-linear-gradient(top, #f92828, #e60404);
  background: -o-linear-gradient(-45deg, rgba(230, 4, 4, 0.6) 25%, transparent 25%, transparent 50%, rgba(230, 4, 4, 0.6) 50%, rgba(230, 4, 4, 0.6) 75%, transparent 75%, transparent), -o-linear-gradient(top, #f92828, #e60404);
  background: linear-gradient(-45deg, rgba(230, 4, 4, 0.6) 25%, transparent 25%, transparent 50%, rgba(230, 4, 4, 0.6) 50%, rgba(230, 4, 4, 0.6) 75%, transparent 75%, transparent), linear-gradient(top, #f92828, #e60404);
  -pie-background: linear-gradient(-45deg, rgba(230, 4, 4, 0.6) 25%, transparent 25%, transparent 50%, rgba(230, 4, 4, 0.6) 50%, rgba(230, 4, 4, 0.6) 75%, transparent 75%, transparent), linear-gradient(top, #f92828, #e60404);
  background-repeat: repeat;
  -webkit-background-size: 40px 40px, 100% 100%;
  -moz-background-size: 40px 40px, 100% 100%;
  -ms-background-size: 40px 40px, 100% 100%;
  -o-background-size: 40px 40px, 100% 100%;
  background-size: 40px 40px, 100% 100%;
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -moz-animation: progress-bar-stripes 2s linear infinite;
  -ms-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
} */

/* @-webkit-keyframes progress-bar-stripes {
from { background-position: 0 0; }
to { background-position: 40px 0; }
}

@-moz-keyframes progress-bar-stripes {
from { background-position: 0 0; }
to { background-position: 40px 0; }
}

@keyframes progress-bar-stripes {
from { background-position: 0 0; }
to { background-position: 40px 0; }
} */

/* End Fixed Btn */

/* Fixed Social media Btn */

.social-media-fixed {
  right: 0px;
  top: 150px;
  line-height: 32px;
}

.a2a_kit, .a2a_menu, .a2a_modal, .a2a_overlay {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  outline: 0;
  right: 0px;
  top: 100px;
  line-height: 32px;
}

.a2a_floating_style, .a2a_overlay_style {
  animation: a2aFadeIn .2s ease-in;
  padding: 4px;
}

.a2a_s_facebook {
  background-color: rgb(8, 102, 255);
}

.a2a_s_instagram {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

.a2a_s_instagram svg {
  left: 4px;
  top: 4px;
}

.a2a_s_linkedin {
  background-color: #0A66C2;
}

.a2a_s_linkedin svg {
  left: 4px;
  top: 4px;
}

.a2a_floating_style {
  background-color: #fff;
  border-radius: 6px;
  position: fixed;
  z-index: 9999995;
}

.a2a_vertical_style:not(.a2a_flex_style) a {
  clear: left;
  display: block;
  overflow: hidden;
  padding: 4px;
}

.a2a_kit a {
  cursor: pointer;
  transition: none;
}

.a2a_color_buttons a, .a2a_floating_style a {
  text-decoration: none;
}

.a2a_default_style .a2a_count, .a2a_default_style .a2a_svg, .a2a_floating_style .a2a_svg, .a2a_menu .a2a_svg, .a2a_vertical_style .a2a_count, .a2a_vertical_style .a2a_svg {
  border-radius: 4px;
}

.a2a_kit .a2a_svg {
  background-repeat: repeat;
}

.a2a_svg {
  background-repeat: no-repeat;
  display: block;
  overflow: hidden;
  height: 32px;
  line-height: 32px;
  padding: 0;
  pointer-events: none;
  width: 32px;
}

@media (max-width: 475px) {
  .a2a_svg {
    background-repeat: no-repeat;
    height: 23px;
    width: 21px;
  }

  .a2a_floating_style, .a2a_overlay_style {
    padding: 2px;
  }

  .a2a_vertical_style:not(.a2a_flex_style) a {
    padding: 2px;
  }

  .a2a_s_instagram svg {
    left: 3px;
    top: 3.5px;
  }

  .a2a_s_facebook svg {
    left: 0px;
    top: 1px;
  }

  .a2a_s_linkedin svg {
    left: 2.5px;
    top: 2px;
  }
}

.a2a_svg svg {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: none;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: auto;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

.a2a_label {
  position: absolute !important;
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  overflow: hidden;
  height: 1px;
  width: 1px;
}

/* End Fixed Social media Btn */

/* Exhibitor Profile */
.exhibitor-sector {
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
  flex-wrap: wrap;
}

.sector-title h5 {
  margin-top: 50px;
}

.sector-1 {
  min-width: 310px;
}

/* Application Btn */

.application {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 20px;
}

.application i {
  margin-right: 5px;
}

.appl-btn {
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  display: block;
  width: 250px;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.5s;
}

.appl-btn:hover {
  background-color: red;
  color: white;
  transform: scale(1.2);
  display: block;
  width: 250px;
  padding: 10px 20px;
  border-radius: 25px;
}

/* End Application Btn*/

/* official travel partner */

.icon-place i {
  left: -15px;
}

/* end official travel partner */
.travel-partner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-box {
  position: relative;
}

.contact-box div {
  margin-left: 70px;
}

.icon-position {
  position: absolute;
}

@media (max-width: 991px) {
  .travel-partner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* .content-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}

.contact-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-area ul {
  list-style: none;
}

.contact-area ul li {
  list-style: none;
  padding: 0 0 25px 0;
  position: relative;
}

.contact-area ul li i{
  list-style: none;
  padding: 0 0 25px 0;
  position:  absolute;
}

.company-logo img {
  max-width: 100%;
  height: auto;
} */
