/**
* Template Name: Restaurantly
* Template URL: https://bootstrapmade.com/restaurantly-restaurant-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #0c0b09; /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.7); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffb400; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --contrast-color: #151411; /* The contrast color is used for elements when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant colors */
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif !important;
  background: #0c0b09;
  color: #fff;
}

a {
  color:  var(--accent-color);
  text-decoration: none;
}

a:hover {
  color:  var(--accent-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid var(--accent-color);
}

.back-to-top i {
  font-size: 28px;
  color: var(--accent-color);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--accent-color);
  color: #1a1814;
}

.back-to-top:hover i {
  color: #444444;
}

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

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--accent-color);
}

#topbar .languages ul a {
  color: white;
}

#topbar .languages ul li+li {
  padding-left: 10px;
}

#topbar .languages ul li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(12, 11, 9, 0.6);
  border-bottom: 1px solid rgba(12, 11, 9, 0.6);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#header.special-header {
  background: rgba(247, 172, 86, 0.6); /* Change to your desired color */
  transition: all 0.5s;
  border-bottom: 0;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#header.special-header.header-scrolled {
  top: 0;
  background: rgba(252, 186, 111, 0.6);
  border-bottom: 0;
}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #37332a;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  border: 2px solid var(--accent-color);
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

a.awards {
  /* margin: 0 0 0 15px; */
  border: 2px solid #000;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

a.awards:hover {
  background: var(--accent-color);
  color: #fff;
}

.award-image {
  width: 100%;
  height: 100%;
}

.award-container img{
  width: 100%;
  height: 100%;
}



.book-a-table-btn:hover {
  background: var(--accent-color);
  color: #fff;
}

button.book-a-table-btn {
  border: 2px solid var(--accent-color);
  background-color: #000;

}

a.book-a-table-btn.awards,
button.book-a-table-btn.awards {
  border: 2px solid var(--accent-color);
  color: #fff;
}

button.book-a-table-btn.awards:hover {
  background: #000;
  color: #fff;
}

button.awards-res {
  color: #fff;
  padding: 10px 20px;
}

button.awards-res:hover {
  color: var(--accent-color);
}


@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.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 0 10px 30px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
}

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

.navbar .activated {
  color: #000;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
  color: #444444;
}

.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(--accent-color);
}

.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(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.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: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--accent-color);
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /* background: url("client/assets/img/hero-bg.jpg") top center; */
  background-size: cover;
  position: relative;
  padding: 0;
  transition: background-image 1s ease-in-out;
}

.branches-box {
  margin-bottom: 50px;
}

.circular-container {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
}

.circular-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1399px) {
  .circular-container {
    width: 250px;
    height: 250px;
  }
}

@media screen and (max-width: 1199px) {
  .circular-container {
    width: 200px;
    height: 200px;
  }
}

@media screen and (max-width: 991px) {
  .circular-container {
    width: 300px;
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .circular-container {
    width: 230px;
    height: 230px;
  }
}

@media screen and (max-width: 430px) {
  .circular-container {
    width: 190px;
    height: 190px;
  }

  .circular-container:hover .image-text {
    font-size: 25px;
  }
  #hero {
  width: 100%;
  height: 35rem;
}
}

@media screen and (max-width: 414px) {
  .circular-container {
    width: 180px;
    height: 180px;
  }

  .circular-container:hover .image-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 375px) {
  .circular-container {
    width: 160px;
    height: 160px;
  }

  .circular-container:hover .image-text {
    font-size: 15px;
  }

}

.image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--accent-color);
  font-size: 28px;
  font-weight: bold;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
  border-radius: 50%;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease;
}

.circular-container:hover .overlay {
  opacity: 1; /* Show overlay on hover */
}

.circular-container:hover .image-text {
  opacity: 1; /* Show overlay on hover */
}




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

#hero .container {
  padding-top: 110px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 541px) and (max-width: 1024px){
    #hero h1 {
        font-size: 50px;
        line-height: 56px;
    }
}
@media screen and (max-width: 540px) {
    #hero h1 {
        font-size: 40px;
    }
}


#hero h1 span {
  color: var(--accent-color);
}

#hero h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
}

#hero .btns {
  margin-top: 30px;
}

#hero .btn-menu {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
}


#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid var(--accent-color);
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: var(--accent-color);
  color: #fff;
}

#hero .btn-menu:hover {
  background: transparent;
  color: #fff;
}

#hero .btn-book {
  margin-left: 15px;
}

/* Center the play button within the parent container */
#about .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -350%);
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffb400 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 1399px) {
  #about .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -310%);
  }
}

@media screen and (max-width: 1366px) {
  #about .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -300%);
  }
}

@media screen and (max-width: 1199px) {
  #about .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -240%);
  }
}

@media screen and (max-width: 991px) {
  #about .play-btn {
    top: 50%;
    left: 45%;
    transform: translate(-50%, -300%);
  }
}
@media screen and (max-width: 820px) {
  #about .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -400%);
  }
}
@media screen and (max-width: 768px) {
  #about .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -370%);
  }
}
@media screen and (max-width: 768px) {
  #about .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -370%);
  }
}

@media screen and (max-width: 430px) {
  #about .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -240%);
  }
}

@media screen and (max-width: 414px) {
  #about .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -270%);
  }
}

@media screen and (max-width: 390px) {
  #about .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -250%);
  }
}

/* #about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffb400
 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 100;
} */

#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;
  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(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#about .play-btn:hover::after {
  border-left: 15px solid var(--accent-color);
  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;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1600px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #about .play-btn {
    margin-top: 30px;
  }
}

.about .swiper-pagination {
  margin-top: 100px;
  /* position: relative; */
}

.about .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.about .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}



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

  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  /* #hero h1 {
    font-size: 28px;
    line-height: 36px;
  } */

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

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

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #1a1814;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  margin-top: 110px;
}

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

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.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: #37332a;
  content: "/";
}

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

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../img/boxpark.png") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.about:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .about-img {
  position: relative;
  transition: 0.5s;
}

.about .about-img img {
  /* height: 450px; */
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

/* @media screen and (max-width: 1399px){
  .about .about-img img {
    height: 400px;
  }
}

@media screen and (max-width: 1199px){
  .about .about-img img {
    height: 350px;
  }
}

@media screen and (max-width: 991px){
  .about .about-img img {
    height: 100%;
    max-width: 100%;
  }
} */

/* .about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid var(--accent-color)
;
  border-top: 5px solid var(--accent-color)
;
  transition: 0.5s;
}

.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid var(--accent-color)
;
  border-bottom: 5px solid var(--accent-color)
;
  transition: 0.5s;
} */

.about .about-img:hover {
  transform: scale(1.03);
}

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content {
  position: relative;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

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

@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
/* .why-us {
  background-color: white;
} */

.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: var(--accent-color);
  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; */
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-area: 5px;
  border-radius: 50px;
}

@media screen and (max-width: 1199px) {
  .menu #menu-flters {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .menu #menu-flters {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 430px) {
  .menu #menu-flters {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  padding: 5px 20px;
  margin: 0 5px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  border: 1px solid;
  border-color: var(--accent-color);
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Poppins", serif;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
  background-color: var(--accent-color);
  color: #fff;
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menus .menu-item {
  position: relative;
  margin-top: 50px;
}

.menu-view-all-btn{
  margin: 0 0 0 15px;
  border: 2px solid var(--accent-color);
  color: #ffffff;
  background-color: var(--accent-color);
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.product-price {
  position: absolute;
  right: 0;
  top: 100px;
  z-index: 60;
  background-color: var(--accent-color);
  color: #000;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
}

.product-img {
  width: 450px;
  /* height: 100%; */
  position: absolute;
  z-index: 50;
  left: 0;
  top: 0;
}

.product-title {
  font-weight: 700;
}

.product-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-title {
  font-size: 25px;
  flex-grow: 1;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  margin-top: 175px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-top: 15rem;
  height: 340px;
  border: 0;
  background-color: transparent;
  color: #fff;
}

@media only screen and (max-width: 1399px) {
  .product-img {
    width: 350px;
    left: 20px;
    top: -20px;
  }

  .product-card {
    margin-top: 100px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-top: 200px;
    height: 300px;
  }

  .product-title {
    font-size: 20px;
  }

  .product-price {
    right: 0px;
    top: 40px;
    padding: 5px 15px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1199px) {
  .product-img {
    width: 280px;
    left: 25px;
    top: -30px;
  }

  .product-card {
    margin-top: 70px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-top: 150px;
    height: 200px !important;
  }

  .product-title {
    font-size: 15px;
  }

  .product-price {
    right: 20px;
    top: 15px;
    padding: 5px 15px;
  }

  .product-text {
    font-size: 13px;
  }

  .product-card {
    height: 250px;
  }
}

@media only screen and (max-width: 992px) {
  .product-img {
    width: 250px;
    left: 45px;
    top: -30px;
  }

  .product-price {
    right: 50px;
    top: 20px;
    padding: 5px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .product-img {
    width: 180px;
    left: 45px;
    top: -40px;
  }

  .product-price {
    right: 20px;
    top: 18px;
    padding: 3px 10px;
  }

  .product-card {
    margin-top: 45px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-top: 80px;
  }

  .product-title {
    font-size: 14px;
  }

  .product-text {
    font-size: 11px;
  }

  .product-card {
    height: 230px;
  }
}

@media only screen and (max-width: 575px) {
  .product-img {
    width: 150px;
    left: 28px;
    top: -40px;
  }

  .product-price {
    right: 10px;
    top: 15px;
    padding: 3px 10px;
  }

  .product-card {
    margin-top: 45px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-top: 55px;
  }

  .product-body .product-title {
    text-align: center;
    font-size: 13px;
  }

  .product-text {
    font-size: 10px;
  }

  .product-card {
    height: 250px;
  }
}

@media only screen and (max-width: 430px) {
  .product-img {
    width: 380px;
    left: 25px;
    top: -70px;
  }

  .product-price {
    right: 25px;
    top: 25px;
    padding: 8px 15px;
    font-size: 15px;
  }

  .product-card {
    margin-top: 100px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-top: 170px;
    height: 280px !important;
  }

  .product-body .product-title {
    font-size: 25px;
  }
}

@media only screen and (max-width: 414px) {
  .product-img {
    width: 350px;
    left: 30px;
    top: -60px;
  }
}

@media only screen and (max-width: 390px) {
  .product-img {
    width: 350px;
    left: 20px;
    top: -60px;
  }

  .product-card {
    height: 155px;
  }
}


@media only screen and (max-width: 375px) {
  .product-img {
    width: 350px;
    left: 15px;
    top: -60px;
  }

  .product-card {
    margin-top: 100px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-top: 170px;
  }

  .product-price {
    font-size: 13px;
  }

  .product-body .product-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .grid-menu {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* Optional: adds spacing between items */
  }
}

.menu .menu-img {
  width: 70px;
  border-radius: 50%;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
  margin-left: 85px;
  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: #bab3a6;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  padding-right: 10px;
  background: #1a1814;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: var(--accent-color);
}

.menu .menu-content span {
  background: #1a1814;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
  color: var(--accent-color);
}

.menu .menu-ingredients {
  margin-left: 85px;
  font-style: italic;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  border-right: 2px solid var(--accent-color);
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: var(--accent-color);
}

.specials .nav-link.active {
  color: #1a1814;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.specials .nav-link:hover {
  border-color: var(--accent-color);
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.specials .details p {
  color: #aaaaaa;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  margin-top: 150px;
}

.events::before {
  content: "";
  background-color: rgba(0, 0, 0, 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 {
    background-attachment: fixed;
  }
}

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

.events .event-item .price {
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid var(--accent-color);
}

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

.events .event-item p:last-child {
  margin-bottom: 0;
}

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

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
}

.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;
  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 var(--accent-color);
  border-top-color: #1a1814;
  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;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: #a49b89;
}

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

.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: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: white;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 26px;
}

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
/*--------------------------------------------------------------
# Video Reviews
--------------------------------------------------------------*/
.reviews .reviews-carousel,
.reviews .reviews-slider {
  overflow: hidden;
}

.reviews .review-item {
  box-sizing: content-box;
  border-radius: 50%;
  min-height: 320px;
}

.reviews .review-item .review-img {
  width: 100%;
  border-radius: 50%;
  /* margin: -40px 0 0 40px; */
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.reviews .review-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: white;
}

.reviews .review-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.reviews .review-item .quote-icon-left,
.reviews .review-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 26px;
}

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

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

.reviews .review-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
   overflow: hidden;
  z-index: 1;
}

.review .swiper-pagination {
  position: relative;
}

.review .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.review .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/* Center the play button within the parent container */
#review .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -350%);
  width: 94px;
  height: 94px;
  z-index: 20;
  background: radial-gradient(#ffb400 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 1399px) {
  #review .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -300%);
  }
}

@media screen and (max-width: 1366px) {
  #review .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -260%);
  }
}

@media screen and (max-width: 1199px) {
  #review .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -200%);
  }
}

@media screen and (max-width: 991px) {
  #review .play-btn {
    top: 50%;
    left: 45%;
    transform: translate(-50%, -360%);
  }
}
@media screen and (max-width: 820px) {
  #review .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -360%);
  }
}
@media screen and (max-width: 768px) {
  #review .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -330%);
  }
}
@media screen and (max-width: 766px) {
  #review .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -330%);
  }
}

@media screen and (max-width: 430px) {
  #review .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -250%);
  }
}

@media screen and (max-width: 414px) {
  #review .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -230%);
  }
}

@media screen and (max-width: 380px) {
  #review .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -210%);
  }
}

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

#review .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  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(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

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

#review .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;
  animation: none;
  border-radius: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  height: 100%;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  background-size: cover;
  object-position: center;
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}



.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(--accent-color);
}

.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: var(--accent-color);
    z-index: 1;
    transform: scale(1.2);
  }
}
/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.chefs .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.chefs .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.chefs .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.chefs .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}

.chefs .member .social a:hover {
  color: var(--accent-color);
}

.chefs .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.chefs .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.chefs .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.chefs .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 18px;
  float: left;
  width: 44px;
  height: 44px;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #bab3a6;
}

.contact .info .open-hours,
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
}

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

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

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

.contact .php-email-form .loading {
  display: none;
  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 var(--accent-color);
  border-top-color: #1a1814;
  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;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #a49b89;
}

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

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

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

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

.contact .php-email-form button[type=submit]:hover {
  background: var(--accent-color);
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0c0b09;
  border-top: 1px solid #37332a;
  border-bottom: 1px solid #28251f;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif !important;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif !important;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
}

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

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--accent-color);
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--accent-color);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #28251f;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: #28251f;
  color: white;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: var(--accent-color);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: var(--accent-color);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
@media screen and (min-width: 993px) {
  .footer-img{
      width: 180px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
    #footer .footer-top .footer-info h3,
    #footer .footer-top .footer-info p,
    #footer .social-links,
    #footer .footer-links,
    #footer .footer-links ul li{
        text-align: center;
    }
  .footer-img{
      width: 150px;
  }

}

@media screen and (max-width: 540px) {

    #footer .footer-top .footer-info h3,
    #footer .footer-top .footer-info p,
    #footer .social-links,
    #footer .footer-links,
    #footer .footer-links ul li{
        text-align: center;
    }
    .footer-img{
        width: 100px;
    }

}

.video-title {
  font-size: 80px;
}

.video-button {
  background-color: var(--accent-color);
  color: #fff;
  padding: 15px 25px;
  width: 140px;
  border-radius: 40px;
}

.video-button:hover {
  background-color: transparent;
  border: 1px solid;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media screen and (max-width: 1399px) {
  .video-title {
    font-size: 70px;
  }
}

@media screen and (max-width: 1199px) {
  .video-title {
    font-size: 60px;
  }
}


.branches {
  min-height: 100vh;
  background-color: #1a1814;
}

.gallery-1 {
  height: 100%;
  width: 100%;
}

.gallery-1 img{
  border-radius: 20px;
  height: 100%;
  width: 100%;
}

.main-pic {
  height: 100%;
  width: 100%;
}

.main-pic img{
  border-radius: 20px;
  height: auto;
  width: 100%;
}

.aboutus {
  min-height: 100vh;
  margin-bottom: 0;
  background-color: #1a1814;
}

.grid-container-1 {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.grid-container-2 {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
}

.grid-container-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

@media screen and (max-width: 992px) {
  .grid-container-1 {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-container-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-container-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-3-2 h6{
    display: none;
  }

  .grid-3-2 h5{
    display: block !important;
    color: #fff;
    font-size: 50px;
  }
}


@media screen and (max-width: 662px) {
  .grid-4-2 p{
    margin: 20px 0;
    font-size: 14px;
  }
}

.grid-1-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  padding: 0 60px;
  text-align: justify;
  background-color: black;
}

.grid-2-1 {
  height: 200px;
}

.grid-2-1 img{
  height: 100%;
  width: 100%;
}

.grid-3-2 {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-3-2 h6{
    font-size: 35px;
    /* writing-mode: vertical-rl;
    transform: rotate(180deg); */
    color: #fff;
}

.grid-3-2 h5{
  display: none;
}

.grid-4-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  padding: 0 60px;
  text-align: justify;
  background: var(--accent-color);
  color: black;
}

.grid-5-2 {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.grid-5-2 img{
  width: auto;
  height: 100%;
}

.grid-6-3 {
  height: 200px;
}

.grid-6-3 img{
  height: 100%;
  width: 100%;
}

.grid-7-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}


/*
.grid-1-1, .grid-2-1,.grid-4-2,.grid-6-3 {
  background-color: var(--accent-color);
  color:black;
} */


.grid-7-3 {
  background-color: black;
  padding: 0 60px;
  text-align: justify;
}

.grid-3-2 {
  background-color: #000;
}

.grid-5-2 {
  background-color: #000;
}



@media screen and (max-width: 380px){
    .grid-5-2 {
        background-color: #000;
    }
    .grid-4-2 {
       display: flex;
        justify-content: center;
        align-items: center;
        height: 880px;
        padding: 0 60px;
        text-align: justify;
    }
    .grid-2-1 {
        height: auto;
    }

    .grid-2-1 img{
        height: auto;
        width: 100%;
    }
    .grid-6-3 {
        height: auto;
    }

    .grid-6-3 img{
        height: auto;
        width: 100%;
    }
    .grid-5-2 {
        display: none;
    }
    .grid-7-3 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 500px;
    }
    .grid-1-1{
        margin-top: 10px;
        height: 895px;
        background: var(--accent-color);
        color: black;
    }

}

@media screen and (min-width: 381px) and (max-width: 415px){
    .grid-5-2 {
        background-color: #000;
    }
    .grid-4-2 {
       display: flex;
        justify-content: center;
        align-items: center;
        height: 880px;
        padding: 0 60px;
        text-align: justify;
    }
    .grid-2-1 {
        height: auto;
    }

    .grid-2-1 img{
        height: auto;
        width: 100%;
    }
    .grid-6-3 {
        height: auto;
    }

    .grid-6-3 img{
        height: auto;
        width: 100%;
    }
    .grid-5-2 {
        display: none;
    }
    .grid-7-3 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 500px;
    }
    .grid-1-1{
        margin-top: 10px;
        height: 850px;
        background: var(--accent-color);
        color: black;
    }

}


@media screen and (min-width: 416px) and (max-width: 430px){
    .grid-5-2 {
        background-color: #000;
    }
    .grid-4-2 {
       display: flex;
        justify-content: center;
        align-items: center;
        height: 680px;
        padding: 0 60px;
        text-align: justify;
    }
    .grid-2-1 {
        height: auto;
    }

    .grid-2-1 img{
        height: auto;
        width: 100%;
    }
    .grid-6-3 {
        height: auto;
    }

    .grid-6-3 img{
        height: auto;
        width: 100%;
    }
    .grid-5-2 {
        display: none;
    }
    .grid-7-3 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 400px;
    }
    .grid-1-1{
        margin-top: 10px;
        height: 670px;
        background: var(--accent-color);
        color: black;
    }

}


@media screen and (min-width: 431px) and (max-width: 825px){
    .grid-5-2 {
        background-color: #000;
    }
    .grid-4-2 {
       display: flex;
        justify-content: center;
        align-items: center;
        height: 500px;
        padding: 0 60px;
        text-align: justify;
    }
    .grid-2-1 {
        height: auto;
    }

    .grid-2-1 img{
        height: auto;
        width: 100%;
    }
    .grid-6-3 {
        height: auto;
    }

    .grid-6-3 img{
        height: auto;
        width: 100%;
    }
    .grid-5-2 {
        display: none;
    }
    .grid-7-3 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 400px;
    }
    .grid-1-1{
        margin-top: 10px;
        height: 400px;
        background: var(--accent-color);
        color: black;
    }

}


@media screen and (min-width: 826px) and (max-width: 1025px){
    .grid-5-2 {
        background-color: #000;
    }
    .grid-4-2 {
       display: flex;
        justify-content: center;
        align-items: center;
        height: 700px;
        padding: 0 60px;
        text-align: justify;
    }
    .grid-2-1 {
        height: auto;
        background-color: black;
    }

    .grid-2-1 img{
        height: auto;
        width: 100%;
    }
    .grid-6-3 {
        height: auto;
        background-color: black;
    }

    .grid-6-3 img{
        height: auto;
        width: 100%;
    }
    .grid-7-3 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 300px;
    }
    .grid-1-1{
        margin-top: 10px;
        height: 370px;
        background: var(--accent-color);
        color: black;
    }
    .grid-container-2{
        background-color: black;
    }
    .grid-5-2 img {
    width: auto;
    height: 100%;
    margin-top: 175%;
    }
    .grid-3-2 h6 {
    margin-top: 175%;
}
}


@media screen and (min-width: 1026px) and (max-width: 1366px){

    .grid-5-2 {
        background-color: #000;
    }
    .grid-4-2 {
       display: flex;
        justify-content: center;
        align-items: center;
        height: 500px;
        padding: 0 60px;
        text-align: justify;
    }
    .grid-2-1 {
        height: auto;
        background-color: black;
    }

    .grid-2-1 img{
        height: auto;
        width: 100%;
    }
    .grid-6-3 {
        height: auto;
        background-color: black;
    }

    .grid-6-3 img{
        height: auto;
        width: 100%;
    }
    .grid-7-3 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 200px;
    }
    .grid-1-1{
        margin-top: 10px;
        height: 270px;
    }
    .grid-container-2{
        background-color: black;
    }
    .grid-5-2 img {
    width: auto;
    height: 100%;
    margin-top: 155%;
    }
    .grid-3-2 h6 {
    margin-top: 155%;
}

}


@media screen and (min-width: 1366px) and (max-width: 1920px){

    .grid-5-2 {
        background-color: #000;
    }
    .grid-4-2 {
       display: flex;
        justify-content: center;
        align-items: center;
        height: 500px;
        padding: 0 60px;
        text-align: justify;
    }
    .grid-2-1 {
        height: auto;
        background-color: black;
    }

    .grid-2-1 img{
        height: auto;
        width: 100%;
    }
    .grid-6-3 {
        height: auto;
        background-color: black;
    }

    .grid-6-3 img{
        height: auto;
        width: 100%;
    }
    .grid-7-3 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 200px;
    }
    .grid-1-1{
        margin-top: 10px;
        height: 270px;
    }
    .grid-container-2{
        background-color: black;
    }
    .grid-5-2 img {
    width: auto;
    height: 100%;
    margin-top: 155%;
    }
    .grid-3-2 h6 {
    margin-top: 155%;
}

}


.gellery-location {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .gellery-location {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .gellery-location {
    grid-template-columns: repeat(2, 1fr);
  }
}

.item-1 {
  width: 100%;
  height: 200px;
}

.item-1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.contactus {
  margin-top: 80px;
  min-height: 100vh;
  background-color: #1a1814;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .contact-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .contact-loc {
    margin-top: 20px;
  }
}

.right-us {
  width: 100%;
}

.left-us {
  width: 100%;
  border-radius: 40px;
  padding: 50px;
  background-color: #000;
}

.left-us h1 {
  color: var(--accent-color);
}

.left-us p {
  text-align: justify;
}

.contact-form {
  width: 100%;
}

.contact-info{
  margin-bottom: 10px;
}
.contact-information{
  margin-left: 50px;
  margin-bottom: 10px;
}

.contact-hour {
  margin-left: 60px;
  margin-bottom: 10px;
}

.contact-image {
  width: 100%;
  height: 100%;
}

.contact-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.form-button {
  padding: 10px 25px;
  border-radius: 20px;
  border: 0;
  background-color: var(--accent-color);
  color: #fff;
}

.fqs {
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 30px;
}


.delivery-riders {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns for larger screens */
  gap: 10px; /* Adjust the gap between grid items as needed */
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .delivery-riders {
    grid-template-columns: repeat(2, 2fr); /* 2 columns, each taking equal space but with more emphasis */
  }
}
@media screen and (min-width: 431px) and (max-width: 767px) {
  .delivery-riders {
    grid-template-columns: repeat(2, 2fr); /* 2 columns, each taking equal space but with more emphasis */
  }
}

@media screen and (max-width: 430px) {
  .delivery-riders {
    grid-template-columns: 1fr; /* Single column layout on small screens */
  }
}






.delivery-service {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.delivery-image {
  border: 0;
  width: 120px;
  height: 100px;
}

.delivery-image img{
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.delivery-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 430px) {
  .delivery-service {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
  }

  .delivery-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }

  .delivery-text .delivery-title{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .delivery-image {
    width: 180px;
    height: 160px;
  }

  .delivery-image img{
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 430px) {
  .delivery-image {
    width: 150px;
    height: 130px;
  }

  .delivery-image img{
    width: 100%;
    height: 100%;
  }
}

.delivery-title {
  color: var(--accent-color);
}

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb,  var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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


/*=========== Gallery Video ============*/


/* Center the play button within the parent container */
#gallery-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -200%);
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffb400 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
}

#gallery-video .section-title{
    position: relative;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: var(--accent-color);
}

@media screen and (max-width: 1399px) {
  #gallery-video .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -190%);
  }
}
@media screen and (max-width: 1366px) {
  #gallery-video .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -180%);
  }
}

@media screen and (max-width: 1199px) {
  #gallery-video .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -170%);
  }
}
@media screen and (max-width: 1024px) {
  #gallery-video .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -160%);
  }
}

@media screen and (max-width: 991px) {
  #gallery-video .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -155%);
  }
}

@media screen and (max-width: 820px) {
  #gallery-video .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -325%);
  }
}


@media screen and (max-width: 768px) {
  #gallery-video .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-35%, -330%);
  }
}

@media screen and (max-width: 430px) {
  #gallery-video .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -250%);
  }
}

@media screen and (max-width: 414px) {
  #gallery-video .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -230%);
  }
}

@media screen and (max-width: 390px) {
  #gallery-video .play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -220%);
  }
}

/* #gallery-video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffb400
 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 100;
} */

#gallery-video .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);
}

#gallery-video .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  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(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#gallery-video .play-btn:hover::after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

#gallery-video .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;
  animation: none;
  border-radius: 0;
}

@media (max-width: 992px) {
  #gallery-video .play-btn {
    margin-top: 30px;
  }
}

.partner1 {
  display: flex;
  justify-content: end;
  align-items: center;
}

.partner2 {
  display: flex;
  justify-content: start;
  align-items: center;
}

@media screen and (max-width: 576px) {
  .partner2, .partner1 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 430px) {
  .partner2, .partner1 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# blog Section
--------------------------------------------------------------*/
.blog{
    margin-top: 150px;
}
/* .blog-recent {
      background-color: #1a1814;
} */

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}
/* .slider-blog {
  background-color: transparent;
}

.slider-blog .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

.slider-blog .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.slider-blog .swiper-wrapper {
  height: auto !important;
}

.slider-blog .swiper-slide {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-blog .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
}

@media (max-width: 575px) {
  .slider-blog .swiper-slide {
    min-height: 300px;
  }
} */



.retro-layout .v-height {
  height: 240px; }

@media (max-width: 767.98px) {
  .retro-layout .img {
    height: 240px; } }

.retro-layout .h-entry {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden; }
  .retro-layout .h-entry .post-category {
    color: #fff; }
  .retro-layout .h-entry .featured-img {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .retro-layout .h-entry:hover .featured-img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  .retro-layout .h-entry.mb-30 {
    margin-bottom: 30px; }
  .retro-layout .h-entry .date {
    font-size: 15px; }
  .retro-layout .h-entry.gradient {
    position: relative; }
    .retro-layout .h-entry.gradient:before {
      z-index: 1;
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
      background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); }

.retro-layout .text {
  position: absolute;
  bottom: 0;
  z-index: 10;
  padding: 20px;
  max-width: 350px; }
  .retro-layout .text h2, .retro-layout .text .h2 {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 0; }
  .retro-layout .text h2:hover, .retro-layout .text .h2:hover {
    color: var(--accent-color);
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 0; }
  .retro-layout .text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    display: block;
    margin-bottom: 5px; }
  .retro-layout .text.text-sm h2, .retro-layout .text.text-sm .h2 {
    font-size: 18px;
    line-height: 1.5; }

.retro-layout .gradient {
  position: relative; }
  .retro-layout .gradient:before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
    background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); }

@media (max-width: 767.98px) {
  .retro-layout .img-5 {
    height: 240px !important;
    margin-bottom: 30px;
    margin-top: 30px; } }

.retro-layout-alt .img-1 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  @media (max-width: 767.98px) {
    .retro-layout-alt .img-1 {
      height: 240px !important;
      position: relative;
      margin-bottom: 30px; } }

.retro-layout-alt .img-2 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  @media (max-width: 767.98px) {
    .retro-layout-alt .img-2 {
      height: 240px !important; } }

.retro-layout-alt .mb30 {
  margin-bottom: 30px; }

.retro-layout-alt .hentry {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px; }
  .retro-layout-alt .hentry .featured-img {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .retro-layout-alt .hentry:hover .featured-img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }

.retro-layout-alt .gradient {
  position: relative; }
  .retro-layout-alt .gradient:before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
    background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); }

.retro-layout-alt .post-category {
  margin-left: 20px;
  margin-top: 10px; }

.retro-layout-alt .v-height {
  height: 300px; }

.retro-layout-alt .text {
  position: absolute;
  bottom: 0;
  z-index: 10;
  padding: 20px;
  max-width: 350px; }
  .retro-layout-alt .text h2, .retro-layout-alt .text .h2 {
    color: #fff;
    font-size: 26px; }
  .retro-layout-alt .text span {
    color: rgba(255, 255, 255, 0.7); }
  .retro-layout-alt .text.text-sm h2, .retro-layout-alt .text.text-sm .h2 {
    font-size: 18px;
    line-height: 1.5; }

.retro-layout-alt .two-col > a {
  width: calc(50% - 15px);
  float: left; }
  @media (max-width: 575.98px) {
    .retro-layout-alt .two-col > a {
      width: 100% !important;
      float: none !important;
      margin-bottom: 30px; } }


.posts-entry-title {
  text-transform: uppercase;
  font-size: 20px;
  color: var(--accent-color);
  letter-spacing: .05rem; }

.posts-entry .blog-entry .img-link {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 10px; }

.posts-entry .blog-entry h2, .posts-entry .blog-entry .h2 {
  line-height: 1.3;
  font-size: 26px; }
  .posts-entry .blog-entry h2 a, .posts-entry .blog-entry .h2 a {
    color: white; }

.posts-entry .btn-sm, .posts-entry .btn-group-sm > .btn {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px; }

.posts-entry .blog-entry-sm li {
  margin-bottom: 20px; }

.posts-entry .blog-entry-sm h3, .posts-entry .blog-entry-sm .h3 {
  font-size: 20px; }
  .posts-entry .blog-entry-sm h3 a, .posts-entry .blog-entry-sm .h3 a {
    color: #4D4C7D; }

.posts-entry.posts-entry-sm .blog-entry h2, .posts-entry.posts-entry-sm .blog-entry .h2 {
  font-size: 18px; }

.posts-entry .blog-entry-search-item {
  margin-bottom: 30px; }
  .posts-entry .blog-entry-search-item .img-link {
    width: 280px;
    border-radius: 0; }
    .posts-entry .blog-entry-search-item .img-link img {
      margin-bottom: 0;
      border-radius: 10px; }
.read-more {
  position: relative;
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 2px solid var(--heading-color);
}

.read-more::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease-in-out;
}

.read-more:hover::after {
  width: 100%;
}




.post-entry-alt h2, .post-entry-alt .h2 {
  font-size: 18px;
  margin-bottom: 20px; }
  .post-entry-alt h2 a, .post-entry-alt .h2 a {
    color: #4D4C7D; }

.post-entry-alt .excerpt {
  padding-left: 20px;
  padding-right: 20px; }

.post-entry-alt .img-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px; }
  .post-entry-alt .img-link img {
    margin-bottom: 0; }

.post-meta {
  color: gray;
  font-size: 13px;
  width: 100%;
  display: block;
  margin-bottom: 20px; }
  .post-meta a {
    color: #000; }
  .post-meta .author-figure img {
    width: 30px;
    border-radius: 50%; }

.post-entry-alt h2, .post-entry-alt .h2 {
  font-size: 18px;
  margin-bottom: 20px; }
  .post-entry-alt h2 a, .post-entry-alt .h2 a {
    color: var(--heading-color); }
  .post-entry-alt h2 a:hover, .post-entry-alt .h2 a:hover {
    color: var(--accent-color); }

.post-entry-alt .excerpt {
  padding-left: 20px;
  padding-right: 20px; }

.post-entry-alt .img-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px; }
  .post-entry-alt .img-link img {
    margin-bottom: 0; }

.post-meta {
  color: gray;
  font-size: 13px;
  width: 100%;
  display: block;
  margin-bottom: 20px; }
  .post-meta a {
    color: grey; }
  .post-meta .author-figure img {
    width: 30px;
    border-radius: 50%; }

.blog-entries .blog-entry {
  display: block;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  margin-bottom: 30px;
  position: relative; }
  .blog-entries .blog-entry:hover, .blog-entries .blog-entry:focus {
    opacity: .7;
    top: -1px;
    -webkit-box-shadow: 0 3px 50px -2px rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 3px 50px -2px rgba(0, 0, 0, 0.2) !important; }
  .blog-entries .blog-entry .blog-content-body {
    padding: 20px;
    border: 1px solid #efefef;
    border-top: none; }
  .blog-entries .blog-entry img {
    max-width: 100%; }
  .blog-entries .blog-entry h2, .blog-entries .blog-entry .h2 {
    font-size: 18px;
    line-height: 1.5; }
  .blog-entries .blog-entry p {
    font-size: 13px;
    color: gray; }

.blog-entries .post-meta {
  font-size: 14px;
  color: #b3b3b3; }
  .blog-entries .post-meta .author img {
    width: 30px;
    border-radius: 50%;
    display: inline-block; }

.site-cover {
  background-size: cover;
  background-position: top center;
  position: relative; }
  .site-cover > .container {
    position: relative;
    z-index: 2; }
  .site-cover.overlay:before {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; }
  .site-cover .post-meta {
    color: #fff; }
  .site-cover, .site-cover .same-height {
    padding: 3em 0; }
  .site-cover.single-page h1, .site-cover.single-page .h1 {
    color: #fff;
    font-size: clamp(2rem, 3vw, 5rem); }
.me-4 {
  margin-right: 1.5rem !important; }

.post-entry-sidebar .post-meta, .post-entry-footer .post-meta {
  font-size: 14px;
  color: #b3b3b3; }

.post-entry-sidebar ul, .post-entry-footer ul {
  padding: 0;
  margin: 0; }
  .post-entry-sidebar ul li, .post-entry-footer ul li {
    list-style: none;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0; }
    .post-entry-sidebar ul li a, .post-entry-footer ul li a {
      display: table;
      color: var(--heading-color) !important; }
      .post-entry-sidebar ul li a img, .post-entry-footer ul li a img {
        width: 90px; }
      .post-entry-sidebar ul li a img, .post-entry-sidebar ul li a .text, .post-entry-footer ul li a img, .post-entry-footer ul li a .text {
        display: table-cell;
        vertical-align: middle; }
      .post-entry-sidebar ul li a .text h4, .post-entry-sidebar ul li a .text .h4, .post-entry-footer ul li a .text h4, .post-entry-footer ul li a .text .h4 {
        font-size: 18px; }
.post-entry-sidebar-recent-post{
    color: var(--heading-color);
}
.search-form-wrap {
  margin-bottom: 5em;
  display: block; }
  .search-form-wrap .sidebar-search-form .form-group {
    position: relative; }
    .search-form-wrap .sidebar-search-form .form-group #s {
      background: #f7f7f7;
      padding: 15px 15px;
      padding-left: 50px; }
  .search-form-wrap .sidebar-search-form [class^="bi-"] {
    position: absolute;
    color: #000;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
.sidebar-box {
  margin-bottom: 4em;
  font-size: 15px;
  width: 100%;
  float: left; }
  .sidebar-box *:last-child {
    margin-bottom: 0; }
  .sidebar-box .heading {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6; }
.tags {
  padding: 0;
  margin: 0;
  font-weight: 400; }
  .tags li {
    padding: 0;
    margin: 0 4px 4px 0;
    float: left;
    display: inline-block; }
    .tags li a {
      float: left;
      display: block;
      border-radius: 4px;
      padding: 2px 6px;
      color: var(--heading-color);
      background: var(--accent-color); }
      .tags li a:hover {
        color: #fff;
        background: var(--accent-color); }
.categories, .sidelink {
  padding: 0;
  margin: 0;
  font-weight: 400; }
  .categories li, .sidelink li {
    padding: 0;
    margin: 0;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted gray("300");
    list-style: none; }
    .categories li:last-child, .sidelink li:last-child {
      margin-bottom: 0;
      border-bottom: none;
      padding-bottom: 0; }
    .categories li a, .sidelink li a {
      display: block;
      font-size: 16px; }
      .categories li a span, .sidelink li a span {
        position: absolute;
        right: 0;
        top: 0;
        color: #ccc;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
      .categories li a:hover span, .sidelink li a:hover span {
        color: #000; }
    .categories li.active a, .sidelink li.active a {
      color: #000;
      font-style: italic; }
.post-entry-bg-more-blog{
    background-color: #1a1814;
}
.comment-wrap .heading, .search-result-wrap .heading {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6; }
.main-content{
    text-align: justify;
}
/*--------------------------------------------------------------
# Careers page Section
--------------------------------------------------------------*/
.careers{
    margin-top: 80px;
}
section.jumbotron {
  margin-top: 0;
  margin-bottom: 0;
}
.jumbotron {
  /* background: no-repeat center center; */
  color: #fff;
  text-align: center;
}
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}
.jumbotron {
  padding: 7rem 2rem;
}

