/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  background: #0c0b09;
  color: #fff;
}

a {
  color: #6edd04;
  text-decoration: none;
}

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

ul {
  list-style: none;
  padding: 0;
}

li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

li i {
  margin-right: 10px;
  align-self: center;
}

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

.black-bg {
  background-color: black;
}

.primary-color {
  color: #5eef01;
}

/*--------------------------------------------------------------
# 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: 5eef01;
  border-bottom-color: 5eef01;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

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

/* ==================================
          BACKGROUND-IMG
=================================== */

.team {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent),
    url("../img/background.png");
  background-position: center center;
  background-size: cover;
  height: 40vh;
  position: relative;
}

.team::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.bg {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent),
    url("../img/bg-team.png");
  background-position: center center;
  background-size: cover;
  height: 40vh;
  position: relative;
}

.bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.service- {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent),
    url("../img/service-bg.png");
  background-position: center center;
  background-size: cover;
  height: 40vh;
  position: relative;
}

.service-::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.remove {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent),
    url("../img/removable-bg.png");
  background-position: center center;
  background-size: cover;
  height: 40vh;
  position: relative;
}

.remove::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.page {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent),
    url("../img/od-bg2.png");
  background-position: center center;
  background-size: cover;
  height: 40vh;
  position: relative;
}

.page::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.contact-sec {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent),
    url("../img/contact-us.jpg");
  background-position: center center;
  background-size: cover;
  height: 40vh;
  position: relative;
}

.contact-sec::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 4px solid #64eb01;
  box-shadow: 0 0 10px #64eb01;
  animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px #64eb01;
  }
  100% {
    box-shadow: 0 0 20px #bccfaf;
  }
}
.back-to-top i {
  font-size: 40px;
  color: #6edd04;
  line-height: 0;
}

.back-to-top:hover {
  background: #caf7d5;
  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: #d9ba85;
}

#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: 5eef01;
}

#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
background: rgba(12, 11, 9, 0.6);
--------------------------------------------------------------*/
#header {
  /* background: rgba(12, 11, 9, 0.6); */
  /* border-bottom: 1px solid rgba(36, 36, 36, 0.6); */
  transition: all 0.5s;
  z-index: 997;
  top: 5px;
}

#header.header-scrolled {
  top: 0;
  background: black;
  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: 90px;
  margin-left: 60px;
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
.carousel-item {
  position: relative;
}

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

.carousel-caption1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 1px 1px 1px #131212;
  text-align: center;
}

.carousel-caption1 h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 1.6;
}

.carousel-caption1 span {
  color: #6edd04;
}

.carousel-caption1 h2 {
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.6;
  text-shadow: 0 0 5px #2f523c, 0 0 10px #2b2a2a, 0 0 15px #2c572e;
}

.carousel-caption1 .logo {
  display: inline-block;
  max-width: 40%;
  margin-left: 1rem;
}

.carousel-caption1 .logo img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .carousel-caption1 h1 {
    font-size: 1.5rem;
  }

  .carousel-caption1 span {
    font-size: 2rem;
  }

  .carousel-caption1 p {
    font-size: 1rem;
  }

  .carousel-caption1 .logo {
    display: block;
    max-width: 100%;
    margin-top: 1rem;
    margin-left: 0;
    text-align: center;
  }
}

.carousel-item {
  background-position: center;
  background-size: cover;
  height: 100vh;
}

.carousel-caption .btns {
  margin-top: 50px;
  text-align: left;
}

.carousel .btn-menu {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: whitesmoke;
  border: 2px solid greenyellow;
}

.carousel .btn-menu:hover {
  background: rgba(153, 205, 50, 0.712);
  color: #fff;
}

/* .carousel-item img {
  max-width: 100%;
  height: auto;
} */

/* .carousel-caption1 {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .column1 {
    flex: 1;
    padding-left: 250px; 
  }
  
  .column2 {
    flex: 0 0 30%;
    padding-left: 100px;
  }


@media (max-width: 768px) {
  .column1 {
    flex: 1;
    padding-left: 0; 
    text-align: center; 
  }

  .column2 {
    flex: 0 0 100%;
    padding-left: 0; 
    margin-top: 20px; 
  }

  .carousel-caption1 h1 {
    font-size: 28px; /* reduce font size */
/* }

  .carousel-caption1 h1 span {
    font-size: 32px; /* reduce font size */
/* }

  .carousel-caption1 p {
    font-size: 16px; /* reduce font size */
/* }
}  */

/* .carousel-caption1 h1 {
    font-family: "Poppins", sans-serif;
    font-size: 35px;
    font-weight: bold;
  }
  
  .carousel-caption1 h1 span {
    font-size: 40px;
    color: #6EDD04;
  }
  
  
  .carousel-caption1 p {
    font-size: 18px;
  } */

.carousel-caption {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  text-shadow: 1px 1px 1px #131212;
}

.carousel-caption h1 {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: bold;
}

.carousel-caption h1 span {
  font-size: 40px;
  color: #6edd04;
}

/* For screens smaller than 576px (mobile devices) */
@media (max-width: 576px) {
  .carousel-caption1 {
    margin-left: 0px;
    margin-right: -100px;
  }

  .carousel-caption h1 {
    font-size: 24px;
  }

  .carousel-caption h1 span {
    font-size: 28px;
  }
}

.carousel-img {
  background: url("../img/background/green-bg.png");
  background-size: cover;
  position: relative;
  padding: 0;
  max-width: 100%;
  height: auto;
}

.carousel-img1 {
  background: url("../img/carousel3.png");
  background-size: cover;
  position: relative;
  padding: 0;
  max-width: 100%;
  height: auto;
  opacity: 0.8; /* set opacity level to 70% */
  backdrop-filter: blur(5px); /* apply a 5-pixel blur effect */
}

.carousel-img2 {
  background: url("../img/background/gif-bg.gif");
  background-size: cover;
  position: relative;
  padding: 0;
  max-width: 100%;
  height: auto;
}

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

@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;
  /* color: #131212; */
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
  font-size: 20x;
  font-weight: 400;
}

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

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

/* Dropdown 1 */
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

/* Dropdown 2 Nested Dropdown */
.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: #6edd04;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.navbar li {
  position: relative;
}
@media screen and (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;
    height: 70%;
    color: black;
    background-color: #ffffff;
    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: #6edd04;
  }

  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }

  /* To Do
This area need to watch, changes name or position */

  .navbar-mobile .dropdown ul {
    /* position: static; */
    position: absolute;
    display: none;
    height: 300px;
    /* margin: 10px 20px; */
    /* padding: 100px 0; */
    padding-bottom: 100px;
    z-index: 99;
    opacity: 5;
    visibility: visible;
    background: #fff;
    color: black;
    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: 13px;
  }

  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover > a {
    color: #6edd04;
  }

  .navbar-mobile .dropdown:hover ul {
    display: block;
  }

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

  .navbar-mobile .dropdown ul .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    opacity: 5;
    visibility: visible;
    background: whitesmoke;
    color: black;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }

  .navbar-mobile .dropdown ul .dropdown ul li a {
    font-size: 13px;
  }

  .navbar-mobile .dropdown ul .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul .dropdown ul li:hover > a {
    color: #6edd04;
  }

  .navbar-mobile .dropdown:hover ul.dropdown:hover ul {
    display: block;
  }

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: fit-content;
  background: url("../img/background/green-bg.png") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}

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

#hero .container {
  padding-top: 150px;
  height: fit-content;
}

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

#hero h1 {
  margin: 0;
  font-size: 60x;
  font-weight: 600;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

#hero h1 span {
  color: greenyellow;
}

#hero p {
  color: whitesmoke;
  font-size: 20px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  text-align: left;
  font-weight: 400;
}

/* #hero .img-hero {
  width:100%;
  height: 100%;
} */

/* hero1 */
/*--------------------------------------------------------------
# Hero1 Section About.html
--------------------------------------------------------------*/
#hero1 {
  width: 100%;
  height: 80vh;
  background: url("../img/background/green-bg.png") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}

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

#hero1 .container {
  padding-top: 10px;
}

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

  #hero1 .about-img1 {
    width: 80%;
    height: auto;
  }

  #hero1 .container h1 {
    font-size: 25px;
  }

  #hero1 .container p {
    font-size: 15px;
  }

  #hero1 .content .about-img1 {
    /* padding-left: 50px;
    padding-right: 30px; */
    /* margin-left: 16%; */
    margin: 0 0 0 30%;
    width: 300px;
    height: auto;
    /* position: absolute; */
  }
}

@media screen and (max-width: 768px) {
  #hero1 .container {
    padding-top: 10px;
  }

  #hero1 .about-img1 {
    width: 50%;
    height: auto;
  }

  #hero1 .container h1 {
    font-size: 25px;
  }

  #hero1 .container p {
    font-size: 15px;
  }

  #hero1 .content .about-img1 {
    /* padding-left: 50px;
    padding-right: 30px; */
    /* margin-left: 16%; */
    margin: auto;
    width: 300px;
    height: auto;
    /* position: absolute; */
  }

  /* #hero1 .about-img1 img {
    max-width: 80%;
    border: 10px solid rgba(255, 255, 255, 0.863);

  } */
}

@media screen and (max-width: 400px) {
  #hero1 {
    height: 100vh;
  }
  #hero1 .container {
    /* height: 100vh; */
    padding: 20px 10px 0px 10px;
  }

  #hero1 .about-img1 {
    width: 50%;
    height: auto;
  }

  #hero1 .container h1 {
    font-size: 25px;
  }

  #hero1 .container p {
    font-size: 15px;
  }

  #hero1 .content .about-img1 {
    /* padding-left: 50px;
    padding-right: 30px; */
    margin-left: 20%;
    margin-right: 20%;
    width: 200px;
    height: auto;
  }
}

#hero1 h1 {
  margin: 0;
  font-size: 40x;
  font-weight: 500;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  list-style: 1.2;
}

#hero1 h1 span {
  color: greenyellow;
}

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

#hero1 p {
  color: white;
  font-size: 18px;
  /* letter-spacing: 1px; */
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  text-align: justify;
}

/* end hero1 */

/* font-family: "Trebuchet MS", sans-serif; */

#hero .btns {
  margin-top: 50px;
  text-align: center;
}

#hero .btn-menu {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: whitesmoke;
  border: 2px solid #6edd04;
}

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

#chefs .btns {
  margin-top: 50px;
  text-align: center;
}

#chefs .btn-menu {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: whitesmoke;
  border: 2px solid greenyellow;
}

#chefs .btn-menu:hover {
  background: #b2c9bf;
  color: #fff;
}

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

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

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

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

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

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

  #hero p {
    font-size: 15px;
  }

  #hero img {
    width: 100px;
    height: auto;
  }
}

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

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

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

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

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

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

.section-title {
  /* padding-bottom: 40px; */
  margin-top: 5%;
  text-align: center;
}
/* adjust padding for small screens */
@media screen and (max-width: 768px) {
  .section-title {
    margin-top: 20%;
    text-align: center;
  }
}

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

.s1 p::after {
  content: "";
  width: 100%;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

.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: 40px;
  /* font-weight: 500; */
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #6edd04;
}

/* Section-title1 */
.section-title1 {
  padding-bottom: 40px;
  text-align: center;
}

.section-title1 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-title1 h2::before {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

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

.section-title1 p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Poppins", serif;
  color: greenyellow;
}
/* End Section-title1 */

/*--------------------------------------------------------------
# title-page
--------------------------------------------------------------*/

#title-page {
  width: 100%;
  height: 40vh;
  box-shadow: 0 0 200px rgba(187, 187, 187, 0.9) inset;
  background-size: cover;
  position: relative;
  padding: 0;
}

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

#title-page h2 {
  margin: 0;
  font-size: 60x;
  font-weight: 600;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

#title-page p {
  color: whitesmoke;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.quotes {
  position: relative;
  border: 2px;
  padding-bottom: 60px;
  backdrop-filter: blur(5px);
  height: 50vh;
}

.quotes::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

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

.quotes p {
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #6edd04;
  margin-top: 10%;
  font-weight: 600;
}

@media (max-width: 767px) {
  .quotes p {
    font-size: 30px;
    margin-top: 5%;
    color: #6edd04;
    height: 18vh;
  }

  .blockquote-footer {
    margin-top: 30px;
    font-size: 15px;
    padding-top: 30px;
  }
}

/*--------------------------------------------------------------
# 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/background/green-bg.png");
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

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

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

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

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

.about-img1 img {
  max-width: 80%;
  border: 10px solid rgba(255, 255, 255, 0.863);
  position: relative;
}

.about-img1:hover {
  transform: scale(1.05);
}

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

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

.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  /* border-left: 5px solid 5eef01;
  border-top: 5px solid 5eef01; */
  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 5eef01;
  border-bottom: 5px solid 5eef01; */
  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 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: 5eef01;
}

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

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

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

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #f3ea9c;
}

.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: rgba(172, 255, 47, 0.432);
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  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 {
  color: 5eef01;
}

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

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

.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: "Poppins", 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: 5eef01;
}

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

.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;
  /* background-color: #6a8d706b; */
}

.specials .container {
  background-color: #6a8d7025;
  height: 400px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.specials .nav-tabs {
  /* padding-top: 10px; */
  border: 0;
}

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

.specials .nav-link:hover {
  color: #6edd04;
}

.specials .nav-link.active {
  color: #1a1814;
  background: #ffffe0;
  border-color: #cccccb;
}

.specials .nav-link:hover {
  border-color: #0d0e0d;
}

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

.specials .details h3 {
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  /* 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;
  }
}

#s1 {
  max-height: fit-content;
  background: url("../img/background/green-bg.png") top center;
  background-size: cover;
  position: relative;
  height: 80vh;
}

#s1 .top-s1 {
  margin: 0;
}

#s1 h1 {
  margin: 0 0 10px 0;
  font-size: 60x;
  font-weight: 600;
  line-height: 56px;
  color: #6edd04;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

#s1 h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

#s1 .btns {
  margin-top: 50px;
  text-align: left;
}

#s1 .btn-menu {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: whitesmoke;
  border: 2px solid greenyellow;
}

#s1 .btn-menu:hover {
  background: #b2c9bf;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #s1 {
    position: relative;
    height: 80vh;
  }

  #s1 .top-s1 {
    padding: 0 30px 10px 30px;
  }

  #s1 h1 {
    margin: 0 0 10px 0;
    font-size: 30px;
    font-weight: 500;
    line-height: 56px;
    color: #6edd04;
    font-family: "Poppins", sans-serif;
    text-align: left;
    /* margin: 0 20px 0 20px; */
  }

  #s1 h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    font-family: "Poppins", sans-serif;
    text-align: left;
  }

  #s1 .btn-menu {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
    /* line-height: 1; */
    color: whitesmoke;
    border: 2px solid greenyellow;
  }

  #s1 .btn-menu:hover {
    background: #b2c9bf;
    color: #fff;
  }

  #s1 .img-s1 img {
    width: 70%;
    height: auto;
    margin: 0 0 0 60px;
  }
}

#s2 {
  max-height: fit-content;
  background: url("../img/background/green1-bg.png") top center;
  background-size: cover;
  position: relative;
}

#s2 .top-s2 {
  margin: 0;
}

#s2 h1 {
  margin: 0 0 10px 0;
  font-size: 60x;
  font-weight: 600;
  line-height: 56px;
  color: #6edd04;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

#s2 h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

#s2 .btns {
  margin-top: 50px;
  text-align: left;
}

#s2 .btn-menu {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: whitesmoke;
  border: 2px solid greenyellow;
}

#s2 .btn-menu:hover {
  background: #b2c9bf;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #s2 {
    position: relative;
    height: 80vh;
  }

  #s2 .top-s2 {
    padding: 0 30px 10px 30px;
  }

  #s2 h1 {
    margin: 0 0 10px 0;
    font-size: 30px;
    font-weight: 500;
    line-height: 56px;
    color: #6edd04;
    font-family: "Poppins", sans-serif;
    text-align: left;
    /* margin: 0 20px 0 20px; */
  }

  #s2 h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    font-family: "Poppins", sans-serif;
    text-align: left;
  }

  #s2 .btn-menu {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
    /* line-height: 1; */
    color: whitesmoke;
    border: 2px solid greenyellow;
  }

  #s2 .btn-menu:hover {
    background: #b2c9bf;
    color: #fff;
  }

  #s2 .img-s2 img {
    width: 70%;
    height: auto;
    margin: 0 0 0 60px;
  }
}

.removable {
  background: url("../img/background/green-bg.png");
  background-size: cover;
  position: relative;
  border: 2px;
}

.removable::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

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

.removable .cont {
  padding-top: 50px;
  padding-bottom: 50px;
}

.removable h2 {
  /* font-size: 35px; */
  font-size: 38px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #6edd04;
  /* font-weight: bold; */
  text-align: center;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  margin-bottom: 5%;
}

.removable p {
  font-size: 20px;
  color: rgb(238, 240, 236);
  text-align: justify;
  font-family: "Poppins", serif;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  padding-left: 10px;
  padding-right: 10px;
}

/* adjust padding for small screens */
@media screen and (max-width: 768px) {
  .removable .cont {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* adjust font size and line height for small screens */
@media screen and (max-width: 576px) {
  .removable h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .removable p {
    font-size: 16px;
    line-height: 1.5;
  }
}

.removable #demo {
  max-width: 70%; /* set maximum width */
  max-height: 70%;
  margin: 0 auto;
}

.removable .carousel-inner img {
  height: 60%; /* set maximum height for images */
  object-fit: cover;
}

@media (max-width: 767px) {
  .removable #demo {
    max-width: 100%; /* set full width for small screens */
    max-height: 40%; /* remove height restriction */
  }

  .removable .carousel-inner img {
    width: 50%;
    height: auto; /* allow images to scale with width */
    object-fit: contain; /* change object-fit to contain */
  }
}

@media (max-width: 1024px) {
  .removable #demo {
    max-width: 100%; /* set full width for small screens */
    max-height: 40%; /* remove height restriction */
  }

  .removable .carousel-inner img {
    width: 50%;
    height: auto; /* allow images to scale with width */
    object-fit: contain; /* change object-fit to contain */
  }
}

.removable2 {
  background: url("../img/background/green1-bg.png");
  background-size: cover;
  position: relative;
  border: 2px;
}

.removable2::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

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

.removable2 .cont {
  padding-top: 50px;
  padding-bottom: 50px;
}

.removable2 h2 {
  /* font-size: 35px; */
  font-size: 38px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #6edd04;
  /* font-weight: bold; */
  text-align: center;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  margin-bottom: 5%;
}

.removable2 p {
  font-size: 20px;
  color: rgb(238, 240, 236);
  text-align: justify;
  font-family: "Poppins", serif;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  padding-left: 10px;
  padding-right: 10px;
}

/* adjust padding for small screens */
@media screen and (max-width: 768px) {
  .removable2 .cont {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* adjust font size and line height for small screens */
@media screen and (max-width: 576px) {
  .removable2 h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .removable2 p {
    font-size: 18px;
    line-height: 1.5;
  }
}

.removable2 .row .r1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.removable2 .column {
  text-align: center; /* center align the child images */
}

.removable2 .column img {
  max-width: 50%;
  height: 60%;
  border-radius: 5px;
  /* background-color: rgba(255, 255, 255, 0.034); */
  transition: transform 0.2s ease-in-out;
}

.removable2 .column img:hover {
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .removable2 .column img {
    max-width: 80%;
    height: auto;
  }
}

@media (max-width: 1024px) {
  .removable2 .column img {
    max-width: 30%;
    height: auto;
  }
}

.removable3 {
  background: url("../img/background/green-bg.png");
  background-size: cover;
  position: relative;
  border: 2px;
}

.removable3::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

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

.removable3 .cont {
  padding-top: 50px;
  padding-bottom: 50px;
}

.removable3 h2 {
  /* font-size: 35px; */
  font-size: 38px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #6edd04;
  /* font-weight: bold; */
  text-align: center;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  margin-bottom: 5%;
}

.removable3 p {
  font-size: 20px;
  color: rgb(238, 240, 236);
  text-align: justify;
  font-family: "Poppins", serif;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  padding-left: 10px;
  padding-right: 10px;
}

/* adjust padding for small screens */
@media screen and (max-width: 768px) {
  .removable3 .cont {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* adjust font size and line height for small screens */
@media screen and (max-width: 576px) {
  .removable3 h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .removable3 p {
    font-size: 18px;
    line-height: 1.5;
  }
}

.removable3 .r3 {
  text-align: center;
}

.removable3 .r3 img {
  margin-top: 5%;
  border-radius: 5px;
  transition: transform 0.2s ease-in-out;
}

.removable3 .r3 img:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .removable3 .r3 img {
    width: 80%;
    height: auto;
  }
}

.removable4 {
  background: url("../img/background/green1-bg.png");
  background-size: cover;
  position: relative;
  border: 2px;
}

.removable4::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

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

.removable4 .cont {
  padding-top: 50px;
  padding-bottom: 50px;
}

.removable4 h2 {
  /* font-size: 35px; */
  font-size: 38px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #6edd04;
  /* font-weight: bold; */
  text-align: center;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  margin-bottom: 5%;
}

.removable4 p {
  font-size: 20px;
  color: rgb(238, 240, 236);
  text-align: justify;
  font-family: "Poppins", serif;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  padding-left: 10px;
  padding-right: 10px;
}

/* adjust padding for small screens */
@media screen and (max-width: 768px) {
  .removable4 .cont {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* adjust font size and line height for small screens */
@media screen and (max-width: 576px) {
  .removable4 h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .removable4 p {
    font-size: 18px;
    line-height: 1.5;
  }
}

.removable4 .row .r1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.removable4 .column {
  text-align: center; /* center align the child images */
}

.removable4 .column img {
  max-width: 30%;
  height: 80%;
  border-radius: 5px;
  /* background-color: rgba(255, 255, 255, 0.034); */
  transition: transform 0.2s ease-in-out;
}

.removable4 .column img:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .removable4 .column img {
    max-width: 50%;
    height: auto;
  }
}

@media (max-width: 1024px) {
  .removable4 .column img {
    max-width: 35%;
    height: auto;
  }
}

.removable5 {
  background: url("../img/background/green-bg.png");
  background-size: cover;
  position: relative;
  border: 2px;
}

.removable5::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

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

.removable5 .cont {
  padding-top: 50px;
  padding-bottom: 50px;
}

.removable5 h2 {
  /* font-size: 35px; */
  font-size: 38px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #6edd04;
  /* font-weight: bold; */
  text-align: center;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  margin-bottom: 5%;
}

.removable5 p {
  font-size: 20px;
  color: rgb(238, 240, 236);
  text-align: justify;
  font-family: "Poppins", serif;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  padding-left: 10px;
  padding-right: 10px;
}

/* adjust padding for small screens */
@media screen and (max-width: 768px) {
  .removable5 .cont {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* adjust font size and line height for small screens */
@media screen and (max-width: 576px) {
  .removable5 h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .removable5 p {
    font-size: 18px;
    line-height: 1.5;
  }
}

.removable5 #demo1 {
  max-width: 70%; /* set maximum width */
  max-height: 70%;
  margin: 0 auto;
}

.removable5 .carousel-inner img {
  height: 50%; /* set maximum height for images */
  object-fit: cover;
}

@media (max-width: 767px) {
  .removable5 #demo1 {
    max-width: 100%; /* set full width for small screens */
    max-height: 30%; /* remove height restriction */
  }

  .removable5 .carousel-inner img {
    width: 60%;
    height: auto; /* allow images to scale with width */
    object-fit: contain; /* change object-fit to contain */
  }
}

@media (max-width: 1024px) {
  .removable5 #demo1 {
    max-width: 100%; /* set full width for small screens */
    max-height: 40%; /* remove height restriction */
  }

  .removable5 .carousel-inner img {
    width: 50%;
    height: auto; /* allow images to scale with width */
    object-fit: contain; /* change object-fit to contain */
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url("../img/background/green-bg.png");
  background-size: cover;
  position: relative;
  border: 2px;
  height: 100vh;
}

.events::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  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: #f1f1f1;
}

.events .event-item .price {
  font-size: 20px;
  font-family: "Poppins", serif;
  font-weight: 500;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #6edd04;
}

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

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

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

@media screen and (max-width: 786px) {
  .events .swiper-slider .event-item {
    padding: 20px 10px 0 10px;
  }

  .events .event-item p {
    font-size: 15px;
  }
  .events .event-item .price {
    font-size: 16px;
    font-family: "Poppins", serif;
    font-weight: 300;
    margin-bottom: 15px;
  }

  .events .event-item h3 {
    font-weight: 500;
    font-size: 262x;
    color: #f1f1f1;
  }

  .events .section-title p {
    font-size: 30px;
  }

  .events .content img {
    display: none;
  }

  .events .event-item ul li {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# 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: #d3af71;
  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: 5eef0169;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  background: url("../img/background/green-bg.png");
  background-size: cover;
}

.gallery::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

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

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

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  width: 100%;
  height: 100%;

}

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

.gallery .section-title-gallery p {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #6edd04;
  font-size: 40px;
  text-shadow: 1px 1px 1px #a1a0a02d;
}

@media (max-width: 576px) {
  .gallery .section-title-gallery p {
    font-size: 30px;
    margin-top: 0px;
    margin-bottom: 50px;
  }

  .gallery .gallery-item img {
    margin: 0;
    width: 100%;
    height: auto;
  }
}

/*--------------------------------------------------------------
# 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: 20px;
  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: #6edd04;
}

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

@media screen and (max-width: 500px) {
  .chefs .section-title p {
    font-size: 30px;
  }

  .chefs .member img {
    width: 80%;
    height: auto;
  }
}

/* #chefs1 {
  background: url('assets/img/dental-bg2.jpg') no-repeat center center fixed; 
  background-size: cover; 
  height: 40vh !important;
} */

page-banner {
  background-image: url("..assets/img/dental-bg2.jpg") center center fixed;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: url("../img/background/green-bg.png") center center no-repeat;
  background-size: cover;
  height: 100%;
}

.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: #6edd04;
  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;
}

.email-link {
  color: #bab3a6;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.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 input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #f3f0ea;
  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: #ebebeb;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #b9cd5e;
}

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

/* CSS for mobile screens */
@media (max-width: 767px) {
  .contact .php-email-form .form-group {
    padding-bottom: 4px;
  }

  .contact .php-email-form input {
    height: 36px;
    margin-bottom: 8px;
  }

  .contact .php-email-form textarea {
    padding: 8px 10px;
    margin-bottom: 8px;
  }

  .contact .php-email-form button[type="submit"] {
    padding: 8px 20px;
  }
}

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

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

.contact .php-email-form button[type="submit"]:hover {
  background: #7fa07f;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

@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: 20px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #cfffb0;
  text-shadow: #bce1a3;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 10px #6edd04, 0 0 20px #6edd04, 0 0 30px #6edd04;
  }
  50% {
    text-shadow: none;
  }
  100% {
    text-shadow: 0 0 10px rgba(153, 205, 50, 0.644),
      0 0 20px rgba(153, 205, 50, 0.575), 0 0 30px #6edd04;
  }
}

#footer .footer-top .footer-info i {
  padding-right: 2px;
  color: #6bb225;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 0;
  font-family: "Poppins", serif;
  color: #fff;
  font-weight: 300;
}

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

#footer .footer-top .social-links a:hover {
  background: #6edd04;
  color: #302d2d;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 500;
  color: #6edd04;
  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: #6edd04;
  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: 18px;
  font-size: 16px;
  font-weight: 300;
}

#footer .footer-top .footer-links h4 {
  color: 5eef01;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-links ul a:hover {
  color: #6edd04;
}

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

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/* Carousel Top Section */

/* GALLERY BOOTSTRAP  */
.container.gallery-container {
  background-color: #fff;
  color: #35373a;
  min-height: 100vh;
  padding: 30px 50px;
}

.gallery-container h1 {
  text-align: center;
  margin-top: 50px;
  font-family: "Poppins", serif;
  font-weight: bold;
}

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

.tz-gallery {
  padding: 40px;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
  padding: 2px;
}

.tz-gallery .lightbox img {
  width: 100%;
  border-radius: 0;
  position: relative;
}

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

.tz-gallery .lightbox:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(46, 132, 206, 0.7);
  content: "";
  transition: 0.4s;
}

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

.MultiCarousel {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 200%;
  position: relative;
}
.MultiCarousel .MultiCarousel-inner {
  transition: 1s ease all;
  float: left;
}
.MultiCarousel .MultiCarousel-inner .item {
  float: left;
}
.MultiCarousel .MultiCarousel-inner .item > div {
  text-align: center;
  padding: 30px;
  margin: 10px;
  background: #f1f1f1;
  color: #666;
}

/* .MultiCarousel .MultiCarousel-inner .item > img {
  padding:10px; 
  margin:10px; 
} */

.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
  position: absolute;
  border-radius: 50%;
  top: calc(50% - 20px);
}
.MultiCarousel .leftLst {
  left: 0;
}
.MultiCarousel .rightLst {
  right: 0;
}
.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
  pointer-events: none;
}

.career {
  background: url("../img/background/green1-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.career .c1 {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  /* border-radius: 20px; */
}

.career .c2 {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 20px;
  padding-bottom: 115px;
  /* border-radius: 20px; */
}

.career .c3 {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 20px;
  padding-bottom: 37px;
  /* border-radius: 20px; */
}

.career .team-img {
  border-radius: 50%;
  object-fit: cover;
  width: 200px;
  height: 200px;
  margin-left: 27%;
  margin-right: 30%;
  margin-bottom: 20px;
}

.career .team-details h3 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  text-shadow: 0 0 10px #6ddd04a4;
}

.career .team-details .team-position {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: white;
  padding-bottom: 15px;
  border-bottom: 2px solid #6edd04;
  line-height: 1.5;
}

.career .team-details .team-description {
  text-align: justify;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: white;
  font-weight: 300;
}

.career .team-details .team-list {
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #ffffff;
  font-weight: 300;
}

.career .container-fluid {
  width: 80%;
  height: max-content;
}

.career .row.g-0 {
  display: flex;
}

.career .row.g-0 > .col-lg-6 {
  display: flex;
}

.career .row.g-0 > .col-lg-6 > div {
  width: 100%;
}

.career-innerW {
  background: #191a19a9;
  border-radius: 3px;
  box-shadow: 5px 5px #6ddd0460;
  min-height: 65vh;
}

.career-innerW:hover {
  background: #344d34a9;
  border-radius: 5px;
}

.career-innerW1 {
  background: #191a19a9;
  border-radius: 3px;
  box-shadow: 5px 5px #6ddd0460;
  min-height: 80vh;
}

.career-innerW1:hover {
  background: #344d34a9;
  border-radius: 5px;
}

.career-innerW2 {
  background: #191a19a9;
  border-radius: 3px;
  box-shadow: 5px 5px #6ddd0460;
  min-height: 80vh;
}

.career-innerW2:hover {
  background: #344d34a9;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .career .team-img {
    border-radius: 50%;
    object-fit: cover;
    width: auto;
    height: 200px;
    margin-left: 30%;
  }
  .row .g-0 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .career .container-fluid {
    /*background-color: white;*/
    margin-bottom: -50px;
  }

  .career .team-details .team-position {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: white;
    padding-bottom: 15px;
    border-bottom: 2px solid #6edd04;
    line-height: 1.5;
  }
}

.arrow-list .bi-arrow-right-square-fill {
  color: rgb(145, 248, 167);
}

@media (max-width: 992px) {
  .row .g-0 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .col-lg-6 {
    width: 80%;
    margin: 10px 0;
  }
}

@media screen and (max-width: 768px) {
  .row .g-0 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .col-lg-6 {
    width: 100%;
    margin: 0;
    padding: inherit;
  }

  .career .team-details {
    font-size: 13px;
  }

  .career .career-innerW {
    width: 100%;
    height: fit-content;
  }

  .career .c1 {
    /* width: 50%; */
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 900px) {
  .row .g-0 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .col-lg-6 {
    width: 100%;
    margin: 10px 0;
  }

  .career .team-details {
    font-size: 13px;
  }

  .career .career-innerW {
    width: 100%;
    /*height: fit-content;
    background-color: red;*/
    min-height: fit-content;
  }
  .career .career-innerW1 {
    width: 100%;
    /*height: fit-content;
    background-color: red;*/
    min-height: fit-content;
  }
  .career .career-innerW2 {
    width: 100%;
    /*height: fit-content;
    background-color: red;*/
    min-height: fit-content;
  }
  .career .container-fluid {
    /*background-color: white;*/
    margin-bottom: -50px;
  }

  .career .c1 {
    /* width: 50%; */
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .bg .section-title {
    /* padding-bottom: 40px; */
    margin-top: 20%;
    text-align: center;
  }
}

.team-n {
  background: url("../img/background/green1-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.team-n .cf {
  padding-left: 3%;
  padding-right: 3%;
}

.team-n .row {
  margin-bottom: 5px;
}

.team-n .card {
  background: rgb(26, 26, 26);
}

.team-n .card-img-top {
  border-radius: 50%;
  object-fit: cover;
  width: 200px;
  height: 200px;
  margin: auto;
}

.team-n .card-img-top1 {
  /* background: rgba(255, 255, 255, 0.918); */
  border-radius: 50%;
  object-fit: cover;
  width: 200px;
  height: 200px;
  margin-left: 38%;
  margin-top: -10%;
}

/* For screens smaller than 576px */
@media (max-width: 576px) {
  .team-n .card-img-top {
    width: 150px;
    height: 150px;
    margin: auto;
    margin-top: -8%;
  }

  .team-n .card-img-top1 {
    width: 150px;
    height: 150px;
    margin-left: 28%;
    margin-top: -8%;
  }

  .team-n .card-body h5 {
    font-size: 10px;
    text-shadow: 0 0 10px rgb(20, 20, 20);
  }

  .team-n .card-body p {
    font-size: 8px;
  }
}

@media (max-width: 375px) {
  .team-n .card-img-top {
    background: white;
    width: 100px;
    height: 100px;
    /* margin-left: 30%; */
    margin: 2% 0 0 35%;
    /* margin-top: -8%; */
  }

  .team-n .card-img-top1 {
    background: white;
    width: 100px;
    height: 100px;
    margin: 2% 0 0 35%;
    /* margin-top: -8%; */
  }
}

.team-n .card-body {
  color: white;
  text-align: center;
}

.team-n .card-body h5 {
  font-size: 25px;
  text-shadow: 0 0 10px rgb(20, 20, 20);
}

.team-n .card-body p {
  font-size: 18px;
}

.team-n .card:hover {
  background: rgba(76, 148, 117, 0.753);
}

/* For screens smaller than 576px */
@media (max-width: 576px) {
  .team-n .card-body h5 {
    font-size: 20px;
    text-shadow: 0 0 10px rgb(20, 20, 20);
  }

  .team-n .card-body p {
    font-size: 15px;
  }
}

.card-deck .card {
  margin: 0px;
  height: 100%;
}
/* ==================
    OVERDENTURE
================== */

.overdenture {
  background: url("../img/background/green1-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: auto; /* or height: 100%; */
}

.overdenture .cont {
  padding-top: 50px;
  padding-bottom: 50px;
}

.overdenture h2 {
  font-size: 38px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #6edd04;
  /* font-weight: bold; */
  text-align: center;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  margin-bottom: 5%;
}

.overdenture p {
  font-size: 20px;
  color: rgb(238, 240, 236);
  text-align: justify;
  font-family: "Poppins", serif;
  text-shadow: 0 0 10px rgb(10, 9, 9);
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 768px) {
  .overdenture h2 {
    font-size: 28px;
  }

  .overdenture p {
    font-size: 16px;
    /* padding-left: 5px;
    padding-right: 5px; */
  }
}

.overdenture .tab {
  box-sizing: border-box;
  text-align: center;
  padding-left: 100px;
}

.overdenture .tab .column {
  float: left;
  width: 13%;
  padding: 5px;
}

.overdenture .tab .column img {
  float: center;
  opacity: 0.8;
  cursor: pointer;
}

.overdenture .tab img:hover {
  opacity: 1;
}

.overdenture .tab .row:after {
  opacity: 1;
}

.overdenture .tab2 .container {
  position: relative;
  display: none;
}

.overdenture .tab2 .closebtn {
  position: absolute;
  right: 40px;
  color: #6edd04;
  font-size: 40px;
  cursor: pointer;
  top: 20px;
}

.overdenture .o1 {
  background: white;
  height: 200px;
  text-align: center;
  padding-top: 10px;
  padding-left: 3px;
  padding-right: 3px;
  border: 2px solid rgba(206, 196, 196, 0.582);
  border-radius: 10px;
  box-shadow: 5px 5px 5px #888888;
}

.overdenture .o1 h3 {
  font-size: 20px;
  color: black;
  font-family: "Poppins", sans-serif;
  text-shadow: 1px 1px 1px rgba(214, 214, 212, 0.644);
}

.overdenture .o1:hover {
  background: rgb(173, 231, 173);
}

.overdenture .o1 img {
  width: 70px;
  height: auto;
  padding-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .col-sm {
    width: 80%;
    margin: 10px 0;
  }

  .overdenture .o1 {
    height: 20vh;
    padding: 20px;
  }

  .overdenture .o1 h3 {
    font-size: 16px;
  }

  .overdenture .o1 img {
    width: 70px;
    height: auto;
    padding-bottom: 10px;
  }

  .overdenture .tab {
    box-sizing: border-box;
    text-align: center;
    /* padding-left: 0px; */
    padding: 0 0 0 40px;
  }
}

.overdenture .od-img {
  max-width: 100%;
  height: auto;
}

/* ================
END OVERDENTURE
================ */

/* ===============
    Facebook
================*/
.abt-facebook {
  background: url("../img/background/gif-bg.gif");
  background-size: cover;
  position: relative;
  border: 2px;
  backdrop-filter: blur(5px);
  height: 65vh;
}

.abt-facebook::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.fb-page {
  margin-top: -40px;
  height: 100vh;
}

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

.abt-facebook h2 {
  padding-top: 30%;
  text-align: left;
  font-family: "Poppins", sans-serif;
  color: #6edd04;
  font-size: 40px;
  text-shadow: 1px 1px 1px #a1a0a02d;
}

.abt-facebook .row {
  border-radius: 4px;
}

.abt-facebook .col-sm-7 {
  display: flex;
  justify-content: center;
}

.abt-facebook .fb-page {
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .abt-facebook {
    background-attachment: fixed;
    height: fit-content;
  }

  .abt-facebook h2 {
    font-size: 30px;
    text-align: center;
    padding-bottom: 15%;
    padding-top: 5%;
  }

  .fb-page {
    width: 100vw;
    height: fit-content;
    margin: 0;
  }

  .col-sm-5 {
    margin-right: -50px;
    margin-left: -50px;
  }

  .abt-facebook .row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .abt-facebook .col-sm-7 {
    margin-bottom: 30px;
  }

  .abt-facebook .col-sm-5 {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .abt-facebook .col-sm-7,
  .abt-facebook .col-sm-5 {
    text-align: center;
  }
}

/* ======================
    Facebook End
======================= */

/* ==================================
          SECTION-TITLE-MOBILE
=================================== */

@media screen and (max-width: 768px) {
  .team .section-title p,
  .service- .section-title p,
  .bg .section-title p,
  .page .section-title p,
  .remove .section-title p {
    font-size: 32px;
  }
}
