/*--------------------------------------------------------------
# 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: "Century Gothic", 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: "Montserrat", sans-serif;
  --font-secondary: "Raleway", sans-serif;
}

/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #444723;
  --color-secondary: #6f743a;
}

/* 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;
  transition: 0.3s;
}

a:hover {
  color: rgb(100.7169811321, 105.1603773585, 51.8396226415);
  text-decoration: none;
}

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

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

.section-header {
  text-align: center;
  padding-bottom: 30px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-header p {
  margin-bottom: 0;
}
.section-header .zitat {
  font-style: italic;
  color: var(--color-secondary);
  font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 40vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    min-height: 30vh;
  }
}
.breadcrumbs:before {
  content: "";
  background-color: rgba(111, 116, 58, 0.7);
  position: absolute;
  inset: 0;
}
.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}
.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}
.breadcrumbs ol a:hover {
  text-decoration: underline;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  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(68, 71, 35, 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;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
.header {
  color: #fff;
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}
.header .promo-bar {
  background-color: color-mix(in srgb, var(--default-color), transparent 5%);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 0;
  letter-spacing: 0.2px;
}
.header .promo-bar .promo-slider {
  height: 20px;
  overflow: hidden;
}
.header .promo-bar .promo-slider .swiper-wrapper {
  height: auto !important;
}
.header .promo-bar .promo-slider .swiper-slide {
  text-align: center;
  height: 20px;
  line-height: 20px;
}
.header .promo-bar .promo-slider .swiper-slide i {
  font-size: 14px;
}
.header .upper-header {
  background-color: rgba(111, 116, 58, 0.9);
  padding: 40px 0;
}
.header .upper-header .utility-links .utility-link {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  transition: color 0.3s ease;
}
.header .upper-header .utility-links .utility-link i {
  font-size: 14px;
}
.header .upper-header .utility-links .utility-link:hover {
  color: #6f743a;
}
.header .upper-header .utility-links .utility-divider {
  width: 1px;
  height: 14px;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 0 16px;
}
.header .upper-header .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.header .upper-header .logo img {
  max-height: 40px;
  margin-right: 8px;
}
.header .upper-header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .header .upper-header .logo h1 {
    font-size: 24px;
  }
}
.header .upper-header .header-icons {
  gap: 4px;
}
.header .upper-header .header-icons .icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: none;
  border: none;
  color: var(--default-color);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.header .upper-header .header-icons .icon-btn i {
  font-size: 22px;
}
.header .upper-header .header-icons .icon-btn .count-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: #6f743a;
  color: var(--contrast-color);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.header .upper-header .header-icons .icon-btn:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: #6f743a;
}
.header .upper-header .header-icons .account-dropdown .account-panel {
  min-width: 300px;
  padding: 0;
  border-radius: 12px;
  border: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background-color: var(--surface-color);
  margin-top: 8px;
  overflow: hidden;
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-panel-top {
  padding: 32px 24px 24px;
  text-align: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-panel-top .avatar-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-panel-top .avatar-circle i {
  font-size: 28px;
  color: #6f743a;
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-panel-top h6 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-panel-top p {
  margin: 0 0 16px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-panel-top .account-auth-btns {
  display: flex;
  gap: 8px;
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-panel-top .account-auth-btns .btn-auth-primary {
  flex: 1;
  padding: 10px;
  background-color: #6f743a;
  color: var(--contrast-color);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-panel-top .account-auth-btns .btn-auth-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-panel-top .account-auth-btns .btn-auth-secondary {
  flex: 1;
  padding: 10px;
  background-color: var(--surface-color);
  color: var(--default-color);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-panel-top .account-auth-btns .btn-auth-secondary:hover {
  color: #6f743a;
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8px;
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-quick-links .quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-quick-links .quick-link i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.2s ease;
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-quick-links .quick-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: #6f743a;
}
.header .upper-header .header-icons .account-dropdown .account-panel .account-quick-links .quick-link:hover i {
  color: #6f743a;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel {
  min-width: 380px;
  padding: 0;
  border-radius: 12px;
  border: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background-color: var(--surface-color);
  right: 0;
  left: auto;
  margin-top: 8px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .header .upper-header .header-icons .cart-dropdown .cart-panel {
    min-width: 300px;
  }
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .shipping-progress {
  padding: 16px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .shipping-progress .shipping-progress-text {
  font-size: 13px;
  color: var(--default-color);
  margin-bottom: 8px;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .shipping-progress .shipping-progress-text i {
  color: #6f743a;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .shipping-progress .shipping-progress-text strong {
  color: #6f743a;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .shipping-progress .shipping-progress-bar {
  height: 4px;
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 4px;
  overflow: hidden;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .shipping-progress .shipping-progress-bar .shipping-progress-fill {
  height: 100%;
  background-color: #6f743a;
  border-radius: 4px;
  transition: width 0.3s ease;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list {
  max-height: 320px;
  overflow-y: auto;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item {
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  gap: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item:last-child {
  border-bottom: none;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item .cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item .cart-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item .cart-item-details {
  flex: 1;
  min-width: 0;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item .cart-item-details .cart-item-name {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item .cart-item-details .cart-item-variant {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin-bottom: 8px;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item .cart-item-details .cart-item-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item .cart-item-details .cart-item-bottom .cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item .cart-item-details .cart-item-bottom .cart-item-qty {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item .cart-item-remove {
  background: none;
  border: none;
  padding: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 65%);
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item .cart-item-remove:hover {
  color: #dc3545;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-items-list .cart-item .cart-item-remove i {
  font-size: 14px;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-panel-footer {
  padding: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-panel-footer .cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-panel-footer .cart-total-row .cart-total-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-panel-footer .btn-checkout {
  display: block;
  text-align: center;
  padding: 14px;
  background-color: #6f743a;
  color: var(--contrast-color);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: background-color 0.3s ease;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-panel-footer .btn-checkout:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-panel-footer .btn-view-cart {
  display: block;
  text-align: center;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.header .upper-header .header-icons .cart-dropdown .cart-panel .cart-panel-footer .btn-view-cart:hover {
  color: #6f743a;
}
.header .search-row {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 12px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.header .search-row .search-form-row {
  display: flex;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 48px;
  padding: 0 8px 0 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.header .search-row .search-form-row:focus-within {
  border-color: #6f743a;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 88%);
}
.header .search-row .search-form-row .search-icon {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 12px;
  flex-shrink: 0;
}
.header .search-row .search-form-row .search-field {
  flex: 1;
  border: none;
  padding: 14px 0;
  font-size: 15px;
  color: var(--default-color);
  background: transparent;
}
.header .search-row .search-form-row .search-field::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}
.header .search-row .search-form-row .search-field::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}
.header .search-row .search-form-row .search-field:focus {
  outline: none;
}
.header .search-row .search-form-row .search-btn {
  background-color: #6f743a;
  border: none;
  padding: 10px 24px;
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.header .search-row .search-form-row .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}
.header .header-nav {
  background-color: #6f743a;
  padding: 0;
}
.header #mobileSearch {
  background-color: var(--surface-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.header #mobileSearch .mobile-search-form {
  padding: 12px 0;
}
.header #mobileSearch .mobile-search-form .input-group {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 48px;
  overflow: hidden;
}
.header #mobileSearch .mobile-search-form .input-group:focus-within {
  border-color: #6f743a;
}
.header #mobileSearch .mobile-search-form .input-group .form-control {
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  background-color: transparent;
  color: var(--default-color);
}
.header #mobileSearch .mobile-search-form .input-group .form-control::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}
.header #mobileSearch .mobile-search-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}
.header #mobileSearch .mobile-search-form .input-group .form-control:focus {
  box-shadow: none;
}
.header #mobileSearch .mobile-search-form .input-group .btn {
  background-color: #6f743a;
  color: var(--contrast-color);
  border: none;
  padding: 0 20px;
  border-radius: 0 48px 48px 0;
}
.header #mobileSearch .mobile-search-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}
@media (max-width: 992px) {
  .header .upper-header {
    padding: 16px 0;
  }
  .header .upper-header .logo {
    position: static;
    transform: none;
  }
  .header .upper-header .header-icons {
    gap: 0;
  }
  .header .upper-header .header-icons .icon-btn {
    width: 40px;
    height: 40px;
  }
  .header .upper-header .header-icons .icon-btn i {
    font-size: 20px;
  }
}

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
.hero-2 {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-secondary) 0%, color-mix(in srgb, var(--surface-color), transparent 95%) 100%);
  background: var(--color-secondary);
  overflow: hidden;
}
.hero-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  z-index: 0;
}
.hero-2 .container {
  position: relative;
  z-index: 1;
}
.hero-2 .hero-content {
  padding: 2rem 0;
}
.hero-2 .hero-content .trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-2 .hero-content .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-2 .hero-content .trust-badges .badge-item i {
  font-size: 1rem;
}
@media (max-width: 576px) {
  .hero-2 .hero-content .trust-badges {
    gap: 0.75rem;
  }
  .hero-2 .hero-content .trust-badges .badge-item {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}
.hero-2 .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1.5rem 0;
  color: #fff;
}
.hero-2 .hero-content h1 .highlight {
  color: var(--accent-color);
  position: relative;
}
.hero-2 .hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}
@media (max-width: 992px) {
  .hero-2 .hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero-2 .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-2 .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, #fff, transparent 20%);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-2 .hero-content .hero-stats {
  display: flex;
  gap: 2rem;
}
.hero-2 .hero-content .hero-stats .stat-item {
  text-align: left;
}
.hero-2 .hero-content .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
}
.hero-2 .hero-content .hero-stats .stat-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (max-width: 576px) {
  .hero-2 .hero-content .hero-stats {
    gap: 1rem;
  }
  .hero-2 .hero-content .hero-stats .stat-item h3 {
    font-size: 1.5rem;
  }
}
.hero-2 .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
.hero-2 .hero-content .hero-actions .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.hero-2 .hero-content .hero-actions .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.hero-2 .hero-content .hero-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}
.hero-2 .hero-content .hero-actions .btn.btn-outline {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: transparent;
}
.hero-2 .hero-content .hero-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
@media (max-width: 576px) {
  .hero-2 .hero-content .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-2 .hero-content .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }
}
.hero-2 .hero-content .emergency-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.hero-2 .hero-content .emergency-contact .emergency-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.hero-2 .hero-content .emergency-contact .emergency-info small {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.hero-2 .hero-content .emergency-contact .emergency-info strong {
  color: var(--heading-color);
  font-size: 1.125rem;
  font-weight: 600;
}
.hero-2 .hero-visual {
  position: relative;
  height: 600px;
}
.hero-2 .hero-visual .main-image {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}
.hero-2 .hero-visual .main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-2 .hero-visual .main-image .floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.hero-2 .hero-visual .main-image .floating-card.appointment-card {
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}
.hero-2 .hero-visual .main-image .floating-card.appointment-card .card-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.hero-2 .hero-visual .main-image .floating-card.appointment-card .card-content h6 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.875rem;
}
.hero-2 .hero-visual .main-image .floating-card.appointment-card .card-content p {
  margin: 0 0 0.25rem 0;
  color: var(--default-color);
  font-weight: 600;
  font-size: 1rem;
}
.hero-2 .hero-visual .main-image .floating-card.appointment-card .card-content small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
}
.hero-2 .hero-visual .main-image .floating-card.rating-card {
  bottom: 20px;
  left: 20px;
  text-align: center;
  min-width: 140px;
}
.hero-2 .hero-visual .main-image .floating-card.rating-card .rating-stars {
  color: #ffc107;
  margin-bottom: 0.5rem;
}
.hero-2 .hero-visual .main-image .floating-card.rating-card .rating-stars i {
  font-size: 1rem;
}
.hero-2 .hero-visual .main-image .floating-card.rating-card h6 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.125rem;
}
.hero-2 .hero-visual .main-image .floating-card.rating-card small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .hero-2 .hero-visual .main-image .floating-card.appointment-card {
    right: 10px;
    top: 10px;
    padding: 1rem;
    min-width: 160px;
  }
  .hero-2 .hero-visual .main-image .floating-card.rating-card {
    left: 10px;
    bottom: 10px;
    padding: 1rem;
    min-width: 120px;
  }
}
.hero-2 .hero-visual .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-2 .hero-visual .background-elements .element {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.1;
}
.hero-2 .hero-visual .background-elements .element.element-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  animation: float1 6s ease-in-out infinite;
}
.hero-2 .hero-visual .background-elements .element.element-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -30px;
  animation: float2 8s ease-in-out infinite;
}
.hero-2 .hero-visual .background-elements .element.element-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  animation: float3 7s ease-in-out infinite;
}
@media (max-width: 992px) {
  .hero-2 .hero-visual {
    height: 400px;
    margin-top: 2rem;
  }
}
@keyframes float1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@keyframes float2 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-180deg);
  }
}
@keyframes float3 {
  0%, 100% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(-70%) rotate(180deg);
  }
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 0;
}
.why-us .img-bg {
  min-height: 500px;
  background-size: cover;
}
.why-us .slides {
  background-color: rgb(238.1509433962, 239.4811320755, 223.5188679245);
}
.why-us h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}
.why-us h4 {
  font-size: 18px;
  font-weight: 400;
  color: rgb(143.5344827586, 150, 75);
  font-family: var(--font-secondary);
}
.why-us p {
  font-size: 16px;
  margin-bottom: 15px;
}
.why-us .swiper {
  margin: 50px 50px 40px 50px;
  overflow: hidden;
}
.why-us .swiper-button-prev:after, .why-us .swiper-button-next:after {
  font-size: 24px;
  color: var(--color-secondary);
}
.why-us .swiper-button-prev {
  left: 80px;
}
.why-us .swiper-button-next {
  right: 80px;
}
.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-secondary);
}
.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }
  .why-us .swiper-button-prev, .why-us .swiper-button-next {
    display: none;
  }
}
@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 36px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
}
.about .content p {
  margin: 30px 0;
  color: rgb(143.5344827586, 150, 75);
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding: 0 0 15px 26px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
}
.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.services-list .service-item {
  position: relative;
}
.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: rgb(170.275862069, 177, 99);
}
.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}
.services-list .service-item .title a {
  color: var(--color-secondary);
}
.services-list .service-item .title a:hover {
  color: rgb(170.275862069, 177, 99);
}
.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(111, 116, 58, 0.8), rgba(111, 116, 58, 0.8)), url("../img/call-to-action.jpg") top center;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}
.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
}
.call-to-action p {
  color: #fff;
  margin-bottom: 25px;
}
.call-to-action .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: rgb(35.2830188679, 36.8396226415, 18.1603773585);
}
.call-to-action .cta-btn:hover {
  background: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-bottom: 0;
}
.features h3 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
.features .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1.2;
}
.features .icon-list span {
  font-size: 18px;
  color: rgb(143.5344827586, 150, 75);
}
.features .phone-wrap {
  position: absolute;
  right: 0;
}
@media (max-width: 768px) {
  .features .phone-wrap {
    position: relative;
  }
}
.features .phone-wrap img {
  width: 340px;
}
@media (max-width: 992px) {
  .features .phone-wrap img {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .features .phone-wrap img {
    width: 100%;
  }
}
.features .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: white;
}
.features .details h4 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.features .details p {
  margin-bottom: 20px;
  font-size: 15px;
}
.features .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--color-primary);
  color: #fff;
}
.features .details .btn-get-started:hover {
  background: rgb(35.2830188679, 36.8396226415, 18.1603773585);
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.recent-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}
.recent-posts .post-box .post-img img {
  transition: 0.5s;
}
.recent-posts .post-box .meta {
  margin-top: 15px;
}
.recent-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}
.recent-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}
.recent-posts .post-box .post-title {
  font-size: 18px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}
.recent-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(111, 116, 58, 0.7);
}
.recent-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}
.recent-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}
.recent-posts .post-box:hover .post-title {
  color: var(--color-primary);
}
.recent-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  background: #fff;
}
.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}
.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team .team-member .social a {
  transition: color 0.3s;
  color: rgb(159.8017241379, 167, 83.5);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.team .team-member .social a i {
  line-height: 0;
}
.team .team-member .social a:hover {
  color: var(--color-primary);
}
.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .team-member .member-info {
  padding: 25px 15px 0 15px;
  text-align: center;
}
.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--color-secondary);
}
.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6c757d;
}
.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6c757d;
}
.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
.services-cards {
  background: white;
}
.services-cards .card-item {
  border: 1px solid rgba(111, 116, 58, 0.1);
  background: #fff;
  position: relative;
  border-radius: 0;
}
.services-cards .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}
.services-cards .card-item .card-body {
  padding: 30px;
}
.services-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}
.services-cards .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(111, 116, 58, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: white;
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.testimonials .swiper-slide {
  opacity: 0.3;
}
@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }
  .testimonials .swiper-pagination {
    margin-top: 0;
  }
  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}
@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-flters li {
  color: var(--color-secondary);
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-flters li:hover, .portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}
.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}
.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}
.portfolio .portfolio-item {
  position: relative;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-default);
  padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(111, 116, 58, 0.7);
  transition: 0.3s;
  line-height: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-primary);
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.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 var(--color-primary);
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(111, 116, 58, 0.1);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
}
.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;
  color: var(--color-secondary);
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: url("../img/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}
@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
  }
}
.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.contact .info-item + .info-item {
  margin-top: 40px;
}
.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: rgb(2.5660377358, 2.679245283, 1.320754717);
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .php-email-form {
  width: 100%;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: rgb(18.9245283019, 19.7594339623, 9.7405660377);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
}
.contact .php-email-form button[type=submit]:hover {
  background: var(--color-primary);
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cards .card-item {
  background: color-mix(in srgb, #212529, transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}
.cards .card-item span {
  color: #6f743a;
  display: block;
  font-size: 28px;
  font-weight: 700;
}
.cards .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}
.cards .card-item h4 a {
  color: #6f743a;
}
.cards .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, #212529, transparent 40%);
  margin: 0;
  padding: 0;
}
.cards .card-item:hover {
  background: #6f743a;
  padding: 30px 30px 70px 30px;
}
.cards .card-item:hover span, .cards .card-item:hover h4 a, .cards .card-item:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  height: 100%;
  border-bottom: 1px solid white;
  padding-bottom: 30px;
}
.blog .posts-list article + article {
  margin-top: 60px;
}
.blog .posts-list .post-img {
  max-height: 240px;
  overflow: hidden;
}
.blog .posts-list .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0 0 0;
}
.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}
.blog .posts-list .title a:hover {
  color: var(--color-primary);
}
.blog .posts-list .meta-top {
  margin-top: 20px;
  color: rgb(188.7413793103, 194, 133);
}
.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .posts-list .meta-top ul li + li {
  padding-left: 20px;
}
.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(68, 71, 35, 0.8);
}
.blog .posts-list .meta-top a {
  color: rgb(188.7413793103, 194, 133);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .posts-list .content {
  margin-top: 20px;
}
.blog .posts-list .read-more a {
  display: inline-block;
  color: rgb(18.9245283019, 19.7594339623, 9.7405660377);
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}
.blog .posts-list .read-more a:hover {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}
.blog .blog-details .content {
  margin-top: 20px;
}
.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(111, 116, 58, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}
.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .blog-details .meta-top ul li + li {
  padding-left: 20px;
}
.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(68, 71, 35, 0.8);
}
.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(111, 116, 58, 0.15);
}
.blog .blog-details .meta-bottom i {
  color: rgb(170.275862069, 177, 99);
  display: inline;
}
.blog .blog-details .meta-bottom a {
  color: rgba(111, 116, 58, 0.8);
  transition: 0.3s;
}
.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}
.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}
.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}
.blog .blog-details .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}
.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}
.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}
.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}
.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}
.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}
.blog .post-author .social-links a {
  color: rgba(111, 116, 58, 0.5);
  margin-right: 5px;
}
.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar .sidebar-title {
  font-size: 22px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}
.blog .sidebar .sidebar-item + .sidebar-item {
  margin-top: 40px;
}
.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(111, 116, 58, 0.2);
  padding: 3px 10px;
  position: relative;
}
.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}
.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.blog .sidebar .search-form form button i {
  line-height: 0;
}
.blog .sidebar .search-form form button:hover {
  background: rgba(68, 71, 35, 0.8);
}
.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}
.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  font-size: 15px;
}
.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}
.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}
.blog .sidebar .recent-posts .post-item {
  display: flex;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}
.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}
.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}
.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}
.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}
.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}
.blog .sidebar .tags {
  margin-bottom: -10px;
}
.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .tags ul li {
  display: inline-block;
}
.blog .sidebar .tags ul a {
  color: rgb(170.275862069, 177, 99);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(111, 116, 58, 0.15);
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}
.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}
.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(111, 116, 58, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}
.blog .comments .comments-count {
  font-weight: bold;
}
.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}
.blog .comments .comment .comment-img {
  margin-right: 14px;
}
.blog .comments .comment .comment-img img {
  width: 60px;
}
.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}
.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}
.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}
.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}
.blog .comments .comment h5 .reply i {
  font-size: 20px;
}
.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(111, 116, 58, 0.8);
  margin-bottom: 5px;
}
.blog .comments .comment.comment-reply {
  padding-left: 40px;
}
.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}
.blog .comments .reply-form p {
  font-size: 14px;
}
.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(68, 71, 35, 0.8);
}
.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(68, 71, 35, 0.8);
}
.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}
.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}
.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(111, 116, 58, 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: rgb(170.275862069, 177, 99);
}
.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog .blog-pagination li a {
  color: rgb(35.2830188679, 36.8396226415, 18.1603773585);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: rgb(165.0188679245, 172.1226415094, 86.8773584906);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  background: var(--color-primary);
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
}
.footer .footer-content {
  background-color: white;
  background-size: contain;
  padding: 20px 0 0px 0;
}
.footer .footer-content .footer-info {
  margin-bottom: 2px;
}
.footer .footer-content .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}
.footer .footer-content .footer-info .logo img {
  max-height: 200px;
  margin-right: 6px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.footer .footer-content .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  margin-top: 3px;
}
.footer .footer-content .footer-info p {
  font-size: 15px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-secondary);
}
.footer .footer-content h4 {
  font-size: 16px;
  font-weight: bold;
  color: rgb(143.5344827586, 150, 75);
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-content .footer-links {
  margin-bottom: 30px;
}
.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content .footer-links ul i {
  margin-right: 4px;
  color: var(--color-primary);
  font-size: 8px;
  line-height: 0;
}
.footer .footer-content .footer-links ul li {
  padding: 10px 0;
}
.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-content .footer-links ul li {
  display: flex;
  align-items: center;
}
.footer .footer-content .footer-links ul span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  margin-top: 3px;
}
.footer .footer-contact p {
  line-height: 26px;
  color: var(--color-secondary);
}

.footer-legal {
  background: #fff;
  padding: 2px 0px 15px 0px;
}
.footer-legal .copyright {
  text-align: center;
  color: var(--color-secondary);
}
.footer-legal a {
  color: rgb(159.8017241379, 167, 83.5);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer-legal a:hover {
  color: var(--color-primary);
}
.footer-legal .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
  color: var(--color-secondary);
}/*# sourceMappingURL=main.css.map */