:root {
  /* Frame */
  --home-bg: #f8fafc;
  --max-w: 1440px;

  /* Welcome */
  --welcome-pad-y: 140px;
  --welcome-pad-x: 113px;
  --color-text: #000000;
  --font-title: "Poppins", sans-serif;
  --fs-hero: 52px;
  --fw-hero: 600;
  --font-desc: "Inter", sans-serif;
  --fs-desc: 16px;
  --welcome-actions-gap: 50px;
  --btn-secondary-bg: #f59e0b;
  --btn-secondary-radius: 10px;
  --btn-secondary-pad: 12px;
  --font-btn: "Roboto", sans-serif;
  --fs-btn: 18px;
  --fw-btn: 700;
  --btn-outline-color: rgb(13, 110, 253);
  --btn-outline-weight: 3px;
  --btn-outline-radius: 25px;

  /* Nav */
  --nav-h: 71px;
  --nav-bg: #ffffff;
  --nav-link-active: #0d6efd;
  --nav-contact-bg: #EA580C;
  --logo-blue: #246bb1;

  /* Products block */
  --products-pad-y: 60px;
  --products-pad-x: 130px;
  --products-gap: 60px;
  --products-title-fs: 40px;
  --products-title-fw: 600;

  /* Carousel card */
  --card-radius: 6px;
  --card-stroke: rgba(0, 0, 0, 0.2);
  --card-text-bg: #eaecec;
  --card-text-bg-feature: #f5f5f5;
  --carousel-h: 450px;

  /* Stats */
  --stats-bg: rgb(53, 179, 255);
  --stats-gap: 120px;
  --stats-pad-x: 112.5px;
  --stats-value-fs: 70px;
  --stats-value-fw: 800;
  --stats-label-fs: 24px;

  /* Expertise block */
  --expertise-pad-y: 44px;
  --expertise-pad-x: 112.5px;
  --expertise-block-gap: 40px;
  --expertise-inner-gap: 10px;
  --expertise-dim: rgba(0, 0, 0, 0.9);
  --expertise-overlay: rgba(0, 0, 0, 0.5);
  --font-expertise: "Times New Roman", Times, serif;

  /* Why */
  --why-pad-x: 113px;
  --why-gap-section: 29px;
  --why-title-fs: 48px;
  --why-title-fw: 300;
  --why-cols-gap: 98px;
  --why-col-inner-gap: 20px;
  --why-h-fs: 24px;
  --why-h-fw: 700;
  --why-p-fs: 16px;
  --why-foot-fs: 24px;
  --why-foot-fw: 300;

  /* Footer */
  --footer-bg: rgb(15, 23, 42);
  --footer-heading: #ffffff;
  --footer-link: #cbd5e1;
  --footer-muted: #9ca3af;
  --footer-legal: #64748b;
  --font-footer-h: "Roboto", sans-serif;
  --font-legal: "Roboto Mono", monospace;

  /* Vertical brand */
  --brand-fs: 90px;
  --brand-fw: bolder;


  --page-bg: #f8fafc;
  --page-bg-rgb: 248, 250, 252;
  --nav-active: #0d6efd;
  --nav-contact: #ea580c;
  --hero-scrim: rgba(0, 0, 0, 0.55);
  --btn-amber: #f59e0b;
  --btn-radius: 8px;
  --section-pad-x: 112.5px;
  --section-gap: 74px;
  --card-add-bg: #e1dfec;
  --process-bg: #111111;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, sans-serif;
  background: var(--home-bg);
  color: var(--color-text);
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 2000;
  padding: 8px 16px;
  background: #fff;
  color: #000;
  border-radius: 4px;
}

.skip-link:focus {
  left: 12px;
}


/* --------------------Navbar-------------------- */
.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  background: var(--nav-bg);
  min-height: var(--nav-h);
  box-shadow: 0 3px 6px -2px rgba(0,0,0,0.2);
}

.navbar {
  width: 100%;
  max-width: 1280px;
}

.navbar-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  background: var(--nav-bg);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.navbar-logo img {
  width: 77px;
  height: 46px;
}

.navbar-logo-text {
  margin: 0;
  font-family: "Rockwell Extra Bold", "Rockwell", serif;
  font-weight: 800;
  line-height: 1;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: var(--logo-blue);
  letter-spacing: 0.02em;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.navbar-toggle-bar {
  display: block;
  height: 2px;
  width: 22px;
  background: #000;
  border-radius: 1px;
}

.navbar-panel {
  display: flex;
  align-items: center;
  gap: 69px;
}

.navbar-links {
  display: flex;
  gap: 30px;
}

.navbar-link {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 6px;
  color: #000;
  text-decoration: none;
  margin: 0;
}

.navbar-link:hover {
  color: #0d6efd;
}

.navbar-link-active {
  color: var(--nav-link-active);
}

.dropdown {
  position: relative;
  list-style: none;
  padding: 8px 0;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 19px;
  cursor: pointer;
}

.mega-menu {
  position: absolute;
  top: 146%;
  left: 50%;
  width: 304px;
  padding: 22px;
  display: flex;
  gap: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0, 0, 0, 0.103);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(0px) scale(1);
  transition: opacity 0.1s ease,
              visibility 0.1s,
              transform 0.1s cubic-beizer(0.22, 1, 0.36, 1);
}

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px) scale(1);
}

.column a {
  padding: 6px 0;
  color: #00000098;
  text-decoration: none;
  font-size: 14px;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.column a:hover {
  color: #0d6efd;
}

.btn-wrapper {
  display: inline-block;
  background: #000;
  border-radius: 11px;
  width: 82px;
  height: 34px;
}

.navbar-link-contact {
  color: #fff;
  border-radius: 10px;
  background: var(--nav-contact-bg);
  border: 3px solid black;
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
  padding: 5px 9px;
  text-decoration: none;
  margin: 0;
  position: relative;
  top: 5px;
}

.navbar-link-contact:hover {
  color: #000000;
  filter: brightness(1.05);
}

.navbar-link-contact-active {
  color: #000000;
  filter: brightness(1.05);
}

.nav-accordion-item {
  display: none;
}

/* Small Screen */
@media (max-width: 768px) {

  .navbar-bar {
    position: relative;
    padding: 0 15px;
    /* background-color: pink; */
  }

  .navbar-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
  }

  .navbar-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: none;
    /* background-color: pink; */
  }

  .navbar-panel.active {
    display: flex;
  }

  .navbar-links {
    flex-direction: column;
    gap: 4px;
    /* background-color: blue; */
  }

  .navbar-link {
    font-size: 14px; 
    padding: 4px 0;
    /* background-color: red; */
  }

  .dropdown {
    display: none;
  }

  .nav-accordion-item {
    width: 330px;
    display: block;
    margin-top: 8px;
    /* background-color: blue; */
  }

  .nav-accordion-content {
    max-height: 0;
    padding: 8px 4px 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-accordion-item.active .nav-accordion-content {
    max-height: 500px;
    padding: 8px 4px 0;
    /* background-color: red; */
  }

  .accordion-icon {
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.3s ease;
  }

  .nav-accordion-item.active .accordion-icon {
    transform: rotate(45deg);
  }

  .nav-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    /* background-color: blue; */
  }

  .nav-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* background-color: red; */
  }

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

  .nav-list li {
   margin-bottom: 10px;
   /* background-color:red; */
  }

  .nav-list a {
    color: black;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
  }

  .nav-list a:hover {
    text-decoration: underline;
  }
}


/* --------------------Hero Section-------------------- */
.srv-hero {
  min-height: 650px;
  background-color: #0A0A0A;
}

.srv-hero-content {
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px var(--section-pad-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* background-color: pink; */
  align-items: center;
}

.srv-hero-link {
  width: 1100px;
  height: 22px;
  /* background-color: red; */
}

.srv-hero-link p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.srv-hero-link a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #F59E0B;
  text-decoration: none;
}

.srv-hero-link a:hover {
  text-decoration: underline;
}

.srv-hero-head {
  max-width: 1100px;
  height: 50;
  /* background-color: rgb(255, 0, 43); */
}

.srv-hero-line1 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 37px);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  padding: 0;
}


.srv-hero-body {
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 100px;
  /* background-color: red; */
}

.body-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.body-content p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
}

.srv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 44px;
  padding: 8px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  text-decoration: none;
  background: var(--btn-amber);
  border-radius: var(--btn-radius);
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.srv-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Small Screen */
@media (max-width: 768px) {

  .srv-hero {
    min-height: 340px;
    /* background-color: #0A0A0A; */
  }

  .srv-hero-content {
    max-width: 100%;
    padding: 24px 16px;
    gap: 30px;
    /* background-color: pink; */
  }

  .srv-hero-link {
    width: 100%;
    height: 22px;
    /* background-color: red; */
  }

  .srv-hero-link p {
    font-size: 12px;
  }

  .srv-hero-link a {
    font-size: 13px;
  }

  .srv-hero-head {
    max-width: 100%;
    /* background-color: rgb(255, 0, 43); */
  }

  .srv-hero-line1 {
    margin: 0 0 8px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(27px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    padding: 0;
  }

  .srv-hero-body {
    max-width: 100%;
  }

  .body-content{
    gap: 30px;
  }

  .body-content p {
   font-size: 14px;
    line-height: 1.4;
  }

  .srv-hero-bg {
    display: none;
  }
}


/* --------------------Service Type Cards-------------------- */
.service-type {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px var(--section-pad-x);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px 80px;
  /* background-color: pink; */
}

.service-card {
  width: 320px;
  height: 380px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
  padding: 40px 15px;
  background-color: #E1DFEA;
  box-shadow:
    4px 4px 4px rgba(0, 0, 0, 0.25),
    -1px -1px 4px rgba(0, 0, 0, 0.25);
}

.service-card-header {
  width: 290px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-header h3 {
  font-family: "times new roman", times, serif;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  text-align: center;
  line-height: 1.1;
}

.service-card-body {
  width: 274px;
}

.service-card-body p {
  font-family: "poppins", times, serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

/* Small Screen */
@media (max-width: 768px) {

  .service-type {
    max-width: 100%;
    padding: 24px 16px;
    gap: 20px;
    /* background-color: pink; */
  }

  .service-card {
    width: 320px;
    height: 220px;
    border-radius: 20px;
    gap: 24px;
    padding: 16px 8px;
  }

  .service-card-header {
    width: 274px;
    height: 76px;
    /* background-color: red; */
  }

  .service-card-header h3 {
    font-size: 24px;
  }

  .service-card-body {
    width: 274px;
    /* background-color: red; */
  }

  .service-card-body p {
    font-size: 14px;
  }
}
 

/* --------------------Get a Quote-------------------- */
.interested {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #111111;
  padding: 60px 0;
}

.interested-header {
  width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.interested-header h3 {
  margin: 0;
  font-family: "poppins", Times, serif;
  font-size: clamp(36px, 5vw, 43px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin:0 auto;
}

.step-wrapper {
  position: relative;
  width: 342px;
  padding-top: 34px;
  padding-left: 34px;
  /* background-color: pink; */
}

.step-badge {
  position: absolute;
  top: 17px;
  left: 50px;
  z-index: 3;
  /* border: 1px solid black; */
}

.step-badge span { 
  display: inline-block;
  background: #F2C525;
  color: #000000;
  font-weight: 400;
  padding: 6px 28px;
  border-radius: 0 20px 20px 0;
  font-size: 18px;
  font-family: "times new roman", times, serif;
  /* border: 1px solid black; */
}

.icon-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background: #fff;
  border: 8px solid #F2C525;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index:4;
    box-shadow:
    2px 2px 2px rgba(0, 0, 0, 0.25),
    -1px -1px 2px rgba(0, 0, 0, 0.25);
}

.card {
  background: #ffffff;
  border-radius: 10px;
  width: 274px;
  height: 235px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  color: #000000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card h4 {
  font-family: "Poppins", times, serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.card p {
  font-family: "Poppins", times, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

/* Small Screen */
@media (max-width: 768px) {

  .interested {
    gap: 24px;
    padding: 24px 8px;
  }

  .interested-header {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    /* background-color: red; */
  }

  .interested-header h3 {
    font-size: clamp(24px, 5vw, 43px);
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-wrapper {
    width: 290px;
    padding-top: 25px;
    padding-left: 25px;
    /* background-color: pink; */
  }

  .step-badge {
    top: 12px;
    left: 32px;
    /* border: 1px solid black; */
  }

  .step-badge span {
    padding: 4px 24px;
    border-radius: 0 20px 20px 0;
    font-size: 14px;
    /* border: 1px solid black; */
  }

  .icon-circle {
    width: 50px;
    height: 50px;
  }

  .icon-circle img {
    width: 24px;
    height: 24px;
  }

  .card {
    border-radius: 20px;
    width: 240px;
    height: 220px;
    gap: 0;
    /* border: 1px solid black; */
  }

  .card h4 {
    font-size: 20px;
  }

  .card p {
    font-size: 15px;
    max-width: 210px;
    /* background-color: red; */
  }

  .srv-btn {
    align-self: flex-end;
  }
}


/* --------------------Why choose-------------------- */
.srv-why {
  margin: 0 auto;
  padding: 70px var(--section-pad-x) 70px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.srv-why-title {
  margin: 0 0 ;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 700;
  color: #000;
  text-align: center;
}

.srv-why-lead {
  margin: 0 auto ;
  max-width: 900px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  text-align: center;
}

.srv-why-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.srv-why-card {
  width: 300px;
  height: 346px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 8px;
  background: #fff;
  border-radius: 10px;
  box-shadow:
    4px 4px 4px rgba(0, 0, 0, 0.25),
    -1px -1px 4px rgba(0, 0, 0, 0.25);
}

.srv-why-card-icon {
  display: block;
  margin: 0 auto;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.srv-why-card-h {
  margin: 0 ;
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #000;
}

.srv-why-card-p {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  color: #000;
}

/* Small Screen */
@media (max-width: 768px) {

  .srv-why {
    padding: 24px 16px;
    gap: 24px;
    /* background-color: red; */
  }

  .srv-why-title {
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 600;
  }

  .srv-why-lead {
    max-width: 100%;
    font-size: 14px;
    font-weight: 400;
  }

  .srv-why-grid {
    gap: 20px;
  }

  .srv-why-card {
    width: 300px;
    height: 306px;
    gap: 8px;
    padding: 16px 8px;
    border-radius: 20px;
  }

  .srv-why-card-icon {
    width: 50px;
    height: 50px;
  }

  .srv-why-card-h {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
  }

  .srv-why-card-p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
  }
}


/* --------------------Footer-------------------- */
.footer {
  background: var(--footer-bg);
  color: var(--footer-link);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-row {
  display: flex;
  flex-direction: row;
  padding: 50px 80px 0;
  gap: 200px ;
  justify-content: space-between;
}

.footer-col {
  display: flex;
  flex-direction: column;
  /* background-color: red; */
}

#footer-services {
  width: 280px;
} 

.footer-col-contact {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 420px;
}

.footer-nav-links {
  display: flex;
  gap: 50px;
}

.footer-accordion-header {
  display: none;
}

.footer-h {
  margin: 0 0 12px;
  font-family: var(--font-footer-h);
  font-size: 16px;
  font-weight: 600;
  color: var(--footer-heading);
}

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

.footer-list li {
  margin-bottom: 10px;
  /* background-color: red; */
}

.footer-list a {
  color: var(--footer-link);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-list-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--footer-muted);
  line-height: 1.45;
  /* background-color:red; */
}

.footer-list-contact p {
  margin: 0;
}

.footer-list-contact a {
  color: var(--footer-muted);
}

.sm-logos {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 12px;
}

.footer-rule {
  width: 500px;
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin: 0;
}

.footer-legal {
  margin-bottom: 5px;
  font-family: var(--font-legal);
  font-size: 12px;
  font-weight: 400;
  color: var(--footer-legal);
  text-align: center;
}

.footer-brand {
  display: flex;
  gap: 7px;
  text-decoration: none;
}

.footer-brand img {
  width: 67px;
  height: 40px;  
}

.footer-brand-mark {
  margin: 0;
  font-family: "Rockwell Extra Bold", "Rockwell", serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

/* Small Screen */
@media (max-width: 768px) {

  .footer {
    padding: 8px 8px 0;
  }

  .footer-inner {
    padding: 0;
    gap: 8px;
    /* background-color: pink; */
  }

  .footer-row {
    flex-direction: column;
    gap: 30px;
    padding: 0;
    /* background-color: red; */
  }

  .footer-logo {
    display: none;
  }

  .footer-nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-col {
    width: 100%;
  }

  .footer-accordion-item {
    width: 340px;
    /* background-color: blue; */
  }

  .footer-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    /* background-color: blue; */
  }

  .accordion-icon {
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.3s ease;
  }

  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 4px 12px 0;
    transition: max-height 0.35s ease;
  }

  .footer-accordion-item.active .footer-accordion-content {
    max-height: 500px;
    padding: 4px 12px 0;
    /* background-color: red; */
  }

  .footer-accordion-item.active .accordion-icon {
    transform: rotate(45deg);
  }

  .footer-col .footer-h {
    display: none;
  }

  .footer-rule {
    width: 60%;
  }

  .footer-legal {
    text-align: center;
    margin-top: 0;
    font-size: 11px;
  }
}


@media (prefers-reduced-motion: reduce) {
  
  html {
    scroll-behavior: auto;
  }

  .carousel-track {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}