/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #0a0d13;
  --color-primary: #67401c;
  --color-secondary: #67863e;
}

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

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

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

a:hover {
  color: rgb(143.0992366412, 88.9160305344, 38.9007633588);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: black;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(103, 134, 62, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}
.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-header span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.breadcrumbs .page-header:before {
  content: "";
  background-color: rgba(103, 134, 62, 0.8);
  position: absolute;
  inset: 0;
}
.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}
.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumbs nav {
  background-color: white;
  padding: 20px 0;
}
.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}
.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}
.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}
.breadcrumbs nav ol li + li {
  padding-left: 10px;
}
.breadcrumbs nav ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgb(202.806122449, 220.2040816327, 179.7959183673);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background: rgba(103, 64, 28, 0.8);
  color: #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#preloader:before, #preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
.text-justify {
  text-align: justify;
}

.w-40 {
  width: 40% !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background-color: rgba(103, 64, 28, 0.6);
}
.header.sticked {
  background: rgb(78.9404580153, 49.0503816794, 21.4595419847);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(103, 134, 62, 0.1);
}
.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
}
.header #header-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
@media (max-width: 1279px) {
  .header #header-div {
    padding-left: 2rem !important;
    padding-right: 1rem !important;
  }
}

.navbar ul li:not(:last-child) a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.navbar ul li:not(:last-child) a:hover::after {
  width: 60%;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    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: #fff;
  }
  .navbar .inquiry,
  .navbar .inquiry:focus {
    background: #67863e;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }
  .navbar .inquiry:hover,
  .navbar .inquiry:focus:hover {
    color: #fff;
    background: rgb(116.4005102041, 151.4336734694, 70.0663265306);
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-secondary);
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}
@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(103, 134, 62, 0.32);
    z-index: 9996;
    pointer-events: auto;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.6, 1);
    opacity: 0;
  }
  .navbar {
    position: fixed;
    top: 18px;
    right: -100%;
    width: 92%;
    max-width: 370px;
    bottom: 18px;
    background: rgba(103, 134, 62, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border-radius: 22px;
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    transition: right 0.55s cubic-bezier(0.4, 0, 0.6, 1), opacity 0.28s;
    z-index: 9997;
    overflow: hidden;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 60px 0 20px 0;
    margin: 0;
    background: transparent;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 32px;
    font-family: var(--font-primary);
    font-size: 1.18rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    border-radius: 12px;
    margin: 0 18px;
    transition: background 0.22s, color 0.22s;
    letter-spacing: 0.01em;
  }
  .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: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px 0 rgba(103, 134, 62, 0.08);
  }
  .navbar .inquiry,
  .navbar .inquiry:focus {
    background: var(--color-primary);
    padding: 16px 18px;
    border-radius: 14px;
    margin: 18px 0 0 0;
    color: #fff;
    font-size: 1.18rem;
    box-shadow: 0 2px 8px 0 rgba(103, 64, 28, 0.1);
    display: block;
    width: calc(100% - 36px);
    max-width: 100%;
    margin-left: 18px;
    margin-right: 18px;
    align-self: center;
    text-align: center;
    overflow-x: hidden;
  }
  .navbar .inquiry:hover,
  .navbar .inquiry:focus:hover {
    color: #fff;
    background: rgba(103, 64, 28, 0.92);
  }
  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgb(129.8010204082, 168.8673469388, 78.1326530612);
  }
  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }
  .mobile-nav-show, .mobile-nav-hide {
    color: #fff;
    cursor: pointer;
    line-height: 0;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s, visibility 0.25s;
  }
  .mobile-nav-show {
    font-size: 28px;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 0 0 auto;
  }
  .mobile-nav-hide {
    font-size: 32px;
    position: fixed;
    right: 32px;
    top: 32px;
  }
  .mobile-nav-show.d-none, .mobile-nav-hide.d-none {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, visibility 0.25s;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-overlay {
    display: block;
    opacity: 1;
  }
  .mobile-nav-active .navbar {
    right: 0;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about #cite {
  padding-bottom: 40px;
}
.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: rgb(2.7519083969, 1.7099236641, 0.7480916031);
}
.about .content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}
.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-secondary);
  margin-right: 30px;
  width: 10%;
  align-content: center;
}
.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: rgb(129.8010204082, 168.8673469388, 78.1326530612);
}
.about .content ul p {
  font-size: 15px;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(103, 64, 28, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(103, 64, 28, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  border: 1px solid rgba(103, 134, 62, 0.15);
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}
.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}
.services .card .card-img img {
  transition: 0.3s ease-in-out;
}
.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}
.services .card a {
  color: black;
  transition: 0.3;
}
.services .card a:hover {
  color: var(--color-primary);
}
.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: var(--color-secondary);
  font-size: 15px;
}
.services .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(103, 134, 62, 0.6), rgba(103, 134, 62, 0.8)), url("../img/cta-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}
@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}
.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.call-to-action p {
  color: #fff;
}
.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.contact-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-left: 2rem;
  margin-bottom: 0;
}

.contact-card {
  background: #fff;
  border: 1px solid #ecebe6;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(103, 134, 62, 0.07);
  padding: 2rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-info {
  font-size: 1.08rem;
  color: #444;
}
.contact-info a {
  color: #67863e;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
  color: rgb(76.1989795918, 99.1326530612, 45.8673469388);
}
.contact-info i {
  font-size: 1.2em;
  vertical-align: middle;
}

.contact-img {
  border-radius: 1rem;
  box-shadow: 0 2px 12px 0 rgba(103, 134, 62, 0.1);
  width: 100%;
  max-width: 800px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  max-height: 90vh;
}

@media (max-width: 767px) {
  .contact-main-wrapper {
    flex-direction: column !important;
    gap: 1.2rem;
  }
  .contact-card {
    padding: 1.2rem 0.7rem;
    margin-bottom: 0;
  }
  .contact-img-wrapper {
    margin-left: 0;
    margin-bottom: 1rem;
    width: 100%;
  }
  .contact-img {
    max-width: 100vw;
    height: auto;
    max-height: 80vh;
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item ul {
  padding-left: 0px;
}
.contact .info-item li {
  display: flex;
}
.contact .info-item i {
  font-size: 20px;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: row;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.philosophy-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding-left: 0;
}

.philosophy-text-wrap .row-text {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-primary, #37517e);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.philosophy-text-wrap .row-text::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary, #37517e) 60%, #e3e6ee 100%);
  border-radius: 2px;
  margin-top: 0.3rem;
}

.philosophy-text-wrap p {
  color: #444;
  font-size: 1.08rem;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 0;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
  font-style: italic;
  background: linear-gradient(90deg, #f8f9fa 80%, #fff 100%);
  border-radius: 8px;
  padding: 0.5rem 0.75rem 0.5rem 0;
}

.philosophy-img-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
  margin-right: 0;
}
@media (min-width: 768px) {
  .philosophy-img-wrap {
    margin-bottom: 0;
    margin-right: 1.5rem;
  }
}

.philosophy-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.philosophy-card {
  border: none;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  background: #fff;
  padding: 2rem 1.5rem;
  min-height: 180px;
  display: flex;
  align-items: stretch;
  transition: transform 0.2s, box-shadow 0.2s;
}
.philosophy-card .card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.philosophy-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.16);
}

.row-image {
  width: 88px;
  height: 88px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  margin-bottom: 1rem;
  margin-right: 0;
  border: 2px solid var(--color-primary, #37517e);
  background: #f8f9fa;
  align-self: center;
}

.row-text {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  color: var(--color-primary, #37517e);
  font-family: "Poppins", "Open Sans", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

@media (min-width: 768px) {
  .philosophy-card .card-body {
    flex-direction: row;
    align-items: center;
  }
  .row-image {
    margin-bottom: 0;
    margin-right: 1.5rem;
    align-self: flex-start;
  }
  .row-text {
    margin-bottom: 0;
    font-size: 1.15rem;
    font-weight: 600;
  }
}
.offer-section-titles {
  font-size: 1.18rem;
  font-weight: 700;
  color: #67863e;
  letter-spacing: 0.5px;
  background: none;
  border-bottom: 2px solid #67863e;
  margin-bottom: 1.1rem;
  padding-bottom: 0.4rem;
}

.offer-combined {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2rem !important;
  position: relative;
}
.offer-combined .offer-item:nth-child(2) {
  background: #f6f7f4;
  border: 1px solid #ecebe6;
  box-shadow: 0 2px 8px 0 rgba(103, 134, 62, 0.06);
}
.offer-combined::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e3e6ee;
  z-index: 1;
  transform: translateY(-50%);
}
.offer-combined .offer-item {
  background: #fff;
  border: 1px solid #ecebe6;
  border-radius: 1rem;
  box-shadow: 0 2px 8px 0 rgba(103, 134, 62, 0.06);
  margin: 0 0.5rem;
  padding: 1.1rem 1rem;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 1.5em;
  position: relative;
  z-index: 2;
  min-width: 0;
  flex: 1 1 0;
}
.offer-combined .offer-item strong {
  color: #67863e;
}
.offer-combined .offer-item:nth-child(even) {
  background: #eef2f7;
}
.offer-combined .offer-item:hover {
  box-shadow: 0 6px 24px 0 rgba(103, 134, 62, 0.1);
  border-color: rgb(76.1989795918, 99.1326530612, 45.8673469388);
  background: #f4f8fc;
}

.offer-combined.steps-combined {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}
.offer-combined.steps-combined .offer-item.steps-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-top: 1.1em;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.offer-col {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(55, 81, 126, 0.06);
  padding: 2rem 1.2rem;
}

.offer-label-mobile {
  display: none;
  position: absolute;
  top: -1.2em;
  left: 0;
  font-size: 0.92em;
  font-weight: 600;
  color: #bfa76a;
  background: #fff8ed;
  padding: 0.1em 0.7em;
  border-radius: 0.7em;
  box-shadow: 0 1px 4px rgba(55, 65, 81, 0.07);
  z-index: 2;
  letter-spacing: 0.01em;
}

.offer-badge-row {
  display: flex;
  align-items: flex-start;
  height: 2.2em;
  margin-bottom: 0.2em;
  margin-top: 0;
}

.offer-hours-badge {
  display: inline-block;
  background: #67863e;
  color: #fff;
  font-size: 0.98em;
  font-weight: 600;
  border-radius: 1em;
  padding: 0.18em 0.95em;
  letter-spacing: 0.02em;
  vertical-align: middle;
  box-shadow: 0 1px 4px rgba(55, 65, 81, 0.07);
  margin-right: 0.5em;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .offer-col {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  .offer-combined {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    min-height: unset;
    position: relative;
    gap: 0;
    margin-bottom: 2.2rem;
    padding-bottom: 1.2rem;
  }
  .offer-combined::before {
    content: "";
    display: none;
  }
  .offer-combined::after {
    content: "";
    display: block;
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 0;
    height: 2px;
    background: #e3e6ee;
    border-radius: 1px;
    z-index: 0;
  }
  .offer-combined .offer-item {
    width: 70vw;
    max-width: 350px;
    font-size: 0.95rem;
    padding: 0.7rem 0.6rem;
    border-radius: 0.7rem;
    margin-bottom: 0.7rem;
    background: #fff;
    z-index: 1;
    box-shadow: 0 2px 12px rgba(55, 65, 81, 0.07);
    margin-top: 0 !important;
    padding-top: 0.7rem !important;
  }
  .offer-combined .offer-item:nth-child(odd) {
    margin-left: -10vw;
    margin-top: 0;
  }
  .offer-combined .offer-item:nth-child(even) {
    margin-left: 15vw;
    margin-top: 1.2rem;
  }
  .offer-combined .offer-badge-row {
    height: 2.2em;
    margin-bottom: 0.2em;
    margin-top: 0;
  }
  .offer-combined .offer-label-mobile {
    display: inline-block;
  }
  #header-offer {
    display: none;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background-color: var(--color-primary);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0 20px 0;
  color: rgba(255, 255, 255, 0.8);
}
.hero:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.377);
  position: absolute;
  inset: 0;
}
.hero #hero-text {
  border-radius: 15px;
  width: -moz-fit-content !important;
  width: fit-content !important;
  filter: brightness(120%);
}
.hero h2 {
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}
.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}
.hero form {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}
.hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}
.hero form .form-control:hover, .hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}
.hero form .btn-primary {
  background-color: var(--color-primary);
  padding: 15px 30px;
}
.hero form .btn-primary:hover {
  background-color: rgb(123.0496183206, 76.4580152672, 33.4503816794);
}
.hero .stats-item {
  padding: 30px;
  width: 100%;
}
.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}
.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
}
.hero #cta-icon {
  font-size: 24px;
  color: #fff;
  transition: transform 0.3s ease-in-out;
}
.hero #cta-btn {
  background: rgba(103, 64, 28, 0.6);
  margin: 20px;
  border: 0px;
  color: #fff;
  box-shadow: 0 8px 16px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.19);
  -webkit-transition-duration: 0.5s;
  -webkit-transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 0px 0px 0 0 rgb(116.4005102041, 151.4336734694, 70.0663265306) inset, 0px 0px 0 0 #67863e inset;
}
.hero #cta-btn:hover {
  box-shadow: 0px 0px 0 10px rgb(116.4005102041, 151.4336734694, 70.0663265306) inset, 0px 0px 0 10px #67863e inset;
  color: #fff;
  background: #67863e;
  -webkit-box-shadow: 50px 0px 0 0 #67863e inset, -50px 0px 0 0 #67863e inset;
  -webkit-transform: scale(1.1);
  background: #67863e;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: rgb(70.920610687, 44.0671755725, 19.279389313);
  padding: 50px 0 20px 0;
  color: white;
}
.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}
.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}
.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(103, 64, 28, 0.8);
  font-size: 12px;
  line-height: 0;
}
.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul li a {
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul li a:hover {
  color: #67863e !important;
  text-decoration: underline;
}
.footer .footer-contact p {
  line-height: 26px;
}
.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}
.footer .credits a {
  color: #fff;
}