/* Colors */
:root {
  --color-default: #F8F0E5;
  --color-primary: #EADBC8;
  --color-prime: #0F2C59;
  --color-secondary: #DAC0A3;
  --color-one: #B4B4B3;
  --color-two: #26577C;
  --color-three: #E55604;
  --theme-color1: #aa8453;

  --primary: #aa8453;
  --secondary: #2B3499;
  --orange: #FF6C22;
  --light-orange: #FF9209;
  --light-primary: #FFD099;
  --light: #F5F7F8;
  --light-blue: #EEF5FF;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  overflow-x: hidden;

}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}


.btn-primary1 {
  background: var(--color-prime);
  color: #fff;
}

.btn-dark1 {
  background: var(--primary);
  color: #fff !important;
}




.btn-primary1:hover {
  background: var(--color-prime);
  color: #fff;
}

.btn-dark1:hover {
  background: var(--color-secondary);
  color: #000 !important;
}

.text-primary1 {
  color: var(--color-prime);
}

.text-primary2 {
  color: var(--color-secondary);
}

.text-primary3 {
  color: var(--color-primary);
}

.bg-primary1 {
  background: var(--color-prime);
  color: #fff;
}

.bg-light1 {
  background: var(--color-default);

}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 55px;
  z-index: 996;
  background: var(--primary);
  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: var(--primary);
  color: #fff;
}

.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 {
  background: var(--color-prime);
  padding: 0px 0;
  font-size: 14px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
}

#topbar .social-links a {
  color: #bababa;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}

#topbar .social-links a:hover {
  color: #fff !important;
}


.btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px;
  border-radius: 10px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff !important;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--theme-color1);
  background: var(--theme-color1);
}

.btn-get-started:hover {
  background: transparent;
  color: var(--color-secondary);
  text-decoration: none;
}


.btn-get-started1 {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 22px;
  border-radius: 10px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff !important;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--theme-color1);
  background: var(--theme-color1);
}

.btn-get-started1:hover {
  background: transparent;
  color: var(--color-secondary);
  text-decoration: none;
}


.btn-get-started2 {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 22px;
  border-radius: 10px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff !important;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--theme-color1);
  background: var(--theme-color1);
}

.btn-get-started2:hover {
  background: var(--color-prime);
  border: var(--color-prime);
  color: #fff;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 26px;
  padding: 0 0 0 8px;
  margin: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 8px solid var(--color-prime);
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #545454;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 70px;
}

.scrolled-offset {
  margin-top: 90px;
}

/*--------------------------------------------------------------
  # 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;
  font-size: 14px;
  font-weight: 600;
  color: #545454;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-prime);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--color-prime);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--color-two);
}



.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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #545454;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--color-prime);
}

.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: #545454;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(59, 59, 59, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #545454;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-prime);
}

.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(--color-prime);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background-color: rgba(28, 27, 27, 0.8);
  /* overflow: hidden; */
  padding: 0;
  /* margin-bottom: -120px; */
  position: relative;
  z-index: 1;
}

#hero1 {
  width: 100%;
  height: 80vh;
  background-color: rgba(28, 27, 27, 0.8);
  overflow: hidden;
  padding: 0;
  /* margin-bottom: -120px; */
  position: relative;
  z-index: 1;
}

#hero1 .carousel-item::before {
  content: "";
  background-color: rgba(26, 25, 25, 0);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: center center;
}

/* #hero .carousel-item::before {
  content: "";
  background-color: rgba(26, 25, 25, 0);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: 120px;
} */

/* Find this block in your style.css around the Hero Section styles */
#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2); /* Changed from rgba(26, 25, 25, 0) to 55% dark overlay */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1; /* Ensures it sits over the background image but behind the text */
}

/* Add z-index to the container to make sure form fields and typography stay on top of the overlay */
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: 120px;
  z-index: 2; /* Keeps text above the dark overlay */
}

#hero .carousel-content {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 60px;
  font-weight: 700;
}


#hero h1 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 68px !important;
  font-weight: 700;
}

#hero h2 span {
  color: var(--color-default);
}

#hero p {
  width: 100%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: arken(#fff, 15);
}

/* #hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
} */

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-size: cover;
  background-position: center center !important;
  background-repeat: no-repeat;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  color: #ffffff;
  opacity: 0.9;
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: var(--theme-color1);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 180px;
  opacity: 0.2;
}

#hero .carousel-indicators li.active {
  opacity: 1;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--theme-color1);
  background: var(--theme-color1);
}

#hero .btn-get-started:hover {
  background: transparent;
  color: var(--color-secondary);
  text-decoration: none;
}

@media (max-height: 768px),
(max-width: 1200px) {
  #hero {
    margin-bottom: 20px;
  }

  #hero .carousel-container {
    padding-bottom: 0;
  }

  #hero .carousel-indicators li {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 80vh;
  }

  #hero .carousel-item {
    height: 80vh;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    color: #2e2e2e;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
  }

  #hero h1 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px !important;
    font-weight: 700;
  }
  
}

@media (max-width: 480px) {
  #hero {
    width: 100%;
    height: 70vh;
    background-color: rgba(28, 27, 27, 0.8);
    overflow: hidden;
    padding: 0;
    /* margin-bottom: -120px; */
    /* position: ; */
    z-index: 1;
  }
  
  #hero .carousel-item::before {
    content: "";
    background-color: rgba(26, 25, 25, 0);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  
  #hero .carousel-item {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
}





@media (min-width: 1024px) {
  #hero p {
    width: 80%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  padding-bottom: 0;
  color: #054a85;
}

.section-title p {
  margin-bottom: 0;
  font-style: italic;
}


.section-header {
  text-align: center;
  padding-bottom: 20px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/* About Section Image */
.about-img {
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

/* ======= Tagline Strip (Homepage only) ======= */
/* .tagline-strip {
    background: var(--color-prime);
    padding: 18px 0;
    width: 100%;
}

.tagline-text {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tagline-text span {
    color: #fff;
}

.tagline-dot {
    color: var(--theme-color1);
    font-size: 24px;
    line-height: 1;
} */

/* Responsive */
/* @media (max-width: 767px) {
    .tagline-text {
        font-size: 14px;
        letter-spacing: 1px;
        gap: 10px;
    }

    .tagline-dot {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .tagline-text {
        font-size: 12px;
        letter-spacing: 0.5px;
        gap: 8px;
    }

    .tagline-strip {
        padding: 14px 0;
    }
} */


/*--------------------------------------------------------------
# Standalone Tagline Strip Section
--------------------------------------------------------------*/
.standalone-tagline-section {
    background-color: var(--color-prime); /* Uses your deep blue brand color natively */
    padding: 22px 0;
    width: 100%;
    position: relative;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tagline-flex-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tagline-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.tagline-feature-item i {
    font-size: 20px;
    color: var(--color-secondary); /* Uses your elegant gold/tan accent color */
}

.tagline-feature-item span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Responsive Optimization for Tablets and Smaller Displays */
@media (max-width: 991.98px) {
    .tagline-flex-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Automatically splits cleanly into a balanced 2x2 grid */
        gap: 20px;
        justify-items: center;
    }
    
    .tagline-feature-item {
        width: 100%;
        max-width: 240px;
        justify-content: flex-start;
    }
}

/* Responsive Optimization for Ultra-Narrow Mobile Form Factors */
@media (max-width: 480px) {
    .standalone-tagline-section {
        padding: 15px 0;
    }
    
    .tagline-flex-wrapper {
        grid-template-columns: 1fr; /* Switches gracefully into a single center-stacked layout column */
        gap: 12px;
    }
    
    .tagline-feature-item {
        justify-content: center;
    }
    
    .tagline-feature-item span {
        font-size: 14px;
        letter-spacing: 1px;
    }
}


@media (max-width: 480px) {
  section {
    padding: 10px 0;
    overflow: hidden;
  }

  .section-header {
    text-align: center;
    padding-bottom: 0px !important;
  }

  .section-header h2 {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    color: #2e3135;
    padding:0px !important
  }

  .section-header h2:before,
.section-header h2:after {
  content: "";
  width: 100%;
  height: 0px;
  background: none;
  display: inline-block;
}

.section-header h2:before {
  margin:  0px !important;
}

.section-header h2:after {
  margin: 0px !important;
}



}



/**
  * Checkout Form Section 
  */


.checkout-form-section {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.checkout-form-section.v2 {
  position: static;
  background: #222222;
}

.checkout-form-section.v2 .checkout-form {
  background: transparent;
}

.checkout-form-section.v2 .checkout-form .checkout-field {
  border-color: rgba(255, 255, 255, 0.1);
}

.checkout-form-section.v2 .checkout-form .checkout-field>h6 {
  color: #fff;
}

.checkout-form-section .checkout-form {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px 15px 15px 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.checkout-form-section .checkout-form .checkout-field {
  padding: 14px 10px 11px;
  border-right: 1px solid #f8f5f0;
}

.checkout-form-section .checkout-form .checkout-field.br-0 {
  border-right: 0;
}

.checkout-form-section .checkout-form .checkout-field>h6 {
  color: #222222;
  font-size: 16px;
  font-weight: 700;
  /* font-family: var(--text-font); */
  text-transform: uppercase;
  margin-bottom: -8px;
}

.checkout-form-section .checkout-form .checkout-field .chk-field {
  position: relative;
}

.checkout-form-section .checkout-form .checkout-field .chk-field input,
.checkout-form-section .checkout-form .checkout-field .chk-field select {
  font-size: 12px;
  color: #aa8453;
  width: 260px;
  background: transparent;
  border-color: transparent;
  z-index: 99;
  position: relative;
}

.checkout-form-section .checkout-form .checkout-field .chk-field i {
  position: absolute;
  top: 0;
  right: 0;
  color: #cab293;
  font-size: 18px;
}

.checkout-form-section .checkout-form .checkout-field .chk-field select option {
  font-size: 14px;
}

.checkout-form-section .checkout-form .btn-style-one {
  margin-left: auto;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 0px;
  line-height: 45px;
  background-color: var(--theme-color1);
  border-color: transparent;
  padding: 0;
  width: 140px;
  text-align: center;
  margin-top: -8px;
  position: relative;
  border: 0;
  top: 5px;
  height: 50px;
  font-weight: 600;
  color: #fff;
}

.checkout-form-section .checkout-form .btn-style-one:before {
  background: #000;
}

.chk-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.chk-field select::-ms-expand {
  display: none;
}

.chk-field input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #aa8453;
}

.chk-field input ::-moz-placeholder {
  /* Firefox 19+ */
  color: #aa8453;
}

.chk-field input:-ms-input-placeholder {
  /* IE 10+ */
  color: #aa8453;
}

.chk-field input:-moz-placeholder {
  /* Firefox 18- */
  color: #cab293;
}

@media only screen and (max-width: 1410px) {

  .checkout-form-section .checkout-form .checkout-field .chk-field input,
  .checkout-form-section .checkout-form .checkout-field .chk-field select {
    width: 255px;
  }
}

@media only screen and (max-width: 1366px) {
  .banner-section-two .slick-dots {
    bottom: 40px;
  }

  .banner-section-two .banner-slider .content-box {
    min-width: 700px;
  }

  .banner-section-two .banner-slider {
    min-height: 800px;
  }
}

@media only screen and (max-width: 1200px) {
  .banner-section-two .banner-slider .content-box {
    margin-top: 50px;
  }

  .banner-section-two .banner-slider {
    min-height: unset;
  }

  .checkout-form-section .checkout-form .checkout-field .chk-field input,
  .checkout-form-section .checkout-form .checkout-field .chk-field select {
    width: 190px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-section .banner-slider {
    height: 800px;
  }

  .checkout-form-section .checkout-form .checkout-field .chk-field input,
  .checkout-form-section .checkout-form .checkout-field .chk-field select {
    width: 185px;
  }

  .checkout-form-section .checkout-form .btn-style-one {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-section .content-box {
    min-width: 100%;
  }

  .checkout-form-section .checkout-form .btn-style-one {
    margin-left: auto;
  }

  .checkout-form-section.v2 .checkout-form .checkout-field {
    margin-bottom: 20px;
  }

  .banner-section-two .banner-slider .content-box {
    min-width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .banner-section .content-box {
    margin-top: -80px;
  }

  .checkout-form-section .checkout-form .checkout-field .chk-field input,
  .checkout-form-section .checkout-form .checkout-field .chk-field select {
    width: 100%;
  }

  .checkout-form-section .checkout-form {
    display: block;
  }

  .checkout-form-section .checkout-form .checkout-field {
    border: 0;
  }

  .checkout-form-section .checkout-form .btn-style-one {
    width: 100%;
  }

  .checkout-form-section .checkout-form .checkout-field {
    padding: 13px 0 11px;
  }
}

@media only screen and (max-width: 480px) {
  .banner-section .content-box h1 {
    font-size: 22px;
    line-height: 36px;
  }

  .banner-section-two .banner-slider .content-box h1 {
    font-size: 26px;
    line-height: 34px;
    padding: 0;
  }
}


/*** 
  
  ====================================================================
    service-section two
  ====================================================================
  
  ***/
.service-section-two {
  position: relative;
  /* padding: 30px 0 18px; */
  background-color: #f8f5f0;
}

@media (max-width: 575.98px) {
  .service-section-two {
    /* padding: 0px 0 50px; */
  }
}

@media (max-width: 575.98px) {
  .service-section-two .sec-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .service-section-two .sec-title .sub-title {
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .service-section-two .sec-title h2 {
    font-size: 29px;
  }
}

.service-section-two::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 665px;
  height: 466px;
  background-image: url(../images/background/home.png);
}

.service-block-two {
  margin-bottom: 32px;
}

.service-block-two .inner-box-two {
  height: 100%;
}

.service-block-two .inner-box-two .image {
  overflow: hidden;
}

.service-block-two .inner-box-two .image img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-block-two .inner-box-two:hover .image img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.service-block-two .inner-box {
  position: relative;
  background-color: #fff;
  padding: 47px 40px 44px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 1199.98px) {
  .service-block-two .inner-box {
    padding: 20px 28px 30px;
  }
}

.service-block-two .inner-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 95px;
  height: 11px;
  background-color: var(--theme-color1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.service-block-two .inner-box:hover {
  background-color: var(--color-two);
}

.service-block-two .inner-box:hover::before {
  opacity: 1;
  visibility: visible;
  left: 40px;
}

.service-block-two .inner-box:hover .image-box .icon-box i {
  color: #fff;
}

.service-block-two .inner-box .image-box .title a {
  color: var(--color-prime) !important;
}

.service-block-two .inner-box:hover .image-box .title a {
  color: #fff !important;
}

.service-block-two .inner-box .image-box .title {
  color: var(--color-prime) !important;
}

.service-block-two .inner-box:hover .image-box .title {
  color: #fff !important;
}

.service-block-two .inner-box:hover .image-box .image {
  -webkit-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.service-block-two .inner-box:hover .image-box .image::before {
  background-color: var(--theme-color1);
}

.service-block-two .inner-box:hover .content-box .text {
  color: #fff;
}

.service-block-two .inner-box .image-box {
  position: relative;
  padding-left: 93px;
  min-height: 58px;
  padding-top: 14px;
  margin-bottom: 22px;
}

@media (max-width: 1199.98px) {
  .service-block-two .inner-box .image-box {
    padding-left: 0;
  }
}

.service-block-two .inner-box .image-box .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 99;
}

.service-block-two .inner-box .image-box .icon-box i {
  font-size: 64px;
  color: #aa8453;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 1199.98px) {
  .service-block-two .inner-box .image-box .icon-box {
    position: static;
  }
}

.service-block-two .inner-box .image-box .icon-box::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 30px;
  height: 30px;
  background-color: #f8f5f0;
  border-radius: 50%;
  z-index: -1;
}

.service-block-two .inner-box .image-box .title {
  margin-bottom: 18px;
}

.service-block-two .inner-box .content-box .text {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}


#services1 .service-item2 {
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

#services1 .service-item2 .icon i {
    color: #c19b76;
}

#services1 .service-item2 h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

#services1 .service-item2 p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    #services1 .service-item2 {
        padding: 25px 15px;
    }

    #services1 .service-item2 h4 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    #services1 .service-item2 .icon i {
        font-size: 2rem !important;
    }

    #services1 .service-item2 h4 {
        font-size: 16px;
    }

    #services1 .service-item2 p {
        font-size: 14px;
        line-height: 1.6;
    }
}

  /*** 
====================================================================
News Section
====================================================================***/ 

.news-section {
  position: relative;
  padding: 20px 0 20px;
}

.news-section:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 713px;
  height: 544px;
  background-image: url(../images/icons/bg-shape.png);
  background-repeat: no-repeat;
}

@media (max-width: 575.98px) {
  .news-section .sec-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .news-section .sec-title .sub-title {
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .news-section .sec-title h2 {
    font-size: 29px;
  }
}

.news-block {
  position: relative;
  margin-bottom: 30px;
}

.news-block .inner-box {
  position: relative;
}

.news-block .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-block .inner-box:hover .image-box .date {
  bottom: 40px;
}

.news-block .inner-box .image-box {
  position: relative;
}

.news-block .inner-box .image-box .image {
  overflow: hidden;
}

.news-block .inner-box .image-box .image img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-block .inner-box .image-box .date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 14px;
  height: 85px;
  width: 45px;
  background-color: var(--color-two);
  color: #fff;
  display: inline-block;
  text-align: center;
  padding-top: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-block .inner-box .image-box .date small {
  font-size: 24px;
  margin-top: -4px;
  display: inline-block;
}

.news-block .inner-box .content-box {
  position: relative;
  background-color: #fff;
  padding: 21px 0px 21px 30px;
  margin-left: 60px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: -100px;
}

@media (max-width: 575.98px) {
  .news-block .inner-box .content-box {
    padding: 21px 0px 21px 20px;
  }
}

.news-block .inner-box .content-box .post-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.news-block .inner-box .content-box .post-info li {
  position: relative;
  font-size: 12px;
  color: #666666;
  margin-right: 17px;
}

.news-block .inner-box .content-box .post-info li:last-child {
  margin-right: 0;
}

.news-block .inner-box .content-box .post-info li i {
  color: var(--theme-color1);
  margin-right: 7px;
}

.news-block .inner-box .content-box .title a{
  color: var(--color-prime);
  margin-bottom: 12px;
}

@media (max-width: 575.98px) {
  .news-block .inner-box .content-box .title {
    font-size: 22px;
  }
}

.news-block .inner-box .content-box .title:hover a {
  color: var(--theme-color1);
}

.news-block .inner-box .content-box .read-more {
  display: inline-block;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  color: var(--theme-color-dark);
  background-color: #f8f5f0;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  width: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* font-family: var(--text-font2); */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 99;
}

.news-block .inner-box .content-box .read-more:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--bg-theme-color1);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  z-index: -1;
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.news-block .inner-box .content-box .read-more:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.news-block .inner-box .content-box .read-more i {
  position: relative;
  top: 0px;
  margin-left: 10px;
}

.news-block .inner-box .content-box .read-more:hover {
  color: #fff;
}

.news-block .inner-box .content-box .read-more:hover i {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  /* opacity: 0.5; */
  transition: 0.3s;
}

.clients .swiper-slide:hover img {
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--color-default);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-default);
}

.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  width: 60%;
  opacity: 0.5;
  transition: 0.3s;
}

.clients .owl-item img:hover {
  opacity: 1;
}

.clients .owl-nav,
.clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.clients .owl-dot.active {
  background-color: var(--color-default) !important;
}




.gallery1 {
  display: grid;
  grid: auto-flow dense 100px 200px / repeat(8, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.gallery1 li {
  list-style-type: none;
  padding: 5px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow:
    0.3px 0.5px 0.7px hsl(0deg 0% 0% / 0.36),
    0.8px 1.6px 2px -0.8px hsl(0deg 0% 0% / 0.36),
    2.1px 4.1px 5.2px -1.7px hsl(0deg 0% 0% / 0.36),
    5px 10px 12.6px -2.5px hsl(0deg 0% 0% / 0.36);    
}

.gallery1 li:nth-child(2),
.gallery1 li:nth-child(4),
.gallery1 li:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  background: #f1f8ff;
  padding: 0;
}

.why-us .content {
  padding: 30px 30px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  /* padding: 0 10px 10px 10px; */
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;

  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: var(--color-prime);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: var(--color-prime);
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-prime) 50%, rgba(8, 128, 232, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .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);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(2, 50, 91, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid var(--color-secondary);
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 10px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}


.testimonials .testimonial-item h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  /* font-style: italic; */
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}



.page-header {
  background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/new/building5.jpeg) bottom center no-repeat;
  background-size: cover;
  height: 320px;
  background-repeat: no-repeat;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: #999999;
}


@media only screen and (max-width: 480px) {
  .page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/banner/banner1.jpeg) center center no-repeat;
    background-size: cover;
    height: 230px;
    background-repeat: no-repeat;
  }

  
}




/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #000;
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.4);
}

.chefs .chef-member .member-info p {
  /* font-style: italic; */
  font-size: 16px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}



/*** 

====================================================================
		About Section
====================================================================

***/
.exp-box {
  position: absolute;
  left: 135px;
  background: #000;
  width: 260px;
  text-align: center;
  padding: 36px 15px 33px;
}
.exp-box figure {
  margin-bottom: 12px;
}
.exp-box .title {
  color: var(--theme-color-light);
  margin-bottom: 9px;
}
.exp-box .text {
  color: #ababab;
  /* font-family: var(--text-font2); */
  line-height: 24px;
}

.about-section {
  /* position: relative;
  padding: 10px 0 13px; */
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 710px;
  height: 544px;
  background-image: url(../images/background/pattern.png);
}
.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}
.about-section .content-column .inner-column {
  position: relative;
  /* padding-left: 52px; */
}
.about-section .content-column .sec-title {
  margin-bottom: 45px;
}
.about-section .content-column .sec-title .sub-title::before {
  display: none;
}
@media (max-width: 575.98px) {
  .about-section .content-column .sec-title h2 {
    font-size: 30px;
    line-height: 48px;
  }
}
.about-section .content-column .sec-title .text {
  margin-top: 25px;
}
.about-section .content-column .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-section .content-column .btn-box .theme-btn {
  margin-right: 42px;
  border: 0;
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
  text-transform: uppercase;
  padding: 17px 42px 18px;
}
.about-section .content-column .btn-box .theme-btn:before {
  background: #000;
}
.about-section .image-column {
  position: relative;
  /* margin-bottom: 50px; */
}
@media (max-width: 575.98px) {
  .about-section .image-column {
    display: none;
  }
}
.about-section .image-column .inner-column {
  position: relative;
  padding-left: 20px;
  /* padding-bottom: 82px; */
}
.about-section .image-column .inner-column .icon-dots {
  position: absolute;
  left: -120px;
  bottom: -30px;
}
.about-section .image-column .image-1 {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 0px;
}
.about-section .image-column .image-1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 30px;
  height: 250px;
  background-color: var(--theme-color1);
}
.about-section .image-column .image-1 img {
  width: 100%;
}
.about-section .image-column .image-2 {
  position: absolute;
  right: 18px;
  bottom: 41px;
  margin-bottom: 0;
  border: 15px solid var(--theme-color-light);
  overflow: hidden;
}
.about-section .image-column .image-5 {
  position: absolute;
  bottom: 30px;
  left: -70px;
  z-index: -1;
}
.about-section .image-column .image-4 {
  position: absolute;
  bottom: 65px;
  left: -97px;
  z-index: -1;
}
.about-section .image-column .btn-box {
  position: absolute;
  top: 79px;
  right: 25px;
  height: 133px;
  width: 133px;
  text-align: center;
  line-height: 133px;
}
.about-section .image-column .btn-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border: 1px solid #d4d4d5;
  height: 100%;
}
@media (max-width: 991.98px) {
  .about-section .image-column .btn-box {
    right: 193px;
  }
}
.about-section .image-column .btn-box .play-now-two {
  width: 107px;
  height: 107px;
  line-height: 107px;
  text-align: center;
  background: var(--theme-color1);
  color: #fff;
  font-size: 22px;
  display: inline-block;
  position: relative;
  z-index: 99;
}
.about-section .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-section .exp-box {
  top: 213px;
  left: 20%;
}

.info-block {
  position: relative;
  margin-bottom: 52px;
  margin-right: 115px;
}
.info-block:last-child {
  margin-right: 0;
}
.info-block .inner {
  position: relative;
  padding-left: 94px;
  min-height: 80px;
}
.info-block .inner:hover .icon-box {
  color: #fff;
}
.info-block .inner:hover .icon-box:before {
  opacity: 1;
}
.info-block .icon-box {
  position: absolute;
  left: 0;
  top: 3px;
}
.info-block .icon-box i {
  font-size: 64px;
  color: #000;
}



.overlay-anim {
  position: relative;
}
.overlay-anim:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.bounce-y {
  -webkit-animation: bounce-y 10s infinite linear;
  animation: bounce-y 10s infinite linear;
}

@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.btn-anim {
  position: relative;
}
.btn-anim:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.btn-anim:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services1 .service-item2 {
  padding: 20px;
  background: #fff;
  height: 100%;
  border-radius: 20px;
}

.services1 .service-item2 .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 30px;
}

.services1 .service-item2 .icon i {
  color: var(--color-prime);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services1 .service-item2 .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services1 .service-item2 h3 {
  color: var(--color-prime);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.service-item h5 {
  color: var(--color-prime);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.services1 .service-item2 p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services1 .service-item2 .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-prime);
}

.services1 .service-item2:hover .icon:before {
  background: var(--color-primary);
}

.services1 .service-item2:hover h3 {
  border-color: var(--color-primary);
}


 
  /*** 
  
  ====================================================================
    room-section
  ====================================================================
  
  ***/
  .rooms-section {
    position: relative;
    padding: 20px 0;
    /* background: #f8f5f0; */
  }
  @media (max-width: 575.98px) {
    .rooms-section .sec-title {
      margin-bottom: 40px;
    }
  }
  @media (max-width: 575.98px) {
    .rooms-section .sec-title h2 {
      font-size: 32px;
    }
  }
  
  .room-block.col-lg-3 .inner-box .box-caption .bx-links li {
    margin-right: 3px;
  }
  .room-block .inner-box {
    position: relative;
  }
  .room-block .inner-box:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, from(#222222), to(#222222));
    background: linear-gradient(to left, #222222, #222222);
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .room-block .inner-box:hover .box-caption {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
  }
  .room-block .inner-box:hover .content-box {
    bottom: 84px;
    z-index: 9;
  }
  .room-block .inner-box:hover:before {
    opacity: 0.4;
    visibility: visible;
  }
  .room-block .inner-box:hover .image-box figure img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .room-block .inner-box .box-caption {
    position: absolute;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 99;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    bottom: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .room-block .inner-box .box-caption .book-btn {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 14pxx;
    color: #ffffff;
    /* font-family: var(--text-font2); */
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  .room-block .inner-box .box-caption .book-btn:hover {
    background-color: var(--theme-color1);
    border-color: transparent;
  }
  .room-block .inner-box .box-caption .bx-links {
    margin-left: auto;
  }
  .room-block .inner-box .box-caption .bx-links li {
    display: inline-block;
    margin-right: 11px;
  }
  .room-block .inner-box .box-caption .bx-links li:last-child {
    margin-right: 0;
  }
  .room-block .inner-box .box-caption .bx-links li a {
    color: #fff;
    font-size: 16px;
  }
  .room-block .inner-box .image-box figure {
    margin-bottom: 27px;
    overflow: hidden;
  }
  .room-block .inner-box .image-box figure img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .room-block .inner-box .content-box {
    position: absolute;
    bottom: 22px;
    right: 32px;
    text-align: right;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9;
  }
  .room-block .inner-box .content-box .title {
    font-size: 27px;
    margin-bottom: -6px;
    color: var(--theme-color-light);
  }
  .room-block .inner-box .content-box .price {
    font-size: 14px;
    color: var(--theme-color-light);
  }
  @media (max-width: 991.98px) {
    .room-block .inner-box .image-box .image-2 img {
      width: 100%;
      height: 340px;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }
  
  .room-facility-list {
    position: relative;
  }
  .room-facility-list .icon {
    border: 1px solid var(--theme-color1);
    border-radius: 50%;
    display: block;
    font-size: 22px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    width: 64px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .room-facility-list .list-one:hover .icon {
    background-color: var(--theme-color1);
    color: #fff;
  }
  
  .room-details__content-right {
    position: relative;
    display: block;
    margin-top: 40px;
  }
  
  .room-details__details-box {
    background-color: #f5f6f7;
    border: 1px solid var(--theme-color1);
    border-radius: 10px;
    padding: 43px 50px 30px 50px;
    position: relative;
    z-index: 1;
  }
  
  .product-details.rd-page .bx-wrapper {
    margin-bottom: 30px;
  }
  .product-details.rd-page .bx-wrapper .thumb-box li {
    height: auto;
  }
  
  @media only screen and (max-width: 480px) {
    .room-block .inner-box .box-caption .book-btn {
      padding: 0 10px;
      margin-right: 10px;
    }
    .room-block.col-lg-3 .inner-box .box-caption .bx-links li {
      margin-right: 10px;
    }
    .rooms-section {
      padding: 20px 0;
    }

    
  }


    /***
  
  ====================================================================
      Blog Details
  ====================================================================
  
  ***/
  .blog-details {
    position: relative;
    display: block;
  }
  
  .blog-details__left {
    position: relative;
    display: block;
  }
  
  .blog-details__img {
    position: relative;
    display: block;
    border-radius: 10px;
  }
  .blog-details__img img {
    width: 100%;
    border-radius: 10px;
  }
  
  .blog-details__date {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--theme-color1);
    text-align: center;
    padding: 21px 24px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-details__date .day {
    font-size: 16px;
    color: #fff;
    font-weight: var(--body-font-weight-bold);
    line-height: 16px;
  }
  .blog-details__date .month {
    position: relative;
    display: block;
    font-size: 10px;
    font-weight: var(--body-font-weight-bold);
    color: #fff;
    line-height: 12px;
    text-transform: uppercase;
  }
  
  .blog-details__content {
    position: relative;
    display: block;
    margin-top: 22px;
  }
  
  .blog-details__meta {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blog-details__meta li + li {
    margin-left: 18px;
  }
  .blog-details__meta li a {
    font-size: 15px;
    color: #777;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .blog-details__meta li a:hover {
    color: var(--theme-color1);
  }
  .blog-details__meta li a i {
    color: var(--theme-color1);
    margin-right: 6px;
  }
  
  .blog-details__title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 12px;
    margin-bottom: 21px;
    font-weight: var(--body-font-weight-bold);
  }
  
  .blog-details__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0 30px;
    margin-top: 49px;
    border-top: 1px solid #ece9e0;
  }
  @media only screen and (max-width: 767px) {
    .blog-details__bottom {
      gap: 30px;
    }
  }
  .blog-details__bottom p {
    margin: 0;
  }
  
  .blog-details__tags span {
    color: #0e2207;
    font-size: 20px;
    margin-right: 14px;
    font-weight: var(--body-font-weight-bold);
  }
  .blog-details__tags a {
    position: relative;
    font-size: 12px;
    background-color: var(--theme-color1);
    color: #fff;
    display: inline-block;
    padding: 5px 30px 5px;
    font-weight: var(--body-font-weight-bold);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 35px;
  }
  .blog-details__tags a:hover {
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color1);
    text-decoration: none;
  }
  .blog-details__tags a + a {
    margin-left: 6px;
  }
  
  .blog-details__social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .blog-details__social-list a {
    position: relative;
    height: 43px;
    width: 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    font-size: 15px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
  }
  .blog-details__social-list a:hover {
    color: var(--text-color-bg-theme-color2);
  }
  .blog-details__social-list a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  .blog-details__social-list a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--theme-color2);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
  .blog-details__social-list a + a {
    margin-left: 10px;
  }
  
  .blog-details__pagenation-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 53px;
  }
  
  .blog-details__pagenation {
    position: relative;
    display: block;
  }
  .blog-details__pagenation li {
    position: relative;
    float: left;
    font-size: 20px;
    color: #0e2207;
    font-weight: var(--body-font-weight-bold);
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    line-height: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    max-width: 370px;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 52px;
    padding-bottom: 52px;
    border-radius: 10px;
  }
  .blog-details__pagenation li:hover {
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color2);
  }
  .blog-details__pagenation li + li {
    margin-left: 30px;
  }
  
  table {
    /* display: block; */
    overflow-x: auto !important;
    white-space: nowrap;
}

  /* Nav Links */
  .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 53px;
  }
  @media only screen and (max-width: 767px) {
    .nav-links {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 20px;
    }
  }
  .nav-links .prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: calc(50% - 15px);
    margin-right: 30px;
  }
  @media only screen and (max-width: 767px) {
    .nav-links .prev {
      width: 100%;
    }
  }
  .nav-links .prev .thumb {
    margin-right: 20px;
  }
  .nav-links .next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: calc(50% - 15px);
  }
  @media only screen and (max-width: 767px) {
    .nav-links .next {
      width: 100%;
    }
  }
  .nav-links .next .thumb {
    margin-left: 20px;
  }
  .nav-links > div {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .nav-links > div .thumb {
    display: inline-block;
    min-width: 60px;
    width: 60px;
    height: 60px;
    overflow: hidden;
  }
  .nav-links > div .thumb a {
    display: inline-block;
  }
  .nav-links > div > a {
    display: inline-block;
    word-wrap: break-word;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    font-size: 20px;
    line-height: 1.637;
    font-weight: var(--body-font-weight-bold);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    padding: 52px 50px;
    border-radius: 10px;
    width: 100%;
  }
  @media only screen and (max-width: 767px) {
    .nav-links > div > a {
      padding: 30px;
    }
  }
  .nav-links > div > a:hover {
    color: #fff;
    background-color: var(--theme-color1);
  }
  
  /*** 
  
  ====================================================================
  Sidebar
  ====================================================================
  
  ***/
  @media (max-width: 991px) {
    .sidebar {
      margin-top: 50px;
    }
  }
  .sidebar__single + .sidebar__single {
    margin-top: 30px;
  }
  
  .sidebar__title {
    margin: 0;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: var(--h4-font-weight);
  }
  
  .sidebar__search {
    position: relative;
    display: block;
  }
  
  .sidebar__search-form {
    position: relative;
  }
  .sidebar__search-form input[type=search] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--theme-color1);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding-left: 50px;
    height: 74px;
    width: 100%;
    padding-right: 80px;
    border-radius: 10px;
  }
  .sidebar__search-form input[type=search]::-webkit-input-placeholder {
    color: var(--text-color-bg-theme-color1);
    opacity: 1;
  }
  .sidebar__search-form input[type=search]::-webkit-input-placeholder, .sidebar__search-form input[type=search]:-ms-input-placeholder, .sidebar__search-form input[type=search]::-ms-input-placeholder, .sidebar__search-form input[type=search]::placeholder {
    color: var(--text-color-bg-theme-color1);
    opacity: 1;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__search-form input[type=search] {
      padding-left: 30px;
    }
  }
  .sidebar__search-form button[type=submit] {
    background-color: transparent;
    color: #fff;
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__search-form button[type=submit] {
      width: 42px;
    }
  }
  
  .sidebar__post {
    position: relative;
    display: block;
    padding: 46px 30px 30px;
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__post {
      padding: 30px;
    }
  }
  .sidebar__post .sidebar__title {
    margin-left: 20px;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__post .sidebar__title {
      margin-left: 0;
    }
  }
  .sidebar__post .sidebar__post-list {
    margin: 0;
  }
  .sidebar__post .sidebar__post-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 20px 17px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__post .sidebar__post-list li {
      padding: 16px 0;
    }
  }
  .sidebar__post .sidebar__post-list li:hover {
    background-color: #ffffff;
    border-radius: 10px;
  }
  .sidebar__post .sidebar__post-list li + li {
    margin-top: 11px;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-image {
    margin-right: 20px;
    -webkit-box-flex: 70px;
        -ms-flex: 70px 0 0px;
            flex: 70px 0 0;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-image > img {
    width: 80px;
    border-radius: 10px;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-content {
    position: relative;
    top: -3px;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-content h3 {
    font-size: 18px;
    margin: 0;
    line-height: 26px;
    letter-spacing: 0;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
    color: #0e2207;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-content-meta {
    font-size: 14px;
    font-weight: 500;
    color: #757873 !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
    color: var(--theme-color1);
    font-size: 14px;
    padding-right: 3px;
  }
  
  .sidebar__category {
    position: relative;
    display: block;
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    border-radius: 10px;
    padding: 45px 30px 38px;
    overflow: hidden;
    z-index: 1;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__category {
      padding: 30px 15px 30px;
    }
  }
  .sidebar__category .sidebar__title {
    padding-left: 20px;
    margin-bottom: 9px;
  }
  .sidebar__category-list {
    margin: 0;
  }
  .sidebar__category-list li + li {
    margin-top: 4px;
  }
  .sidebar__category-list li a {
    color: #757873;
    font-size: 16px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 10px;
  }
  .sidebar__category-list li a:hover {
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    color: #0e2207;
    text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
  }
  .sidebar__category-list li a:hover span {
    color: #ffcd1e;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
  .sidebar__category-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--theme-color2);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
  }
  .sidebar__category-list li.active a {
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    color: #0e2207;
    border-radius: 10px;
    text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
  }
  .sidebar__category-list li.active a span {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    color: #ffcd1e;
  }
  
  .sidebar__tags {
    position: relative;
    display: block;
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    padding: 46px 45px 50px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__tags {
      padding: 30px;
    }
  }
  .sidebar__tags .sidebar__title {
    margin-left: 5px;
    margin-bottom: 25px;
  }
  
  .sidebar__tags-list {
    margin-top: -10px;
  }
  .sidebar__tags-list a {
    font-size: 14px;
    color: #0e2207;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #ffffff;
    display: inline-block;
    padding: 5px 28px 5px;
    margin-left: 5px;
    border-radius: 30px;
  }
  .sidebar__tags-list a:hover {
    color: #fff;
    background: var(--theme-color1);
  }
  .sidebar__tags-list a + a {
    margin-left: 5px;
    margin-top: 10px;
  }
  
  .sidebar__comments {
    position: relative;
    display: block;
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    padding: 46px 50px 43px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__comments {
      padding: 30px;
    }
  }
  .sidebar__comments .sidebar__title {
    margin-bottom: 25px;
  }
  
  .sidebar__comments-list {
    position: relative;
    display: block;
  }
  .sidebar__comments-list li {
    position: relative;
    display: block;
    padding-left: 65px;
  }
  .sidebar__comments-list li:hover .sidebar__comments-icon {
    background-color: var(--theme-color2);
    color: var(--headings-color);
  }
  .sidebar__comments-list li + li {
    margin-top: 23px;
  }
  
  .sidebar__comments-icon {
    height: 45px;
    width: 45px;
    background-color: var(--theme-color1);
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .sidebar__comments-text-box p {
    font-size: 15px;
    margin: 0;
    line-height: 26px;
    font-weight: 500;
  }
  .sidebar__comments-text-box p span {
    color: #0e2207;
  }
  .sidebar__comments-text-box h5 {
    font-size: 15px;
    margin: 0;
    line-height: 26px;
    color: #757873;
    font-weight: 500;
    letter-spacing: 0;
  }
  

  /*** 
  
  ====================================================================
    feature-section
  ====================================================================
  
  ***/
  .feature-section {
    position: relative;
    /* padding: 20px 0 20px; */
  }
  @media (max-width: 767.98px) {
    .feature-section {
      /* padding-top: 70px; */
    }
  }
  
  .feature-row:nth-child(even) .image-column .inner-column {
    margin-right: 0;
    margin-left: -170px;
  }
  .feature-row:nth-child(even) .content-column .inner-column {
    padding: 61px 231px 70px 60px;
  }
  .feature-row:hover .image-column .inner-column .image-box .image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .feature-row .image-column .inner-column {
    margin-right: -170px;
    position: relative;
    z-index: 9;
  }
  .feature-row .content-column {
    margin-bottom: 20px;
  }
  .feature-row .content-column .inner-column {
    position: relative;
    background-color: #f8f5f0;
    padding: 61px 0 70px 231px;
    margin-top: 50px;
  }
  @media (max-width: 1199.98px) {
    .feature-row .content-column .inner-column {
      padding: 61px 0 70px 203px;
    }
  }
  @media (max-width: 991.98px) {
    .feature-row .content-column .inner-column {
      padding-left: 40px;
      padding-right: 0;
    }
  }
  @media (max-width: 575.98px) {
    .feature-row .content-column .inner-column {
      padding: 61px 40px 70px 40px;
      margin-top: 0;
    }
  }
  .feature-row .content-column .inner-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 232px;
    width: 95px;
    height: 11px;
    background-color: var(--theme-color1);
  }
  .feature-row .content-column .inner-column .sec-title {
    margin-bottom: 34px;
  }
  .feature-row .content-column .inner-column .sec-title .text {
    margin-top: 31px;
  }
  .feature-row .content-column .inner-column .sec-title .sub-title {
    margin-bottom: 11px;
  }
  .feature-row .content-column .inner-column .sec-title .sub-title::before {
    display: none;
  }
  @media (max-width: 1199.98px) {
    .feature-row .content-column .inner-column .sec-title h2 {
      font-size: 40px;
    }
  }
  @media (max-width: 1199.98px) {
    .feature-row .content-column .inner-column .sec-title .text {
      font-size: 16px;
    }
  }
  .feature-row .content-column .inner-column .image-2 {
    position: absolute;
    top: 18px;
    right: 13px;
  }
  .feature-row .image-column .image {
    overflow: hidden;
  }
  .feature-row .image-column .image img {
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  @media only screen and (max-width: 1200px) {
    .feature-row:nth-child(even) .content-column .inner-column .sec-title {
      max-width: 70%;
    }
  }
  @media only screen and (max-width: 991px) {
    .feature-row .content-column .inner-column {
      margin-top: 0;
    }
    .feature-row .content-column .inner-column::before {
      left: 40px;
    }
    .feature-row .image-column .inner-column {
      margin-right: 0;
    }
    .feature-row:nth-child(even) .image-column .inner-column {
      margin: 0;
    }
    .feature-row:nth-child(even) .content-column {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
    }
    .feature-row:nth-child(2n) .content-column .inner-column .sec-title {
      max-width: 100%;
    }
    .feature-row:nth-child(2n) .content-column .inner-column {
      padding: 61px 40px 70px 40px;
    }
  }
  @media only screen and (max-width: 576px) {
    .feature-row .image-column .inner-column {
      margin-bottom: 20px;
    }
    .feature-row:nth-child(even) .content-column .inner-column .sec-title {
      max-width: 100%;
    }
  }
  @media only screen and (max-width: 480px) {
    .feature-row:nth-child(2n) .content-column .inner-column {
      padding: 61px 40px 70px 40px;
    }
  }


  
  /***
  
  ==================================================================
      pricing section two
  ==================================================================
  
  ***/
  .pricing-section-two {
    /* position: relative; */
    /* padding: 20px 0; */
  }
  @media (max-width: 767.98px) {
    /* .pricing-section-two {
      padding: 80px 0 40px;
    } */
  }
  @media (max-width: 575.98px) {
    .pricing-section-two .sec-title h2 {
      font-size: 32px;
      line-height: 40px;
    }
  }
  
  @media (max-width: 767.98px) {
    .pricing-block-two {
      margin-bottom: 40px;
    }
  }
  .pricing-block-two .list-style-two {
    margin-top: 30px;
  }
  .pricing-block-two .list-style-two li {
    margin-bottom: 10px;
  }
  .pricing-block-two .inner-box {
    position: relative;
  }
  .pricing-block-two .inner-box .content-column .inner-column {
    position: relative;
    background-color: #f8f5f0;
    padding: 36px 20px 20px;
    margin-right: -75px;
    z-index: 99;
    margin-top: 34px;
  }
  @media (max-width: 1199.98px) {
    .pricing-block-two .inner-box .content-column .inner-column {
      margin-right: -113px;
    }
  }
  @media (max-width: 991.98px) {
    .pricing-block-two .inner-box .content-column .inner-column {
      margin-top: 0;
    }
  }
  .pricing-block-two .inner-box .content-column .inner-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 41px;
    width: 95px;
    height: 13px;
    background-color: var(--theme-color1);
  }
  .pricing-block-two .inner-box .content-column .inner-column .title {
    font-size: 48px;
    color: var(--theme-color1);
    margin-bottom: -14px;
  }
  .pricing-block-two .inner-box .content-column .inner-column .title span {
    font-size: 14px;
    color: var(--theme-color-dark);
  }
  .pricing-block-two .inner-box .content-column .inner-column span {
    font-size: 22px;
    color: var(--theme-color-dark);
    /* font-family: var(--title-font); */
  }
  .pricing-block-two .inner-box .content-column .inner-column .book-now {
    font-size: 12px;
    padding: 0 30px;
    background-color: var(--theme-color-dark);
    height: 40px;
    color: var(--theme-color-light);
    display: inline-block;
    -webkit-font-feature-settings: var(--text-font2);
            font-feature-settings: var(--text-font2);
    line-height: 40px;
    text-align: center;
    margin-top: 22px;
    text-transform: uppercase;
    position: relative;
    z-index: 9;
  }
  .pricing-block-two .inner-box .content-column .inner-column .book-now:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: top right;
            transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  .pricing-block-two .inner-box .content-column .inner-column .book-now:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }
  .pricing-block-two .inner-box .content-column .inner-column .book-now:hover {
    color: #fff;
  }
  .pricing-block-two .inner-box .image-column .image-box {
    height: 100%;
  }
  .pricing-block-two .inner-box .image-column .image-box figure {
    height: 100%;
    width: 100%;
    position: relative;
  }
  .pricing-block-two .inner-box .image-column .image-box figure:before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
  }
  .pricing-block-two .inner-box .image-column .image-box figure:hover:before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
  }
  .pricing-block-two .inner-box .image-column .image-box figure img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  @media only screen and (max-width: 767px) {
    .pricing-block-two .inner-box .image-column .image-box {
      display: none;
    }
    .pricing-block-two .inner-box .content-column .inner-column {
      margin-right: 0;
    }
  }
  @media only screen and (max-width: 480px) {
    .pricing-block .inner-box .food-pack {
      margin-top: 20px;
      position: static;
    }
    .pricing-block .inner-box {
      padding-top: 0;
    }
  }


  
ul{
  text-decoration: none;
  list-style: none;
}



/*=======================
    List Styles
=======================*/
.list-style-two {
  margin-top: 28px;
}
.list-style-two li {
  font-size: 16px;
  color: var(--text-color);
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.list-style-two li .icon {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--theme-color1);
}


  /*** 
  
  ====================================================================
    call-section
  ====================================================================
  
  ***/
  .call-to-action {
    position: relative;
    padding: 30px 0;
  }
  .call-to-action .booking-form-column .inner-column {
    margin: 0;
  }
  .call-to-action .booking-form-column .inner-column:after {
    left: auto;
    top: auto;
    bottom: -120px;
    right: -75px;
  }
  .call-to-action .content-colum .inner-column .sec-title {
    margin-bottom: 54px;
  }
  .call-to-action .content-colum .inner-column .sec-title .sub-title::before {
    display: none;
  }
  @media (max-width: 575.98px) {
    .call-to-action .content-colum .inner-column .sec-title h2 {
      font-size: 37px;
    }
  }
  .call-to-action .content-colum .inner-column .call-block {
    margin-bottom: 42px;
  }
  .call-to-action .content-colum .inner-column .call-block .inner-box {
    padding-left: 110px;
    position: relative;
  }
  .call-to-action .content-colum .inner-column .call-block .inner-box .icon-box {
    position: absolute;
    left: 0;
    width: 84px;
    height: 84px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .call-to-action .content-colum .inner-column .call-block .inner-box .icon-box i {
    color: #aa8453;
    font-size: 48px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .call-to-action .content-colum .inner-column .call-block .inner-box .title {
    margin-bottom: 13px;
  }
  @media (max-width: 575.98px) {
    .call-to-action .content-colum .inner-column .call-block .inner-box .title {
      font-size: 20px;
    }
  }
  @media (max-width: 1199.98px) {
    .call-to-action .content-colum .inner-column .call-block .inner-box .text {
      font-size: 15px;
    }
  }
  @media (max-width: 575.98px) {
    .call-to-action .content-colum .inner-column .call-block .inner-box .text {
      font-size: 17px;
    }
  }
  .call-to-action .content-colum .inner-column .call-block .inner-box:hover .icon-box {
    background-color: #aa8453;
  }
  .call-to-action .content-colum .inner-column .call-block .inner-box:hover .icon-box i {
    color: #fff;
  }
  .call-to-action .content-colum .inner-column .btn-box .read-more {
    margin-top: 4px;
    background-color: var(--theme-color-dark);
    color: var(--theme-color-light);
    width: 170px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    /* font-family: var(--text-font2); */
    position: relative;
    z-index: 9;
  }
  .call-to-action .content-colum .inner-column .btn-box .read-more:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--bg-theme-color1);
    border-radius: inherit;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: top right;
            transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  .call-to-action .content-colum .inner-column .btn-box .read-more:hover:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }
  .call-to-action .content-colum .inner-column .btn-box .read-more:hover {
    color: #fff;
  }
  
  @media only screen and (max-width: 991px) {
    .call-to-action .content-colum {
      margin-bottom: 50px;
    }
  }



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 12px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 4px 8px 4px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  background: #f2f2f2;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #e96b56;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(84, 84, 84, 0.6);
}


.portfolio .portfolio-wrap img{
  height: 280px;
  width: 100%;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(84, 84, 84, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #e96b56;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e96b56;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e96b56;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(84, 84, 84, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Gallery Aspect Ratio & Fix to Prevent Squishing
--------------------------------------------------------------*/
.portfolio .portfolio-item img {
    width: 100%;
    height: 300px;         /* Forces all tiles to maintain a unified, clean grid alignment */
    object-fit: cover;     /* Crops the image perfectly within the bounding box without squishing */
    transition: transform 0.4s ease-in-out;
}

.portfolio .portfolio-wrap {
    overflow: hidden;      /* Keeps the image contained when zoomed */
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.06); /* Adds a smooth, professional zoom interaction on hover */
}


/**
* Mobile Bottom Navigation 
*/

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  display: flex;
  padding: 5px 0;
  box-shadow: 0 -2px 5px -2px #333;
  background-color: #fff;
  text-decoration: none;
}

.mobile-bottom-nav__item {
  flex-grow: 1;
  text-align: center;
  font-size: 12px;
  display: flex;

  flex-direction: column;
  justify-content: center;
}

.mobile-bottom-nav__item a {
  color: #0e4f6d !important;
  font-size: 11px;
  text-decoration: none;
}

.mobile-bottom-nav__item--active {
  color: var(--color-prime);
}

.h300 img {
  height: 300px;
}

.mobile-bottom-nav__item-content a i {
  font-size: 22px;
  color: var(--color-prime);
  display: block;
  margin-bottom: 3px;

}

.mobile-bottom-nav__item-content {
  display: flex;
  flex-direction: column;
}

/**
  * Modal Popup
  */

.pdn {
  padding: 10px 10px !important;
  width: 180px;
}

.mod_head {
  /* background: #0e4f6d; */
  background: var(--primary);
}

.modal-title {
  color: #fff;
}

.vrt {
  vertical-align: middle;
}

.bgh {
  /* background: #0e4f6d; */
  background: var(--primary);
  border: var(--primary);
}

.h45 {
  height: 45px !important;
}

.contact-forms .form-group {
  margin-bottom: 31px;
}

.ltp {
  padding: 20px !important;
  letter-spacing: 1px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #02223e;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #011c33;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  background: var(--color-prime);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #032849;
}

#footer .footer-top {
  background: #022848;
  padding: 40px 0 0px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 10px 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(--color-prime);
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  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(--color-prime);
  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: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #fff;
}


.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}


img{
  border-radius: 20px;
}


/*Gallery Page Masonry */
.masonry {
  column-count: 3;
  column-gap: 20px;
}

.masonry .portfolio-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

/* Tablet */
@media (max-width: 991px) {
  .masonry {
    column-count: 2;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .masonry {
    column-count: 1;
  }
}

/* Carousel */

.mmc_carousel {
  width: 100%;
  max-width: 100%;
  height: 60vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.mmc_slider {
  overflow: hidden;
  width: 100%;
  height: 87%;
  position: relative;
}

.mmc_inner {
  display: flex;
  width: 100%;
  height: 100%;
  transition: all .3s ease-out;
}

.mmc_img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.mmc_prev,
.mmc_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 24px;
  padding: 8px;
}

.mmc_prev { left: 0; }
.mmc_next { right: 0; }

.mmc_dots {
  display: flex;
  margin: 10px 0;
}

.mmc_dot {
  width: 10px;
  height: 10px;
  border: 1px solid #555;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

/* ======= Contact & Location Section ======= */
.contact-location-section {
    margin-bottom: 0;
    padding: 0;
}

.contact-location-section .map-box {
    height: 400px;
    width: 100%;
}

.contact-location-section .map-box iframe {
    height: 100%;
    width: 100%;
    display: block;
}

.contact-location-section .contact-info-box {
    background: var(--color-prime);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
    color: #fff;
}

.contact-info-box .icon-wrap {
    font-size: 40px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.contact-info-box h4 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-secondary);
    display: block;
    font-family: inherit;
}

.contact-info-box .sub-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 5px;
    font-family: inherit;
}

.contact-info-box .phone-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 17px;
    font-family: inherit;
}

.contact-info-box .phone-item i {
    color: var(--color-secondary);
    font-size: 16px;
}

.contact-info-box .phone-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    font-family: inherit;
}

.contact-info-box .phone-item a:hover {
    color: var(--color-secondary);
}

.contact-info-box .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
    font-family: inherit;
    width: fit-content;
}

.contact-info-box .whatsapp-btn i {
    font-size: 22px;
}

.contact-info-box .whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .contact-location-section .map-box {
        height: 300px;
    }

    .contact-location-section .contact-info-box {
        height: auto;
        padding: 40px 30px;
    }
}



/*--------------------------------------------------------------
# Floating Enquiry Button & Slide Panel
--------------------------------------------------------------*/
.enquiry-float-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    background: var(--color-prime);
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px 0 0 6px;
    box-shadow: -2px 2px 8px rgba(0,0,0,0.25);
    transition: background 0.3s;
}

.enquiry-float-btn:hover {
    background: var(--theme-color1);
}

.enquiry-float-btn i {
    font-size: 18px;
    color: #fff;
}

/* Slide Panel */
.enquiry-panel {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    height: 100%;
    background: #1a1a2e;
    z-index: 99999;
    transition: right 0.35s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}

.enquiry-panel.open {
    right: 0;
}

.enquiry-panel-inner {
    padding: 50px 30px 40px;
}

.enquiry-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s;
}

.enquiry-close:hover {
    color: var(--theme-color1);
}

.enquiry-panel-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.enq-input {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.4) !important;
    border-radius: 0 !important;
    color: #fff !important;
    padding: 10px 0 !important;
    font-size: 14px;
}

.enq-input::placeholder {
    color: rgba(255,255,255,0.55) !important;
    font-size: 14px;
}

.enq-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-bottom-color: var(--theme-color1) !important;
    background: transparent !important;
}

.enq-submit {
    background: var(--theme-color1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px;
    border: none;
    border-radius: 4px;
    transition: background 0.3s;
    margin-top: 5px;
}

.enq-submit:hover {
    background: var(--color-prime);
    color: #fff;
}

.enq-note {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

/* Overlay */
.enquiry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
    display: none;
}

.enquiry-overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 767px) {
    .enquiry-float-btn {
        top: auto;
        bottom: 80px;
        width: 40px;
        height: 40px;
    }

    .enquiry-panel {
        width: 100%;
        right: -100%;
    }

    .enquiry-panel.open {
        right: 0;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
    position: fixed;
    right: 0;
    top: calc(50% + 60px);
    z-index: 9998;
    background: #25D366;
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px 0 0 6px;
    box-shadow: -2px 2px 8px rgba(0,0,0,0.25);
    transition: background 0.3s;
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    background: #1ebe5d;
}

.whatsapp-float-btn i {
    font-size: 22px;
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .whatsapp-float-btn {
        top: auto;
        bottom: 130px;
        width: 40px;
        height: 40px;
    }

    .whatsapp-float-btn i {
        font-size: 20px;
    }
}

/* Responsive - Hide both floating buttons on mobile */
@media (max-width: 767px) {
    .enquiry-float-btn {
        display: none !important;
    }

    .whatsapp-float-btn {
        display: none !important;
    }
}

/*--------------------------------------------------------------
# Header Social Icons
--------------------------------------------------------------*/
.header-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-left: 8px;
    font-size: 20px;
    transition: opacity 0.3s;
    text-decoration: none !important;
    background: #fff;
    padding: 6px;
}

.header-social:hover {
    opacity: 0.8;
}

.header-social.facebook i {
    color: #1877F2 !important;
}

.header-social.instagram i {
    color: #E1306C !important;
}

.header-social.tripadvisor i {
    color: #34E0A1 !important;
}

.header-social.google i {
    color: #EA4335 !important;
}

/* Topbar padding to accommodate icons */
#topbar {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

/*--------------------------------------------------------------
# Footer Social Icons - Brand Colors
--------------------------------------------------------------*/
.footer-top .social-links a.facebook {
    background: #1877F2 !important;
}

.footer-top .social-links a.instagram {
    background: #E1306C !important;
}

.footer-top .social-links a.trip-advisor {
    background: #34E0A1 !important;
}

.footer-top .social-links a.google {
    background: #EA4335 !important;
}

.footer-top .social-links a i {
    color: #fff !important;
}

/*--------------------------------------------------------------
# Slider CSS
--------------------------------------------------------------*/

/* Custom Multi-Slider Styles for Meetings & Events */
.mmc_slider, .utsav_slider, .phoenix_slider, .titan_slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.mmc_inner, .utsav_inner, .phoenix_inner, .titan_inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.mmc_img, .utsav_img, .phoenix_img, .titan_img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    height: 350px; 
}

.mmc_prev, .mmc_next, .utsav_prev, .utsav_next, 
.phoenix_prev, .phoenix_next, .titan_prev, .titan_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    border-radius: 3px;
}

.mmc_prev, .utsav_prev, .phoenix_prev, .titan_prev { left: 10px; }
.mmc_next, .utsav_next, .phoenix_next, .titan_next { right: 10px; }

.mmc_dots, .utsav_dots, .phoenix_dots, .titan_dots {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 10px 0;
}

.mmc_dot, .utsav_dot, .phoenix_dot, .titan_dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}

.mmc_dot.active, .utsav_dot.active, .phoenix_dot.active, .titan_dot.active {
    background: #857f7d; 
}

.mmc_form, .utsav_form, .phoenix_form, .titan_form {
    display: none; 
}

/* END */

/*--------------------------------------------------------------
# Catering Gallery Slider
--------------------------------------------------------------*/
.catering-gallery-section {
    padding: 40px 0;
}

.catering-gallery-slider {
    width: 100%;
    padding-bottom: 40px;
}

.catering-gallery-slider .swiper-slide {
    height: 280px;
    overflow: hidden;
}

.catering-gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
}

/*--------------------------------------------------------------
# Homepage Mobile Gallery Image Fix
--------------------------------------------------------------*/
.home-gallery-img {
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.clients-slider1 .swiper-slide {
    height: 280px;
    overflow: hidden;
}

/*--------------------------------------------------------------
# Mobile Image Fixes
--------------------------------------------------------------*/

/* Explore Our Rooms - fix stretched images on mobile */
@media (max-width: 767px) {
    .room-item .position-relative img {
        height: 220px !important;
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
    }

    /* Services section - news block images */
    .news-section .image-box figure img,
    .news-section .image-box figure a img {
        height: 250px !important;
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
    }
}

/*--------------------------------------------------------------
# White gap fix between slider and tagline strip on mobile
--------------------------------------------------------------*/
@media (max-width: 767px) {
    /* Remove gap caused by hidden booking widget */
    .checkout-form-section,
    .container.d-none {
        margin-top: 0 !important;
        padding: 0 !important;
    }

    #hero {
        margin-bottom: 0 !important;
    }

    .standalone-tagline-section {
        margin-top: 0 !important;
        padding-top: 15px !important;
    }
}

.mmc_dot.active {
  background: #000;
}

.mmc_form {
  font-size: 12px;
}