: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(32px, 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-logo-text {
    margin: 0;
    font-family: "Rockwell Extra Bold", "Rockwell", serif;
    font-weight: bold;
    line-height: 1;
    color: var(--logo-blue);
    letter-spacing: 0.02em;
  }

  .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-------------------- */
.hero-section {
  width: 1130px;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin: 0 auto;
  /* background-color: red; */
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.hero-content h2 {
  font-family: "Pochaevsk", sans-serif;
  font-size: 60px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  /* background-color: pink; */
  margin: 0;
}

.hero-content p {
  font-family: "Pochaevsk", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  /* background-color: yellow; */
  margin: 0;
}

.hero-img img {
  width: 390px;
  height: 260px;  
}

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

  .hero-section {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
  }

  .hero-img {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

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

  .hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); 
  }

  .hero-content {
    position: relative;
    z-index: 2;
    gap: 20px;
    color: white;
    max-width: 96%;
  }

  .hero-content h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
  }

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


/* --------------------Story Section-------------------- */
.our-story {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  /* background-color: red; */
}

.our-story-header h3  {
  font-family: "Pochaevsk", sans-serif;
  font-size: 50px;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  line-height: 1.2;
  /* background-color: pink; */
}

.our-story-para {
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* background-color: pink; */
}

.our-story-para p {
  font-family: "Pochaevsk", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  margin:0;
}

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

 .our-story {
    max-width: 100%;
    padding: 24px 16px;
    gap: 24px;
    /* background-color: red; */
  }

  .our-story-header h3  {
    font-size: 28px;
    font-weight: 700;
    /* background-color: pink; */
  }

  .our-story-para {
    gap: 30px;
    /* background-color: pink; */
  }

  .our-story-para p {
    font-size: 16px;
  }
}


/* --------------------Mission and Vision-------------------- */
.mission-vision {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 113px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  /* background-color: red; */
}

.mission-vision-header h3 {
  font-family: "Pochaevsk", sans-serif;
  font-size: 50px;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  line-height: 1.2;
  /* background-color: pink; */
}

.mission-vision-para {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.mission-vision-para div {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 0;
}

.mission-vision-para h4 {
  font-family: "Pochaevsk", sans-serif;
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  line-height: 1.2;
  /* background-color: yellow; */
}

.mission-vision-para p {
  font-family: "Pochaevsk", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  line-height: 1.2;
  /* background-color: rgb(255, 136, 0); */
}

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

  .mission-vision {
    max-width: 100%;
    padding: 24px 16px;
    gap: 24px;
    /* background-color: red; */
  }

  .mission-vision-header h3 {
    font-size: 28px;
    font-weight: 600;
    /* background-color: pink; */
  }

  .mission-vision-para {
    gap: 20px;
  }

  .mission-vision-para div {
    gap: 16px;
  }

  .mission-vision-para h4 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    /* background-color: yellow; */
  }

  .mission-vision-para p {
    font-size: 15px;
    font-weight: 400;
    /* background-color: rgb(255, 136, 0); */
  }
}


/* --------------------Core Values------------------- */
.core-values {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 113px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  /* background-color: red; */
}

.core-values-header h3 {
  font-family: "Pochaevsk", sans-serif;
  font-size: 50px;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  line-height: 1;
  /* background-color: pink; */
}

.core-values-cards {
  display: flex;
  gap: 50px;
}

.cards {
  width: 320px;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
  background-color: #F5F5F5;
  border-radius: 20px;
  padding: 16px;
  box-shadow:
    4px 4px 4px rgba(0, 0, 0, 0.25),
    -1px -1px 4px rgba(0, 0, 0, 0.25);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 0;
}

.card-content h4 {
  font-family: "Pochaevsk", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin: 0;
}

.card-content p {
  font-family: "Pochaevsk", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin: 0;
}

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

  .core-values {
    max-width: 100%;
    padding: 24px 16px;
    gap: 24px;
    /* background-color: red; */
  }

  .core-values-header h3 {
    font-size: 28px;
    font-weight: 600;
    /* background-color: pink; */
  }

  .core-values-cards {
    flex-direction: column;
    gap: 20px;
  }

  .cards {
    width: 280px;
    height: 250px;
    gap: 12px;
  }

  .cards img {
    width: 50px;
    height: 50px;
  }

  .card-content {
    gap: 12px;
  }

  .card-content h4 {
    font-size: 22px;
    font-weight: 500;
  }

  .card-content p {
    font-size: 16px;
    font-weight: 400;
  }
}


/* --------------------Specialisation-------------------- */
.specialisation {
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 113px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  /* background-color: red; */
}

.specialisation-header h3 {
  font-family: "Pochaevsk", sans-serif;
  font-size: 50px;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  line-height: 1;
  /* background-color: pink; */
}

.specialisation-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 80px 120px;
  justify-content: center;
}

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

.card4 {
  gap: 4rem;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 0;
}

.card-content h4 {
  font-family: "Pochaevsk", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin: 0;
}

.card-content p {
  font-family: "Pochaevsk", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin: 0;
}

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

  .specialisation {
    max-width: 100%;
    padding: 24px 8px;
    gap: 24px;
    align-items: flex-start;
    /* background-color: red; */
  }

  .specialisation-header h3 {
    font-size: 24px;
    font-weight: 600;
    /* background-color: pink; */
  }

  .specialisation-cards {
    gap: 20px;
  }

  .card {
    width: 330px;
    height: 310px;
    gap: 16px;
    padding: 16px;
  }

  .card1 p,
  .card4 p {
    margin-top: 20px;
  }

  .card img {
    width: 40px;
    height: 40px;
  }

  .card-content {
    gap: 12px;
  }

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

  .card-content p {
    font-size: 15px;
    font-weight: 400;
  }
}


/* --------------------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 {
  font-weight: 400;
  font-style: normal;
  margin: 0;
  font-size: clamp(36px, 5vw, 50px);
  color: #000;
  text-align: center;
  font-family: "Pochaevsk", sans-serif;
}

.srv-why-lead {
  margin: 0 auto;
  max-width: 900px;
  font-family: "Pochaevsk", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  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: "Pochaevsk", sans-serif;
  font-style: normal;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #000;
}

.srv-why-card-p {
  margin: 0;
  font-family: "Pochaevsk", sans-serif;
  font-style: normal;
  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-weight: 600;
    font-size: clamp(28px, 5vw, 50px);
  }

  .srv-why-lead {
    max-width: 100%;
    font-size: 17px;
    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: 500;
  }

  .srv-why-card-p {
    font-size: 15px;
    font-weight: 400;
  }
}


/* --------------------Authorized Channel Partner-------------------- */
.partner-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 113px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* background-color: red; */
}

.partner-section h3 {
  font-family: "Pochaevsk", sans-serif;
  font-size: 40px;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  line-height: 1;
}

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

  .partner-section {
    max-width: 100%;
    padding: 24px 16px;
    gap: 24px;
    /* background-color: red; */
  }

  .partner-section h3 {
    font-size: 27px;
    font-weight: 500;
  }

  .partner-section img {
    width: 242px;
    height: 80px;
  }
}


/* --------------------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;
  }
}