/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
  background-color: #131313;
}

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

a:hover {
  color: #ffc56e;
  text-decoration: none;
}

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

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 20px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FE1409;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #fff;
  color: #000;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
.container {
  max-width: initial;
  padding-left: 10%;
  padding-right: 10%;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 18px;
  height: 75px;
  transition: all 0.5s;
  position: absolute;
  width: 100%;
  z-index: 998;
  color: #fff;
}
#topbar.topbar-transparent {
  background: transparent;
}
#topbar.topbar-scrolled {
  top: -50px;
}
#topbar i {
  color: #fff;
  line-height: 0;
}
#topbar a {
  color: #fff;
  font-style: initial;
}
#topbar i:hover, #topbar i:hover a {
  color: #ffb03b;
}
#topbar i span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 125px;
  z-index: 997;
  transition: all 0.5s;
  margin-top: 15px;
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.85);
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
  top: 0;
  background: rgba(26, 24, 22, 0.85);
  height: 100px;
  margin: 0;
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 65px;
}

/*--------------------------------------------------------------
--------------------------------------------------------------*/
.btn-phn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}
.btn-phn:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #000;
}
@media (max-width: 992px) {
  .btn-phn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# 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;
  font-size: 15px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar .nav-i{
  padding: 10px;
}
.navbar a i, .navbar a:focus i {
  font-size: 20px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #ffb03b;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #433f39;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #ffb03b;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 78px;
  right: 15px;
  color: #000;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 75px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ffb03b;
}
.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: #ffb03b;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 600px;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
  border-bottom: 10px solid #FE1409;
}
#hero .carousel-item {
  width: 100%;
  min-height: 600px;
  height: 100vh;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 10rem;
  z-index: 2;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
}
.overlay-a {
  text-decoration: none;
  background: rgb(0,0,0);
  background: rgb(0,0,0);
background: linear-gradient(4deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.36738445378151263) 84%, rgba(0,0,0,0.8015581232492998) 100%);
}
#hero .carousel-indicators {
  margin-bottom: 2rem;
}
#hero .red-line {
  width: 175px;
  height: 10px;
  background-color: #FE1409;
}
#hero .car-img{
  width: 100%;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
#hero h2 span {
  color: #ffb03b;
}
#hero h1 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  font-weight: 700;
  font-size: 36px;
}
#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-bottom: 5px;
}
#hero .box {
  background-color: #00000050;
  padding: 20px;
  border-radius: 30px;
  backdrop-filter: blur(15px);
  transition: all 0.3s;
}
#hero .box:hover {
  transform: scale(1.02);
  transition: all 0.3s;
}
#hero .box-white {
  background-color: #fff;
  border: 2px solid #fff;
  height: 50px;
  display: grid;
  place-content: center;
  margin-bottom: 5px;
}
.w-35{width: 35%;}
.w-65{width: 65%;}
#hero .box-border {
  background-color: #transparent;
  border: 2px solid #fff;
  height: 50px;
  display: grid;
  place-content: center;
  margin-bottom: 5px;
}
#hero .box-white p {
  color: #000;
  margin-bottom: 0;
  font-weight: 600;
}
#hero .box-border p {
  color: #fff;
  margin-bottom: 0;
  font-weight: 600;
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #ffb03b;
}
#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #ffb03b;
  color: #fff;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}
.section-title {
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
}
.section-title p {
    font-size: 18px;
    line-height: inherit;
    font-weight: 300;
    color: #fff;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-size: 16px;
  line-height: inherit;
  font-weight: 300;
  color: #fff;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
}
.gallery .gallery-item {
  overflow: hidden;
  border-radius: 15px;
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 100px;
}
.contact h2 {
    font-size: 22px;
    line-height: normal;
    color: #bcbcbc;
    margin-bottom: 20px;
}
.btn-direction {
    padding: 14px;
    width: 200px;
    border-radius: 15px;
    background: #fff;
    color: #000;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-direction:hover {
  background: #000;
  color: #fff;
}
/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products {
}

.products .box2 img {
    height: 220px;
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    object-fit: cover;
}
.products .box2 h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
    margin-bottom: 20px;
}
.products .box2 p {
    color: #959595;
}

.products .box h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
  margin-bottom: 50px;
}

.products .box {
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.products .box img {
  transition: all ease-in-out 0.3s;
}
.products .box h2 {
    position: absolute;
    bottom: 0;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin: 20px;
    opacity: 1;
  transition: all ease-in-out 0.3s;
  z-index: 1;
}

.products .box:after {
  content: "";
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.8) 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: all ease-in-out 0.3s;
}

.products .box .content {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.75);
  padding: 15px;
}

.products .box .content h4 {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 15px;
    line-height: normal;
    font-weight: 600;
    color: #fff;
    background: #000;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.products .box .content p {
    position: absolute;
    margin: 20px;
    display: inline-block;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1199px) {
  .products .box .content p {
    font-size: 12px;
  }
}
@media (max-width: 1366px) {
  .products .box .content p {
    font-size: 14px;
  }
}

.products .box:hover .content {
  opacity: 1;
}
.products .box:hover h2 {
    opacity: 0;
}

.products .box:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Delivery
--------------------------------------------------------------*/
.delivery {
}
.delivery h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
  margin-bottom: 50px;
}
.btn-delivery {
  color: #fff;
  background-color: #00B9B2;
  border-color: #00B9B2;
  padding: 14px;
  max-width: 380px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
}
.btn-delivery:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
.btn-delivery:active, .btn-delivery:focus {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  box-shadow: 0 0 0 .25rem rgba(49,132,253,.5);
}
.deliveroo {
  display: flex;
  align-items: center;
  border-radius: 40px;
  max-height: 315px;
  overflow: hidden;
  box-shadow: 55px 55px 40px -5px rgba(0,0,0,0.75);
  -webkit-box-shadow: 55px 55px 40px -5px rgba(0,0,0,0.75);
  -moz-box-shadow: 55px 55px 40px -5px rgba(0,0,0,0.75);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.deliveroo:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  box-shadow: 70px 70px 40px -5px rgba(0,0,0,0.75);
  -webkit-box-shadow: 70px 70px 40px -5px rgba(0,0,0,0.75);
  -moz-box-shadow: 70px 70px 40px -5px rgba(0,0,0,0.75);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #35322d;
  background-size: cover;
  color: #fff;
  position: relative;
  font-size: 14px;
  padding: 50px 0 30px;
}
#footer:before {
  content: "";
  background: radial-gradient(50% 50% at 50% 50%, rgba(19, 19, 19, 0.7) 68%, rgba(19, 19, 19, 0.7) 100%);position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#footer h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer p {
  font-size: 15px;
  color: #d3d3d3;
  padding: 0;
  margin-bottom: 15px;
  position: relative;
}
#footer .map {
  position: relative;
}
#footer .section-title h2 {
  margin: 0;
  margin-bottom: 40px;
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}
#footer .social-links {
  margin: 0 0 40px 0;
  position: relative;
}
#footer .social-links a {
  color: #fff;
  font-size: 24px;
  margin-right: 20px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  color: #ffb03b;
}
#footer .copyright {
  margin: 0 0 5px 0;
  font-size: 13px;
  position: relative;
}
#footer form{
  position: relative;
}

.form-control {
  padding-left: 0;
  background: no-repeat;
  border: none;
  outline: none;
  box-shadow: none;
  color: #fff;
  border-bottom: 1.5px solid #888888;
  border-radius: 0;
  margin-bottom: 20px;
}
.form-control:focus {
  color: #fff;
  background-color: transparent;
  border: none;
  border-bottom: 1.5px solid #888888;
  outline: none;
  box-shadow: none;
}
.btn-send {
  padding: 14px;
  width: 200px;
  border-radius: 15px;
  background: #fff;
  color: #000;
  font-weight: 600;
  position: relative;
}
.btn-send:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 767px) {
  #hero h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  #hero p {
    font-size: 12px;
  }
  #hero .red-line {
    height: 10px;
  }
  #hero .car-img{
    width: auto;
  }
  .gallery, .delivery {
    height: auto;
  }
  .btn-delivery {
    width: 100%;
    margin-bottom: 30px;
  }
  #footer {
    padding: 50px 0;
  }
  #footer .section-title h2 {
    margin: 0;
    font-size: 35px;
  }
  #hero .box-border {
    height: 36px;
  }
  #hero .box-white {
    height: 36px;
  }
  .container {
    padding-right: var(--bs-gutter-x,.75rem);
    padding-left: var(--bs-gutter-x,.75rem);
  }
  #topbar  {
    height: 42px;
  }
  #topbar a {
    font-size: 11px;
  }
  #hero .carousel-container{
    margin-bottom: 4rem;
  }
  #hero .carousel-item {
    height: 85vh;
  }
  #hero {
    height: 85vh;
  }
}

@media (max-height: 767px) {
  #hero p {
    font-size: 16px;
  }
  #hero h1 {
    font-weight: 700;
    font-size: 36px;
  }
  #hero .red-line {
    width: 170px;
    height: 10px;
    background-color: #FE1409;
  }
  #hero .carousel-container img {
    width: 350px;
  }
}

.carousel-item img {
    width: 100%;
    display: block;
    object-position: center;
    object-fit: cover;
}
.carousel-item {
    background-size: cover;
    background-position: center;
}