@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --dark: #1f2420;
  --deep: #263329;
  --olive: #69735a;
  --sage: #899379;
  --beige: #f4efe6;
  --cream: #faf7f1;
  --brown: #A36842;
  --brown-dark: #7b482c;
  --white: #ffffff;
  --text: #687068;
  --border: rgba(31, 36, 32, .12);
  --shadow: 0 24px 60px rgba(31, 36, 32, .13);
  --transition: all .35s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

a { text-decoration: none; }
img { width: 100%; display: block; }

p {
  color: var(--text);
  line-height: 1.75;
}

h1, h2, h3, h4, h5, .h1, .h3, .h5 {
  color: var(--deep);
  font-weight: 900;
  line-height: 1.08;
}

.section-space { padding: 110px 0; }

.preloader {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 99999;
  display: grid;
  place-items: center;
  transition: opacity .4s ease, visibility .4s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 54px;
  height: 54px;
  border: 4px solid rgba(255,255,255,.2);
  border-top-color: var(--brown);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* TOPBAR */
.topbar {
  background: var(--deep);
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar a,
.topbar span {
  color: rgba(255,255,255,.78);
}

.topbar i { color: var(--brown); margin-right: 7px; }

.topbar-social {
  display: flex;
  gap: 12px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: white;
  transition: var(--transition);
}

.topbar-social a:hover { color: var(--brown); }

/* NAV */
.main-navbar {
  background: var(--white);
  min-height: 86px;
  box-shadow: 0 1px 0 var(--border);
  z-index: 999;
  transition: var(--transition);
}

.main-navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--shadow);
  animation: navDown .35s ease;
}

@keyframes navDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  font-size: 22px;
  font-weight: 900;
}

.brand:hover,
.footer-brand:hover { color: var(--deep); }

.brand-mark {
  width: 52px;
  height: 52px;
  background: var(--brown);
  color: var(--white);
  border-radius: 0;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 8px 8px 0 var(--beige);
}

.navbar-nav .nav-link {
  color: var(--deep);
  font-weight: 800;
  font-size: 15px;
  padding: 31px 15px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 24px;
  width: 0;
  height: 2px;
  background: var(--brown);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after { width: calc(100% - 30px); }
.navbar-nav .nav-link:hover { color: var(--brown); }

.quote-btn {
  min-height: 54px;
  padding: 0 24px;
  background: var(--brown);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: var(--transition);
}

.quote-btn:hover {
  background: var(--deep);
  color: white;
}

/* HERO */
.hero-one {
  position: relative;
  overflow: hidden;
  background: var(--deep);
}

.heroSwiper,
.heroSwiper .swiper-slide {
  height: calc(100vh - 130px);
  min-height: 680px;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 6s ease;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31,36,32,.92) 0%, rgba(31,36,32,.74) 44%, rgba(31,36,32,.22) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 120px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 150px;
  color: white;
}

.sub-title,
.sec-title span {
  display: inline-block;
  text-transform: uppercase;
  color: var(--brown);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-content .h1 {
  color: white;
  font-size: 3.5vw;
  margin-bottom: 24px;
}

.hero-content p {
  color: rgba(255,255,255,.78);
  max-width: 610px;
  font-size: 18px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.theme-btn,
.outline-btn {
  min-height: 58px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brown);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 0;
  transition: var(--transition);
}

.theme-btn:hover {
  background: var(--deep);
  color: white;
}

.theme-btn.dark {
  background: var(--deep);
}

.theme-btn.dark:hover {
  background: var(--brown);
}

.outline-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
}

.outline-btn:hover {
  background: var(--brown);
  color: white;
  border-color: var(--brown);
}

.video-btn {
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  color: var(--brown);
  background: white;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 12px rgba(255,255,255,.12);
  transition: var(--transition);
}

.video-btn:hover {
  transform: scale(1.05);
  background: var(--brown);
  color: white;
}

.hero-social {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  color: rgba(255,255,255,.7);
}

.hero-social span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.hero-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  display: grid;
  place-items: center;
}

.hero-social a:hover {
  background: var(--brown);
  border-color: var(--brown);
}

.hero-pagination {
  position: absolute;
  right: 42px !important;
  left: auto !important;
  bottom: 50% !important;
  transform: translateY(50%);
  width: auto !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 8;
}

.hero-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  opacity: 1;
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--brown);
  border-color: var(--brown);
}

.hero-thumbs {
  position: absolute;
  right: 60px;
  bottom: 70px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-thumb {
  width: 86px;
  height: 70px;
  padding: 0;
  border: 3px solid transparent;
  background: transparent;
  overflow: hidden;
  opacity: .72;
  transition: var(--transition);
}

.hero-thumb.active {
  opacity: 1;
  border-color: var(--brown);
}

.hero-thumb img {
  height: 100%;
  object-fit: cover;
}

/* FEATURE */
.feature-strip {
  margin-top: -60px;
  position: relative;
  z-index: 20;
}

.feature-box {
  background: var(--white);
  padding: 34px 26px;
  border-right: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 170px;
  transition: var(--transition);
}

.feature-box:hover {
  background: var(--deep);
  transform: translateY(-8px);
}

.feature-box i {
  color: var(--brown);
  font-size: 36px;
  margin-bottom: 18px;
}

.feature-box .h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.feature-box p {
  margin: 0;
}

.feature-box:hover .h3,
.feature-box:hover p { color: white; }
.modal-dialog {
  max-width: 70%;
}
.drag-circle i {
  font-size: 3vw;
  color: #a56a43;
}
/* SECTION TITLE */
.sec-title h2 {
  margin: 0 0 22px;
}

.sec-title.light h2 { color: white; }

/* ABOUT */
.about-one {
  background: var(--cream);
}

.about-images {
  position: relative;
  padding-right: 60px;
  padding-bottom: 80px;
}

.about-main-img img {
  height: 560px;
  object-fit: cover;
}

.about-small-img {
  width: 46%;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 14px solid var(--cream);
}

.about-small-img img {
  height: 260px;
  object-fit: cover;
}

.award-box {
  position: absolute;
  top: 15px;
  right: -15px;
  width: 170px;
  min-height: 170px;
  background: var(--deep);
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
border-radius: 50%;
}

.award-box i {
  display: block;
  color: var(--brown);
  font-size: 42px;
}

.about-lead {
  font-size: 21px;
  color: var(--brown-dark);
  margin-bottom: 18px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 30px 0;
}

.about-points div {
  border-left:4px solid #ece2db;
  padding-left: 18px;
}

.about-points i {
  color: var(--brown);
  font-size: 28px;
  margin-bottom: 12px;
}

.about-points .h5 {
  font-size: 18px;
}

.about-points p {
  font-size: 14px;
  margin: 0;
}

/* SERVICES */
.services-one {
  background: var(--deep);
  overflow: hidden;
}

.service-tile {
  background: white;
  height: 100%;
  overflow: hidden;
}

.service-tile img {
  height: 260px;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-tile:hover img {
  transform: scale(1.08);
}

.service-content {
  padding: 35px 30px;
  position: relative;
}

.service-content span {
  position: absolute;
  top: -45px;
  right: 24px;
  width: 72px;
  height: 72px;
  background: var(--brown);
  color: white;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}

.service-content h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.service-content a {
  color: var(--brown);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .5px;
}

/* CTA */
.service-cta {
  background: var(--deep);
  padding-bottom: 80px;
}

.service-cta-card {
  background: var(--brown);
  color: white;
  min-height: 170px;
  padding: 34px 66px;
  display: grid;
  grid-template-columns: 105px 1fr auto;
  align-items: center;
  gap: 28px;
}

.service-cta-card h2,
.service-cta-card p {
  color: white;
  margin: 0;
}

.service-cta-card p {
  color: rgba(255,255,255,.75);
  margin-top: 8px;
}

.service-cta-card > a {
  color: white;
  font-size: 30px;
  font-weight: 900;
  background-color: #263329;
  padding: 3% 9%;
  border-radius: 30px;
}

.drag-circle {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--deep);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2px;
}

/* OFFER */
.offer-one {
  background: var(--white);
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.offer-list li {
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--deep);
}

.offer-list i {
  color: var(--brown);
  margin-right: 8px;
}

.coupon-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  background: var(--beige);
  box-shadow: var(--shadow);
}

.coupon-image img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.coupon-body {
  padding: 45px;
}

.coupon-body span {
  color: var(--brown);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.coupon-body h2 {
  font-size: clamp(58px, 8vw, 96px);
  color: var(--brown);
  margin: 8px 0;
}

.coupon-body h3 {
  font-size: 25px;
  margin-bottom: 18px;
}

/* PROJECTS */
.projects-one {
  background: var(--cream);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 22px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--deep);
}

.project-big {
  grid-row: span 2;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, opacity .4s ease;
}

.project-card:hover img {
  transform: scale(1.08);
  opacity: .62;
}

.project-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: white;
  padding: 20px;
  transform: translateY(110%);
  transition: var(--transition);
}

.project-card:hover div {
  transform: translateY(0);
}

.project-card span {
  color: var(--brown);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
}

.project-card h3 {
  margin: 4px 0 0;
  font-size: 24px;
}

/* RELIABLE */
.reliable-one {
  background: var(--deep);
  color: white;
}

.reliable-one p {
  color: rgba(255,255,255,.72);
}

.counter-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.counter-row strong {
  display: block;
  color: var(--brown);
  font-size: 38px;
  font-weight: 900;
}

.counter-row span {
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.reliable-image {
  position: relative;
  padding-right: 60px;
}

.reliable-image img {
  height: 560px;
  object-fit: cover;
}

.experience-box {
  position: absolute;
  right: 0;
  bottom: 55px;
  width: 170px;
  height: 170px;
  background: var(--brown);
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
padding: 30px 20px;
  border-radius: 50%;
}

.experience-box strong {
  display: block;
  font-size: 44px;
  line-height: 1;
  color: #c6e8cd;
}

.experience-box span {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
}

/* TESTIMONIALS */
.testimonials-one {
  background: var(--beige);
}

.testimonial-image {
  position: relative;
}

.testimonial-image img {
  height: 560px;
  object-fit: cover;
}

.testimonial-play {
  width: 76px;
  height: 76px;
  border: 0;
  background: var(--brown);
  color: white;
  border-radius: 50%;
  position: absolute;
  right: -38px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 15px rgba(165,106,67,.2);
}

.review-box {
  background: white;
  padding: 45px;
  box-shadow: var(--shadow);
}

.review-box p {
  font-size: 21px;
  color: var(--deep);
  font-weight: 600;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 26px;
}

.review-author span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--deep);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.review-author h4 {
  margin: 0;
  font-size: 20px;
}

.review-author small {
  color: var(--brown);
  text-transform: uppercase;
  font-weight: 900;
}

.review-pagination {
  margin-top: 24px;
}

.review-pagination .swiper-pagination-bullet {
  background: var(--brown);
}

/* CONTACT */
.contact-one {
  background: var(--deep);
}

.contact-card {
  background: var(--brown);
  padding: 44px;
  min-height: 100%;
}

.contact-card p,
.contact-card h2,
.contact-card .sec-title span {
  color: white;
}

.contact-info {
  margin-top: 30px;
}

.contact-info > div {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  color: white;
}

.contact-info i {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  flex: 0 0 46px;
}

.contact-info b,
.contact-info a {
  display: block;
}

.contact-info a {
  color: white;
}

.contact-form {
  background: white;
  padding: 44px;
}

.form-control,
.form-select {
  min-height: 58px;
  border: 0;
  border-radius: 0;
  background: var(--cream);
  padding: 15px 18px;
  color: var(--deep);
}

textarea.form-control {
  min-height: 160px;
}

.form-control:focus,
.form-select:focus {
  background: var(--beige);
  box-shadow: none;
  outline: 2px solid rgba(165,106,67,.25);
}

.success-msg {
  display: none;
  margin-top: 18px;
  background: rgba(105,115,90,.12);
  color: var(--deep);
  padding: 15px;
  font-weight: 900;
}

.map-frame {
  margin-top: 40px;
  height: 380px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* LOCATIONS */
.locations-one {
  background: var(--cream);
}

.area-box {
  background: white;
  padding: 38px;
  min-height: 100%;
  box-shadow: var(--shadow);
}

.area-box h3 {
  font-size: 26px;
  margin-bottom: 22px;
}

.pills,
.zips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pills a,
.zips span {
  background: var(--beige);
  color: var(--deep);
  padding: 12px 18px;
  font-weight: 900;
  transition: var(--transition);
}

.pills a:hover,
.zips span:hover {
  background: var(--brown);
  color: white;
}

/* FOOTER */
.footer {
  background: #171b18;
  color: rgba(255,255,255,.68);
  padding: 60px 0 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 45px;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand,
.footer-brand:hover {
  color: white;
}

.newsletter {
  display: flex;
  max-width: 470px;
  width: 100%;
  background: white;
}

.newsletter input {
  flex: 1;
  border: 0;
  padding: 0 18px;
  min-height: 58px;
  outline: 0;
}

.newsletter button {
  width: 68px;
  border: 0;
  background: var(--brown);
  color: white;
}

.footer h4 {
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255,255,255,.68);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 11px;
}

.footer a:hover {
  color: var(--brown);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.09);
  display: grid;
  place-items: center;
}

.footer-social a:hover {
  background: var(--brown);
  color: white;
}

.footer-contact i {
  color: var(--brown);
  margin-right: 8px;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 24px 0;
  margin-top: 45px;
  font-size: 14px;
}
marquee a{color: #000;}
/* BACK TOP */
.back-top {
  position: fixed;
  right: 20px;
  bottom: 75px;
  width: 50px;
  height: 48px;
  border: 0;
  background: var(--brown);
  color: white;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: var(--transition);
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .hero-social { display: none; }
}

@media (max-width: 991px) {
  .topbar { display: none; }

  .main-navbar {
    min-height: 76px;
  }

  .navbar-collapse {
    padding: 18px 0;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .heroSwiper,
  .heroSwiper .swiper-slide {
    height: auto;
    min-height: 720px;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-thumbs,
  .hero-pagination {
    display: none;
  }

  .feature-strip {
    margin-top: 0;
  }

  .service-cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .drag-circle {
    margin: auto;
  }

  .coupon-panel {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-big {
    grid-row: span 1;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .section-space {
    padding: 80px 0;
  }

  .hero-content .h1 {
    font-size: 44px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .about-images,
  .reliable-image {
    padding: 0;
  }

  .about-main-img img,
  .reliable-image img,
  .testimonial-image img {
    height: 380px;
  }

  .about-small-img,
  .award-box,
  .experience-box,
  .testimonial-play {
    display: none;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .contact-card,
  .contact-form,
  .area-box,
  .review-box {
    padding: 28px;
  }

  .coupon-body {
    padding: 32px;
  }
}

@media (max-width: 575px) {
  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .hero-actions .theme-btn {
    width: 100%;
  }

  .video-btn {
    width: 58px;
    height: 58px;
  }

  .counter-row {
    flex-direction: column;
  }
}

/* ===== SERVICES DROPDOWN ===== */
.services-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}

.dropdown-trigger i {
  font-size: 11px;
  transition: transform .3s ease;
}

.services-dropdown.open .dropdown-trigger i {
  transform: rotate(180deg);
}

.custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 285px;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(31, 36, 32, .16);
  border-top: 3px solid var(--brown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 1002;
}

.services-dropdown.open .custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown li a {
  display: block;
  padding: 11px 20px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid rgba(31, 36, 32, .08);
  transition: var(--transition);
}

.custom-dropdown li:last-child a {
  border-bottom: 0;
}

.custom-dropdown li a:hover {
  color: var(--white);
  background: var(--brown);
  padding-left: 26px;
}

@media (min-width: 992px) {
  .services-dropdown:hover .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .services-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
  }
}

@media (max-width: 991px) {
  .services-dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .custom-dropdown {
    position: static;
    min-width: 100%;
    padding: 0;
    margin: 0 0 8px;
    box-shadow: none;
    border-top: 0;
    background: var(--beige);
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height .35s ease;
  }

  .services-dropdown.open .custom-dropdown {
    max-height: 420px;
    transform: none;
  }

  .custom-dropdown li a {
    padding: 10px 18px 10px 28px;
    font-size: 13px;
  }

  .custom-dropdown li a:hover {
    padding-left: 34px;
  }
}
